/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* New color scheme with purple and teal for modern feel */
:root {
  --primary-purple: #6b46c1;
  --secondary-teal: #14b8a6;
  --dark-purple: #4c1d95;
  --light-purple: #9333ea;
  --accent-pink: #ec4899;
  --white: #ffffff;
  --light-gray: #f9fafb;
  --medium-gray: #e5e7eb;
  --dark-gray: #374151;
  --border-gray: #d1d5db;
  --success: #10b981;
  --warning: #f59e0b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--light-gray);
}

/* Updated navigation with purple theme */
.navbar {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(107, 70, 193, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.age-badge {
  background-color: var(--accent-pink);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--secondary-teal);
}

/* Modern gradient hero with teal accents */
.hero {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 50%, var(--secondary-teal) 100%);
  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.03)" width="50" height="50"/></svg>');
  opacity: 0.1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.375rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Updated button style with teal color */
.cta-button {
  display: inline-block;
  background-color: var(--secondary-teal);
  color: var(--white);
  padding: 1.125rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.cta-button:hover {
  background-color: var(--dark-purple);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(76, 29, 149, 0.4);
}

/* Main Content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content-section {
  background-color: var(--white);
  padding: 4rem 0;
}

.content-section h2 {
  color: var(--primary-purple);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 800;
}

.content-section h3 {
  color: var(--dark-purple);
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.content-section p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.0625rem;
  color: var(--dark-gray);
}

.content-section ul {
  margin-bottom: 1.5rem;
  margin-left: 2rem;
}

.content-section li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

/* Social Media Section */
.social-section {
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.social-section h2 {
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--dark-gray);
  transition: transform 0.3s;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary-teal) 0%, var(--primary-purple) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3);
}

/* Card-based casino reviews with modern shadows */
.casino-review {
  background: linear-gradient(to bottom, var(--white) 0%, var(--light-gray) 100%);
  border: 1px solid var(--border-gray);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.casino-review:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(107, 70, 193, 0.15);
}

.casino-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Added logo styling for casino reviews */
.casino-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
}

.casino-name {
  font-size: 2.25rem;
  color: var(--primary-purple);
  font-weight: 800;
  margin-top: 0.5rem;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
}

.stars {
  color: var(--secondary-teal);
}

.rating-number {
  color: var(--dark-gray);
  font-weight: 600;
}

/* Modern quick facts with gradient background */
.quick-facts {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  color: var(--white);
}

.quick-facts h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.fact-item {
  display: flex;
  flex-direction: column;
}

.fact-label {
  font-weight: 700;
  color: var(--secondary-teal);
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fact-value {
  color: var(--white);
  font-size: 1.0625rem;
}

.review-section {
  margin-bottom: 2rem;
}

.review-section h4 {
  color: var(--primary-purple);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

/* Updated pros/cons with teal and pink accents */
.pros-cons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pros,
.cons {
  padding: 2rem;
  border-radius: 16px;
}

.pros {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  border-left: 5px solid var(--success);
}

.cons {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
  border-left: 5px solid var(--accent-pink);
}

.pros h4 {
  color: var(--success);
}

.cons h4 {
  color: var(--accent-pink);
}

.pros ul,
.cons ul {
  margin-left: 1.5rem;
}

.casino-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Teal CTA button with hover effect */
.visit-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-teal) 0%, var(--success) 100%);
  color: var(--white);
  padding: 1.25rem 3.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.visit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(20, 184, 166, 0.5);
}

/* Modern comparison table with purple header */
.comparison-table {
  overflow-x: auto;
  margin: 3rem 0;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
}

th {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-purple) 100%);
  color: var(--white);
  padding: 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: 1.0625rem;
}

td {
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-gray);
}

tr:hover {
  background-color: var(--light-gray);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-purple);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border-gray);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-teal);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  background: linear-gradient(135deg, var(--secondary-teal) 0%, var(--success) 100%);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(20, 184, 166, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
}

.contact-info {
  margin-top: 3rem;
  text-align: center;
}

/* Purple-themed footer */
.footer {
  background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-purple) 100%);
  color: var(--white);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--secondary-teal);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary-teal);
}

.responsible-gambling {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--secondary-teal);
}

.responsible-gambling p {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.badge {
  background-color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary-purple);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* About Page */
.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.author-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-teal) 0%, var(--primary-purple) 100%);
  border: 5px solid var(--white);
  box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* Legal Pages */
.legal-content {
  background-color: var(--white);
  padding: 3rem;
  line-height: 1.8;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  color: var(--primary-purple);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: var(--dark-purple);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.125rem;
  }

  .casino-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .fact-grid {
    grid-template-columns: 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  table {
    font-size: 0.875rem;
  }

  th,
  td {
    padding: 0.5rem;
  }
}
