/* ==========================================================================
   SHIFT. Games - Design System & Global Styles
   Inspired by SHIFT (https://shifthq.co.uk/)
   Minimalist Luxury Glassmorphism & High-Performance Web
   ========================================================================== */

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

:root {
  color-scheme: dark;
  --bg-color: #050505;
  --surface-color: rgba(18, 18, 18, 0.65);
  --surface-solid: #0d0d0d;
  --surface-elevated: rgba(26, 26, 26, 0.75);
  --surface-input: rgba(255, 255, 255, 0.03);
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);
  --border-focus: #3b82f6;
  
  /* SHIFT Signature Electric Blue */
  --accent-color: #3b82f6;
  --accent-hover: #60a5fa;
  --accent-glow: rgba(59, 130, 246, 0.35);
  --accent-subtle: rgba(59, 130, 246, 0.1);
  
  /* Refined Spotlight Gold */
  --gold: #f59e0b;
  --gold-glow: rgba(245, 158, 11, 0.3);
  --gold-border: rgba(245, 158, 11, 0.4);
  
  --success: #10b981;
  --error: #ef4444;
  
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --glass-backdrop: blur(20px) saturate(180%);
  --glass-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.08), 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 100% 50%, rgba(245, 158, 11, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  color-scheme: dark;
}

select {
  color-scheme: dark;
  background-color: #121212;
  color: #ffffff;
}

select option {
  background-color: #161616;
  color: #ffffff;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ==========================================================================
   Navigation Bar (Minimalist Glassmorphism)
   ========================================================================== */
.navbar {
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  display: flex;
  align-items: center;
}

.navbar .nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 36px;
}

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

.brand-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.brand-logo-text .dot {
  color: var(--accent-color);
}

.brand-logo-text .badge-games {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  flex-shrink: 0;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 6px 0;
  position: relative;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-glow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-discord-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid rgba(88, 101, 242, 0.25);
  color: #7289da;
  transition: var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-discord-icon:hover {
  background: rgba(88, 101, 242, 0.22);
  border-color: #5865F2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(88, 101, 242, 0.35);
}

.btn-gold-subtle {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #fbbf24;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-gold-subtle:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.65);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25);
}

.user-nav-profile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--surface-color);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.user-nav-profile:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.05);
}

.nav-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.user-nav-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 90px 0 60px;
  position: relative;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero-pill .pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 8px var(--accent-glow);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .title-dim {
  color: var(--text-secondary);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 36px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-solution-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  max-width: 900px;
}

.solution-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.solution-item strong {
  color: #ffffff;
}

.solution-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.solution-divider {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .hero-solution-strip {
    border-radius: var(--radius-lg);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 18px;
    width: 100%;
  }
  .solution-divider {
    display: none;
  }
}


/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 4px;
}

/* ==========================================================================
   Footer (with SHIFT. branding)
   ========================================================================== */
.footer {
  margin-top: auto;
  background: var(--surface-solid);
  border-top: 1px solid var(--border-subtle);
  padding: 56px 0 32px;
  position: relative;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-top: 12px;
  max-width: 340px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

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

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.powered-by-shift {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-secondary);
}

.powered-by-shift a {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  transition: var(--transition);
  position: relative;
}

.powered-by-shift a span.dot {
  color: var(--accent-color);
}

.powered-by-shift a:hover {
  color: var(--accent-hover);
}

/* ==========================================================================
   Social Media Links & Support Contacts
   ========================================================================== */
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: var(--transition);
  text-decoration: none;
  flex-shrink: 0;
}

.social-icon-btn:hover {
  background: rgba(59, 130, 246, 0.16);
  border-color: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.social-icon-btn.discord-btn:hover {
  background: rgba(88, 101, 242, 0.2);
  border-color: #5865F2;
  color: #7289da;
  box-shadow: 0 4px 14px rgba(88, 101, 242, 0.35);
}

.social-icon-btn.sm {
  width: 32px;
  height: 32px;
}

.social-icon-btn.sm svg {
  width: 15px;
  height: 15px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  transition: var(--transition);
  word-break: break-all;
}

.footer-contact-link:hover {
  color: var(--accent-hover);
  transform: translateX(2px);
}

.footer-contact-link svg {
  color: var(--accent-color);
  flex-shrink: 0;
}

/* Sidebar Support Card (Dashboard) */
.sidebar-support-card {
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
}

.sidebar-support-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar-support-desc {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.45;
  margin-bottom: 10px;
}

.sidebar-support-email {
  display: block;
  color: var(--accent-hover);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 12px;
  text-decoration: none;
  word-break: break-all;
  transition: var(--transition);
}

.sidebar-support-email:hover {
  text-decoration: underline;
  color: #fff;
}

.sidebar-support-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile Hamburger Button */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 8px;
  cursor: pointer;
  color: var(--text-primary);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: auto;
}

.mobile-nav-toggle:hover, .mobile-nav-toggle.active {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
}

.mobile-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  height: calc(100vh - 76px);
  background: rgba(6, 6, 6, 0.98);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 999;
  flex-direction: column;
  padding: 24px 20px 48px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  animation: mobileNavFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
  display: flex;
}

@keyframes mobileNavFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}

.mobile-nav-links a:hover, .mobile-nav-links a.active {
  background: var(--accent-subtle);
  color: #fff;
  border-color: rgba(59, 130, 246, 0.35);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.mobile-nav-actions .btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 1.05rem;
  justify-content: center;
}

/* Features & Value Props Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--surface-color);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.cta-banner-card {
  background: var(--surface-color);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 60px 36px;
  box-shadow: var(--glass-shadow);
  max-width: 960px;
  margin: 0 auto;
}

/* Page Header Typography Utilities */
.page-header-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-header-desc {
  color: var(--text-secondary);
  margin-top: 6px;
  font-size: clamp(0.92rem, 3vw, 1.05rem);
}

/* ==========================================================================
   Our Games (In-House SHIFT. Releases)
   ========================================================================== */
.our-games-section {
  padding: 60px 0 80px;
  position: relative;
}

.our-game-feature {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(18, 18, 18, 0.9) 100%);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(59, 130, 246, 0.12);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  transition: var(--transition);
}

.our-game-feature:hover {
  border-color: var(--accent-hover);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.95), 0 0 40px rgba(59, 130, 246, 0.22);
  transform: translateY(-2px);
}

.our-game-media {
  position: relative;
  min-height: 320px;
  background: #080808;
  overflow: hidden;
}

.our-game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.our-game-feature:hover .our-game-media img {
  transform: scale(1.04);
}

.our-game-badge-overlay {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge-inhouse {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.our-game-content {
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.our-game-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.our-game-tagline {
  color: var(--accent-hover);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 14px;
}

.our-game-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.our-game-quote {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.5;
}

.our-game-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Optimization
   ========================================================================== */
@media (max-width: 900px) {
  .our-game-feature {
    grid-template-columns: 1fr;
  }
  .our-game-media {
    min-height: 220px;
    max-height: 260px;
  }
  .our-game-content {
    padding: 26px 20px;
  }
  .our-game-title {
    font-size: 1.55rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .navbar {
    height: 70px;
  }
  .navbar .nav-inner {
    justify-content: space-between;
  }
  .mobile-nav-drawer {
    top: 70px;
    height: calc(100vh - 70px);
  }
  .nav-links {
    display: none;
  }
  .nav-actions {
    display: none;
  }
  .mobile-nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .hero {
    padding: 44px 0 36px;
  }
  .hero-title {
    font-size: clamp(2rem, 7.5vw, 2.7rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
  }
  .hero-subtitle {
    font-size: 1.02rem;
    margin-bottom: 28px;
    line-height: 1.55;
  }
  .hero-cta, .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-cta .btn, .hero-actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-card {
    padding: 24px 20px;
  }
  .cta-banner-card {
    padding: 36px 20px;
  }
  .cta-banner-card h2 {
    font-size: 1.85rem !important;
  }
  .cta-banner-card .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
  }
  .footer {
    padding: 44px 0 28px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
  .footer-links {
    flex-direction: column;
    gap: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .brand-logo-text {
    font-size: 1.3rem;
  }
  .brand-logo-text .badge-games {
    font-size: 0.72rem;
  }
  .hero-pill {
    font-size: 0.78rem;
    padding: 6px 12px;
  }
}

/* ==========================================================================
   Steam 1-Click Fast Import & Media Previews
   ========================================================================== */
.steam-import-card {
  background: linear-gradient(135deg, rgba(23, 26, 33, 0.85) 0%, rgba(27, 40, 56, 0.6) 100%);
  border: 1px solid rgba(102, 192, 244, 0.25);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.6), 0 0 20px -5px rgba(59, 130, 246, 0.15);
  backdrop-filter: var(--glass-backdrop);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.steam-import-card:hover {
  border-color: rgba(102, 192, 244, 0.4);
  box-shadow: 0 12px 35px -8px rgba(0, 0, 0, 0.7), 0 0 25px -4px rgba(59, 130, 246, 0.22);
}

.steam-import-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.steam-import-badge-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.steam-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #171a21, #1b2838);
  border: 1px solid rgba(102, 192, 244, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #66c0f4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.steam-import-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.steam-import-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.badge-steam-glow {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: var(--accent-hover);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.steam-import-input-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.steam-input-wrap {
  flex: 1;
  min-width: 260px;
}

.steam-fast-input {
  height: 48px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.steam-fast-input:focus {
  border-color: #66c0f4;
  box-shadow: 0 0 0 3px rgba(102, 192, 244, 0.2);
}

.btn-steam {
  background: linear-gradient(135deg, #1b2838 0%, #2a475e 100%);
  border: 1px solid rgba(102, 192, 244, 0.45);
  color: #ffffff;
  font-weight: 600;
  padding: 0 22px;
  height: 48px;
  border-radius: var(--radius-md);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.btn-steam:hover:not(:disabled) {
  background: linear-gradient(135deg, #2a475e 0%, #3a6888 100%);
  border-color: #66c0f4;
  box-shadow: 0 6px 20px rgba(102, 192, 244, 0.35);
  transform: translateY(-1px);
}

.btn-steam:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.steam-import-feedback {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  line-height: 1.5;
  animation: fadeIn 0.2s ease-out;
}

.steam-import-feedback.feedback-success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
}

.steam-import-feedback.feedback-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #f87171;
}

/* Media Previews & Screenshot Picker */
.media-preview-box {
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  animation: fadeIn 0.25s ease-out;
}

.preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.preview-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 700;
}

.preview-badge {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent-hover);
  border: 1px solid rgba(59, 130, 246, 0.3);
  font-weight: 600;
}

.preview-badge.badge-trailer {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.35);
}

.cover-preview-media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-height: 180px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cover-preview-thumb {
  width: 100%;
  height: 100%;
  max-height: 180px;
  object-fit: cover;
  display: block;
}

.screenshot-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(78px, 1fr));
  gap: 8px;
  max-height: 160px;
  overflow-y: auto;
  padding: 4px 4px 4px 0;
}

.screenshot-thumb-item {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #111;
}

.screenshot-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.screenshot-thumb-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.screenshot-thumb-item:hover img {
  opacity: 1;
}

.screenshot-thumb-item.active {
  border-color: var(--accent-color);
  box-shadow: 0 0 12px var(--accent-glow);
}

.screenshot-thumb-item.active img {
  opacity: 1;
}

.trailer-preview-content {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trailer-preview-video {
  width: 100%;
  max-height: 220px;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

.trailer-preview-iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.trailer-preview-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.4);
}

.trailer-preview-card img {
  width: 90px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.trailer-preview-card-info {
  flex: 1;
  min-width: 0;
}

.trailer-card-title {
  font-weight: 600;
  font-size: 0.88rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trailer-card-link {
  font-size: 0.78rem;
  color: var(--accent-hover);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .steam-import-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .btn-steam {
    width: 100%;
  }
}

/* ==========================================================================
   Developer Analytics Performance Dashboard & Stat Badges
   ========================================================================== */
.dashboard-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.stat-card {
  background: var(--surface-color);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  backdrop-filter: var(--glass-backdrop);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.5);
}

.stat-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.stat-icon-wrap.icon-blue {
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: var(--accent-hover);
}

.stat-icon-wrap.icon-emerald {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #34d399;
}

.stat-icon-wrap.icon-gold {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  color: var(--gold);
}

.stat-icon-wrap.icon-purple {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
  color: #c084fc;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* User Game Row Analytics Pills */
.user-game-analytics-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.analytics-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

.analytics-stat-pill svg {
  opacity: 0.75;
}

.analytics-stat-pill.stat-ctr {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
  color: var(--gold);
}

/* ==========================================================================
   Streamer & Press Review Key Requests
   ========================================================================== */
.key-requests-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.key-request-card {
  background: var(--surface-color);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  backdrop-filter: var(--glass-backdrop);
  transition: all 0.2s ease;
}

.key-request-card:hover {
  border-color: var(--border-hover);
}

.key-request-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

.key-request-creator {
  display: flex;
  align-items: center;
  gap: 14px;
}

.creator-avatar-bubble {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.creator-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.creator-handle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
}

.platform-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
}

.platform-twitch {
  background: rgba(145, 70, 255, 0.15);
  border-color: rgba(145, 70, 255, 0.4);
  color: #c49eff;
}

.platform-youtube {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #f87171;
}

.platform-tiktok {
  background: rgba(0, 242, 254, 0.12);
  border-color: rgba(0, 242, 254, 0.35);
  color: #38bdf8;
}

.platform-kick {
  background: rgba(83, 252, 24, 0.12);
  border-color: rgba(83, 252, 24, 0.35);
  color: #4ade80;
}

.creator-sub-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.channel-verify-btn {
  color: var(--accent-hover);
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.key-request-message {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  margin: 14px 0;
}

.key-sent-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  padding: 8px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.key-sent-banner code {
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9rem;
  color: #fff;
}

.key-request-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-key-req,
.btn-key {
  color: #c084fc;
  border-color: rgba(168, 85, 247, 0.4);
  background: rgba(168, 85, 247, 0.12);
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-key-req:hover,
.btn-key:hover {
  background: rgba(168, 85, 247, 0.22);
  border-color: rgba(168, 85, 247, 0.7);
  color: #f3e8ff;
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.25);
}


