/* Deep Sea Gaming - Oceanic Underwater Design */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

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

:root {
  /* Oceanic Color Palette */
  --deep-ocean: #001f3f;
  --ocean-blue: #0074D9;
  --aqua-teal: #39CCCC;
  --sea-foam: #2ECC71;
  --coral-orange: #FF851B;
  --pearl-white: #F8F9FA;
  --abyss-black: #0a0f1c;
  --whale-gray: #2c3e50;
  --seaweed-green: #27ae60;
  --bioluminescent: #00ffff;
  
  /* Oceanic Gradients */
  --gradient-ocean: linear-gradient(135deg, var(--deep-ocean), var(--ocean-blue));
  --gradient-depths: linear-gradient(135deg, var(--abyss-black), var(--deep-ocean));
  --gradient-coral: linear-gradient(135deg, var(--coral-orange), var(--sea-foam));
  --gradient-wave: linear-gradient(135deg, var(--aqua-teal), var(--bioluminescent));
  
  /* Aquatic Shadows */
  --shadow-ocean: 0 4px 20px rgba(0, 116, 217, 0.4);
  --shadow-teal: 0 4px 20px rgba(57, 204, 204, 0.4);
  --shadow-coral: 0 4px 20px rgba(255, 133, 27, 0.4);
  --shadow-bioluminescent: 0 0 30px rgba(0, 255, 255, 0.6);
  
  /* Typography */
  --font-primary: 'Merriweather', serif;
  --font-secondary: 'Source Sans Pro', sans-serif;
  
  /* Spacing */
  --section-padding: 120px 0;
  --container-padding: 0 32px;
  --container-max-width: 1200px;
}

body {
  font-family: var(--font-secondary);
  background: linear-gradient(135deg, var(--abyss-black), var(--deep-ocean), var(--whale-gray));
  color: var(--pearl-white);
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(57, 204, 204, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(0, 116, 217, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(46, 204, 113, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(255, 133, 27, 0.03) 0%, transparent 35%);
  pointer-events: none;
  z-index: -1;
  animation: underwaterFlow 20s ease-in-out infinite;
}

@keyframes underwaterFlow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* Container */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Top Banner - Ocean Waves */
.top-banner {
  background: linear-gradient(90deg, var(--ocean-blue), var(--aqua-teal), var(--sea-foam));
  color: var(--pearl-white);
  padding: 16px 0;
  font-weight: 700;
  border-bottom: 4px solid var(--bioluminescent);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-ocean);
}

.top-banner::before {
  content: '🌊';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  animation: wave 3s ease-in-out infinite;
}

.top-banner::after {
  content: '🐙';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  animation: float 4s ease-in-out infinite;
}

@keyframes wave {
  0%, 100% { transform: translateY(-50%) rotate(-5deg); }
  50% { transform: translateY(-50%) rotate(5deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(-50%) translateX(0px); }
  25% { transform: translateY(-50%) translateX(-3px); }
  75% { transform: translateY(-50%) translateX(3px); }
}

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

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-primary);
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.banner-content i {
  color: var(--bioluminescent);
  animation: bubble 2s ease-in-out infinite;
}

@keyframes bubble {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.7; transform: translateY(-3px); }
}

/* Warning Banner - Deep Sea Style */
.warning-banner {
  background: linear-gradient(90deg, var(--whale-gray), var(--deep-ocean));
  color: var(--pearl-white);
  padding: 20px 0;
  border-bottom: 3px solid var(--coral-orange);
  position: relative;
}

.warning-banner::before {
  content: '🦈';
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  animation: swim 5s linear infinite;
}

@keyframes swim {
  0% { transform: translateY(-50%) translateX(-10px); }
  50% { transform: translateY(-50%) translateX(10px); }
  100% { transform: translateY(-50%) translateX(-10px); }
}

.warning-content {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.warning-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-primary);
}

.warning-icon {
  font-size: 18px;
  color: var(--coral-orange);
  animation: warningPulse 2s infinite;
}

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

/* Header - Deep Sea Navigation */
.header {
  background: linear-gradient(135deg, rgba(10, 15, 28, 0.95), rgba(0, 31, 63, 0.9));
  backdrop-filter: blur(25px);
  border-bottom: 3px solid var(--bioluminescent);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

.header.scrolled {
  background: linear-gradient(135deg, rgba(0, 31, 63, 0.98), rgba(44, 62, 80, 0.95));
  box-shadow: 0 8px 40px rgba(57, 204, 204, 0.4);
  border-bottom-color: var(--coral-orange);
}

.header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 20px 0;
}

.nav-brand {
  position: relative;
}

.nav-brand a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--pearl-white);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 2px;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

.nav-brand a:hover {
  transform: translateY(-2px);
}

.nav-brand span {
  background: var(--gradient-wave);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
  50% { text-shadow: 0 0 30px rgba(57, 204, 204, 0.8); }
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 31, 63, 0.3);
  border-radius: 25px;
  padding: 10px 20px;
  backdrop-filter: blur(10px);
  border: 1px solid var(--bioluminescent);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--pearl-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding: 12px 18px;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 15px;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-wave);
  border-radius: 15px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 0.2;
}

.nav-link:hover,
.nav-link.active {
  color: var(--bioluminescent);
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
  transform: translateY(-2px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 31, 63, 0.2);
  padding: 8px;
  border-radius: 20px;
  border: 1px solid var(--aqua-teal);
}

/* Buttons - Ocean Depth Style */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-ocean);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-ocean);
  color: var(--pearl-white);
  box-shadow: var(--shadow-ocean);
  border: 1px solid var(--bioluminescent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(57, 204, 204, 0.6);
  background: var(--gradient-wave);
}

.btn-ghost {
  background: transparent;
  color: var(--aqua-teal);
  border: 2px solid var(--aqua-teal);
}

.btn-ghost:hover {
  background: var(--aqua-teal);
  color: var(--deep-ocean);
  box-shadow: var(--shadow-teal);
}

.btn-play {
  background: var(--gradient-coral);
  color: var(--pearl-white);
  font-size: 18px;
  padding: 18px 36px;
  box-shadow: var(--shadow-coral);
  border: 2px solid var(--bioluminescent);
}

.btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 133, 27, 0.6);
  background: var(--gradient-wave);
}

.btn-large {
  padding: 22px 44px;
  font-size: 20px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-toggle span {
  width: 30px;
  height: 4px;
  background: var(--bronze);
  transition: all 0.4s ease;
  border-radius: 2px;
}

/* Hero Section - Victorian Grand */
.hero {
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(255, 215, 0, 0.1));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="gears" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="20" fill="none" stroke="rgba(205,127,50,0.1)" stroke-width="1"/><circle cx="25" cy="25" r="8" fill="none" stroke="rgba(205,127,50,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23gears)"/></svg>');
  opacity: 0.3;
  animation: gearMove 20s linear infinite;
}

@keyframes gearMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(205, 127, 50, 0.15);
  border: 2px solid var(--bronze);
  border-radius: 30px;
  padding: 16px 32px;
  margin-bottom: 40px;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--gold);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-bronze);
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 32px;
  line-height: 1.1;
  font-family: var(--font-primary);
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.gradient-text {
  /* background: var(--gradient-gold); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
  /* background-clip: text; */
}

.hero-description {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 50px;
  max-width: 700px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  background: rgba(47, 47, 47, 0.3);
  border: 2px solid var(--bronze);
  border-radius: 20px;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-bronze);
  border-color: var(--gold);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: var(--font-primary);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.stat-label {
  color: var(--cream);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Features Section - Mechanical Workshop */
.features {
  padding: var(--section-padding);
  background: var(--deep-charcoal);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cogs" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><polygon points="20,0 25,15 40,20 25,25 20,40 15,25 0,20 15,15" fill="none" stroke="rgba(70,130,180,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23cogs)"/></svg>');
  opacity: 0.2;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 215, 0, 0.15);
  border: 2px solid var(--gold);
  border-radius: 30px;
  padding: 16px 32px;
  margin-bottom: 32px;
  font-family: var(--font-primary);
  font-size: 16px;
  color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 24px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-primary);
}

.section-subtitle {
  font-size: 1.3rem;
  color: var(--cream);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: rgba(47, 47, 47, 0.4);
  border: 3px solid var(--bronze);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(255, 215, 0, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
}

.game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 30px;
  border: 2px solid var(--bronze);
  transition: all 0.4s ease;
}

.feature-card:hover .game-image {
  border-color: var(--gold);
  transform: scale(1.05);
}

.feature-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ivory);
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section - Victorian Grand Hall */
.cta {
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.15), rgba(255, 215, 0, 0.15));
  text-align: center;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ornate" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M30,0 L35,25 L60,30 L35,35 L30,60 L25,35 L0,30 L25,25 Z" fill="none" stroke="rgba(255,215,0,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23ornate)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 32px;
  background: var(--gradient-bronze);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-primary);
}

.cta-description {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--cream);
  background: rgba(47, 47, 47, 0.3);
  padding: 20px;
  border-radius: 15px;
  border: 2px solid var(--bronze);
  transition: all 0.4s ease;
}

.cta-feature:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}

.cta-feature i {
  color: var(--gold);
  font-size: 20px;
}

/* Footer - Ocean Floor */
.footer {
  background: linear-gradient(135deg, var(--abyss-black), var(--deep-ocean));
  border-top: 4px solid var(--bioluminescent);
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(57, 204, 204, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(46, 204, 113, 0.03) 0%, transparent 60%);
  opacity: 0.8;
  animation: oceanCurrent 15s ease-in-out infinite;
}

@keyframes oceanCurrent {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-10px) translateY(-5px); }
  50% { transform: translateX(10px) translateY(5px); }
  75% { transform: translateX(-5px) translateY(10px); }
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  align-items: start;
  text-align: center;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
  background: rgba(0, 31, 63, 0.2);
  padding: 30px 20px;
  border-radius: 20px;
  border: 1px solid var(--aqua-teal);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.footer-column:hover {
  transform: translateY(-5px);
  border-color: var(--bioluminescent);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.footer-brand {
  text-align: center;
}

.footer-brand p {
  color: var(--pearl-white);
  margin-top: 20px;
  line-height: 1.6;
  font-size: 1rem;
  opacity: 0.9;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--bioluminescent);
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-link {
  color: var(--pearl-white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 10px;
  display: inline-block;
}

.footer-link:hover {
  color: var(--bioluminescent);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
  background: rgba(0, 255, 255, 0.1);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 2px solid var(--bioluminescent);
  padding-top: 25px;
  position: relative;
  z-index: 2;
  background: rgba(0, 31, 63, 0.1);
  border-radius: 15px;
  margin-top: 30px;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.copyright {
  color: var(--pearl-white);
  font-size: 1rem;
  opacity: 0.8;
}

.footer-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.age-badge,
.responsible-badge,
.premium-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-secondary);
  transition: all 0.3s ease;
}

.age-badge {
  background: rgba(255, 133, 27, 0.2);
  color: var(--coral-orange);
  border: 2px solid var(--coral-orange);
}

.age-badge:hover {
  background: rgba(255, 133, 27, 0.3);
  transform: translateY(-2px);
}

.responsible-badge {
  background: rgba(57, 204, 204, 0.2);
  color: var(--aqua-teal);
  border: 2px solid var(--aqua-teal);
}

.responsible-badge:hover {
  background: rgba(57, 204, 204, 0.3);
  transform: translateY(-2px);
}

.premium-badge {
  background: rgba(0, 255, 255, 0.2);
  color: var(--bioluminescent);
  border: 2px solid var(--bioluminescent);
}

.premium-badge:hover {
  background: rgba(0, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Modal Styles - Victorian Parlor */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
}

.modal-content {
  background: linear-gradient(135deg, var(--deep-charcoal), var(--charcoal));
  border: 3px solid var(--bronze);
  border-radius: 25px;
  width: 90%;
  max-width: 550px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  z-index: 2001;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.modal-header {
  padding: 30px 40px;
  border-bottom: 2px solid var(--bronze);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(205, 127, 50, 0.1);
  border-radius: 25px 25px 0 0;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ivory);
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-close {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.4s ease;
}

.modal-close:hover {
  color: var(--gold);
  background: rgba(255, 215, 0, 0.1);
}

.modal-body {
  padding: 40px;
}

/* Form Styles - Victorian Elegance */
.auth-form {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 12px;
  color: var(--cream);
  font-weight: 600;
  font-size: 16px;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input {
  width: 100%;
  padding: 18px;
  background: rgba(47, 47, 47, 0.5);
  border: 2px solid var(--bronze);
  border-radius: 12px;
  color: var(--ivory);
  font-family: var(--font-secondary);
  font-size: 16px;
  transition: all 0.4s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
  background: rgba(47, 47, 47, 0.8);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--cream);
  font-size: 15px;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid var(--bronze);
  border-radius: 6px;
  position: relative;
  transition: all 0.4s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--deep-charcoal);
  font-weight: bold;
  font-size: 16px;
}

.forgot-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.forgot-link:hover {
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.auth-divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--bronze);
}

.auth-divider span {
  background: linear-gradient(135deg, var(--deep-charcoal), var(--charcoal));
  padding: 0 20px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.btn-social {
  padding: 18px 24px;
  font-size: 15px;
  justify-content: center;
  border: 2px solid var(--bronze);
  background: transparent;
  color: var(--cream);
  transition: all 0.4s ease;
}

.btn-social:hover {
  background: var(--bronze);
  color: var(--ivory);
  transform: translateY(-3px);
}

.btn-facebook:hover {
  border-color: #1877F2;
  background: #1877F2;
}

.btn-google:hover {
  border-color: #DB4437;
  background: #DB4437;
}

.auth-switch {
  text-align: center;
}

.auth-switch a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

.auth-switch a:hover {
  text-decoration: underline;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-banner {
    padding: 12px 0;
  }
  
  .top-banner::before,
  .top-banner::after {
    display: none;
  }
  
  .warning-banner {
    padding: 16px 0;
  }
  
  .warning-banner::before {
    display: none;
  }
  
  .header .container {
    grid-template-columns: 1fr auto;
    gap: 20px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 31, 63, 0.98);
    backdrop-filter: blur(25px);
    border-top: 3px solid var(--bioluminescent);
    padding: 20px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-radius: 0 0 20px 20px;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 20px;
  }
  
  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--bronze);
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .features {
    padding: 80px 0;
  }
  
  .cta {
    padding: 80px 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-column {
    gap: 20px;
    padding: 25px 15px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
  }

  .nav-actions {
    background: transparent;
    border: none;
    padding: 0;
    gap: 10px;
  }
  
  .social-auth {
    grid-template-columns: 1fr;
  }
  
  .warning-content {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
  
  .header .container {
    padding: 20px 0;
  }
  
  .top-banner {
    padding: 10px 0;
  }
  
  .warning-banner {
    padding: 14px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  .features {
    padding: 60px 0;
  }
  
  .cta {
    padding: 60px 0;
  }
  
  .modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .modal-header,
  .modal-body {
    padding: 25px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-content {
    gap: 40px;
  }
  
  .footer-column {
    gap: 15px;
  }
  
  .footer {
    padding: 60px 0 20px;
  }
  
  .footer-content {
    margin-bottom: 40px;
  }
}

/* Page Header - Used across multiple pages */
.page-header {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(255, 215, 0, 0.1));
  position: relative;
}

.page-header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--ivory);
  font-family: var(--font-primary);
}

.page-subtitle {
  font-size: 1.3rem;
  color: var(--cream);
  line-height: 1.7;
}

/* Commitment Section */
.commitment-section {
  padding: var(--section-padding);
  background: var(--deep-charcoal);
}

.commitment-visual {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.visual-card {
  background: rgba(47, 47, 47, 0.4);
  border: 2px solid var(--bronze);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
}

.visual-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.card-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.visual-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 15px;
  font-family: var(--font-primary);
}

.visual-card p {
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Guidelines Section */
.guidelines-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.05), rgba(255, 215, 0, 0.05));
}

.guidelines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.guideline-card {
  background: rgba(47, 47, 47, 0.4);
  border: 3px solid var(--bronze);
  border-radius: 25px;
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.guideline-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.guideline-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.guideline-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.guideline-description {
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.guideline-tips {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tip {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}

.tip i {
  color: var(--bronze);
  font-size: 8px;
}

/* Tools Section */
.tools-section {
  padding: var(--section-padding);
  background: var(--deep-charcoal);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.tool-card {
  background: rgba(47, 47, 47, 0.4);
  border: 3px solid var(--bronze);
  border-radius: 25px;
  padding: 40px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.tool-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.tool-icon {
  font-size: 2.5rem;
  color: var(--gold);
}

.tool-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ivory);
  font-family: var(--font-primary);
}

.tool-description {
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.tool-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.feature {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid var(--gold);
}

.tool-btn {
  margin-top: auto;
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--deep-charcoal);
  box-shadow: var(--shadow-gold);
}

/* Support Section */
.support-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.08), rgba(255, 215, 0, 0.08));
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.support-card {
  background: rgba(47, 47, 47, 0.4);
  border: 3px solid var(--bronze);
  border-radius: 25px;
  padding: 40px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.support-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.support-logo {
  margin-bottom: 25px;
}

.support-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.support-description {
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  flex-grow: 1;
}

.support-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--cream);
  font-size: 1rem;
}

.contact-item i {
  color: var(--gold);
  width: 20px;
}

/* Warning Section */
.warning-section {
  padding: var(--section-padding);
  background: var(--deep-charcoal);
}

.warning-content {
  display: flex;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}

.warning-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 30px;
  color: var(--ivory);
  font-family: var(--font-primary);
}

.warning-description {
  color: var(--cream);
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.warning-signs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.sign-category h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: var(--font-primary);
}

.signs-list {
  list-style: none;
  padding: 0;
}

.signs-list li {
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.signs-list li:before {
  content: '⚠️';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.warning-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.help-card {
  background: rgba(205, 127, 50, 0.1);
  border: 3px solid var(--bronze);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  max-width: 350px;
}

.help-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.help-card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 15px;
  font-family: var(--font-primary);
}

.help-card p {
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.help-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }
  
  .page-header {
    padding: 80px 0 60px;
  }
  
  .commitment-visual {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .guidelines-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
  }
  
  .tools-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
  }
  
  .support-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
  }
  
  .warning-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .warning-signs {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .warning-title {
    font-size: 2.5rem;
  }
  
  .help-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }
  
  .warning-title {
    font-size: 2rem;
  }
  
  .guideline-card,
  .tool-card,
  .support-card {
    padding: 30px;
  }
  
  .help-card {
    padding: 30px;
  }
}

/* About Story Section */
.about-story {
  padding: var(--section-padding);
  background: var(--deep-charcoal);
  position: relative;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-text {
  text-align: center;
}

.story-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 40px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-primary);
}

.story-description {
  color: var(--cream);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: left;
}

@media (max-width: 768px) {
  .story-title {
    font-size: 2.5rem;
  }
  
  .story-description {
    font-size: 1.1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .story-title {
    font-size: 2rem;
  }
}

/* Games Section */
.games {
  padding: var(--section-padding);
  background: var(--deep-charcoal);
  position: relative;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  margin-top: 80px;
}

.game-card {
  background: rgba(47, 47, 47, 0.4);
  border: 3px solid var(--bronze);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(205, 127, 50, 0.1), rgba(255, 215, 0, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.game-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: 0 25px 50px rgba(255, 215, 0, 0.3);
}

.game-content {
  position: relative;
  z-index: 2;
}

.game-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 20px;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-badges {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.game-badge {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-primary);
}

.game-badge.popular {
  background: rgba(255, 69, 0, 0.3);
  color: #FF4500;
  border: 1px solid #FF4500;
}

.game-badge.new {
  background: rgba(50, 205, 50, 0.3);
  color: #32CD32;
  border: 1px solid #32CD32;
}

@media (max-width: 768px) {
  .games-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 60px;
  }
  
  .game-card {
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .game-card {
    padding: 25px;
  }
  
  .game-title {
    font-size: 1.5rem;
  }
}

/* Legal Content Sections */
.legal-content {
  padding: var(--section-padding);
  background: var(--deep-charcoal);
  position: relative;
}

.legal-document {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(47, 47, 47, 0.4);
  border: 2px solid var(--bronze);
  border-radius: 25px;
  padding: 60px;
  backdrop-filter: blur(10px);
}

.document-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid var(--bronze);
  flex-wrap: wrap;
  gap: 20px;
}

.last-updated {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
}

.last-updated i {
  font-size: 1.2rem;
}

.document-actions {
  display: flex;
  gap: 15px;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--deep-charcoal);
}

.btn-small {
  padding: 12px 24px;
  font-size: 0.9rem;
}

.section-block {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(205, 127, 50, 0.3);
}

.section-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.section-block h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 25px;
  font-family: var(--font-primary);
}

.section-block h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  margin-top: 30px;
  font-family: var(--font-primary);
}

.section-block p {
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.section-block ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.section-block li {
  color: var(--cream);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.section-block li:before {
  content: '⚙️';
  position: absolute;
  left: 0;
  color: var(--bronze);
}

.document-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid var(--bronze);
  text-align: center;
  color: var(--cream);
}

/* Privacy Policy Specific Styles */
.privacy-summary {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
}

.privacy-summary h3 {
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.summary-item {
  text-align: center;
}

.summary-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.summary-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 15px;
  font-family: var(--font-primary);
}

.summary-item p {
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.privacy-navigation {
  background: rgba(205, 127, 50, 0.05);
  border: 2px solid var(--bronze);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
}

.privacy-navigation h3 {
  color: var(--bronze);
  font-size: 1.6rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
}

.nav-links li {
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(205, 127, 50, 0.2);
  display: block;
  transition: color 0.3s ease;
}

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

.data-categories,
.usage-purposes,
.sharing-scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.data-category,
.purpose-category,
.scenario {
  background: rgba(47, 47, 47, 0.6);
  border: 2px solid var(--bronze);
  border-radius: 15px;
  padding: 30px;
}

.data-category h3,
.purpose-category h3,
.scenario h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  margin-top: 0;
}

.privacy-principles {
  margin-top: 40px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.principle {
  text-align: center;
  padding: 25px;
  background: rgba(47, 47, 47, 0.3);
  border-radius: 15px;
  border: 1px solid var(--bronze);
}

.principle i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.principle h4 {
  font-size: 1.2rem;
  color: var(--ivory);
  margin-bottom: 10px;
  font-family: var(--font-primary);
}

.principle p {
  font-size: 0.95rem;
  margin: 0;
}

.legal-basis {
  background: rgba(70, 130, 180, 0.1);
  border: 2px solid var(--steel);
  border-radius: 15px;
  padding: 30px;
  margin-top: 40px;
}

.no-selling-notice,
.security-notice,
.children-notice {
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid var(--gold);
  border-radius: 15px;
  padding: 30px;
  margin: 40px 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.no-selling-notice i,
.security-notice i,
.children-notice i {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.security-measures {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.security-category {
  text-align: center;
  padding: 25px;
  background: rgba(47, 47, 47, 0.3);
  border-radius: 15px;
  border: 1px solid var(--bronze);
}

.security-category i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.security-category h3 {
  font-size: 1.2rem;
  color: var(--ivory);
  margin-bottom: 10px;
  font-family: var(--font-primary);
}

.security-category p {
  font-size: 0.95rem;
  margin: 0;
}

.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.right-item {
  padding: 25px;
  background: rgba(47, 47, 47, 0.3);
  border-radius: 15px;
  border: 1px solid var(--bronze);
}

.right-item h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  margin-bottom: 15px;
  margin-top: 0;
}

.right-item i {
  color: var(--gold);
}

.rights-exercise {
  margin-top: 40px;
  background: rgba(205, 127, 50, 0.05);
  border: 2px solid var(--bronze);
  border-radius: 15px;
  padding: 30px;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(47, 47, 47, 0.3);
  border-radius: 10px;
}

.contact-option i {
  font-size: 1.8rem;
  color: var(--gold);
}

.contact-option h4 {
  color: var(--ivory);
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}

.contact-option p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.cookie-type {
  padding: 25px;
  background: rgba(47, 47, 47, 0.3);
  border-radius: 15px;
  border: 1px solid var(--bronze);
}

.cookie-type h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  margin-top: 0;
}

.cookie-management {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 25px 0;
}

.cookie-controls {
  text-align: center;
  margin-top: 30px;
}

.transfer-safeguards {
  margin-top: 30px;
}

.safeguard {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(47, 47, 47, 0.3);
  border-radius: 10px;
  margin-bottom: 20px;
}

.safeguard i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.safeguard h4 {
  color: var(--ivory);
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}

.safeguard p {
  margin: 0;
  font-size: 0.95rem;
}

.contact-info-privacy {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: rgba(47, 47, 47, 0.3);
  border-radius: 15px;
  border: 1px solid var(--bronze);
}

.contact-method i {
  font-size: 1.8rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.contact-method h4 {
  color: var(--ivory);
  margin: 0 0 10px 0;
  font-size: 1.2rem;
  font-family: var(--font-primary);
}

.contact-method p {
  margin: 0;
  line-height: 1.6;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
  .legal-document {
    padding: 40px 30px;
  }
  
  .document-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  
  .summary-grid,
  .data-categories,
  .usage-purposes,
  .sharing-scenarios,
  .security-measures,
  .rights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .nav-links {
    grid-template-columns: 1fr;
  }
  
  .contact-options,
  .cookie-management,
  .contact-info-privacy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .legal-document {
    padding: 30px 20px;
  }
  
  .section-block h2 {
    font-size: 1.6rem;
  }
  
  .principles-grid {
    grid-template-columns: 1fr;
  }
  
  .data-category,
  .purpose-category,
  .scenario,
  .tool-card,
  .support-card {
    padding: 20px;
  }
}