/* ===== GameMelaWorld - Main Stylesheet ===== */
/* Light Indian Casino Theme */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  --gold: #C9A84C;
  --gold-light: #F0C040;
  --gold-dark: #9A7A2E;
  --saffron: #FF6B35;
  --saffron-light: #FF9A5C;
  --cream: #FFF8EE;
  --cream-dark: #F5ECD8;
  --white: #FFFFFF;
  --dark: #1A0A00;
  --dark-mid: #3D1F00;
  --text-dark: #2C1810;
  --text-mid: #5C3D2E;
  --text-light: #8B6B5A;
  --green: #2D7D46;
  --green-light: #4CAF6E;
  --red: #C0392B;
  --shadow-gold: rgba(201, 168, 76, 0.3);
  --shadow-dark: rgba(0, 0, 0, 0.15);
  --border-gold: rgba(201, 168, 76, 0.4);
  --gradient-gold: linear-gradient(135deg, #F0C040 0%, #C9A84C 50%, #9A7A2E 100%);
  --gradient-saffron: linear-gradient(135deg, #FF9A5C 0%, #FF6B35 100%);
  --gradient-cream: linear-gradient(135deg, #FFF8EE 0%, #F5ECD8 100%);
  --gradient-hero: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 30%, #FFCC80 60%, #FFF8EE 100%);
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  line-height: 1.3;
}

a {
  color: var(--saffron);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Age Verification Modal ===== */
#age-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, rgba(26,10,0,0.97) 0%, rgba(61,31,0,0.97) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-modal-content {
  background: var(--gradient-cream);
  border-radius: var(--border-radius-lg);
  padding: 48px 40px;
  max-width: 540px;
  width: 100%;
  text-align: center;
  border: 2px solid var(--gold);
  box-shadow: 0 0 60px var(--shadow-gold), 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.age-modal-content::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-gold);
}

.age-modal-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.age-modal-content h2 {
  font-size: 2rem;
  color: var(--dark-mid);
  margin-bottom: 8px;
}

.age-modal-content .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--gradient-saffron);
  border-radius: 50%;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin: 20px auto;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}

.age-modal-content p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 28px;
  line-height: 1.7;
}

.age-modal-content .social-badge {
  background: rgba(45, 125, 70, 0.1);
  border: 1px solid rgba(45, 125, 70, 0.3);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
}

.age-btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-confirm-age {
  flex: 1;
  padding: 14px 24px;
  background: var(--gradient-gold);
  color: var(--dark);
  border: none;
  border-radius: 12px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow-gold);
}

.btn-confirm-age:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow-gold);
}

.btn-deny-age {
  flex: 1;
  padding: 14px 24px;
  background: transparent;
  color: var(--text-mid);
  border: 2px solid var(--border-gold);
  border-radius: 12px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-deny-age:hover {
  background: var(--cream-dark);
  color: var(--text-dark);
}

/* ===== Navigation ===== */
#main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 248, 238, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 2px 20px var(--shadow-gold);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-main {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--gradient-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

nav ul li a {
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-dark);
}

nav ul li a.nav-cta {
  background: var(--gradient-saffron);
  color: white;
  font-weight: 600;
  padding: 8px 20px;
}

nav ul li a.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  background: var(--gradient-saffron);
  color: white;
}

.nav-18-badge {
  background: var(--saffron);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Social Casino Banner ===== */
.social-casino-banner {
  background: linear-gradient(135deg, #E8F5E9 0%, #F1F8E9 100%);
  border-bottom: 1px solid rgba(45, 125, 70, 0.2);
  text-align: center;
  padding: 8px 24px;
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.social-casino-banner span {
  margin: 0 12px;
}

/* ===== Hero Section ===== */
#hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-banner.png') center/cover no-repeat;
  opacity: 0.2;
}

.hero-mandala {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.08;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='90' fill='none' stroke='%23C9A84C' stroke-width='2'/%3E%3Ccircle cx='100' cy='100' r='70' fill='none' stroke='%23C9A84C' stroke-width='2'/%3E%3Ccircle cx='100' cy='100' r='50' fill='none' stroke='%23C9A84C' stroke-width='2'/%3E%3Ccircle cx='100' cy='100' r='30' fill='none' stroke='%23C9A84C' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-text {
  animation: fadeInLeft 0.8s ease-out;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 125, 70, 0.1);
  border: 1px solid rgba(45, 125, 70, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-label::before {
  content: '🎰';
  font-size: 1rem;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--dark-mid);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-text h1 span {
  background: var(--gradient-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-disclaimer {
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--saffron);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--gradient-saffron);
  color: white;
  border: none;
  border-radius: 14px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255, 107, 53, 0.5);
  color: white;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: white;
  color: var(--dark-mid);
  border: 2px solid var(--gold);
  border-radius: 14px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--cream-dark);
  transform: translateY(-2px);
  color: var(--dark-mid);
}

.hero-image {
  animation: fadeInRight 0.8s ease-out;
  position: relative;
}

.hero-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
  width: 100%;
  object-fit: cover;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.stat-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 20px var(--shadow-dark);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--shadow-gold);
}

.stat-card .stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.stat-card .stat-value {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--saffron);
}

.stat-card .stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Section Styles ===== */
.section {
  padding: 80px 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
  padding: 4px 14px;
  background: rgba(255, 107, 53, 0.08);
  border-radius: 100px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark-mid);
  margin-bottom: 16px;
}

.section-header h2 span {
  background: var(--gradient-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 1rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ===== Games Cards ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.game-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 8px 32px var(--shadow-dark);
  transition: var(--transition);
  position: relative;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px var(--shadow-gold);
}

.game-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: var(--gradient-saffron);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.game-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-card:hover .game-card-image img {
  transform: scale(1.05);
}

.game-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.game-card:hover .game-card-overlay {
  opacity: 1;
}

.game-card-play {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.game-card-body {
  padding: 24px;
}

.game-card-body h3 {
  font-size: 1.3rem;
  color: var(--dark-mid);
  margin-bottom: 8px;
}

.game-card-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.6;
}

.game-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.game-tag {
  font-size: 0.75rem;
  padding: 4px 12px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  color: var(--gold-dark);
  font-weight: 500;
}

.game-card-btn {
  width: 100%;
  padding: 14px;
  background: var(--gradient-saffron);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  display: block;
}

.game-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: white;
}

/* ===== Features Section ===== */
.features-section {
  background: var(--gradient-cream);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 20px var(--shadow-dark);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-gold);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  border: 2px solid var(--border-gold);
}

.feature-card h3 {
  font-size: 1.1rem;
  color: var(--dark-mid);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== Responsible Gaming Banner ===== */
.responsible-banner {
  background: linear-gradient(135deg, #E8F5E9 0%, #F0FFF4 100%);
  border: 1px solid rgba(45, 125, 70, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 0 40px;
}

.responsible-banner-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
}

.responsible-banner-content h3 {
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 8px;
}

.responsible-banner-content p {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.responsible-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.responsible-link {
  padding: 8px 16px;
  background: white;
  border: 1px solid rgba(45, 125, 70, 0.3);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  transition: var(--transition);
}

.responsible-link:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 28px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 20px var(--shadow-dark);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 4rem;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  line-height: 1;
}

.testimonial-text {
  padding-top: 32px;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-mid);
}

.author-info span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.star-rating {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

/* ===== Regulators Section ===== */
.regulators-section {
  background: white;
  border-top: 1px solid var(--border-gold);
  padding: 40px 24px;
}

.regulators-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.regulators-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
}

.regulators-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.regulator-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--cream-dark);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  cursor: default;
}

.regulator-badge:hover {
  background: var(--cream);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-gold);
}

.regulator-badge .reg-icon {
  font-size: 1.2rem;
}

/* ===== Footer ===== */
#main-footer {
  background: linear-gradient(135deg, #1A0A00 0%, #3D1F00 100%);
  color: rgba(255,255,255,0.8);
  padding: 60px 24px 24px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand h3 {
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
}

.footer-social-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45, 125, 70, 0.2);
  border: 1px solid rgba(45, 125, 70, 0.4);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4CAF6E;
}

.footer-col h4 {
  font-size: 0.9rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  max-width: 1280px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

.footer-bottom .footer-disclaimer {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  padding: 12px 20px;
  margin-bottom: 16px;
  color: rgba(255,180,100,0.8);
  font-size: 0.8rem;
}

.footer-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--saffron);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin: 0 4px;
}

/* ===== Page Hero ===== */
.page-hero {
  background: var(--gradient-hero);
  padding: 60px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--dark-mid);
  margin-bottom: 12px;
  position: relative;
}

.page-hero p {
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  position: relative;
}

/* ===== Alert / Notice Boxes ===== */
.alert-box {
  border-radius: var(--border-radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.alert-box.green {
  background: rgba(45, 125, 70, 0.08);
  border: 1px solid rgba(45, 125, 70, 0.25);
}

.alert-box.orange {
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.25);
}

.alert-box.gold {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.alert-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.alert-text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--dark-mid);
}

.alert-text p {
  font-size: 0.85rem;
  color: var(--text-mid);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: white;
  border-bottom: 1px solid var(--border-gold);
  padding: 12px 24px;
}

.breadcrumb-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.breadcrumb-inner a {
  color: var(--saffron);
}

.breadcrumb-inner span {
  color: var(--text-light);
}

/* ===== Scroll To Top ===== */
#scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gradient-saffron);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

#scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255, 107, 53, 0.5);
}

/* ===== Animations ===== */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes floatUp {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-80px); opacity: 0; }
}

@keyframes spin-reel {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image {
    display: none;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border-gold);
    padding: 16px;
    gap: 4px;
    box-shadow: 0 8px 20px var(--shadow-dark);
  }

  nav ul.open {
    display: flex;
  }

  nav ul li a {
    display: block;
    padding: 12px 16px;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .responsible-banner {
    flex-direction: column;
    text-align: center;
  }

  .age-modal-content {
    padding: 32px 24px;
  }

  .age-btn-group {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .section { padding: 60px 16px; }
  .page-hero { padding: 48px 16px; }
}
