/* ============================================================
   TOWER RUSH - OCEAN / UNDERWATER THEME
   Deep-sea immersive gaming experience
   ============================================================ */

/* --- SELF-HOSTED FONTS (NEVER use Google Fonts CDN) --- */
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Orbitron';
  src: url('fonts/Orbitron-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Orbitron';
  src: url('fonts/Orbitron-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Orbitron';
  src: url('fonts/Orbitron-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- CSS VARIABLES --- */
:root {
  --bg-primary: #001f3f;
  --bg-secondary: #002855;
  --bg-card: rgba(0, 50, 100, 0.4);
  --bg-card-hover: rgba(0, 60, 120, 0.55);
  --primary: #00d4ff;
  --primary-dim: rgba(0, 212, 255, 0.15);
  --secondary: #0077b6;
  --accent: #39ff14;
  --accent-dim: rgba(57, 255, 20, 0.15);
  --text: #e0f7ff;
  --text-muted: #90caf9;
  --border: rgba(0, 212, 255, 0.25);
  --border-strong: rgba(0, 212, 255, 0.45);
  --shadow-cyan: 0 0 25px rgba(0, 212, 255, 0.25);
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.35);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Orbitron', 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes bubble-rise {
  0% {
    transform: translateY(100vh) translateX(0) scale(0.4);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(50vh) translateX(30px) scale(0.8);
    opacity: 0.4;
  }
  80% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-10vh) translateX(-20px) scale(1);
    opacity: 0;
  }
}

@keyframes wave-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.3), 0 0 20px rgba(0, 212, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 18px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.25);
  }
}

@keyframes light-ray {
  0% {
    opacity: 0.03;
    transform: rotate(-15deg) scaleY(1);
  }
  50% {
    opacity: 0.08;
    transform: rotate(-12deg) scaleY(1.15);
  }
  100% {
    opacity: 0.03;
    transform: rotate(-15deg) scaleY(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes border-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--text);
  background: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Deep underwater gradient on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0, 119, 182, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 10%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 40, 85, 0.6) 0%, transparent 70%),
    linear-gradient(180deg, #001f3f 0%, #001225 50%, #000a14 100%);
  z-index: -2;
  pointer-events: none;
}

/* Light rays from surface */
body::after {
  content: '';
  position: fixed;
  top: -30%;
  left: 10%;
  width: 40%;
  height: 130%;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  transform: rotate(-15deg);
  animation: light-ray 8s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

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

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

a:hover {
  color: var(--accent);
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- BUBBLE PARTICLES (JS-created) --- */
.bubble-particle {
  position: fixed;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.3), rgba(0, 212, 255, 0.05));
  border: 1px solid rgba(0, 212, 255, 0.15);
  pointer-events: none;
  z-index: 0;
  animation: bubble-rise linear infinite;
}

/* ============================================================
   HEADER
   ============================================================ */
.header-top-bar {
  background: linear-gradient(135deg, rgba(0, 40, 85, 0.95), rgba(0, 31, 63, 0.98));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.logo-text .highlight {
  color: var(--primary);
}

/* Language Selector */
.lang-selector {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-btn {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-primary);
  color: var(--text-muted);
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.15);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.lang-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-dim);
}

.lang-btn.active {
  color: var(--bg-primary);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}

/* Header CTA */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--primary), #00a8cc);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.25);
}

.header-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-glow);
  color: var(--bg-primary);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 100px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(0, 119, 182, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

/* Wave clip-path at the bottom of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--bg-primary);
  clip-path: polygon(
    0% 60%, 5% 55%, 10% 50%, 15% 48%, 20% 50%, 25% 55%,
    30% 58%, 35% 55%, 40% 48%, 45% 42%, 50% 40%, 55% 42%,
    60% 48%, 65% 55%, 70% 60%, 75% 58%, 80% 52%, 85% 48%,
    90% 50%, 95% 55%, 100% 60%, 100% 100%, 0% 100%
  );
  z-index: 2;
}

/* Coral reef pattern via gradient at hero bottom */
.hero::before {
  content: '';
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 120px;
  background:
    radial-gradient(ellipse at 15% 100%, rgba(0, 119, 182, 0.3) 0%, transparent 40%),
    radial-gradient(ellipse at 45% 100%, rgba(57, 255, 20, 0.08) 0%, transparent 30%),
    radial-gradient(ellipse at 75% 100%, rgba(0, 212, 255, 0.15) 0%, transparent 35%),
    radial-gradient(ellipse at 90% 100%, rgba(0, 119, 182, 0.2) 0%, transparent 25%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-text {
  max-width: 560px;
}

.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.hero-text h1 .highlight {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-iframe,
.hero-game {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-cyan), 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: glow-pulse 4s ease-in-out infinite;
  background: var(--bg-card);
}

.hero-iframe iframe,
.hero-game iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.hero-content {
  width: 100%;
}

/* ============================================================
   CTA BUTTONS
   ============================================================ */
.cta-button,
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--primary), #00a8cc, var(--secondary));
  background-size: 200% 200%;
  animation: wave-flow 4s ease-in-out infinite;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3), 0 0 30px rgba(0, 212, 255, 0.15);
  position: relative;
  overflow: hidden;
}

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

.cta-button:hover::before,
.cta-primary:hover::before {
  left: 100%;
}

.cta-button:hover,
.cta-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 35px rgba(0, 212, 255, 0.45), 0 0 50px rgba(0, 212, 255, 0.25);
  color: var(--bg-primary);
}

.cta-button:active,
.cta-primary:active {
  transform: translateY(-1px) scale(1.01);
}

/* Secondary CTA variant */
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
}

.cta-secondary:hover {
  background: var(--primary-dim);
  border-color: var(--primary);
  box-shadow: var(--shadow-cyan);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================================
   SECTION TITLES & COMMON ELEMENTS
   ============================================================ */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-title .highlight {
  color: var(--primary);
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.8;
}

.highlight {
  color: var(--primary);
  font-weight: 600;
}

/* ============================================================
   WAVE SECTION DIVIDERS
   ============================================================ */
.wave-divider {
  width: 100%;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.wave-divider::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: var(--bg-primary);
  clip-path: polygon(
    0% 70%, 2.5% 65%, 5% 60%, 7.5% 58%, 10% 60%, 12.5% 65%,
    15% 70%, 17.5% 68%, 20% 62%, 22.5% 55%, 25% 50%, 27.5% 52%,
    30% 58%, 32.5% 65%, 35% 70%, 37.5% 68%, 40% 62%, 42.5% 55%,
    45% 50%, 47.5% 52%, 50% 58%, 52.5% 65%, 55% 70%, 57.5% 68%,
    60% 62%, 62.5% 55%, 65% 50%, 67.5% 52%, 70% 58%, 72.5% 65%,
    75% 70%, 77.5% 68%, 80% 62%, 82.5% 55%, 85% 50%, 87.5% 52%,
    90% 58%, 92.5% 65%, 95% 70%, 97.5% 68%, 100% 62%,
    100% 100%, 0% 100%
  );
  animation: wave-flow 12s linear infinite;
  background-size: 200% 100%;
}

/* ============================================================
   FEATURES / CARDS SECTIONS
   ============================================================ */
section {
  padding: 80px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.feature-card,
.char-card,
.ocean-card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 35px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Flowing water border animation on cards */
.feature-card::before,
.char-card::before,
.ocean-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
  background-size: 300% 100%;
  animation: border-flow 6s linear infinite;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.feature-card:hover,
.char-card:hover,
.ocean-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-cyan), 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-card .card-icon,
.ocean-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
}

.feature-card h3,
.char-card h3,
.ocean-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.feature-card p,
.char-card p,
.ocean-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   CONTENT IMAGES
   ============================================================ */
.content-image {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-cyan), 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: all var(--transition);
  margin: 25px 0;
}

.content-image:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow), 0 15px 50px rgba(0, 0, 0, 0.5);
  transform: scale(1.01);
}

/* ============================================================
   TABLES (Info, Comparison, Device)
   ============================================================ */
.info-table,
.comparison-table,
.device-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.info-table thead,
.comparison-table thead,
.device-table thead {
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.4), rgba(0, 40, 85, 0.6));
}

.info-table th,
.comparison-table th,
.device-table th {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 20px;
  text-align: left;
  border-bottom: 2px solid var(--border);
}

.info-table td,
.comparison-table td,
.device-table td {
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  transition: background var(--transition);
}

.info-table tr:last-child td,
.comparison-table tr:last-child td,
.device-table tr:last-child td {
  border-bottom: none;
}

.info-table tbody tr:hover td,
.comparison-table tbody tr:hover td,
.device-table tbody tr:hover td {
  background: rgba(0, 212, 255, 0.05);
}

.info-table td:first-child,
.comparison-table td:first-child {
  font-weight: 500;
  color: var(--primary);
}

/* ============================================================
   STEPS SECTION
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.step-card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.step-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-5px);
  box-shadow: var(--shadow-cyan);
}

.step-card .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS / REVIEWS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.testimonial-card,
.review-card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Wave border bottom for testimonial cards */
.testimonial-card::after,
.review-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
  background-size: 200% 100%;
  animation: wave-flow 5s ease-in-out infinite;
}

.testimonial-card:hover,
.review-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-cyan);
}

.testimonial-card .stars,
.review-card .stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card .quote,
.review-card .quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-card .author,
.review-card .author {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition);
  gap: 15px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 500px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   ALERT & TIP BOXES
   ============================================================ */
.alert-box {
  background: rgba(0, 212, 255, 0.08);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 25px;
  margin: 25px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.alert-box p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

.tip-box {
  background: var(--accent-dim);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 25px;
  margin: 25px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tip-box p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   ALTERNATE SECTION BACKGROUNDS
   ============================================================ */
section:nth-child(even) {
  background: linear-gradient(180deg, rgba(0, 40, 85, 0.3) 0%, rgba(0, 31, 63, 0.1) 100%);
}

section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(57, 255, 20, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* ============================================================
   CTA BANNER / INTERSTITIAL
   ============================================================ */
.cta-banner,
.cta-section {
  text-align: center;
  padding: 70px 20px;
  background:
    radial-gradient(ellipse at center, rgba(0, 119, 182, 0.2) 0%, transparent 70%),
    linear-gradient(135deg, rgba(0, 40, 85, 0.5) 0%, rgba(0, 31, 63, 0.5) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-banner h2,
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.cta-banner p,
.cta-section p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   GRID LAYOUTS - TWO COLUMN
   ============================================================ */
.comparison-grid,
.two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 20px;
}

/* ============================================================
   RESPONSIBLE GAMING
   ============================================================ */
.responsible-gaming {
  background: rgba(0, 50, 100, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  margin: 40px 0;
  text-align: center;
}

.responsible-gaming h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.responsible-gaming p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #000a14 100%);
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 119, 182, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 10px;
}

.footer-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(0, 212, 255, 0.3);
  text-underline-offset: 3px;
}

.footer-content a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.footer .disclaimer {
  font-size: 0.8rem;
  color: rgba(144, 202, 249, 0.6);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
}

/* ============================================================
   ADDITIONAL SECTION CLASSES
   ============================================================ */
.game-overview-section,
.strategy-section,
.bonus-section,
.gameplay-section,
.tips-section {
  position: relative;
}

.game-overview-section .content-block,
.strategy-section .content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 30px 0;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-text h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.content-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   SHIMMER EFFECT - USED ON SELECTED ELEMENTS
   ============================================================ */
.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--text) 0%,
    var(--primary) 40%,
    var(--accent) 50%,
    var(--primary) 60%,
    var(--text) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* ============================================================
   SCROLLBAR CUSTOM STYLING
   ============================================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ============================================================
   SELECTION STYLE
   ============================================================ */
::selection {
  background: rgba(0, 212, 255, 0.3);
  color: var(--text);
}

/* ============================================================
   AOS OVERRIDES
   ============================================================ */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* -- TABLET LANDSCAPE (max-width: 1024px) -- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 100px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .game-overview-section .content-block,
  .strategy-section .content-block {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .content-block.reverse {
    direction: ltr;
  }
}

/* -- TABLET PORTRAIT (max-width: 768px) -- */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  section {
    padding: 60px 0;
  }

  .header-content {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 15px;
  }

  .header-cta {
    display: none;
  }

  .logo-text {
    font-size: 1rem;
  }

  .hero {
    padding: 60px 0 90px;
  }

  .hero-text h1 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-iframe,
  .hero-game {
    aspect-ratio: 16 / 9;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .comparison-grid,
  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-title {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 35px;
  }

  .cta-button,
  .cta-primary {
    padding: 14px 28px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .cta-secondary {
    padding: 12px 24px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }

  /* Table responsive */
  .info-table,
  .comparison-table,
  .device-table {
    font-size: 0.9rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .info-table th,
  .comparison-table th,
  .device-table th {
    padding: 12px 15px;
    font-size: 0.8rem;
  }

  .info-table td,
  .comparison-table td,
  .device-table td {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 16px;
  }

  .feature-card,
  .char-card,
  .ocean-card {
    padding: 25px 20px;
  }

  .step-card {
    padding: 25px 20px;
  }

  .responsible-gaming {
    padding: 25px 20px;
  }

  .alert-box,
  .tip-box {
    padding: 15px 18px;
  }

  .hero::after {
    height: 50px;
  }
}

/* -- MOBILE (max-width: 480px) -- */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  section {
    padding: 45px 0;
  }

  .header-top-bar {
    padding: 8px 0;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .logo-text {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .lang-btn {
    padding: 4px 8px;
    font-size: 0.7rem;
  }

  .hero {
    padding: 45px 0 80px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .hero-text p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 1.25rem;
    letter-spacing: 1px;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  .cta-button,
  .cta-primary {
    padding: 13px 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .feature-card,
  .char-card,
  .ocean-card {
    padding: 22px 18px;
  }

  .feature-card h3,
  .char-card h3,
  .ocean-card h3 {
    font-size: 1.05rem;
  }

  .feature-card p,
  .char-card p,
  .ocean-card p {
    font-size: 0.9rem;
  }

  .step-card .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .testimonial-card,
  .review-card {
    padding: 22px 18px;
  }

  .testimonial-card .quote,
  .review-card .quote {
    font-size: 0.9rem;
  }

  .footer {
    padding: 35px 0 20px;
  }

  .footer-content p {
    font-size: 0.8rem;
  }

  .footer .disclaimer {
    font-size: 0.75rem;
  }

  .cta-banner,
  .cta-section {
    padding: 50px 15px;
  }

  .cta-banner h2,
  .cta-section h2 {
    font-size: 1.3rem;
  }

  .cta-banner p,
  .cta-section p {
    font-size: 0.9rem;
  }

  .responsible-gaming {
    padding: 20px 15px;
  }

  .responsible-gaming h3 {
    font-size: 1rem;
  }

  .responsible-gaming p {
    font-size: 0.85rem;
  }

  .hero::after {
    height: 35px;
  }

  .wave-divider {
    height: 40px;
  }
}

/* -- SMALL MOBILE (max-width: 360px) -- */
@media (max-width: 360px) {
  .logo-text {
    font-size: 0.8rem;
  }

  .lang-selector {
    gap: 4px;
  }

  .lang-btn {
    padding: 3px 6px;
    font-size: 0.65rem;
  }

  .hero-text h1 {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.1rem;
  }

  .cta-button,
  .cta-primary {
    padding: 12px 16px;
    font-size: 0.8rem;
  }
}

/* ============================================================
   TOP BANNER
   ============================================================ */
.top-banner {
    background: linear-gradient(135deg, var(--secondary), #005a8d, var(--secondary));
    background-size: 200% 200%;
    animation: wave-flow 6s ease-in-out infinite;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1001;
}

.banner-link {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all var(--transition);
}

.banner-link:hover {
    color: var(--accent);
    transform: scale(1.02);
}

.banner-icon {
    font-size: 1.1rem;
}

.banner-arrow {
    font-size: 1.2rem;
    transition: transform var(--transition);
}

.banner-link:hover .banner-arrow {
    transform: translateX(4px);
}

/* ============================================================
   HEADER (non top-bar version)
   ============================================================ */
header {
    background: linear-gradient(135deg, rgba(0, 40, 85, 0.95), rgba(0, 31, 63, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
    transition: all var(--transition);
}

header.scrolled {
    padding: 8px 0;
    background: rgba(0, 15, 30, 0.98);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-link {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.15);
    text-decoration: none;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-dim);
}

.lang-link.active {
    color: var(--bg-primary);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
}

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: all var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO SECTION (overrides for centered layout)
   ============================================================ */
.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================================
   SECTION VARIABLES
   ============================================================ */
:root {
    --bg-deep: #001f3f;
    --bg-section: #001a33;
}

/* ============================================================
   WAVE TOPS FOR SECTIONS
   ============================================================ */
.wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    z-index: 1;
}

.wave-top svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================================
   SECTION INTRO TEXT
   ============================================================ */
.section-intro {
    text-align: center;
    font-size: 1.02rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* ============================================================
   TABLE CARD WRAPPER
   ============================================================ */
.table-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 30px 0;
}

.ocean-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.ocean-table thead {
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.4), rgba(0, 40, 85, 0.6));
}

.ocean-table th {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 2px solid var(--border);
}

.ocean-table td {
    padding: 14px 20px;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0, 212, 255, 0.08);
    transition: background var(--transition);
}

.ocean-table tr:last-child td {
    border-bottom: none;
}

.ocean-table tbody tr:hover td {
    background: rgba(0, 212, 255, 0.05);
}

.ocean-table td:first-child {
    font-weight: 500;
    color: var(--primary);
}

.table-note {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    background: rgba(0, 212, 255, 0.04);
    line-height: 1.6;
}

.note-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-primary);
    padding: 3px 12px;
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 8px;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-excellent {
    background: rgba(57, 255, 20, 0.15);
    color: var(--accent);
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.badge-good {
    background: rgba(0, 212, 255, 0.15);
    color: var(--primary);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.badge-ok {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* ============================================================
   SECTION IMAGES
   ============================================================ */
.section-image {
    width: 100%;
    max-width: 800px;
    margin: 35px auto;
    display: block;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-cyan), 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all var(--transition);
}

.section-image:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-glow), 0 15px 50px rgba(0, 0, 0, 0.5);
    transform: scale(1.01);
}

/* ============================================================
   CONTENT GRID (text + image/cards side by side)
   ============================================================ */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin: 30px 0;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-image {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-cyan), 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all var(--transition);
}

.content-image:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-glow), 0 15px 50px rgba(0, 0, 0, 0.5);
    transform: scale(1.01);
}

/* ============================================================
   FEATURE CARDS MINI (3-column within grid)
   ============================================================ */
.feature-cards-mini {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-cards-mini .feature-card {
    padding: 24px 22px;
}

.feature-cards-mini .feature-card .card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-cards-mini .feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.feature-cards-mini .feature-card p {
    font-size: 0.9rem;
}

/* ============================================================
   CONTENT BLOCK (full-width text)
   ============================================================ */
.content-block {
    max-width: 850px;
    margin: 30px auto;
}

.content-block p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   PRECISION GRID
   ============================================================ */
.precision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.precision-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: all var(--transition);
    text-align: center;
}

.precision-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
    transform: translateY(-5px);
    box-shadow: var(--shadow-cyan);
}

.precision-level {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.precision-rating {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(57, 255, 20, 0.15);
    color: var(--accent);
    border: 1px solid rgba(57, 255, 20, 0.3);
    margin-bottom: 14px;
}

.precision-rating.caution {
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border-color: rgba(255, 193, 7, 0.3);
}

.precision-rating.warning {
    background: rgba(255, 87, 34, 0.15);
    color: #ff5722;
    border-color: rgba(255, 87, 34, 0.3);
}

.precision-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   TIP BOX (with icon)
   ============================================================ */
.tip-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.tip-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   NETWORK GRID
   ============================================================ */
.network-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.network-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: all var(--transition);
}

.network-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
    transform: translateY(-5px);
    box-shadow: var(--shadow-cyan);
}

.network-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.network-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.network-card .badge {
    margin-bottom: 14px;
}

.network-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   STEPS GRID (updated for 5 cards)
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

/* ============================================================
   COMPARE GRID
   ============================================================ */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.compare-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    transition: all var(--transition);
}

.compare-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
    transform: translateY(-5px);
    box-shadow: var(--shadow-cyan);
}

.compare-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    position: relative;
}

.compare-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.compare-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
}

.compare-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.compare-use {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compare-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   REVIEWS GRID
   ============================================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.review-stars {
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--primary);
}

.review-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.review-rating {
    background: var(--primary-dim);
    color: var(--primary);
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ============================================================
   FAQ LIST
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

/* ============================================================
   CTA MID SECTION
   ============================================================ */
.section-cta-mid {
    padding: 60px 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 119, 182, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, rgba(0, 40, 85, 0.5) 0%, rgba(0, 31, 63, 0.5) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-box p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* ============================================================
   VERDICT SECTION
   ============================================================ */
.verdict-box {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 30px 0;
    box-shadow: var(--shadow-cyan);
}

.verdict-score {
    text-align: center;
    padding: 20px;
    border-right: 1px solid var(--border);
}

.score-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    line-height: 1.2;
}

.score-stars {
    font-size: 1.3rem;
    margin: 10px 0;
    letter-spacing: 3px;
}

.score-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verdict-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

.verdict-text p:last-child {
    margin-bottom: 0;
}

.verdict-cta {
    text-align: center;
    margin-top: 30px;
}

/* ============================================================
   RESPONSIBLE GAMING SECTION
   ============================================================ */
.responsible-box {
    background: rgba(0, 50, 100, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.responsible-box h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.responsible-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
}

.responsible-hotline {
    font-size: 1.1rem !important;
    color: var(--primary) !important;
    margin-top: 20px !important;
}

.age-restriction {
    font-size: 0.85rem !important;
    color: rgba(144, 202, 249, 0.7) !important;
    margin-top: 16px !important;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ============================================================
   IFRAME WRAPPER
   ============================================================ */
.iframe-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-cyan), 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: glow-pulse 4s ease-in-out infinite;
    background: var(--bg-card);
}

.iframe-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

/* ============================================================
   FOOTER (updated structure)
   ============================================================ */
footer {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #000a14 100%);
    border-top: 1px solid var(--border);
    padding: 50px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 119, 182, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-brand .logo-icon,
.footer-brand .logo-text {
    display: inline-block;
    vertical-align: middle;
}

.footer-brand .logo-text {
    margin-left: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-top: 14px;
}

.footer-links h4,
.footer-legal h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color var(--transition);
    text-decoration: none;
}

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

.footer-legal p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-18 {
    display: inline-block;
    background: rgba(255, 87, 34, 0.2);
    color: #ff5722;
    padding: 4px 14px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 8px;
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 0.8rem !important;
    color: rgba(144, 202, 249, 0.5) !important;
}

/* ============================================================
   PULSE ANIMATION FOR CTA
   ============================================================ */
.cta-button.pulse,
.cta-primary.pulse,
.header-cta.pulse {
    animation: glow-pulse 1s ease-in-out;
}

/* ============================================================
   LAZY LOAD IMAGE FADE-IN
   ============================================================ */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.6s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .precision-grid,
    .network-grid,
    .compare-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .verdict-box {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .verdict-score {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 25px;
    }

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 15, 30, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }

    .header-nav.active {
        display: flex;
    }

    .lang-selector {
        justify-content: center;
    }

    .header-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: inline-flex;
    }

    .precision-grid,
    .network-grid,
    .compare-grid {
        grid-template-columns: 1fr;
    }

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

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

    .iframe-wrapper iframe {
        height: 400px;
    }

    .section-image {
        margin: 25px auto;
    }

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

    .banner-link {
        font-size: 0.8rem;
    }

    .hero-wave svg {
        height: 50px;
    }

    .wave-top svg {
        height: 50px;
    }

    .responsible-box {
        padding: 25px 20px;
    }

    .verdict-box {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .iframe-wrapper iframe {
        height: 300px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .banner-link {
        font-size: 0.75rem;
    }

    .score-number {
        font-size: 2.2rem;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  body::before,
  body::after,
  .bubble-particle,
  .hero::before,
  .hero::after {
    display: none !important;
  }

  body {
    background: #fff;
    color: #333;
  }

  .header-top-bar {
    position: relative;
    background: #f5f5f5;
    border-bottom: 1px solid #ccc;
  }

  .cta-button,
  .cta-primary {
    background: #333;
    color: #fff;
    box-shadow: none;
    animation: none;
  }

  section {
    break-inside: avoid;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .bubble-particle {
    display: none;
  }
}

/* ============================================================
   HIGH CONTRAST MODE
   ============================================================ */
@media (prefers-contrast: high) {
  :root {
    --bg-card: rgba(0, 50, 100, 0.7);
    --border: rgba(0, 212, 255, 0.5);
    --text-muted: #b8dcf0;
  }

  .feature-card,
  .char-card,
  .ocean-card,
  .step-card,
  .testimonial-card,
  .review-card,
  .faq-item {
    border-width: 2px;
  }
}
