/* =====================================================
   Alpine Aces – Main Stylesheet
   GEO: CH | Lang: DE | Design: Premium Dark + Gold
   ===================================================== */

/* ---- Variables ---- */
:root {
  --bg-deep:     #06091a;
  --bg-dark:     #0d1330;
  --bg-card:     #111830;
  --bg-card2:    #0f1628;
  --gold:        #c9a84c;
  --gold-light:  #f0cc6a;
  --gold-dark:   #9a7530;
  --white:       #ffffff;
  --text:        #d0d8f0;
  --text-muted:  #7a8ab0;
  --accent:      #3d6cf4;
  --accent2:     #6b3df4;
  --border:      rgba(201,168,76,0.18);
  --radius:      14px;
  --radius-lg:   22px;
  --transition:  0.35s cubic-bezier(.4,0,.2,1);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.12);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.5);
  --font:        'Inter', 'Segoe UI', Arial, sans-serif;
  --font-display:'Playfair Display', Georgia, serif;
}


/* ---- Skip Navigation (Accessibility) ---- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold-light);
}

/* ---- Focus Visible (Accessibility) ---- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Performance: content-visibility for off-screen sections ---- */
.section:not(:first-of-type) {
  content-visibility: auto;
  contain-intrinsic-size: 0 500px;
}

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

/* ---- Google Fonts ---- */
/* Fonts loaded via <link preload> in HTML for better performance */

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6,9,26,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo img {
  width: 36px; height: 36px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.03em;
}
.logo-text span { color: var(--white); }

/* ---- Nav ---- */
.nav { display: flex; align-items: center; gap: 0.2rem; }
.nav a {
  padding: 0.45rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav a:hover, .nav a.active {
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
}
.nav-btn {
  margin-left: 0.8rem;
  padding: 0.5rem 1.4rem !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--bg-deep) !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35) !important;
}

/* ---- Burger ---- */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Nav Overlay ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(6,9,26,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
}
.mobile-nav .nav-btn {
  margin-top: 0.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--bg-deep) !important;
  font-weight: 700 !important;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 1.5rem 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(61,108,244,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201,168,76,0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(6,9,26,0.72) 0%, rgba(13,19,48,0.65) 50%, rgba(6,9,26,0.80) 100%),
    url('../images/hero.webp') center/cover no-repeat;
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero h1 .gold { color: var(--gold-light); }
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-deep);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
  color: var(--gold-light);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; color: var(--gold); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: linear-gradient(90deg, rgba(201,168,76,0.08), rgba(61,108,244,0.06), rgba(201,168,76,0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 2rem;
}
.stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold-light);
  font-weight: 700;
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 6rem 1.5rem;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title .gold { color: var(--gold-light); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 1.2rem auto 0;
}

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card-stack {
  position: relative;
  height: 380px;
}
.about-card-main {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a2550, #0f1628);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,9,26,0.15) 0%, rgba(6,9,26,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.about-card-main .about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}
.about-card-main:hover .about-img {
  transform: scale(1.04);
}
.about-icon-big {
  font-size: 7rem;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.3));
  position: relative;
  z-index: 1;
}
.about-badge-card {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  text-align: center;
  backdrop-filter: blur(10px);
}
.about-badge-card .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-light);
  display: block;
}
.about-badge-card .lbl { font-size: 0.75rem; color: var(--text-muted); }

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.25;
}
.about-text h2 .gold { color: var(--gold-light); }
.about-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1rem; }
.about-features {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 1rem;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-feature .icon { font-size: 1.2rem; flex-shrink: 0; }
.about-feature .ft-text { font-size: 0.9rem; font-weight: 500; color: var(--text); }

/* ===================== WHAT WE DO ===================== */
.services-bg { background: var(--bg-dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,168,76,0.3);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(61,108,244,0.12));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  position: relative;
  box-shadow: 0 4px 16px rgba(201,168,76,0.08);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover .service-icon {
  box-shadow: 0 6px 24px rgba(201,168,76,0.2);
  transform: scale(1.08);
}
.service-icon svg {
  width: 28px; height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }

/* ===================== GAMES ===================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}
.game-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: block;
}
.game-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.35);
}
.game-thumb {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}
.game-card:hover .game-thumb { transform: scale(1.05); }
.game-thumb-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #1a2550 0%, #0f1628 100%);
  position: relative;
  overflow: hidden;
}
.game-thumb-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(201,168,76,0.12), transparent 70%);
}
.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,9,26,0.95) 0%, rgba(6,9,26,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 1;
}
.game-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(0.8);
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: 0 0 30px rgba(201,168,76,0.5);
}
.game-play-btn svg { width: 24px; color: var(--bg-deep); margin-left: 3px; }
.game-card:hover .game-play-btn {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}
.game-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.game-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.game-desc { font-size: 0.82rem; color: var(--text-muted); }
.game-meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.6rem;
}
.game-meta span {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}

/* Games showcase - games grid */
.games-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-bg { background: var(--bg-dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.8rem;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg-deep);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-top: 0.3rem;
}
.star { color: var(--gold); font-size: 0.85rem; }

/* ===================== CTA BANNER ===================== */
.cta-section {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(61,108,244,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.06), transparent);
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.cta-section h2 .gold { color: var(--gold-light); }
.cta-section p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  position: relative;
}
.cta-section .btn-primary { position: relative; }

/* ===================== FOOTER ===================== */
.footer {
  background: #070a1c;
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem 0;
}
.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.2rem;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
}
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.footer-social a svg {
  width: 18px; height: 18px;
  fill: currentColor;
  display: block;
}
.footer-social a:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold-light);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}
.footer-contact-item .fc-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; }
.footer-contact-item .fc-text { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }
.footer-contact-item .fc-text strong { color: var(--text); display: block; margin-bottom: 0.1rem; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-legal {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold-light); }
.footer-disclaimer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem;
  color: rgba(122,138,176,0.7);
  line-height: 1.7;
  text-align: center;
}

/* ===================== INNER PAGE HERO ===================== */
.page-hero {
  padding: 140px 1.5rem 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(61,108,244,0.1), transparent 70%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 0.8rem;
}
.page-hero h1 .gold { color: var(--gold-light); }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ===================== BREADCRUMB ===================== */
.breadcrumb {
  max-width: 1100px;
  margin: 0 auto 0;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: var(--text-muted); opacity: 0.4; }
.breadcrumb-current { color: var(--text); }

/* ===================== TEAM / ABOUT PAGE ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(201,168,76,0.25);
}
.team-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
}
.team-card h3 { font-size: 1rem; color: var(--white); font-weight: 600; margin-bottom: 0.3rem; }
.team-card .role { font-size: 0.82rem; color: var(--gold); margin-bottom: 0.7rem; }
.team-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color var(--transition);
}
.contact-info-card:hover { border-color: rgba(201,168,76,0.3); }
.ci-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.ci-text h4 { font-size: 0.88rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.ci-text p { font-size: 0.84rem; color: var(--text-muted); }
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  resize: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.form-group textarea { min-height: 120px; }
.form-group select option { background: var(--bg-dark); }

/* ===================== LEGAL PAGES ===================== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem 5rem;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin: 2.5rem 0 0.8rem;
}
.legal-content h3 {
  font-size: 1rem;
  color: var(--gold-light);
  margin: 1.5rem 0 0.5rem;
  font-weight: 600;
}
.legal-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 0.3rem;
}
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-date {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ===================== SCROLL ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===================== PARTICLES ===================== */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ===================== GAME PAGE ===================== */
.game-page-wrapper {
  padding-top: 72px;
  min-height: 100vh;
  background: var(--bg-deep);
}
.game-iframe-container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}
.game-iframe-container iframe {
  width: 100%;
  height: 600px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #000;
}
.game-info-bar {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.game-info-bar h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
}
.game-info-bar h1 .gold { color: var(--gold-light); }

/* ===================== UTILITIES ===================== */
.text-gold { color: var(--gold-light); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.gap-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-green { background: rgba(52,199,89,0.12); color: #34c759; border: 1px solid rgba(52,199,89,0.25); }
.badge-gold  { background: rgba(201,168,76,0.12);  color: var(--gold); border: 1px solid var(--border); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .nav { display: none; }
  .burger { display: flex; }

  .hero h1 { font-size: clamp(2rem, 7vw, 3.5rem); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-card-stack { height: 260px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .games-full-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 700px) {
  .section { padding: 4rem 1.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .games-full-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .game-iframe-container iframe { height: 420px; }
}

@media (max-width: 480px) {
  .header { padding: 0 1rem; }
  .logo-text { font-size: 1.1rem; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .hero { padding: 110px 1rem 70px; }
  .contact-form { padding: 1.5rem; }
  .game-iframe-container iframe { height: 340px; }
}

@media (max-width: 360px) {
  .logo-text { font-size: 1rem; }
  .hero h1 { font-size: 1.8rem; }
  .stats-bar-inner { grid-template-columns: 1fr; }
  .game-iframe-container iframe { height: 300px; }
  .footer-social { flex-wrap: wrap; }
}
