/* ========================================
   PIN-UP CASINO REVIEW SITE STYLES
   Современный дизайн в стиле пин-ап
   ======================================== */

/* CSS Variables для цветовой схемы */
:root {
  /* Основные цвета Pin-Up */
  --primary-red: #FF4444;
  --dark-red: #CC3333;
  --light-red: #FF6666;
  --accent-gold: #FFD700;
  --dark-gold: #E6C200;
  
  /* Нейтральные цвета */
  --bg-dark: #1A1A1A;
  --bg-secondary: #2A2A2A;
  --bg-light: #3A3A3A;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-muted: #999999;
  
  /* Дополнительные */
  --success: #28A745;
  --warning: #FFC107;
  --danger: #DC3545;
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-heavy: rgba(0, 0, 0, 0.5);
  
  /* Градиенты */
  --gradient-primary: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  --gradient-gold: linear-gradient(135deg, var(--accent-gold) 0%, var(--dark-gold) 100%);
  --gradient-dark: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
  
  /* Размеры */
  --container-max: 1200px;
  --border-radius: 12px;
  --border-radius-small: 6px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-elevation: 0 4px 20px var(--shadow);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

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

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

/* Предотвращение горизонтального скролла */
html {
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
}

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

/* Глобальные правила для предотвращения переполнения */
div, section, header, footer, main, nav {
  max-width: 100%;
}

/* Исправляем возможные проблемы с grid и flex */
.hero-content,
.section-header-with-image,
.bonus-cards,
.game-grid,
.reviews-grid {
  width: 100%;
  max-width: 100%;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  padding-top: 80px; /* Отступ для фиксированного header */
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

a {
  text-decoration: none;
  color: var(--primary-red);
  transition: var(--transition);
}

a:hover {
  color: var(--light-red);
}

/* ========================================
   LAYOUT COMPONENTS
   ======================================== */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  min-height: 48px;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover:before {
  left: 100%;
}

/* Primary Button */
.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-elevation);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px var(--shadow-heavy);
  color: white;
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--primary-red);
  border-color: var(--primary-red);
}

.btn-outline:hover {
  background: var(--primary-red);
  color: white;
  transform: translateY(-1px);
}

/* Secondary Button */
.btn-secondary {
  background: var(--bg-light);
  color: var(--text-secondary);
  border-color: var(--bg-light);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

/* Button Sizes */
.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
  min-height: 56px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.85rem;
  min-height: 36px;
}

.btn-mobile {
  width: 100%;
  margin-bottom: 10px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
  background: var(--gradient-dark);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 68, 68, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 68, 68, 0.4);
}

.navbar {
  padding: 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-red);
  letter-spacing: 2px;
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 3px;
  margin-top: -2px;
}

/* Desktop Navigation */
.desktop-menu .nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary-red);
}

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

/* Desktop Actions */
.desktop-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 30px;
  height: 30px;
  position: relative;
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  margin: 2px 0;
  transition: var(--transition);
  transform-origin: center;
}

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

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

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

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  padding: 80px 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 68, 68, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="80" cy="40" r="0.3" fill="%23ffffff" opacity="0.03"/><circle cx="40" cy="80" r="0.4" fill="%23ffffff" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
}

.hero-text {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

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

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow: visible;
  margin-left: -50px;
}

.pin-up-girl {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
}

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

.girl-illustration {
  font-size: 4rem;
  color: var(--accent-gold);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Основное пин-ап изображение в hero секции */
.pinup-main-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(255, 68, 68, 0.3));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 5;
}

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

.sparkles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: 10%; right: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 60%; left: 10%; animation-delay: 0.7s; }
.sparkle:nth-child(3) { bottom: 20%; right: 30%; animation-delay: 1.4s; }

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

/* ========================================
   SECTIONS
   ======================================== */

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

/* Заголовки секций с пин-ап изображениями */
.section-header-with-image {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  gap: 2rem;
}

.section-content {
  flex: 1;
}

.section-content .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.section-pinup-image {
  flex-shrink: 0;
  max-width: 200px;
}

.pinup-section-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 25px rgba(255, 68, 68, 0.2));
  transition: var(--transition);
}

.pinup-section-image:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 35px rgba(255, 68, 68, 0.3));
}

/* Адаптивность для планшетов */
@media (max-width: 1024px) {
  .section-header-with-image {
    gap: 1.5rem;
  }
  
  .section-pinup-image {
    max-width: 180px;
  }
  
  .pinup-main-image {
    max-width: 320px;
  }
  
  .hero-image {
    margin-left: -30px;
  }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
  .section-header-with-image {
    flex-direction: column;
    text-align: center;
  }
  
  .section-content .section-title {
    text-align: center;
  }
  
  .section-pinup-image {
    max-width: 150px;
  }
  
  .pinup-main-image {
    max-width: 250px;
  }
  
  .hero-image {
    margin-left: 0;
    justify-content: center;
  }
}

/* Адаптивность для маленьких мобильных */
@media (max-width: 480px) {
  .section-pinup-image {
    max-width: 120px;
  }
  
  .pinup-main-image {
    max-width: 220px;
  }
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* ========================================
   BONUSES SECTION
   ======================================== */

.bonuses {
  background: var(--bg-secondary);
  position: relative;
}

.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  width: 100%;
}

.bonus-card {
  background: var(--gradient-dark);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 68, 68, 0.2);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-heavy);
  border-color: var(--primary-red);
}

.bonus-card.featured {
  background: 
    linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(255, 215, 0, 0.1) 100%),
    var(--gradient-dark);
  border-color: var(--accent-gold);
  transform: scale(1.05);
}

.bonus-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-gold);
  color: var(--bg-dark);
  padding: 8px 16px;
  border-radius: var(--border-radius-small);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.bonus-icon {
  font-size: 3rem;
  color: var(--primary-red);
  margin-bottom: 1rem;
}

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

.bonus-amount {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.bonus-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.bonus-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}

.bonus-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.bonus-features li i {
  color: var(--success);
  margin-right: 0.5rem;
  width: 16px;
}

.btn-bonus {
  width: 100%;
  margin-top: auto;
}

/* ========================================
   GAMES SECTION
   ======================================== */

.games {
  background: var(--bg-dark);
}

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

.category-btn {
  padding: 10px 20px;
  background: transparent;
  border: 2px solid var(--bg-light);
  border-radius: var(--border-radius);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
  border-color: var(--primary-red);
  color: var(--primary-red);
  background: rgba(255, 68, 68, 0.1);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.game-card {
  background: var(--bg-secondary);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevation);
  border-color: var(--primary-red);
}

.game-image {
  height: 150px;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.game-placeholder {
  font-size: 3rem;
  color: var(--primary-red);
  opacity: 0.7;
}

.game-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.game-card:hover .game-img {
  transform: scale(1.05);
}

.game-title {
  font-size: 1.1rem;
  padding: 1rem 1rem 0.5rem;
  margin-bottom: 0;
  color: var(--text-primary);
}

.game-provider {
  padding: 0 1rem 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ========================================
   REVIEWS SECTION
   ======================================== */

.reviews {
  background: var(--bg-secondary);
}

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

.review-card {
  background: var(--bg-dark);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

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

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

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-primary);
}

.review-rating {
  display: flex;
  gap: 2px;
}

.review-rating i {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.review-text {
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

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

.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 68, 68, 0.2);
  padding: 40px 0 20px;
}

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

.footer-section-title {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}

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

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

.footer-section ul li a {
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-red);
}

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

.footer-logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-red);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-disclaimer {
  color: var(--warning);
  font-size: 0.85rem;
}

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

/* ========================================
   MODAL WINDOWS
   ======================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
  animation: fadeInOverlay 0.5s ease;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 0 3px var(--gradient-primary);
  animation: modalSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
  from { 
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.age-modal-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--gradient-primary);
  opacity: 0.1;
}

.casino-chips {
  position: absolute;
  top: 20px;
  right: 30px;
  display: flex;
  gap: 10px;
}

.chip {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
  animation: chipFloat 3s ease-in-out infinite;
}

.chip-red { 
  background: var(--primary-red);
  animation-delay: 0s;
}
.chip-gold { 
  background: var(--accent-gold);
  animation-delay: 0.5s;
}
.chip-black { 
  background: #2a2a2a;
  animation-delay: 1s;
}

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

.age-modal-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
}

.age-modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.age-modal-icon {
  font-size: 4rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  animation: crownGlow 2s ease-in-out infinite alternate;
}

@keyframes crownGlow {
  from { 
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    transform: scale(1);
  }
  to { 
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
  }
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.age-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.age-modal-body {
  margin-bottom: 2rem;
}

.age-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.age-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 68, 68, 0.1);
  border-radius: 12px;
  border-left: 4px solid var(--primary-red);
  transition: var(--transition);
}

.benefit-item:hover {
  background: rgba(255, 68, 68, 0.15);
  transform: translateX(5px);
}

.benefit-item i {
  color: var(--primary-red);
  font-size: 1.2rem;
  width: 20px;
}

.benefit-item span {
  color: var(--text-primary);
  font-weight: 500;
}

.age-modal-footer {
  text-align: center;
}

.age-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.btn-age-confirm {
  flex: 1;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.btn-age-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 68, 68, 0.4);
}

.btn-age-decline {
  flex: 1;
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-age-decline:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  transform: translateY(-2px);
}

.age-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.age-disclaimer i {
  color: var(--warning);
}

/* Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--bg-dark);
  border: 1px solid var(--primary-red);
  border-radius: var(--border-radius);
  padding: 1rem;
  z-index: 999;
  box-shadow: var(--shadow-elevation);
  transition: var(--transition);
}

.cookie-notice.hidden {
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  flex: 1;
}

.cookie-text i {
  color: var(--warning);
  font-size: 1.2rem;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.hidden {
  display: none !important;
}

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

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

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN - DESKTOP FIRST
   ======================================== */

/* Large Desktop */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  /* Hide desktop elements */
  .desktop-menu,
  .desktop-actions {
    display: none;
  }
  
  /* Мобильная версия header */
  .header {
    position: relative;
  }
  
  body {
    padding-top: 0;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  /* Sections */
  section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Bonus cards */
  .bonus-cards {
    grid-template-columns: 1fr;
  }
  
  .bonus-card.featured {
    transform: none;
  }
  
  /* Game categories */
  .game-categories {
    gap: 0.5rem;
  }
  
  .category-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
  
  /* Footer */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  /* Логотипы на планшетах */
  .logo-image {
    height: 40px;
  }
  
  .footer-logo-image {
    height: 35px;
  }
  
  /* Cookie notice */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  /* Логотипы на мобильных */
  .logo-image {
    height: 35px;
  }
  
  .footer-logo-image {
    height: 30px;
  }
  
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Очень маленькие экраны (iPhone SE и подобные) */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }
  
  .bonus-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .game-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat {
    min-width: auto;
  }
}