@import url('https://fonts.googleapis.com/css2?family=Teko:wght@600;700&display=swap');
/* ==== GAMEGOU WEBSITE STYLES ==== */
:root {
  --teal: #006978;
  --teal-light: #0a8fa0;
  --teal-dark: #004d59;
  --amber: #e17800;
  --amber-light: #f08c10;
  --bg: #080d0f;
  --bg-surface: #0f1a1e;
  --bg-card: #132028;
  --bg-card-hover: #1a2a32;
  --text-primary: #ffffff;
  --text-secondary: #9ab0b5;
  --text-muted: #5a7a82;
  --border: rgba(0, 105, 120, 0.2);
  --border-hover: rgba(0, 105, 120, 0.5);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--teal-dark); border-radius: 3px; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8, 13, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 13, 15, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 30px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--amber) !important;
  color: #000 !important;
  padding: 8px 20px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  transition: var(--transition) !important;
}

.nav-cta:hover { background: var(--amber-light) !important; }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== MOBILE NAV ===== */
.nav-mobile {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(8, 13, 15, 0.98);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-bottom: 1px solid var(--border);
  z-index: 999;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: var(--transition);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover { color: var(--amber); }

/* ===== PAGE WRAPPER ===== */
.page { display: none; padding-top: 70px; min-height: 100vh; }
.page.active { display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(0,105,120,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 30% 80%, rgba(225,120,0,0.08) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8,13,15,0.2) 0%, rgba(8,13,15,0) 30%, rgba(8,13,15,0.35) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,105,120,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,105,120,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--amber);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--teal-light); text-shadow: 0 0 30px rgba(10,143,160,0.25); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: #000;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-hover);
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--teal-light); color: var(--teal-light); transform: translateY(-2px); }

.contact-plain,
.footer-contact-note {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.contact-plain span,
.footer-contact-note span {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-stats {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-item {
  min-width: 120px;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, rgba(19,32,40,0.85) 0%, rgba(12,22,28,0.92) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 16px 36px rgba(0,0,0,0.22);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}

.hero-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-carousel-main {
  position: relative;
  min-height: 560px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,32,40,0.96) 0%, rgba(8,13,15,0.96) 100%);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(10,143,160,0.08);
}

.hero-slide {
  position: absolute;
  cursor: pointer;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.02);
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 5.5s ease;
}

.hero-slide.active img {
  transform: scale(1.06);
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,13,15,0.08) 0%, rgba(8,13,15,0.12) 20%, rgba(8,13,15,0.72) 100%),
    linear-gradient(90deg, rgba(8,13,15,0.80) 0%, rgba(8,13,15,0.28) 55%, rgba(8,13,15,0.05) 100%);
}

.hero-slide-content {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  padding: 1.4rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(8,13,15,0.38) 0%, rgba(8,13,15,0.78) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.hero-slide-copy {
  max-width: 420px;
}

.hero-slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.hero-slide-kicker::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--amber);
}

.hero-slide-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 0.6rem;
}

.hero-slide-tagline {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 34ch;
}

.hero-slide-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.hero-slide-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-slide-chip-accent {
  background: rgba(225,120,0,0.18);
  color: #ffd39f;
  border-color: rgba(225,120,0,0.28);
}

.hero-slide-action {
  white-space: nowrap;
}

.hero-carousel-nav {
  position: absolute;
  inset: auto 1rem 1rem auto;
  z-index: 3;
  display: flex;
  gap: 0.6rem;
}

.hero-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(8,13,15,0.75);
  color: var(--text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.hero-carousel-btn:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
  transform: translateY(-2px);
}

.hero-carousel-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-carousel-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.hero-carousel-progress {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.hero-carousel-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber) 0%, var(--teal-light) 100%);
  box-shadow: 0 0 16px rgba(10,143,160,0.35);
}

.hero-carousel-count {
  min-width: 58px;
  text-align: right;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.hero-carousel-count-sep {
  color: var(--text-muted);
  margin: 0 0.15rem;
}

.hero-carousel-dots {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.hero-carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: var(--transition);
}

.hero-carousel-dot.active {
  background: var(--amber);
  transform: scale(1.15);
}

.hero-carousel-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-thumb {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(19,32,40,0.8) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.hero-thumb:hover,
.hero-thumb.active {
  border-color: rgba(10,143,160,0.55);
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.30), 0 0 0 1px rgba(10,143,160,0.14);
}

.hero-thumb img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.hero-thumb-info {
  padding: 0.8rem 0.9rem 0.9rem;
}

.hero-thumb-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}

.hero-thumb-tagline {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ===== SECTION STYLES ===== */
.section { padding: 6rem 2rem; }
.section-sm { padding: 4rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--amber);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.section-title span { color: var(--teal-light); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  border-color: var(--teal-light);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,105,120,0.3);
}

.game-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.game-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.game-card:hover .game-card-img img { transform: scale(1.05); }

.game-card-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--amber);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.game-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.game-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.game-card-genre {
  font-size: 0.8rem;
  color: var(--teal-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.game-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.game-card-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.game-card-downloads {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.game-card-downloads strong { color: var(--text-secondary); }

.game-card-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.game-card-cta::after {
  content: '›';
  font-size: 1.1em;
  line-height: 1;
  margin-left: 0.45rem;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.game-card:hover .game-card-cta::after { transform: translateX(4px); }

/* ===== GAME PAGE ===== */
.game-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.game-hero-bg {
  position: absolute;
  inset: 0;
}
.game-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.game-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(8,13,15,0.6) 50%, rgba(8,13,15,0.3) 100%);
}

.game-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
}

.game-hero-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  transition: var(--transition);
  cursor: pointer;
}
.game-hero-back:hover { color: var(--text-primary); }

.game-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1rem;
}

.game-hero-tagline {
  font-size: 1.1rem;
  color: var(--teal-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.game-hero-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.game-badge {
  background: rgba(0,105,120,0.2);
  border: 1px solid var(--border-hover);
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 4px;
}

.game-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--amber);
  font-weight: 600;
}

.game-downloads-badge {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===== STORE BUTTONS ===== */
.store-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.store-btn-official {
  display: inline-block;
  transition: var(--transition);
  border-radius: 6px;
  overflow: hidden;
}

.store-btn-official:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* ===== SCREENSHOT GALLERY ===== */
.gallery-section {
  background: var(--bg-surface);
  padding: 4rem 0;
}

.gallery-track-wrapper {
  overflow: hidden;
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 2rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-item {
  flex-shrink: 0;
  width: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-item:hover { border-color: var(--teal-light); }
.gallery-item img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.gallery-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-btn:hover { background: var(--teal-dark); border-color: var(--teal-light); }

/* ===== GAME DESCRIPTION ===== */
.game-description {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.game-desc-text h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.game-desc-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.game-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.game-feature {
  display: flex;
  gap: 12px;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.game-feature:hover { border-color: var(--border-hover); }

.game-feature-icon {
  width: 36px; height: 36px;
  background: rgba(0,105,120,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--teal-light);
}

.game-feature-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--text-primary);
}
.game-feature-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.game-sidebar {
  position: sticky;
  top: 90px;
}

.game-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.game-info-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.game-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.game-info-row:last-child { border-bottom: none; }
.game-info-row span:first-child { color: var(--text-muted); }
.game-info-row span:last-child { color: var(--text-primary); font-weight: 500; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  padding: 6rem 2rem 4rem;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(0,105,120,0.1) 0%, transparent 60%);
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }

.value-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--teal-light);
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== NEWS PAGE ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover { border-color: var(--teal-light); transform: translateY(-4px); }

.news-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }

.news-card-body { padding: 1.5rem; }

.news-card-tag {
  display: inline-block;
  background: rgba(0,105,120,0.15);
  border: 1px solid var(--border-hover);
  color: var(--teal-light);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.news-card-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}
.news-card:hover .news-card-title { color: var(--teal-light); }

.news-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}



/* ===== HOME PREMIUM SECTIONS ===== */
.section-tight { padding-top: 2rem; padding-bottom: 2rem; }

.home-showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.home-showcase-copy {
  padding-right: 1rem;
}

.home-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-spotlight-card {
  position: relative;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--bg-card);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}

.home-spotlight-image,
.home-spotlight-image img {
  width: 100%;
  height: 100%;
}
.home-spotlight-image img { object-fit: cover; }

.home-spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,13,15,0.1) 0%, rgba(8,13,15,0.85) 100%);
}

.home-spotlight-overlay {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  padding: 1.4rem 1.5rem;
  border-radius: 18px;
  background: rgba(8,13,15,0.62);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.home-spotlight-kicker,
.contact-response-label,
.footer-topband-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

.home-spotlight-overlay h3,
.contact-response-card h4,
.footer-topband h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.home-spotlight-overlay p,
.contact-response-card p,
.footer-topband p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.home-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.home-highlight-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(19,32,40,0.88) 0%, rgba(10,17,21,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), 0 18px 36px rgba(0,0,0,0.18);
}

.home-highlight-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 1rem;
}

.home-highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

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

.premium-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.2rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top left, rgba(10,143,160,0.12) 0%, transparent 35%),
    radial-gradient(circle at bottom right, rgba(225,120,0,0.10) 0%, transparent 30%),
    linear-gradient(180deg, rgba(15,26,30,0.98) 0%, rgba(8,13,15,0.98) 100%);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.premium-cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  max-width: 900px;
}

.legal-intro {
  margin-bottom: 2rem;
}

.legal-card {
  background: linear-gradient(180deg, rgba(19,32,40,0.88) 0%, rgba(10,17,21,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.legal-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.legal-card a { color: var(--teal-light); }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, rgba(19,32,40,0.9) 0%, rgba(11,18,22,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin-bottom: 1rem;
  transition: var(--transition);
  box-shadow: 0 18px 36px rgba(0,0,0,0.18);
}
.contact-item:hover { border-color: var(--border-hover); }

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(0,105,120,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-light);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-item-text a, .contact-item-text p {
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition);
}
.contact-item-text a:hover { color: var(--teal-light); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem; background: linear-gradient(180deg, rgba(19,32,40,0.9) 0%, rgba(10,17,21,0.98) 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,0.22); }

.contact-form-note { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; margin-top: 0.9rem; }
.contact-form-note a { color: var(--teal-light); }

.contact-response-card { margin-top: 1.5rem; padding: 1.5rem; background: linear-gradient(180deg, rgba(19,32,40,0.9) 0%, rgba(10,17,21,0.98) 100%); border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,0.18); }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-input, .form-textarea, .form-select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: var(--transition);
  width: 100%;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--teal-light);
  background: var(--bg-card-hover);
}

.form-textarea { min-height: 120px; resize: vertical; }
.form-select { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit {
  background: var(--amber);
  color: #000;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  width: 100%;
}
.form-submit:hover { background: var(--amber-light); transform: translateY(-2px); }

/* ===== PARTNERS PAGE ===== */
.partners-intro {
  max-width: 700px;
  margin-bottom: 4rem;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.partner-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.partner-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }

.partner-icon {
  font-size: 2rem;
  color: var(--teal-light);
  margin-bottom: 1rem;
}

.partner-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

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

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin: 3rem 0;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
}
.metric-card:hover { border-color: var(--border-hover); }

.metric-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 6px;
}

.metric-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, rgba(15,26,30,0.98) 0%, rgba(8,13,15,1) 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 2rem 2rem;
}

.footer-topband {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  padding: 1.5rem 1.75rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(19,32,40,0.88) 0%, rgba(10,17,21,0.98) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 2rem 0 0.5rem;
}

.footer-brand img {
  height: 28px;
  width: auto;
  max-width: 195px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px; height: 40px;
  background: linear-gradient(180deg, rgba(19,32,40,0.95) 0%, rgba(10,17,21,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}
.social-link:hover { background: var(--teal-dark); border-color: var(--teal-light); color: var(--text-primary); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--text-secondary); }

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

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

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--teal-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { max-width: 680px; }
  .home-showcase { grid-template-columns: 1fr; }
  .home-highlight-grid { grid-template-columns: 1fr; }
  .premium-cta { flex-direction: column; align-items: start; }
  .footer-topband { flex-direction: column; align-items: start; }
  .about-content { grid-template-columns: 1fr; gap: 3rem; }
  .game-description { grid-template-columns: 1fr; }
  .game-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero h1 { font-size: 3rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .games-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.5rem; }
  .premium-cta-actions { justify-content: flex-start; }
  .gallery-item { width: 85vw; }
  .hero-content { padding: 3rem 1.5rem; }
  .hero-carousel-main { min-height: 460px; }
  .hero-slide-content { flex-direction: column; align-items: start; padding-right: 4.5rem; left: 1rem; right: 1rem; bottom: 1rem; }
  .hero-carousel-meta { grid-template-columns: 1fr; }
  .hero-carousel-thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .nav-logo img { height: 30px; max-width: 185px; }
  .hero-carousel-main { min-height: 420px; }
  .hero-slide-content { padding: 1rem; }
  .hero-slide-title { font-size: 1.75rem; }
  .hero-slide-content { flex-direction: column; align-items: start; }
  .hero-carousel-bottom { grid-template-columns: 1fr; }
  .hero-carousel-thumbs { grid-template-columns: 1fr; }
  .home-pill-row { gap: 0.5rem; }
  .premium-cta { padding: 1.5rem; }
  .legal-card { padding: 1.5rem; }
  .store-buttons { flex-direction: column; }
  .store-btn { width: 100%; }
  .metrics-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}


/* SEO static page support */
a.game-card {
  color: inherit;
  text-decoration: none;
}

.static-main {
  padding-top: 66px;
}

.static-copy-block {
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 820px;
  margin-top: 1.5rem;
}

.static-copy-block p + p {
  margin-top: 1rem;
}

.static-page-intro {
  max-width: 780px;
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs a:hover {
  color: var(--teal-light);
}

.static-related-section {
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}


/* ===== SHARP SPORTS SITE REDESIGN ===== */
:root {
  --bg: #050809;
  --bg-surface: #0b1215;
  --bg-card: #0f171b;
  --bg-card-hover: #131f25;
  --text-primary: #ffffff;
  --text-secondary: #b2bdc2;
  --text-muted: #75868d;
  --border: rgba(255, 255, 255, 0.10);
  --border-hover: rgba(255, 255, 255, 0.24);
  --amber: #f18700;
  --amber-light: #ff9d24;
  --teal: #007887;
  --teal-light: #00a7ba;
  --radius: 2px;
  --radius-lg: 2px;
}

body {
  background:
    linear-gradient(180deg, #050809 0%, #070d10 48%, #050809 100%);
}

.navbar {
  height: 74px;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
  background: rgba(2, 5, 6, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar.scrolled { background: rgba(2,5,6,0.97); }
.nav-logo img { height: 30px; max-width: 230px; }
.nav-links { gap: clamp(1.1rem, 2.2vw, 2.2rem); }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.nav-links a::after { height: 3px; background: var(--amber); }
.nav-cta {
  border-radius: 0 !important;
  padding: 10px 18px !important;
  color: #050809 !important;
  background: var(--amber) !important;
}

.page { padding-top: 74px; }
.static-main { padding-top: 74px; }

.sharp-hero {
  min-height: calc(100vh - 74px);
  background: #050809;
  isolation: isolate;
}
.sharp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5,8,9,0.96) 0%, rgba(5,8,9,0.78) 44%, rgba(5,8,9,0.34) 72%, rgba(5,8,9,0.84) 100%),
    linear-gradient(180deg, rgba(5,8,9,0.10) 0%, rgba(5,8,9,0.88) 100%),
    url('../images/games/soccer-strike/soccer-strike-gamegou-mobile-soccer-game-key-art.webp') center right / cover no-repeat;
  opacity: 0.98;
}
.sharp-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  z-index: 0;
  background: linear-gradient(180deg, transparent 0%, #050809 100%);
}
.hero-bg {
  background:
    radial-gradient(circle at 16% 26%, rgba(241,135,0,0.20) 0%, transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(0,167,186,0.16) 0%, transparent 32%);
  z-index: 0;
}
.hero-grid { display: none; }
.hero-angle {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, transparent 0 57%, rgba(241,135,0,0.82) 57.1% 57.75%, transparent 57.85%),
    linear-gradient(118deg, transparent 0 63%, rgba(255,255,255,0.16) 63.1% 63.35%, transparent 63.45%);
  opacity: 0.78;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  width: 100%;
  min-height: calc(100vh - 74px);
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1.25rem, 4vw, 4rem) 4.5rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
}
.hero-eyebrow,
.section-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--amber);
}
.hero h1 {
  font-size: clamp(4.1rem, 9.4vw, 9.2rem);
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin-bottom: 1.65rem;
  max-width: 760px;
  text-shadow: 0 12px 50px rgba(0,0,0,0.48);
}
.hero h1 span {
  color: #ffffff;
  text-shadow: none;
}
.hero-desc {
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  max-width: 600px;
  color: #d6dee1;
  line-height: 1.65;
  margin-bottom: 2rem;
}
.hero-actions { gap: 0.75rem; }
.btn-primary,
.btn-secondary {
  border-radius: 0;
  padding: 14px 24px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  box-shadow: none;
}
.btn-primary:hover,
.btn-secondary:hover { transform: translateY(-1px); }
.btn-secondary {
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.03);
}
.btn-secondary:hover {
  border-color: var(--amber);
  color: #fff;
  background: rgba(241,135,0,0.12);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 640px);
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding: 0;
}
.stat-item {
  min-width: 0;
  padding: 1.15rem 1.05rem;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.16);
  border-radius: 0;
  background: rgba(255,255,255,0.02);
  box-shadow: none;
}
.stat-item:last-child { border-right: 0; }
.stat-number {
  color: #ffffff;
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  letter-spacing: -0.03em;
}
.stat-label {
  color: var(--amber);
  font-weight: 800;
  letter-spacing: 0.14em;
}
.hero-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr;
  gap: 0.9rem;
  width: 100%;
  transform: translateY(1rem);
}
.hero-feature {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background: #0d1417;
  border: 1px solid rgba(255,255,255,0.12);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 26px), calc(100% - 26px) 100%, 0 100%);
  box-shadow: 0 26px 60px rgba(0,0,0,0.36);
}
.hero-feature-large { min-height: 585px; }
.hero-feature-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.9rem;
}
.hero-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.55s ease, filter 0.55s ease;
}
.hero-feature:hover img { transform: scale(1.07); filter: saturate(1.12); }
.hero-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.16) 40%, rgba(0,0,0,0.84) 100%);
}
.hero-feature-copy {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
}
.hero-feature-kicker {
  display: inline-block;
  color: var(--amber);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.hero-feature h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.hero-feature-small h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
.hero-feature p {
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.78);
  max-width: 340px;
}

.games-under-hero {
  padding-top: clamp(4rem, 7vw, 6.5rem);
  background: #050809;
}
.games-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.62fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.section-title {
  letter-spacing: -0.035em;
}
.section-title span { color: var(--amber); }

.games-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.game-card {
  border-radius: 0;
  background: #0b1114;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
}
.game-card:hover {
  border-color: rgba(241,135,0,0.75);
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.36);
}
.game-card-img { aspect-ratio: 16/9; }
.game-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5,8,9,0.62) 100%);
}
.game-card-badge {
  top: 0;
  right: 0;
  border-radius: 0;
  background: var(--amber);
  color: #050809;
  font-size: 0.68rem;
  padding: 7px 10px;
  z-index: 2;
}
.game-card-body { padding: 1.15rem 1.2rem 1.25rem; }
.game-card-genre {
  color: var(--amber);
  font-weight: 800;
  font-size: 0.70rem;
  letter-spacing: 0.16em;
}
.game-card-title {
  font-size: 1.75rem;
  line-height: 0.94;
  letter-spacing: -0.01em;
}
.game-card-desc {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.55;
  -webkit-line-clamp: 2;
}
.game-card-meta {
  justify-content: space-between;
  border-top-color: rgba(255,255,255,0.10);
}
.game-card-platform {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.game-card-arrow {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--amber);
  font-weight: 800;
}
.game-card:hover .game-card-arrow { background: var(--amber); color: #050809; }
.game-card-cta { display: none; }

.footer-col span {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 1120px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-showcase { max-width: 920px; transform: none; }
  .hero-feature-large { min-height: 480px; }
  .games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .navbar { height: 68px; }
  .page, .static-main { padding-top: 68px; }
  .sharp-hero { min-height: auto; }
  .sharp-hero::before { opacity: 0.72; }
  .hero-content { min-height: auto; padding-top: 4.5rem; }
  .hero h1 { font-size: clamp(3.6rem, 16vw, 5.4rem); }
  .hero-desc { max-width: 92%; }
  .hero-stats { grid-template-columns: 1fr; width: 100%; }
  .stat-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
  .stat-item:last-child { border-bottom: 0; }
  .hero-showcase { grid-template-columns: 1fr; }
  .hero-feature-large, .hero-feature { min-height: 320px; }
  .hero-feature-stack { grid-template-rows: none; grid-template-columns: 1fr; }
  .games-section-head { grid-template-columns: 1fr; align-items: start; }
  .games-grid { grid-template-columns: 1fr; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}


/* ===== CARD REDESIGN: DISTINCT GAME PORTFOLIO ===== */
.home-games-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.home-games-grid .game-card:nth-child(1),
.home-games-grid .game-card:nth-child(2),
.home-games-grid .game-card:nth-child(6),
.home-games-grid .game-card:nth-child(7) {
  grid-column: span 6;
}

.home-games-grid .game-card:nth-child(3),
.home-games-grid .game-card:nth-child(4),
.home-games-grid .game-card:nth-child(5) {
  grid-column: span 4;
}

.game-card {
  position: relative;
  border-radius: 18px;
  clip-path: none;
  background: linear-gradient(180deg, rgba(13,23,27,0.98), rgba(6,12,14,0.98));
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), rgba(0,161,176,0.85));
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 0.32s ease;
  z-index: 3;
}

.game-card:hover::before {
  transform: scaleX(1);
}

.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 24px 60px rgba(0,0,0,0.38);
}

.game-card-img {
  aspect-ratio: 16/9;
  background: #06090a;
}

.home-games-grid .game-card:nth-child(1),
.home-games-grid .game-card:nth-child(2),
.home-games-grid .game-card:nth-child(6),
.home-games-grid .game-card:nth-child(7) {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: 360px;
}

.home-games-grid .game-card:nth-child(1) .game-card-img,
.home-games-grid .game-card:nth-child(2) .game-card-img,
.home-games-grid .game-card:nth-child(6) .game-card-img,
.home-games-grid .game-card:nth-child(7) .game-card-img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 360px;
}

.home-games-grid .game-card:nth-child(1) .game-card-body,
.home-games-grid .game-card:nth-child(2) .game-card-body,
.home-games-grid .game-card:nth-child(6) .game-card-body,
.home-games-grid .game-card:nth-child(7) .game-card-body {
  padding: 2rem;
  justify-content: center;
}

.home-games-grid .game-card:nth-child(1) .game-card-title,
.home-games-grid .game-card:nth-child(2) .game-card-title,
.home-games-grid .game-card:nth-child(6) .game-card-title,
.home-games-grid .game-card:nth-child(7) .game-card-title {
  font-size: clamp(2.1rem, 3.4vw, 3.25rem);
}

.game-card-img::after {
  background: linear-gradient(180deg, transparent 45%, rgba(5,8,9,0.28) 100%);
}

.game-card-badge {
  top: 14px;
  right: 14px;
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(241,135,0,0.95);
  color: #050809;
}

.game-card-body {
  padding: 1.35rem 1.35rem 1.45rem;
  gap: 0.8rem;
}

.game-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.game-card-focus {
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.game-card-number {
  color: rgba(255,255,255,0.22);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.game-card-genre {
  display: none;
}

.game-card-title {
  margin: 0;
  font-size: 1.85rem;
  letter-spacing: -0.025em;
}

.game-card-desc {
  margin: 0;
  line-height: 1.55;
  -webkit-line-clamp: 3;
}

.game-card-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.game-card-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.game-card-cta {
  display: inline-flex;
  align-items: center;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-card-cta::after {
  content: '→';
  margin-left: 0.45rem;
  transition: transform 0.25s ease;
}

.game-card:hover .game-card-cta::after {
  transform: translateX(4px);
}

.game-card-platform,
.game-card-arrow {
  display: none;
}

@media (max-width: 1120px) {
  .home-games-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-games-grid .game-card:nth-child(n) { grid-column: span 1; display: flex; min-height: 0; }
  .home-games-grid .game-card:nth-child(1) .game-card-img,
  .home-games-grid .game-card:nth-child(2) .game-card-img,
  .home-games-grid .game-card:nth-child(6) .game-card-img,
  .home-games-grid .game-card:nth-child(7) .game-card-img { aspect-ratio: 16/9; min-height: 0; height: auto; }
  .home-games-grid .game-card:nth-child(1) .game-card-body,
  .home-games-grid .game-card:nth-child(2) .game-card-body,
  .home-games-grid .game-card:nth-child(6) .game-card-body,
  .home-games-grid .game-card:nth-child(7) .game-card-body { padding: 1.35rem 1.35rem 1.45rem; }
}

@media (max-width: 768px) {
  .home-games-grid, .games-grid { grid-template-columns: 1fr; }
  .game-card-meta { grid-template-columns: 1fr; align-items: start; }
}


/* ===== CHATGPT REFINEMENT: REMOVE GAME NUMBERING AND KEEP CARDS SHARP ===== */
.game-card,
.game-card-img,
.game-card-img img,
.games-grid .game-card,
.home-games-grid .game-card {
  border-radius: 0 !important;
}

.game-card-number {
  display: none !important;
}

.game-card-topline {
  justify-content: flex-start;
}


/* ===== FINAL LAUNCH POLISH ===== */
.credibility-strip {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
  background: linear-gradient(180deg, rgba(8, 13, 15, 1) 0%, rgba(11, 18, 21, 0.98) 100%);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.credibility-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.credibility-head .section-title {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}

.credibility-card {
  padding: 1.5rem;
  min-height: 148px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.credibility-card:last-child { border-right: 0; }

.credibility-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
  line-height: 0.98;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.credibility-card span {
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.game-seo-section {
  background: linear-gradient(180deg, rgba(5,8,9,1) 0%, rgba(11,18,21,1) 100%);
  border-top: 1px solid var(--border);
}

.game-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 1.25rem;
}

.game-seo-card {
  border: 1px solid var(--border);
  background: rgba(15, 23, 27, 0.92);
  padding: 2rem;
}

.game-seo-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.game-seo-card p,
.game-seo-card li {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.98rem;
}

.game-seo-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.game-seo-card li {
  position: relative;
  padding-left: 1.2rem;
}

.game-seo-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--amber);
}

.platform-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.platform-pill-row span {
  border: 1px solid var(--border);
  padding: 0.55rem 0.8rem;
  color: var(--text-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.03);
}

.store-buttons .btn-primary,
.store-buttons .btn-secondary {
  min-width: 190px;
}

.nav-logo img,
.footer-brand img {
  image-rendering: auto;
}

@media (max-width: 1024px) {
  .credibility-head,
  .game-seo-grid {
    grid-template-columns: 1fr;
  }
  .credibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .credibility-card:nth-child(2) {
    border-right: 0;
  }
  .credibility-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 64px;
    padding: 0 1rem;
  }
  .nav-mobile {
    top: 64px;
    padding: 1.25rem;
  }
  .nav-logo img {
    height: 30px;
    max-width: 165px;
  }
  .page, .static-main {
    padding-top: 64px;
  }
  .sharp-hero {
    min-height: auto;
  }
  .hero-content {
    padding: 4rem 1.2rem 2.5rem;
  }
  .hero h1 {
    font-size: clamp(3.05rem, 14vw, 4.8rem);
  }
  .hero-actions {
    width: 100%;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .credibility-grid {
    grid-template-columns: 1fr;
  }
  .credibility-card,
  .credibility-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .credibility-card:last-child {
    border-bottom: 0;
  }
  .game-hero-content {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 2rem;
  }
  .game-hero-title {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }
  .game-description {
    padding: 3.5rem 1.25rem;
    gap: 2rem;
  }
  .game-seo-card {
    padding: 1.35rem;
  }
  .gallery-track {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .store-buttons .btn-primary,
  .store-buttons .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}



/* ===== CHATGPT REFINEMENT: RESTORE FULL HEADER WORDMARK SIZE ===== */
.nav-logo a {
  display: inline-flex;
  align-items: center;
}

.nav-logo img {
  width: auto !important;
  height: 38px !important;
  max-width: 240px !important;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .nav-logo img {
    height: 34px !important;
    max-width: 200px !important;
  }
}

@media (max-width: 480px) {
  .nav-logo img {
    height: 30px !important;
    max-width: 170px !important;
  }
}


/* ===== CHATGPT REFINEMENT: SHARP CONTACT PAGE ===== */
.contact-item,
.contact-icon,
.contact-form,
.contact-response-card,
.form-input,
.form-textarea,
.form-select,
.form-submit,
.contact-info button {
  border-radius: 0 !important;
}


/* ===== CHATGPT REFINEMENT: MINIMAL CONTACT PAGE ===== */
.contact-minimal-section {
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.contact-minimal-container {
  max-width: 760px;
}

.contact-info-minimal {
  width: 100%;
}

.contact-info-minimal h3 {
  margin-bottom: 1.75rem;
  color: var(--text-secondary);
}

.contact-info-minimal .contact-item {
  margin-bottom: 1rem;
  padding: 1.5rem 1.6rem;
  background: linear-gradient(180deg, rgba(15,26,32,0.92) 0%, rgba(10,17,21,0.98) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: none;
  border-radius: 0 !important;
}

.contact-info-minimal .contact-item:last-child {
  margin-bottom: 0;
}

.contact-info-minimal .contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 0 !important;
}

.contact-info-minimal .contact-item-text h4 {
  margin-bottom: 0.35rem;
}

.contact-info-minimal .contact-item-text a {
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .contact-minimal-container {
    max-width: 100%;
  }

  .contact-info-minimal .contact-item {
    padding: 1.25rem;
  }

  .contact-info-minimal .contact-item-text a {
    font-size: 0.98rem;
    word-break: break-word;
  }
}


/* ===== CHATGPT REFINEMENT: COOKIE / PRIVACY BANNER ===== */
body.cookie-banner-visible {
  padding-bottom: 120px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  padding: 0 1rem 1rem;
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(180deg, rgba(13,23,27,0.98), rgba(6,12,14,0.98));
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--amber);
  box-shadow: 0 20px 50px rgba(0,0,0,0.38);
}

.cookie-banner-copy {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.cookie-banner-copy a,
.cookie-banner-more {
  color: var(--amber);
  text-decoration: none;
}

.cookie-banner-copy a:hover,
.cookie-banner-more:hover {
  color: var(--amber-light);
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-banner-more {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-banner-ok {
  background: var(--amber);
  color: #000;
  border: 0;
  padding: 0.9rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-banner-ok:hover {
  background: var(--amber-light);
}

@media (max-width: 900px) {
  body.cookie-banner-visible {
    padding-bottom: 170px;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 560px) {
  body.cookie-banner-visible {
    padding-bottom: 220px;
  }

  .cookie-banner {
    padding: 0 0.75rem 0.75rem;
  }

  .cookie-banner-inner {
    padding: 0.95rem 1rem;
  }

  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .cookie-banner-ok {
    width: 100%;
  }
}
/* Hero font update */
.hero-title,
.hero h1,
.hero-content h1 {
  font-family: 'Teko', Impact, 'Arial Narrow Bold', sans-serif !important;
  font-size: clamp(5.5rem, 9vw, 10rem) !important;
  line-height: 0.78 !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.65) !important;
  transform: skewX(-4deg);
  transform-origin: left center;
}

.hero-title span,
.hero h1 span,
.hero-content h1 span {
  font-family: 'Teko', Impact, 'Arial Narrow Bold', sans-serif !important;
  color: #ffffff !important;
}

.hero-eyebrow {
  font-family: 'Teko', Impact, 'Arial Narrow Bold', sans-serif !important;
  font-size: 1rem !important;
  letter-spacing: 0.28em !important;
  color: #f59a23 !important;
}

.hero-desc,
.hero-subtitle {
  color: rgba(255, 255, 255, 0.78) !important;
}
