/* ============================================
   ЦВЕТОВАЯ СИСТЕМА - ДРЕВНИЙ ОЛИМП И ЗЕВС
   ============================================ */

:root {
  /* Темные фоновые цвета - штормовое небо */
  --storm-dark: #1a1a2e;
  --storm-deep: #16213e;
  --storm-ocean: #0f3460;
  --storm-midnight: #1e3a5f;
  
  /* Океанские оттенки */
  --ocean-deep: #1e3d47;
  --ocean-teal: #2d5a5a;
  --wave-dark: #1a4d4d;
  
  /* Теплые акцентные цвета - закат */
  --sunset-orange: #ff6b35;
  --sunset-red: #c44536;
  --sunset-gold: #ff8c42;
  --fire-glow: #ff6b35;
  
  /* Золотые акценты - Зевс */
  --zeus-gold: #ffd700;
  --lightning-gold: #ffed4e;
  --bronze: #cd7f32;
  
  /* Скалы и камни */
  --rock-dark: #3d2817;
  --rock-medium: #5d4037;
  --rock-light: #8d6e63;
  --stone: #a1887f;
  
  /* Облака */
  --cloud-dark: #4a3728;
  --cloud-medium: #6b5b4f;
  --cloud-light: #8b7d6b;
  --mist: #b8a99a;
  
  /* Акцентные цвета */
  --drama-red: #c44536;
  --blood-red: #8b2635;
  --marble-white: #f5f5f0;
  --ivory: #fffff0;
  --cream: #fffdd0;
  
  /* Текст */
  --text-primary: #ffffff;
  --text-secondary: #e0e0e0;
  --text-muted: #b0b0b0;
  --text-dark: #1a1a2e;
  
  /* Градиенты */
  --gradient-storm: linear-gradient(135deg, var(--storm-dark) 0%, var(--storm-deep) 50%, var(--storm-ocean) 100%);
  --gradient-sunset: linear-gradient(90deg, var(--storm-dark) 0%, var(--sunset-orange) 50%, var(--sunset-red) 100%);
  --gradient-ocean: linear-gradient(180deg, var(--ocean-deep) 0%, var(--ocean-teal) 50%, var(--wave-dark) 100%);
  --gradient-gold: radial-gradient(circle, var(--lightning-gold) 0%, var(--zeus-gold) 50%, transparent 100%);
}

/* ============================================
   БАЗОВЫЕ СТИЛИ
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--gradient-storm);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-storm);
  z-index: -2;
  pointer-events: none;
}

/* Анимированный фон с облаками */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  animation: morphGradient 15s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes morphGradient {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

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

/* ============================================
   HEADER И НАВИГАЦИЯ
   ============================================ */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}


.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--zeus-gold), transparent);
  transition: left 0.5s ease;
}

.nav-link:hover {
  color: var(--zeus-gold);
}

.nav-link:hover::before {
  left: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1002;
  position: relative;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--zeus-gold);
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

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

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

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

/* ============================================
   HERO СЕКЦИЯ
   ============================================ */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 20px 80px;
  background: var(--gradient-sunset);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/hero.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-sunset);
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 1200px;
  animation: fadeInUp 1s ease-out;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.game-info-box {
  background: rgba(30, 58, 95, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out 0.8s both;
  text-align: left;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 3s ease-in-out infinite;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* ============================================
   ФОРМА РАННЕГО ДОСТУПА
   ============================================ */

.access-form {
  background: rgba(30, 58, 95, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 3rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.6s both;
  position: relative;
  overflow: hidden;
}

.access-form::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

.bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--zeus-gold), var(--sunset-orange));
  color: var(--text-dark);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
  }
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--zeus-gold);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  transform: scale(1.02);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--zeus-gold), var(--sunset-orange));
  color: var(--text-dark);
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
}

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

.btn-primary {
  width: 100%;
  margin-top: 1rem;
}

/* ============================================
   СЕКЦИИ
   ============================================ */

section {
  padding: 80px 20px;
  position: relative;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Карточки */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: rgba(30, 58, 95, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
  display: flex;
  flex-direction: column;
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 15px 15px 0 0;
  background: rgba(20, 40, 70, 0.5);
}

.card-content {
  padding: 2rem;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

.card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.card:hover::after {
  width: 300px;
  height: 300px;
}

.card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--zeus-gold);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.card-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--zeus-gold);
  margin-top: 0;
}

.card-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0;
}

/* Шахматный порядок для карточек */
.chessboard-layout {
  grid-template-columns: 1fr 1fr;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  gap: 1.5rem;
}

/* Строка 1: Карточка Vizyonumuz (1) | Картинка Vizyonumuz (2) */
.chessboard-layout .card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  margin-top: 0;
}

.chessboard-layout .chessboard-image:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  margin-top: 0;
}

/* Строка 2: Картинка Misyonumuz (3) | Карточка Misyonumuz (4) */
.chessboard-layout .chessboard-image:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
  margin-top: 1.5rem;
}

.chessboard-layout .card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
  margin-top: 1.5rem;
}

/* Строка 3: Карточка Değerlerimiz (5) | Картинка Değerlerimiz (6) */
.chessboard-layout .card:nth-child(5) {
  grid-column: 1;
  grid-row: 3;
  margin-top: 1.5rem;
}

.chessboard-layout .chessboard-image:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
  margin-top: 1.5rem;
}

/* Стили для карточек в шахматном порядке */
.chessboard-layout .card {
  padding: 1.25rem;
}

.chessboard-layout .card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.chessboard-layout .card-text {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Стили для картинок */
.chessboard-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.chessboard-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 15px;
  background: rgba(20, 40, 70, 0.3);
  padding: 0.75rem;
  min-height: 220px;
}

@media (max-width: 768px) {
  .chessboard-layout {
    grid-template-columns: 1fr;
  }
  
  .chessboard-layout .card:nth-child(1),
  .chessboard-layout .chessboard-image:nth-child(2),
  .chessboard-layout .chessboard-image:nth-child(3),
  .chessboard-layout .card:nth-child(4),
  .chessboard-layout .card:nth-child(5),
  .chessboard-layout .chessboard-image:nth-child(6) {
    grid-column: 1;
    margin-top: 1rem;
  }
  
  /* Сначала картинка Vizyonumuz, потом карточка */
  .chessboard-layout .chessboard-image:nth-child(2) {
    grid-row: 1;
    margin-top: 0;
  }
  
  .chessboard-layout .card:nth-child(1) {
    grid-row: 2;
  }
  
  /* Сначала картинка Misyonumuz, потом карточка */
  .chessboard-layout .chessboard-image:nth-child(3) {
    grid-row: 3;
  }
  
  .chessboard-layout .card:nth-child(4) {
    grid-row: 4;
  }
  
  /* Сначала картинка Değerlerimiz, потом карточка */
  .chessboard-layout .chessboard-image:nth-child(6) {
    grid-row: 5;
  }
  
  .chessboard-layout .card:nth-child(5) {
    grid-row: 6;
  }
  
  .chessboard-img {
    min-height: 200px;
  }
  
  .chessboard-layout .card {
    padding: 1rem;
  }
  
  .chessboard-layout .card-title {
    font-size: 1.3rem;
  }
  
  .chessboard-layout .card-text {
    font-size: 0.85rem;
  }
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: rgba(26, 26, 46, 0.95);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding: 3rem 20px 1rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--zeus-gold);
}

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

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(255, 215, 0, 0.3);
  padding: 1.5rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  color: var(--text-primary);
  flex: 1;
  min-width: 250px;
}

.cookie-text a {
  color: var(--zeus-gold);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, var(--zeus-gold), var(--sunset-orange));
  color: var(--text-dark);
}

.cookie-btn.decline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.cookie-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* ============================================
   КОНТАКТНАЯ СТРАНИЦА
   ============================================ */

.contact-section {
  padding: 120px 20px 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.contact-info {
  background: rgba(30, 58, 95, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 2.5rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h3 {
  color: var(--zeus-gold);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.contact-item p,
.contact-item a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
}

.contact-item a:hover {
  color: var(--zeus-gold);
}

.contact-form {
  background: rgba(30, 58, 95, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 2.5rem;
}

.contact-map {
  margin-top: 4rem;
}

.contact-map h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--zeus-gold);
  font-size: 2.5rem;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* ============================================
   СТРАНИЦА БЛАГОДАРНОСТИ
   ============================================ */

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  background: rgba(30, 58, 95, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 4rem 3rem;
  animation: fadeInUp 1s ease-out;
}

.thank-you-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thank-you-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* ============================================
   АККОРДЕОН (FAQ)
   ============================================ */

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

.accordion-item {
  background: rgba(30, 58, 95, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: rgba(255, 215, 0, 0.4);
}

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

.accordion-header:hover {
  color: var(--zeus-gold);
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--zeus-gold);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.accordion-body {
  color: var(--text-secondary);
  line-height: 1.8;
  padding-top: 1rem;
}

/* ============================================
   ТАБЛИЦЫ
   ============================================ */

.table-container {
  overflow-x: auto;
  margin: 2rem 0;
  background: rgba(30, 58, 95, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text-primary);
}

thead {
  background: rgba(255, 215, 0, 0.1);
}

th {
  padding: 1rem;
  text-align: left;
  color: var(--zeus-gold);
  font-weight: 600;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  color: var(--text-secondary);
}

tbody tr {
  transition: background 0.3s ease;
}

tbody tr:hover {
  background: rgba(255, 215, 0, 0.05);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================
   ОТЗЫВЫ
   ============================================ */

.reviews-section {
  margin: 4rem 0;
}

.review-card {
  background: rgba(30, 58, 95, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zeus-gold), var(--sunset-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-dark);
}

.review-info h4 {
  color: var(--zeus-gold);
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

.review-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  color: var(--zeus-gold);
  font-size: 1.2rem;
}

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

.review-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

/* ============================================
   СТАТЬИ / БЛОГ
   ============================================ */

.article-card {
  background: rgba(30, 58, 95, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

a .article-card {
  display: block;
  transition: all 0.3s ease;
}

a:hover .article-card {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.article-image {
  width: 100%;
  height: 200px;
  background: var(--gradient-sunset);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--zeus-gold);
}

.article-content {
  padding: 2rem;
}

.article-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-title {
  color: var(--zeus-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.article-excerpt {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.article-link {
  color: var(--zeus-gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.article-link:hover {
  gap: 1rem;
}

/* ============================================
   КОМАНДА / КАРТОЧКИ КОМАНДЫ
   ============================================ */

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

.team-member {
  background: rgba(30, 58, 95, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--zeus-gold), var(--sunset-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  color: var(--text-dark);
  margin: 0 auto 1.5rem;
  border: 4px solid rgba(255, 215, 0, 0.3);
}

.team-name {
  color: var(--zeus-gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================
   ТАЙМЛАЙН / ИСТОРИЯ
   ============================================ */

.timeline {
  position: relative;
  padding: 2rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--zeus-gold), var(--sunset-orange));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  background: rgba(30, 58, 95, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--zeus-gold);
  border-radius: 50%;
  border: 4px solid var(--storm-dark);
  z-index: 1;
}

.timeline-date {
  color: var(--zeus-gold);
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.timeline-title {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.timeline-text {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   СТАТИСТИКА / ЦИФРЫ
   ============================================ */

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

.stat-card {
  background: rgba(30, 58, 95, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex !important;
    position: relative !important;
    z-index: 1002 !important;
  }

  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 280px !important;
    max-width: 80% !important;
    height: 100vh !important;
    background: rgba(26, 26, 46, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    flex-direction: column !important;
    padding: 80px 2rem 2rem !important;
    transition: right 0.3s ease !important;
    border-left: 2px solid rgba(255, 215, 0, 0.3) !important;
    z-index: 1001 !important;
    margin: 0 !important;
    list-style: none !important;
    overflow-y: auto !important;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5) !important;
    gap: 0 !important;
    display: none !important;
  }

  .nav-menu.active {
    right: 0 !important;
    display: flex !important;
  }

  .nav-menu li {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .nav-link {
    display: block !important;
    padding: 1rem 0 !important;
    width: 100% !important;
    font-size: 1.1rem !important;
  }

  .nav-link::before {
    display: none !important;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .access-form {
    padding: 2rem 1.5rem;
  }

  .game-info-box {
    padding: 1.5rem;
  }

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

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
    max-width: 200px;
  }

  .map-container iframe {
    height: 300px;
  }

  .thank-you-content {
    padding: 3rem 2rem;
  }

  .thank-you-content h1 {
    font-size: 2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 50px;
  }

  .timeline-content {
    width: 100%;
  }

  .timeline-dot {
    left: 20px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  table {
    font-size: 0.9rem;
  }

  th, td {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .bonus-badge {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }

  .access-form {
    padding: 1.5rem 1rem;
  }

  .game-container {
    padding: 1.5rem;
  }

  .game-title {
    font-size: 1.5rem;
  }

  #gameCanvas {
    height: 300px;
  }

  .game-stats {
    gap: 1rem;
  }

  .stat-value {
    font-size: 1.2rem;
  }

  .game-buttons {
    flex-direction: column;
  }

  .game-btn {
    width: 100%;
  }
}

/* ============================================
   МИНИ-ИГРА
   ============================================ */

.mini-game-section {
  padding: 80px 20px;
  background: rgba(30, 58, 95, 0.3);
}

.game-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(30, 58, 95, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.game-title {
  font-size: 2rem;
  color: var(--zeus-gold);
  margin-bottom: 1rem;
}

.game-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.game-canvas-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  background: var(--gradient-storm);
}

#gameCanvas {
  display: block;
  width: 100%;
  height: 400px;
  cursor: pointer;
}

.game-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.game-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

.stat-value {
  color: var(--zeus-gold);
  font-size: 1.5rem;
  font-weight: bold;
}

.game-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.game-btn {
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--zeus-gold), var(--sunset-orange));
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.game-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.game-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.game-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 10px;
  font-weight: bold;
  display: none;
}

.game-message.show {
  display: block;
  animation: fadeInUp 0.5s ease-out;
}

.game-message.success {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.5);
}

.game-message.info {
  background: rgba(33, 150, 243, 0.2);
  color: #2196f3;
  border: 1px solid rgba(33, 150, 243, 0.5);
}

.game-instructions {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.game-instructions h4 {
  color: var(--zeus-gold);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.game-instructions p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0.25rem 0;
}

.fs-bonus-info {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: var(--zeus-gold);
  font-weight: bold;
}

/* ============================================
   УТИЛИТЫ
   ============================================ */

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
