/* ==============================================
   MEGAJACKPOTCASINO – NORDISK HAVGLØD DESIGN
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:    #0B2545;
  --ice:     #3A86FF;
  --beige:   #F1E9DA;
  --coral:   #FF6B6B;
  --bg:      #F4F0E8;
  --white:   #FFFFFF;
  --text:    #1A2E44;
  --muted:   #5A7A99;
  --glass-bg: rgba(255,255,255,0.18);
  --glass-border: rgba(255,255,255,0.35);
  --shadow-sm: 0 4px 20px rgba(11,37,69,0.10);
  --shadow-md: 0 8px 40px rgba(11,37,69,0.16);
  --shadow-lg: 0 20px 60px rgba(11,37,69,0.22);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ── */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 90px 0; }
.section-sm   { padding: 52px 0; }
.text-center  { text-align: center; }
.text-muted   { color: var(--muted); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ice);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(58,134,255,0.35);
}
.btn-primary:hover {
  background: #2a76ef;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(58,134,255,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,107,0.35);
}
.btn-coral:hover {
  background: #e85555;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,107,0.5);
}
.tag {
  display: inline-block;
  background: rgba(58,134,255,0.12);
  color: var(--ice);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,37,69,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58,134,255,0.15);
}
.nav-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 24px;
  height: 70px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-right { justify-content: flex-end; }
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.nav-logo .logo-mark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-logo .logo-mark span { color: var(--ice); }
.nav-logo .logo-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(58,134,255,0.18);
}
.nav-cta {
  background: var(--ice);
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: #2a76ef !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.mobile-menu {
  display: none;
  background: rgba(11,37,69,0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0D3060 55%, #13406B 100%);
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58,134,255,0.15);
  border: 1px solid rgba(58,134,255,0.35);
  color: #7BB8FF;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--ice);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--ice); }
.hero-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 490px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-disclaimer {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 490px;
}
.hero-disclaimer .disc-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-disclaimer p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.hero-disclaimer strong { color: var(--ice); }
.hero-access {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.wave-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}
.wave-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(58,134,255,0.3);
  animation: ripple 4s ease-out infinite;
}
.wave-circle:nth-child(1) { inset: 0; animation-delay: 0s; }
.wave-circle:nth-child(2) { inset: 12%; animation-delay: 0.8s; border-color: rgba(58,134,255,0.2); }
.wave-circle:nth-child(3) { inset: 24%; animation-delay: 1.6s; border-color: rgba(58,134,255,0.15); }
.wave-circle:nth-child(4) { inset: 36%; animation-delay: 2.4s; border-color: rgba(58,134,255,0.1); }
@keyframes ripple {
  0%   { transform: scale(0.92); opacity: 0.7; }
  50%  { transform: scale(1);    opacity: 1; }
  100% { transform: scale(0.92); opacity: 0.7; }
}
.wave-core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%,-50%);
  width: 45%;
  height: 45%;
  background: radial-gradient(circle at 40% 40%, #3A86FF, #0B2545);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  box-shadow: 0 0 60px rgba(58,134,255,0.5), 0 0 120px rgba(58,134,255,0.2);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(-50%,-50%) translateY(0); }
  50%       { transform: translate(-50%,-50%) translateY(-12px); }
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(58,134,255,0.25) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
}

/* ── GLASS DISCLAIMER STRIP ── */
.disclaimer-strip {
  background: linear-gradient(90deg, rgba(58,134,255,0.1) 0%, rgba(255,107,107,0.1) 100%);
  border-top: 1px solid rgba(58,134,255,0.15);
  border-bottom: 1px solid rgba(58,134,255,0.15);
  padding: 14px 24px;
}
.disclaimer-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}
.disclaimer-strip p {
  font-size: 0.88rem;
  color: var(--muted);
}
.disclaimer-strip strong { color: var(--navy); }

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(11,37,69,0.06);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.feature-card .f-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* ── HOW IT WORKS (horizontal icon row) ── */
.how-section { background: var(--navy); }
.how-section .section-title,
.how-section .section-sub,
.how-section .tag { color: var(--white); }
.how-section .section-sub { color: rgba(255,255,255,0.65); }
.how-section .tag { background: rgba(58,134,255,0.2); color: #7BB8FF; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(58,134,255,0.4), transparent);
}
.step-item { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(58,134,255,0.15);
  border: 2px solid rgba(58,134,255,0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.step-item:hover .step-num {
  background: rgba(58,134,255,0.3);
  border-color: var(--ice);
  transform: scale(1.1);
}
.step-item h4 {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1rem;
}
.step-item p { font-size: 0.88rem; color: rgba(255,255,255,0.6); }

/* ── GAME CARDS ── */
.games-section-bg { background: var(--beige); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  justify-items: center;
}
.game-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  width: 100%;
  max-width: 360px;
  cursor: pointer;
  position: relative;
}
.game-card:hover { transform: translateY(-8px); }

/* Blue glow */
.game-card.glow-blue:hover { box-shadow: 0 20px 60px rgba(58,134,255,0.4); }
/* Teal glow */
.game-card.glow-teal:hover { box-shadow: 0 20px 60px rgba(0,200,200,0.35); }
/* Purple shimmer */
.game-card.glow-purple:hover { box-shadow: 0 20px 60px rgba(160,80,255,0.4); }
.game-card.glow-purple::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(160,80,255,0.08) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: shimmer 3s infinite linear;
  pointer-events: none;
  border-radius: var(--radius-md);
}
@keyframes shimmer {
  0%   { background-position: 200% 200%; }
  100% { background-position: -200% -200%; }
}
.game-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.game-info {
  padding: 22px;
}
.game-info h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.game-info p { font-size: 0.88rem; color: var(--muted); margin-bottom: 18px; }
.game-info .btn { width: 100%; justify-content: center; }
.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,37,69,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  border-radius: var(--radius-md);
}
.game-card:hover .play-overlay { opacity: 1; }
.play-btn-big {
  width: 70px; height: 70px;
  background: var(--ice);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 0 40px rgba(58,134,255,0.6);
  transform: scale(0.8);
  transition: var(--transition);
}
.game-card:hover .play-btn-big { transform: scale(1); }

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), #1A4A7A);
}
.about-card-inner {
  text-align: center;
  color: var(--white);
  padding: 40px;
}
.about-card-inner .big-icon { font-size: 5rem; margin-bottom: 24px; }
.about-card-inner h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 12px; }
.about-card-inner p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.about-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-float .num { font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.about-float .label { font-size: 0.78rem; opacity: 0.85; margin-top: 4px; }
.about-content .section-title { text-align: left; }
.about-content .section-sub { text-align: left; margin: 0 0 24px; max-width: 100%; }
.about-content p { color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.stat-box {
  background: var(--beige);
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
}
.stat-box .num { font-size: 1.6rem; font-weight: 800; color: var(--navy); display: block; }
.stat-box .label { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

/* ── RESPONSIBLE GAMING STRIPE ── */
.rg-stripe {
  background: linear-gradient(90deg, #0B2545, #1A4A7A);
  padding: 52px 0;
}
.rg-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.rg-text h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 10px;
}
.rg-text p { color: rgba(255,255,255,0.7); max-width: 540px; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #F1E9DA, #E8DDD0);
  padding: 100px 0;
  text-align: center;
}
.cta-section .section-title { color: var(--navy); }
.cta-section .section-sub { color: #5A7A99; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  display: block;
}
.footer-brand .logo-mark span { color: var(--ice); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--ice); padding-left: 4px; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-disclaimer {
  background: rgba(255,107,107,0.12);
  border: 1px solid rgba(255,107,107,0.25);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,15,35,0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  display: flex;
  opacity: 0;
  animation: fadeOverlay 0.3s forwards;
}
@keyframes fadeOverlay { to { opacity: 1; } }
.modal-box {
  position: relative;
  width: 90vw;
  max-width: 900px;
  background: var(--navy);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,0,0,0.6);
  transform: translateY(20px);
  animation: slideModal 0.35s 0.1s forwards cubic-bezier(0.25,0.8,0.25,1);
}
@keyframes slideModal { to { transform: translateY(0); } }
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.modal-title { color: var(--white); font-weight: 700; font-size: 1rem; }
.modal-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--coral); }
.modal-iframe-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.modal-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.modal-note {
  padding: 10px 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  background: rgba(0,0,0,0.2);
}

/* ── COOKIE TOAST ── */
.cookie-toast {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 2px solid var(--ice);
  padding: 16px 24px;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1);
}
.cookie-toast.visible { transform: translateY(0); }
.cookie-toast p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  flex: 1;
  min-width: 200px;
}
.cookie-toast p a { color: var(--ice); text-decoration: underline; }
.cookie-accept {
  background: var(--ice);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 9px 22px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.cookie-accept:hover { background: #2a76ef; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0D3060 100%);
  padding: 130px 0 70px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── PROSE (legal pages) ── */
.prose {
  max-width: 780px;
  margin: 0 auto;
  color: var(--text);
}
.prose h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 36px 0 14px; }
.prose h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin: 24px 0 10px; }
.prose p  { margin-bottom: 16px; line-height: 1.8; color: var(--muted); font-size: 0.97rem; }
.prose ul { margin: 12px 0 20px 20px; list-style: disc; }
.prose ul li { margin-bottom: 8px; color: var(--muted); font-size: 0.97rem; }
.prose strong { color: var(--navy); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 1.6rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.contact-info p { color: var(--muted); margin-bottom: 24px; line-height: 1.75; }
.contact-email-box {
  background: var(--beige);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-email-box .email-icon { font-size: 2rem; }
.contact-email-box h4 { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-email-box a { color: var(--ice); font-size: 1rem; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 7px; }
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #D4DCEC;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.25s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--ice); box-shadow: 0 0 0 3px rgba(58,134,255,0.12); }
.form-group textarea { min-height: 130px; }
.form-success {
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius-sm);
  padding: 16px;
  color: #2E7D32;
  font-weight: 600;
  text-align: center;
  display: none;
  margin-top: 16px;
}

/* ── GAMES PAGE ── */
.games-page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #0D3060 100%);
  padding: 130px 0 80px;
  text-align: center;
}
.games-page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem,5vw,3.4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.games-page-header p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
}
.games-container {
  background: var(--beige);
  padding: 72px 0;
}
.games-glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  box-shadow: var(--shadow-md);
}

/* ── ABOUT PAGE ── */
.about-long p { color: var(--muted); line-height: 1.85; margin-bottom: 20px; font-size: 0.97rem; }
.about-long h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin: 36px 0 16px; }

/* ── RESPONSIBLE-GAMING PAGE ── */
.rg-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.rg-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--ice);
}
.rg-card .rg-icon { font-size: 2rem; margin-bottom: 14px; }
.rg-card h3 { font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.rg-card p { font-size: 0.9rem; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid  { gap: 40px; }
}
@media (max-width: 768px) {
  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; }
  .nav-wrapper { grid-template-columns: auto 1fr; }
  .nav-logo { grid-column: 2; justify-self: center; }
  .hamburger { grid-column: 1; grid-row: 1; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc, .hero-disclaimer { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .rg-inner { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
 }
@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .games-glass { padding: 30px 20px; }
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 3px;
  margin-left: 8px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 5px 11px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.03em;
}
.lang-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.lang-btn.active {
  background: var(--ice);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(58,134,255,0.4);
}
.lang-btn .flag {
  font-size: 1rem;
  line-height: 1;
}
/* Mobile lang toggle inside mobile menu */
.mobile-lang-toggle {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  margin-top: 4px;
}
.mobile-lang-toggle .lang-btn {
  flex: 1;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
}
