/* ===================================================
   PLAY PORT — Sri Lanka's Premier Gaming Platform
   Full Responsive Stylesheet
   =================================================== */

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

/* ── CSS Variables ── */
:root {
  --blue-primary: #2B7BF5;
  --blue-dark: #1A5DC8;
  --blue-deeper: #0E3A7D;
  --blue-light: #E8F1FE;
  --orange-primary: #FF8C00;
  --orange-bright: #FFA733;
  --orange-dark: #E07800;
  --gold: #FFD700;
  --green-success: #28C76F;
  --red-accent: #EA5455;
  --purple-accent: #7367F0;
  --bg-body: #F0F4FA;
  --bg-card: #FFFFFF;
  --text-dark: #1E293B;
  --text-mid: #475569;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.15);
  --shadow-glow: 0 0 30px rgba(43,123,245,.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Fredoka One', cursive;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-width: 1280px;
}

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

/* ── Utility ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.section-label {
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 8px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-bright));
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,140,0,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,140,0,.45);
}
.btn-outline {
  border: 2px solid var(--blue-primary);
  color: var(--blue-primary);
  background: transparent;
}
.btn-outline:hover {
  background: var(--blue-primary);
  color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--blue-primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ===================================================
   HEADER / NAVIGATION
   =================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue-primary), var(--purple-accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(43,123,245,.3);
}
.logo-text span:first-child { color: var(--blue-primary); }
.logo-text span:last-child { color: var(--orange-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-weight: 500;
  font-size: .93rem;
  color: var(--text-mid);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--blue-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { padding: 10px 24px; font-size: .88rem; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.menu-toggle span {
  width: 24px; height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.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
   =================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0E3A7D 0%, #1A5DC8 40%, #2B7BF5 100%);
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,140,0,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(115,103,240,.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,215,0,.05) 0%, transparent 60%);
}
/* Floating shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  animation: floatShape 8s ease-in-out infinite;
}
.hero-shape:nth-child(1) {
  width: 300px; height: 300px;
  background: var(--orange-primary);
  top: -50px; right: -80px;
  animation-delay: 0s;
}
.hero-shape:nth-child(2) {
  width: 200px; height: 200px;
  background: var(--gold);
  bottom: 10%; left: 5%;
  animation-delay: 2s;
}
.hero-shape:nth-child(3) {
  width: 150px; height: 150px;
  background: var(--purple-accent);
  top: 30%; right: 15%;
  animation-delay: 4s;
}
.hero-shape:nth-child(4) {
  width: 100px; height: 100px;
  background: #fff;
  top: 60%; left: 20%;
  animation-delay: 1s;
}
@keyframes floatShape {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { color: #fff; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--green-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .4; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  color: var(--orange-bright);
  position: relative;
}
.hero p {
  font-size: 1.1rem;
  opacity: .85;
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(180deg, #1a1a2e, #16213e);
  border-radius: 36px;
  border: 3px solid rgba(255,255,255,.15);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(43,123,245,.2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  width: 120px; height: 24px;
  background: #000;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.phone-screen {
  flex: 1;
  background: linear-gradient(180deg, var(--blue-primary), var(--blue-deeper));
  margin: 4px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center;
  color: #fff;
  gap: 16px;
}
.phone-screen .phone-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.phone-screen .phone-logo span:first-child { color: #fff; }
.phone-screen .phone-logo span:last-child { color: var(--orange-bright); }
.phone-game-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
}
.phone-game-card {
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 14px 8px;
  backdrop-filter: blur(8px);
  font-size: .7rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.phone-game-card .game-emoji { font-size: 1.6rem; }
.phone-bottom-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 8px 0;
  margin-top: auto;
}
.phone-bottom-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
}
.phone-bottom-dot.active { background: var(--orange-bright); }

/* Floating stat cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 4s ease-in-out infinite;
  z-index: 3;
}
.float-card .fc-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.float-card .fc-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dark);
}
.float-card .fc-label { font-size: .75rem; color: var(--text-light); }
.float-card-1 {
  top: 15%; left: -20px;
  animation-delay: 0s;
}
.float-card-1 .fc-icon { background: #E8F8EF; color: var(--green-success); }
.float-card-2 {
  bottom: 20%; right: -30px;
  animation-delay: 2s;
}
.float-card-2 .fc-icon { background: #FFF3E0; color: var(--orange-primary); }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===================================================
   STATS BAR
   =================================================== */
.stats-bar {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  padding: 36px 48px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--blue-primary);
  margin-bottom: 4px;
}
.stat-label { font-size: .88rem; color: var(--text-light); font-weight: 500; }

/* ===================================================
   GAMES SECTION
   =================================================== */
.games-section { background: var(--bg-body); }
.games-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  background: #fff;
  color: var(--text-mid);
  border: 2px solid var(--border);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--blue-primary);
  color: #fff;
  border-color: var(--blue-primary);
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.game-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.game-card-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.game-card-img .game-gradient {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-card-img .game-emoji-large {
  font-size: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.2));
}
.game-badge {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-hot { background: var(--red-accent); color: #fff; }
.badge-new { background: var(--green-success); color: #fff; }
.badge-popular { background: var(--orange-primary); color: #fff; }
.game-card-body { padding: 20px; }
.game-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.game-card-body p {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 14px;
}
.game-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.game-players {
  font-size: .78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.play-btn {
  padding: 8px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
}
.play-btn:hover { box-shadow: var(--shadow-glow); }

/* ===================================================
   HOW IT WORKS
   =================================================== */
.how-section { background: #fff; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  counter-reset: step;
}
.step-card {
  text-align: center;
  position: relative;
  padding: 32px 24px;
}
.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(43,123,245,.3);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.step-card p {
  font-size: .9rem;
  color: var(--text-mid);
}

/* ===================================================
   FEATURES
   =================================================== */
.features-section {
  background: linear-gradient(160deg, #0E3A7D, #1A5DC8, #2B7BF5);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 100%, rgba(255,140,0,.1) 0%, transparent 50%),
    radial-gradient(circle at 100% 0, rgba(115,103,240,.1) 0%, transparent 50%);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  position: relative;
  z-index: 2;
}
.feature-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-4px);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.fi-orange { background: rgba(255,140,0,.2); }
.fi-green { background: rgba(40,199,111,.2); }
.fi-purple { background: rgba(115,103,240,.2); }
.fi-gold { background: rgba(255,215,0,.2); }
.fi-blue { background: rgba(43,123,245,.2); }
.fi-red { background: rgba(234,84,85,.2); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: .9rem;
  opacity: .75;
  line-height: 1.7;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials-section { background: var(--bg-body); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.testimonial-text {
  font-size: .95rem;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.8;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: #fff;
}
.testimonial-name { font-weight: 600; font-size: .9rem; }
.testimonial-role { font-size: .78rem; color: var(--text-light); }

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,0,0,.05) 0%, transparent 50%);
}
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: #0C2D5A;
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-text span:first-child { color: #fff; }
.footer-brand p {
  font-size: .88rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--blue-primary); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: .88rem;
  opacity: .7;
}
.footer-col ul a:hover { opacity: 1; color: var(--orange-bright); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--orange-bright); }

/* ===================================================
   LEGAL PAGES (Terms, Privacy)
   =================================================== */
.legal-hero {
  background: linear-gradient(160deg, #0E3A7D, #1A5DC8, #2B7BF5);
  color: #fff;
  padding: 140px 0 60px;
  text-align: center;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.legal-hero p { opacity: .8; font-size: 1.05rem; }

.legal-content {
  background: #fff;
  max-width: 860px;
  margin: -40px auto 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px;
  position: relative;
  z-index: 10;
}
.legal-meta {
  background: var(--blue-light);
  border-left: 4px solid var(--blue-primary);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 36px;
}
.legal-meta p { margin: 6px 0; font-size: .92rem; color: var(--text-mid); }
.legal-meta strong { color: var(--blue-primary); }

.legal-section {
  margin-bottom: 36px;
}
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--blue-deeper);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.legal-section p {
  font-size: .93rem;
  color: var(--text-mid);
  margin-bottom: 12px;
  line-height: 1.8;
  text-align: justify;
}
.legal-section ul {
  margin-left: 24px;
  margin-bottom: 14px;
  list-style: disc;
}
.legal-section li {
  font-size: .93rem;
  color: var(--text-mid);
  margin-bottom: 8px;
  line-height: 1.7;
}
.legal-warning {
  background: #FFF8E1;
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}
.legal-warning strong { color: #7B6B00; }
.legal-info {
  background: #E3F2FD;
  border-left: 4px solid var(--blue-primary);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin: 16px 0;
}
.legal-info strong { color: var(--blue-dark); }
.legal-footer {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid var(--border);
  color: var(--text-light);
  font-size: .88rem;
}

/* ===================================================
   RESPONSIBLE GAMING BANNER
   =================================================== */
.responsible-banner {
  background: var(--green-success);
  color: #fff;
  text-align: center;
  padding: 12px 24px;
  font-size: .85rem;
  font-weight: 500;
}
.responsible-banner a { color: #fff; text-decoration: underline; font-weight: 700; }

/* ===================================================
   SCROLL TO TOP
   =================================================== */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* ===================================================
   ANIMATIONS
   =================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   MOBILE NAV OVERLAY
   =================================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-inner {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #fff;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 30px rgba(0,0,0,.15);
}
.mobile-nav.open .mobile-nav-inner { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  font-size: 1.8rem;
  color: var(--text-dark);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-nav-links a {
  padding: 14px 16px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-nav-links a:hover { background: var(--blue-light); color: var(--blue-primary); }
.mobile-nav-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-actions .btn { justify-content: center; }

/* ===================================================
   RESPONSIVE BREAKPOINTS
   =================================================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }
  .nav-links { display: none; }
  .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }
  .stats-bar { margin-top: -30px; padding: 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .legal-content { padding: 28px 20px; margin: -30px 16px 40px; }
  .legal-hero { padding: 120px 0 50px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .games-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .games-tabs { gap: 4px; }
  .tab-btn { padding: 8px 16px; font-size: .82rem; }
}
