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

:root {
  /* Color Palette */
  --bg-primary: hsl(220, 25%, 5%);
  --bg-secondary: hsl(220, 25%, 8%);
  --bg-tertiary: hsl(220, 25%, 12%);
  --card-bg: hsla(220, 25%, 10%, 0.6);
  --card-border: hsla(220, 25%, 20%, 0.4);
  
  --primary-gold: hsl(45, 100%, 50%);
  --primary-gold-dark: hsl(45, 100%, 35%);
  --primary-gold-light: hsl(45, 100%, 68%);
  --primary-gold-glow: hsla(45, 100%, 50%, 0.25);
  
  --accent-green: hsl(142, 76%, 45%);
  --accent-green-glow: hsla(142, 76%, 45%, 0.25);
  
  --text-pure: hsl(0, 0%, 100%);
  --text-primary: hsl(220, 10%, 90%);
  --text-secondary: hsl(220, 10%, 65%);
  --text-muted: hsl(220, 10%, 45%);
  
  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  
  /* Layout Metrics */
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
  --max-width: 1200px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Dofollow içerik linkleri (link juice) */
.hero-description a,
section a:not(.btn-primary):not(.btn-secondary):not(.logo):not(.sticky-giris) {
  color: var(--primary-gold-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-fast);
}

.hero-description a:hover,
section a:not(.btn-primary):not(.btn-secondary):not(.logo):not(.sticky-giris):hover {
  color: var(--text-pure);
}

.juice-hub {
  padding: 4rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.juice-hub h2 {
  text-align: center;
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
}

.juice-hub-lead {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.juice-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin-bottom: 1.75rem;
}

.juice-links a {
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--primary-gold-light) !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-fast);
}

.juice-links a:hover {
  border-color: var(--primary-gold);
  background: hsla(45, 100%, 50%, 0.1);
  color: var(--text-pure) !important;
  transform: translateY(-2px);
}

.juice-hub-cta {
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

.sticky-giris {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 1000;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-light));
  color: hsl(220, 25%, 8%) !important;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none !important;
  box-shadow: 0 8px 32px var(--primary-gold-glow);
  transition: var(--transition-fast);
}

.sticky-giris:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px hsla(45, 100%, 50%, 0.45);
}

/* Base Reset & Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold-dark);
}

/* Background Gradients & Glow Elements */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, hsla(45, 100%, 50%, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

body::after {
  content: '';
  position: absolute;
  top: 40%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, hsla(142, 76%, 45%, 0.05) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
}

.glow-ambient {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, hsla(45, 100%, 50%, 0.05) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(100px);
}

/* Typography Custom Rules */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-pure);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), transparent);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 8rem 0;
  position: relative;
}

/* Buttons and Interactive Elements */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px var(--primary-gold-glow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-gold-light), var(--primary-gold));
  z-index: -1;
  opacity: 0;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px hsla(45, 100%, 50%, 0.4);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.1rem 2.5rem;
  background: transparent;
  color: var(--text-pure);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 50px;
  border: 1.5px solid var(--card-border);
  cursor: pointer;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

/* Header & Navigation Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(8, 12, 18, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--card-border);
  padding: 0.8rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-pure);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--primary-gold);
  text-shadow: 0 0 15px var(--primary-gold-glow);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-gold);
  transition: var(--transition-fast);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobile Nav Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-pure);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 6rem;
  background: radial-gradient(ellipse at bottom, hsl(220, 25%, 9%) 0%, var(--bg-primary) 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-gold);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.status-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(142, 76, 45, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(142, 76, 45, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(142, 76, 45, 0); }
}

.hero h1 span.highlight {
  background: linear-gradient(135deg, var(--text-pure) 30%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.connection-status {
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid var(--card-border);
  padding-top: 2rem;
  max-width: 500px;
}

.status-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

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

.status-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-pure);
}

.status-value.ping-value {
  color: var(--accent-green);
}

/* Glass Card / Hero Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.visual-card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.visual-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, var(--primary-gold), transparent 40%, transparent 60%, var(--card-border));
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.card-badge {
  background: hsla(45, 100%, 50%, 0.1);
  color: var(--primary-gold);
  border: 1px solid rgba(255, 191, 0, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.quick-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  padding: 1.2rem;
  text-align: center;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-gold);
  font-family: var(--font-display);
}

.stat-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

.action-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.secure-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 1rem;
}

.secure-lock svg {
  fill: var(--accent-green);
  width: 14px;
  height: 14px;
}

/* Features Section (Neden Vdcasino?) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 191, 0, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: hsla(220, 25%, 15%, 0.5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  border: 1px solid var(--card-border);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  background: hsla(45, 100%, 50%, 0.1);
  border-color: rgba(255, 191, 0, 0.3);
  transform: rotate(5deg) scale(1.05);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-gold);
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Promos & Live Jackpots Section */
.promos {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.promos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.promos-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.promo-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.promo-item:hover {
  transform: translateX(5px);
  border-color: rgba(255, 191, 0, 0.2);
}

.promo-badge {
  background: linear-gradient(135deg, var(--primary-gold-dark), var(--primary-gold));
  color: var(--bg-primary);
  font-weight: 800;
  font-size: 1.1rem;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.promo-detail h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.promo-detail p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.jackpot-card {
  background: radial-gradient(circle at top left, hsla(45, 100%, 50%, 0.1), transparent), var(--card-bg);
  border: 1.5px solid rgba(255, 191, 0, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.jackpot-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, hsla(45, 100%, 50%, 0.05), transparent 30%);
  animation: rotate-conic 8s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes rotate-conic {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.jackpot-content {
  position: relative;
  z-index: 1;
}

.jackpot-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary-gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.jackpot-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-pure);
  text-shadow: 0 0 30px rgba(255, 191, 0, 0.3);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.jackpot-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

/* FAQ (Sıkça Sorulan Sorular) Section */
.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(255, 191, 0, 0.2);
}

.faq-question {
  width: 100%;
  padding: 1.8rem 2rem;
  background: transparent;
  border: none;
  color: var(--text-pure);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition-fast);
}

.faq-question:focus {
  outline: none;
}

.faq-question span.arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  color: var(--text-secondary);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.faq-question:hover span.arrow {
  color: var(--primary-gold);
  border-color: rgba(255, 191, 0, 0.3);
  background: hsla(45, 100%, 50%, 0.05);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(0, 0, 0, 0.1);
}

.faq-answer-inner {
  padding: 0 2rem 2rem 2rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
  border-top: 1px solid transparent;
}

/* Active FAQ Item State */
.faq-item.active {
  border-color: rgba(255, 191, 0, 0.25);
  background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-question {
  color: var(--primary-gold);
}

.faq-item.active .faq-answer {
  max-height: 500px; /* high enough threshold for content */
}

.faq-item.active .faq-answer-inner {
  border-top: 1px solid var(--card-border);
  padding-top: 1.5rem;
}

.faq-item.active span.arrow {
  transform: rotate(180deg);
  background: var(--primary-gold);
  color: var(--bg-primary);
  border-color: var(--primary-gold);
  box-shadow: 0 0 10px var(--primary-gold-glow);
}

/* Footer Section */
footer {
  background-color: hsl(220, 25%, 3%);
  border-top: 1px solid var(--card-border);
  padding: 5rem 0 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-about p {
  color: var(--text-secondary);
  margin-top: 1rem;
  font-size: 0.95rem;
  max-width: 350px;
}

.footer-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.footer-disclaimer {
  grid-column: span 3;
  border-top: 1px solid var(--card-border);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: justify;
}

.footer-disclaimer p strong {
  color: var(--text-secondary);
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-tagline {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .connection-status {
    margin: 0 auto;
    justify-content: center;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .promos-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .footer-disclaimer {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(8, 12, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 100px 30px;
    gap: 2rem;
    transition: var(--transition-smooth);
    z-index: 105;
    border-left: 1px solid var(--card-border);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  .header-actions {
    display: none;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-disclaimer {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
