:root {
  --primary-blue: #2563eb;
  --accent-orange: #ea580c;
  --bright-blue: #3b82f6;
  --deep-navy: #1e293b;
  --darker-navy: #0f172a;
  --light-text: #f1f5f9;
  --muted-text: #94a3b8;
  --success-green: #059669;
  --warning-amber: #d97706;
  --border-slate: #475569;
  --gradient-main: linear-gradient(135deg, var(--primary-blue), var(--bright-blue));
  --gradient-accent: linear-gradient(135deg, var(--accent-orange), #dc2626);
  --gradient-aviator: linear-gradient(135deg, #0ea5e9, #06b6d4);
  --gradient-sky: linear-gradient(135deg, #0ea5e9, #38bdf8, #7dd3fc);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--light-text);
  background: var(--deep-navy);
  overflow-x: hidden;
}

.menu-checkbox {
  display: none;
}

.menu-checkbox:checked + .menu-item .menu-arrow {
  transform: rotate(180deg);
  color: var(--accent-orange);
}

.menu-checkbox:checked ~ .submenu-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 500px;
  margin-top: 0.5rem;
  overflow-y: auto;
}

.menu-item a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    width: 100%;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header Styles */
.main-header {
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-slate);
}

.header-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  height: 85px;
}

.brand-logo img {
  height: 50px;
  width: auto;
}

.primary-navigation .navigation-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.menu-item {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.menu-item:hover,
.menu-item.active {
  color: var(--accent-orange);
}

.dropdown-container {
  position: relative;
}

.menu-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: var(--muted-text);
}

.submenu-list {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--darker-navy);
  border: 1px solid var(--border-slate);
  border-radius: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.submenu-list li {
  margin: 0;
}

.submenu-list a,
.submenu-list span.menu-item {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--light-text);
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 0.9rem;
}

.submenu-list a:hover,
.submenu-list span.menu-item:hover {
  background: rgba(234, 88, 12, 0.1);
  color: var(--accent-orange);
}

.submenu-list span.menu-item.active {
  background: rgba(234, 88, 12, 0.15);
  color: var(--accent-orange);
  font-weight: 600;
  border-left: 3px solid var(--accent-orange);
  padding-left: calc(1rem - 3px); /* Компенсируем border */
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--light-text);
  margin: 3px 0;
  transition: 0.3s;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  line-height: 1;
}

.button-primary {
  background: var(--gradient-accent);
  color: white;
  box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.button-outline {
  background: transparent;
  color: var(--accent-orange);
  border: 2px solid var(--accent-orange);
}

.button-outline:hover {
  background: var(--accent-orange);
  color: white;
}

/* Aviator Hero Section */
.aviator-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-sky);
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.sky-atmosphere {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.clouds-layer {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cloud {
  position: absolute;
  font-size: 4rem;
  opacity: 0.3;
  animation: floatClouds 25s ease-in-out infinite;
  pointer-events: none;
  color: white;
}

.cloud-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.cloud-2 {
  top: 25%;
  right: 15%;
  animation-delay: 8s;
}

.cloud-3 {
  top: 60%;
  left: 20%;
  animation-delay: 16s;
}

.cloud-4 {
  bottom: 30%;
  right: 25%;
  animation-delay: 24s;
}

@keyframes floatClouds {
  0%, 100% {
    transform: translateX(0px) translateY(0px);
  }
  25% {
    transform: translateX(30px) translateY(-20px);
  }
  50% {
    transform: translateX(-20px) translateY(15px);
  }
  75% {
    transform: translateX(25px) translateY(-10px);
  }
}

.plane-trail {
  position: absolute;
  top: 30%;
  left: -10%;
  width: 120%;
  height: 2px;
  display: flex;
  align-items: center;
  gap: 20px;
  animation: planeTrail 15s linear infinite;
}

.trail-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: trailFade 2s ease-in-out infinite;
}

.trail-dot:nth-child(2) { animation-delay: 0.2s; }
.trail-dot:nth-child(3) { animation-delay: 0.4s; }
.trail-dot:nth-child(4) { animation-delay: 0.6s; }
.trail-dot:nth-child(5) { animation-delay: 0.8s; }

@keyframes planeTrail {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes trailFade {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.aviator-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-flight {
  display: block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3.2rem;
  margin-top: 0.5rem;
  text-shadow: none;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.game-stats {
  display: flex;
  gap: 2rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  min-width: 120px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

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

.aviator-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient-accent);
  color: white;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.aviator-play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(234, 88, 12, 0.5);
}

.demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1.5rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.demo-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.btn-plane {
  font-size: 1.5rem;
  animation: planeFly 2s ease-in-out infinite;
}

@keyframes planeFly {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(5deg);
  }
}

.btn-icon {
  font-size: 1.3rem;
}

.promo-notice {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: white;
  font-weight: 500;
  margin-top: 1.5rem;
}

.promo-notice strong {
  color: #fbbf24;
}

.aviator-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.game-preview {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.game-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.multiplier-display {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-align: center;
  border: 2px solid var(--accent-orange);
}

.multiplier-text {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 0.25rem;
  animation: multiplierPulse 2s ease-in-out infinite;
}

@keyframes multiplierPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.multiplier-status {
  font-size: 0.9rem;
  color: var(--success-green);
  font-weight: 600;
}

/* How to Play Section */
.how-to-play {
  padding: 6rem 0;
  background: var(--darker-navy);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--gradient-aviator);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--muted-text);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.gameplay-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-orange);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-aviator);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
}

.step-content h3 {
  color: var(--light-text);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.step-content p {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.step-visual {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.gameplay-tips {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  margin-top: 4rem;
}

.gameplay-tips h3 {
  color: var(--light-text);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tip-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.tip-item:hover {
  transform: translateY(-3px);
  border-color: var(--success-green);
}

.tip-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.tip-item h4 {
  color: var(--light-text);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

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

/* Game Features Section */
.game-features {
  padding: 6rem 0;
  background: var(--deep-navy);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.feature-card.premium {
  border-color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.1);
  transform: scale(1.02);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card.premium:hover {
  transform: scale(1.02) translateY(-8px);
}

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

.feature-icon {
  font-size: 2.5rem;
}

.feature-header h3 {
  color: var(--light-text);
  font-size: 1.4rem;
  margin: 0 1rem;
  flex: 1;
}

.feature-badge {
  background: var(--gradient-accent);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.feature-content p {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-highlights span {
  color: var(--success-green);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Strategies Section */
.aviator-strategies {
  padding: 6rem 0;
  background: var(--darker-navy);
}

.strategies-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.strategy-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid var(--border-slate);
  border-radius: 50px;
  color: var(--muted-text);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.strategy-tab.active,
.strategy-tab:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.1);
}

.strategy-content {
  max-width: 900px;
  margin: 0 auto;
}

.strategy-panel {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.strategy-panel.active {
  display: block;
}

.strategy-panel h3 {
  color: var(--light-text);
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.strategy-details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.strategy-description p {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.strategy-rules h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
}

.strategy-rules ul {
  list-style: none;
  padding: 0;
}

.strategy-rules li {
  color: var(--muted-text);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.strategy-rules li::before {
  content: '✓';
  color: var(--success-green);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.strategy-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.stat-title {
  display: block;
  color: var(--muted-text);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.stat-value {
  display: block;
  color: var(--accent-orange);
  font-size: 1.2rem;
  font-weight: 700;
}

.strategy-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
}

.strategy-warning h4 {
  color: var(--warning-amber);
  margin-bottom: 1rem;
}

.strategy-warning p {
  color: var(--light-text);
  line-height: 1.7;
  margin: 0;
}

/* Live Statistics Section */
.live-statistics {
  padding: 6rem 0;
  background: var(--deep-navy);
}

.stats-dashboard {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.stats-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.overview-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

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

.card-header h3 {
  color: var(--light-text);
  font-size: 1.3rem;
}

.update-indicator {
  background: var(--success-green);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.multipliers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.multiplier {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.multiplier.crashed {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.multiplier.low {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.multiplier.medium {
  background: rgba(14, 165, 233, 0.2);
  color: #0ea5e9;
}

.multiplier.high {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.winners-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.winner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
}

.winner-name {
  color: var(--light-text);
  font-weight: 600;
}

.winner-amount {
  color: var(--success-green);
  font-weight: 700;
}

.winner-multiplier {
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 0.9rem;
}

.stats-detailed {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-icon {
  font-size: 2rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted-text);
  margin-top: 0.25rem;
}

.stats-disclaimer {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.stats-disclaimer p {
  color: var(--light-text);
  margin: 0;
}

/* Aviator Bonuses Section */
.aviator-bonuses {
  padding: 6rem 0;
  background: var(--darker-navy);
}

.bonuses-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.bonus-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.bonus-card.featured {
  border-color: var(--accent-orange);
  background: rgba(234, 88, 12, 0.1);
  transform: scale(1.02);
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.bonus-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.bonus-header {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.bonus-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.bonus-header h3 {
  color: var(--light-text);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.bonus-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--gradient-accent);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.bonus-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-orange);
  line-height: 1;
  margin-bottom: 1rem;
}

.bonus-details p {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.bonus-terms {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.bonus-terms span {
  color: var(--success-green);
  font-size: 0.9rem;
  font-weight: 500;
}

.bonus-code-box {
  background: rgba(234, 88, 12, 0.1);
  border: 1px solid rgba(234, 88, 12, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
  text-align: center;
  font-family: 'Courier New', monospace;
}

.code-label {
  color: var(--muted-text);
  font-size: 0.9rem;
}

.code-value {
  color: var(--accent-orange);
  font-size: 1.1rem;
  font-weight: 700;
}

/* Mobile Experience Section */
.mobile-experience {
  padding: 6rem 0;
  background: var(--deep-navy);
}

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

.mobile-content h3 {
  color: var(--light-text);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.mobile-content p {
  color: var(--muted-text);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.mobile-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-text h4 {
  color: var(--light-text);
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--muted-text);
  margin: 0;
  font-size: 0.95rem;
}

.mobile-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.mobile-stat {
  text-align: center;
}

.mobile-stat .stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-orange);
  line-height: 1;
}

.mobile-stat .stat-label {
  font-size: 0.9rem;
  color: var(--muted-text);
  margin-top: 0.5rem;
}

.mobile-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.phone-mockup img {
  width: 100%;
  height: auto;
  display: block;
}

/* FAQ Section */
.aviator-faq {
  padding: 6rem 0;
  background: var(--darker-navy);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-orange);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-orange);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: var(--accent-orange);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted-text);
  line-height: 1.7;
  margin: 0;
}

/* Final CTA Section */
.aviator-final-cta {
  padding: 6rem 0;
  background: var(--gradient-aviator);
  position: relative;
  overflow: hidden;
}

.aviator-final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(234, 88, 12, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0.9;
}

.final-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-icon {
  font-size: 1.5rem;
}

.highlight-text {
  font-weight: 600;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.final-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--gradient-accent);
  color: white;
  padding: 1.5rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
}

.final-play-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(234, 88, 12, 0.5);
}

.final-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 1.5rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.final-demo-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.promo-final {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 600px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-final p {
  margin: 0;
  font-size: 1.1rem;
}

.promo-final strong {
  color: #fbbf24;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.trust-badges span {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer */
.site-footer {
  background: var(--deep-navy);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-slate);
}

.footer-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: var(--light-text);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

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

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: var(--muted-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent-orange);
}

.footer-column p {
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.company-logo {
  margin-bottom: 1rem;
}

.company-logo img {
  height: 60px;
  width: auto;
}

.payment-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
}

.payment-icons img {
  padding: 0.1rem;
  border-radius: 4px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  max-width: 45px;
  height: auto;
}

.payment-icons img:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--border-slate);
  padding-top: 2rem;
  text-align: center;
  color: var(--muted-text);
}

.legal-notice {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--warning-amber);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .primary-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-slate);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .primary-navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .primary-navigation .navigation-menu {
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
  }

.dropdown-container .submenu-list {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 0;
    transition: all 0.3s ease;
  }

  .menu-checkbox:checked ~ .submenu-list {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    margin-top: 0.5rem;
    overflow-y: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }
}

@media (max-width: 768px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .title-flight {
    font-size: 2.5rem;
  }

  .game-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .gameplay-steps {
    grid-template-columns: 1fr;
  }

  .strategy-details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stats-overview {
    grid-template-columns: 1fr;
  }

  .mobile-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .final-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .payment-icons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
.button {
        padding: 0.55rem 0.55rem;
        font-size: 0.8rem;
    }

  .aviator-hero {
    padding: 6rem 0 3rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .title-flight {
    font-size: 1.8rem;
  }

  .game-stats {
    gap: 1rem;
  }

  .stat-item {
    min-width: 100px;
    padding: 1rem;
  }

  .strategies-tabs {
    flex-direction: column;
    align-items: center;
  }

  .strategy-tab {
    min-width: 200px;
    justify-content: center;
  }

  .step-card,
  .feature-card,
  .bonus-card {
    padding: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .cta-content h2 {
    font-size: 2.2rem;
  }

  .payment-icons img {
    max-width: 35px;
  }
}

@media (max-width: 380px) {
  .header-layout {
    flex-wrap: wrap;
    justify-content: center;
    height: auto;
    min-height: 120px;
    padding: 1rem 0;
  }

  .action-buttons {
    order: 3;
    width: 100%;
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .action-buttons .button {
    flex: 1;
    font-size: 0.85rem;
    text-align: center;
    min-width: 0;
    justify-content: center;
    padding: 0.6rem 0.5rem;
  }

  .brand-logo {
    order: 1;
    flex: 1;
  }

  .menu-toggle {
    order: 2;
    margin-left: auto;
  }

  .main-header {
    height: auto;
    min-height: 120px;
  }
}

@media (max-width: 320px) {
  .header-layout {
    min-height: 130px;
    padding: 1.2rem 0;
  }

  .main-header {
    min-height: 130px;
  }

  .action-buttons .button {
    padding: 0.5rem 0.3rem;
    font-size: 0.8rem;
  }
}