/* ===================================
   🎰 Casino Template v4.0 - Cyber Neon Style
   🌌 Красно-синяя авиационная палитра
   =================================== */

/* ===== 1. НЕОНОВАЯ ЦВЕТОВАЯ СИСТЕМА (Cyber Casino) ===== */
:root {
  /* Основные тёмные фоны */
  --bg-dark: #F8F9FA;              /* глубокий тёмный фон */
  --bg-panel: #FFFFFF;             /* второй фон для блоков */
  --bg-panel-hover: #121822;       /* для hover эффектов */

  /* Сине-фиолетовые градиенты */
  --neon-blue: #0FB96E;            /* яркий неоновый голубой */
  --neon-purple: #067A55;          /* неоновый фиолетовый */
  --neon-violet: #0033FF;          /* глубокий фиолетовый */
  --neon-gradient: linear-gradient(135deg, #0A0F2D, #0033FF);
  --cyber-gradient: linear-gradient(90deg, #00BFFF, #FF1A3C, #0033FF);

  /* Кибер акценты */
  --border-glow: rgba(0, 229, 255, 0.4);
  --neon-shadow: rgba(127, 76, 255, 0.3);
  --glow-intense: rgba(0, 229, 255, 0.6);

  /* Текстовая система */
  --text-primary: #1A1A1A;         /* светло-голубой текст */
  --text-secondary: #7A8A9A;       /* второстепенный текст */
  --text-white: #FFFFFF;           /* чистый белый */
  --text-neon: #00BFFF;            /* неоновый акцент */

  /* Кнопки */
  --btn-gradient: linear-gradient(135deg, #067A55, #0FB96E);
  --btn-hover: linear-gradient(135deg, #0FB96E, #65FFB4);
}

/* ===== 2. АНИМАЦИИ И ЭФФЕКТЫ ===== */
@keyframes neon-pulse {
  0%, 100% { box-shadow: 0 0 10px var(--border-glow), 0 0 20px var(--neon-shadow); }
  50% { box-shadow: 0 0 15px var(--glow-intense), 0 0 30px var(--neon-shadow); }
}

@keyframes glow-flow {
  0% { border-color: rgba(0, 229, 255, 0.3); }
  50% { border-color: rgba(15, 185, 110, 0.4); }
  100% { border-color: rgba(0, 229, 255, 0.3); }
}

/* ===== 3. ОСНОВА ЛЕЙАУТА ===== */
body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

/* Градиентные заголовки */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1rem;
}

.title-gradient {
  background: var(--cyber-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
}

/* Текстовая система */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-white { color: var(--text-white); }
.text-neon { color: var(--text-neon); }

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

.small-text, .caption, .disclaimer {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.layout {
  display: flex;
  width: 100%;
  height: 100vh;
}

/* ===== 4. САЙДБАР с неоновой подсветкой ===== */
.sidebar {
  width: 230px;
  background: var(--bg-panel);
  padding: 18px;
  box-sizing: border-box;
  flex-shrink: 0;
  border-right: 1px solid rgba(0, 229, 255, 0.15);
  box-shadow: 4px 0 20px rgba(0, 229, 255, 0.1);
}

/* Мобильное меню */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--neon-blue);
  margin: 2px 0;
  transition: 0.3s;
  box-shadow: 0 0 8px var(--neon-blue);
}

.mobile-menu-toggle span:first-child { margin-top: 0; }
.mobile-menu-toggle span:last-child { margin-bottom: 0; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-panel);
  z-index: 1000;
  padding: 80px 20px 20px;
  overflow-y: auto;
  border-right: 1px solid rgba(0, 229, 255, 0.2);
}

/* Кнопка меню с неоновым эффектом */
.btn-menu {
  background: var(--btn-gradient) !important;
  color: var(--text-white) !important;
  font-weight: 700;
  margin-top: 10px;
  text-align: center;
  border-radius: 8px;
  padding: 12px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(15, 185, 110, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: neon-pulse 2s infinite;
}

.btn-menu:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.7), inset 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Логотип с неоновым свечением */
.logo {
  font-size: 22px;
  color: var(--neon-blue);
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-purple);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-item {
  display: block;
  padding: 12px;
  margin-bottom: 6px;
  background: rgba(0, 229, 255, 0.05);
  border-radius: 6px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.menu-item:hover,
.menu-item.active {
  background: rgba(127, 76, 255, 0.15);
  color: var(--neon-blue);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2), inset 0 0 10px rgba(0, 229, 255, 0.1);
  transform: translateX(5px);
}

/* ===== 5. ОСНОВНОЙ КОНТЕНТ ===== */
.main {
  flex: 1;
  overflow-y: auto;
}

/* ===== 6. ХЕДЕР ===== */
.header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.site-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  background: var(--cyber-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  filter: drop-shadow(0 0 10px rgba(15, 185, 110, 0.3));
}

/* ===== 7. КНОПКИ (неоновые) ===== */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary, .btn.green {
  background: var(--btn-gradient);
  color: var(--text-white);
  box-shadow: 0 0 20px rgba(15, 185, 110, 0.3);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

.btn-primary:hover, .btn.green:hover {
  background: var(--btn-hover);
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.7);
}

.btn-alternate, .btn.blue {
  background: linear-gradient(135deg, #00BFFF, #0099FF);
  color: var(--text-white);
  box-shadow: 0 0 20px rgba(15, 185, 110, 0.4);
}

.btn-alternate:hover, .btn.blue:hover {
  box-shadow: 0 0 30px rgba(15, 185, 110, 0.6);
}

.btn-greek {
  background: var(--cyber-gradient);
  color: var(--text-white);
  font-weight: 700;
  box-shadow: 0 0 20px rgba(15, 185, 110, 0.3);
  animation: neon-pulse 2s infinite;
}

.btn-greek:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(15, 185, 110, 0.6);
}

/* ===== 8. HERO PROMO BANNER ===== */
.promo-banner {
  position: relative;
  width: calc(100% - 40px);
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 20px 30px;
  border: 2px solid rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 30px rgba(127, 76, 255, 0.4), inset 0 0 30px rgba(0, 0, 0, 0.5);
  animation: glow-flow 3s infinite;
}

.promo-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.promo-content {
  position: absolute;
  top: 50%;
  left: 28%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
}

.promo-small {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.9;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: var(--neon-blue);
  text-shadow: 0 0 10px var(--neon-blue);
}

.promo-main {
  font-size: 42px;
  font-weight: 700;
  color: var(--neon-blue);
  line-height: 1.25;
  text-shadow: 0 0 20px rgba(15, 185, 110, 0.6), 0 0 40px rgba(15, 185, 110, 0.4);
  margin-bottom: 8px;
}

.promo-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 34px;
  background: var(--btn-gradient);
  border-radius: 8px;
  color: white;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 0 25px rgba(15, 185, 110, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(15, 185, 110, 0.4);
  transition: 0.25s;
  cursor: pointer;
  animation: neon-pulse 2s infinite;
}

.promo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(101, 255, 180, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: white;
}

/* ===== 9. CTR BANNER ===== */
.ctr-banner {
  background: linear-gradient(135deg, rgba(59, 0, 255, 0.15), rgba(153, 0, 255, 0.1));
  border: 2px solid rgba(0, 229, 255, 0.3);
  border-radius: 12px;
  padding: 30px;
  margin: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 30px rgba(127, 76, 255, 0.3), inset 0 0 20px rgba(0, 229, 255, 0.1);
  animation: glow-flow 3s infinite;
}

.ctr-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.ctr-icon {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--btn-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(15, 185, 110, 0.4);
  border: 1px solid rgba(15, 185, 110, 0.3);
  animation: neon-pulse 2s infinite;
}

.ctr-icon img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  border-radius: 4px;
}

.ctr-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.ctr-small-text {
  font-size: 12px;
  color: var(--neon-blue);
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(15, 185, 110, 0.4);
}

.ctr-big-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 4px;
  line-height: 1;
  text-shadow: 0 0 15px rgba(15, 185, 110, 0.5);
}

.ctr-medium-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 8px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
}

.ctr-disclaimer-text {
  font-size: 10px;
  color: var(--text-secondary);
  opacity: 0.7;
  line-height: 1.2;
}

.ctr-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.ctr-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.stars {
  color: var(--neon-blue);
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 2px;
  filter: drop-shadow(0 0 8px rgba(15, 185, 110, 0.6));
}

.rating-number {
  color: var(--text-white);
  font-weight: 700;
  font-size: 14px;
  text-shadow: 0 0 10px rgba(15, 185, 110, 0.4);
}

.ctr-time-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--neon-purple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  text-shadow: 0 0 8px rgba(15, 185, 110, 0.4);
}

.ctr-green-btn {
  background: var(--btn-gradient);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  box-shadow: 0 0 25px rgba(15, 185, 110, 0.4);
  border: 1px solid rgba(15, 185, 110, 0.4);
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 140px;
  animation: neon-pulse 2s infinite;
}

.ctr-green-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(15, 185, 110, 0.6);
  background: var(--btn-hover);
  text-decoration: none;
  color: white;
}

/* ===== 10. СЕКЦИЯ ИГР ===== */
.games {
  padding: 0 20px 40px;
}

.block-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 20px;
  text-shadow: 0 0 15px rgba(15, 185, 110, 0.4);
}

.game-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

/* Игровые карточки с неоновой подсветкой */
.game-card {
  background: var(--bg-panel);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 229, 255, 0.2);
  aspect-ratio: 4/5;
  box-shadow: 0 0 15px rgba(127, 76, 255, 0.2);
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.6), 0 0 50px rgba(127, 76, 255, 0.4);
  border-color: var(--neon-blue);
  animation: neon-pulse 1.5s infinite;
}

.game-card img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--bg-panel-hover), var(--bg-panel));
}

.game-title {
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-white);
  background: var(--bg-panel-hover);
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(0, 229, 255, 0.2);
  text-shadow: 0 0 8px rgba(15, 185, 110, 0.4);
}

/* ===== 11. SEO КОНТЕНТ ===== */
.seo-content {
  padding: 0 20px 60px;
  background: #FFFFFF;
  border-radius: 12px;
  margin: 20px;
  border: 1px solid rgba(15, 185, 110, 0.2);
  box-shadow: 0 4px 20px rgba(15, 185, 110, 0.1);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  padding: 30px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid rgba(15, 185, 110, 0.15);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

.content-wrapper h1 {
  color: var(--neon-blue);
  font-size: 32px;
  margin-bottom: 25px;
  text-align: center;
  text-shadow: 0 0 20px rgba(15, 185, 110, 0.6);
  border-bottom: 2px solid var(--neon-purple);
  padding-bottom: 15px;
}

.content-wrapper h2 {
  color: var(--neon-blue);
  font-size: 24px;
  margin: 40px 0 20px;
  padding-left: 15px;
  border-left: 4px solid var(--neon-purple);
  background: rgba(127, 76, 255, 0.1);
  padding: 12px 15px;
  border-radius: 0 6px 6px 0;
  text-shadow: 0 0 10px rgba(15, 185, 110, 0.4);
}

.content-wrapper h3 {
  color: var(--neon-purple);
  font-size: 20px;
  margin: 25px 0 15px;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(15, 185, 110, 0.4);
}

.content-wrapper h4 {
  color: var(--text-white);
  font-size: 18px;
  margin: 20px 0 12px;
  font-weight: 600;
}

.content-wrapper p {
  margin-bottom: 18px;
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
}

/* Списки */
.content-wrapper ul,
.content-wrapper ol {
  margin: 20px 0;
  padding-left: 25px;
}

.content-wrapper li {
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.6;
  position: relative;
}

.content-wrapper ul li {
  list-style: none;
  padding-left: 20px;
}

.content-wrapper ul li::before {
  content: '▶';
  color: var(--neon-blue);
  position: absolute;
  left: 0;
  font-size: 12px;
  top: 6px;
  text-shadow: 0 0 8px rgba(15, 185, 110, 0.6);
}

.content-wrapper ol li {
  padding-left: 8px;
}

.content-wrapper ol {
  counter-reset: item;
}

.content-wrapper ol > li {
  counter-increment: item;
}

.content-wrapper ol > li::before {
  content: counter(item) ".";
  color: var(--neon-purple);
  font-weight: bold;
  margin-right: 8px;
  text-shadow: 0 0 8px rgba(15, 185, 110, 0.4);
}

/* Вложенные списки */
.content-wrapper ul ul,
.content-wrapper ol ol {
  margin-top: 8px;
  margin-bottom: 8px;
}

/* Таблицы */
.content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(15, 185, 110, 0.15);
}

.content-wrapper th,
.content-wrapper td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(127, 76, 255, 0.15);
}

.content-wrapper th {
  background: var(--btn-gradient);
  color: white;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.content-wrapper td {
  color: var(--text-primary);
  font-size: 15px;
}

.content-wrapper tr:last-child td {
  border-bottom: none;
}

.content-wrapper tr:nth-child(even) {
  background: rgba(127, 76, 255, 0.05);
}

.content-wrapper tr:hover {
  background: rgba(0, 229, 255, 0.08);
  box-shadow: inset 0 0 15px rgba(0, 229, 255, 0.1);
}

/* Цитаты */
.content-wrapper blockquote {
  margin: 25px 0;
  padding: 15px 25px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(127, 76, 255, 0.05));
  border-left: 4px solid var(--neon-blue);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.content-wrapper blockquote p {
  margin-bottom: 0;
}

/* Код */
.content-wrapper code {
  background: rgba(127, 76, 255, 0.2);
  color: var(--neon-blue);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  text-shadow: 0 0 8px rgba(15, 185, 110, 0.4);
}

.content-wrapper pre {
  background: rgba(5, 6, 10, 0.8);
  padding: 20px;
  border-radius: 8px;
  overflow-x: auto;
  border: 1px solid rgba(15, 185, 110, 0.2);
  margin: 20px 0;
  box-shadow: 0 0 20px rgba(127, 76, 255, 0.2);
}

.content-wrapper pre code {
  background: none;
  padding: 0;
  color: var(--neon-blue);
}

/* Ссылки в контенте */
.content-wrapper a {
  color: var(--neon-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.content-wrapper a:hover {
  color: var(--neon-purple);
  border-bottom-color: var(--neon-purple);
  text-shadow: 0 0 12px rgba(127, 76, 255, 0.8);
}

/* Выделение текста */
.content-wrapper strong,
.content-wrapper b {
  color: var(--neon-blue);
  font-weight: 700;
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.6);
}

.content-wrapper em,
.content-wrapper i {
  color: var(--neon-purple);
  font-style: italic;
  text-shadow: 0 0 8px rgba(15, 185, 110, 0.4);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
}

.breadcrumb-item a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: color 0.25s ease;
  text-shadow: 0 0 8px rgba(15, 185, 110, 0.4);
}

.breadcrumb-item a:hover {
  color: var(--neon-purple);
  text-shadow: 0 0 12px rgba(127, 76, 255, 0.8);
}

.breadcrumb-item.active {
  color: var(--text-white);
  font-weight: 500;
}

.breadcrumb-item:not(:last-child)::after {
  content: '/';
  margin: 0 12px;
  color: var(--text-secondary);
  font-size: 12px;
}

/* Mobile responsive for breadcrumbs */
@media (max-width: 768px) {
  .breadcrumbs {
    margin: 15px auto;
  }

  .breadcrumb-list {
    font-size: 13px;
  }

  .breadcrumb-item:not(:last-child)::after {
    margin: 0 8px;
  }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark);
  border-top: 2px solid rgba(0, 229, 255, 0.3);
  padding: 40px 0;
  color: var(--text-primary);
  font-family: "Roboto", sans-serif;
  margin-top: 60px;
  box-shadow: 0 -10px 40px rgba(127, 76, 255, 0.2);
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 20px;
}

.footer-heading {
  color: var(--neon-blue);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 0 15px rgba(15, 185, 110, 0.6);
}

.footer-col p {
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-col a {
  color: var(--neon-purple);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: 0.25s ease;
  font-size: 14px;
  text-shadow: 0 0 8px rgba(15, 185, 110, 0.3);
}

.footer-col a:hover {
  color: var(--neon-blue);
  transform: translateX(3px);
  text-shadow: 0 0 12px rgba(15, 185, 110, 0.6);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid rgba(127, 76, 255, 0.2);
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-bottom p {
  margin: 0;
}

/* Mobile responsive for footer */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }

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

  .footer-col a {
    text-align: center;
  }

  .footer-bottom {
    padding: 20px 15px 0;
  }
}

/* ===== 12. RESPONSIVE ===== */
@media (max-width: 768px) {
  .layout {
    flex-direction: column;
    height: auto;
  }

  .sidebar {
    display: none;
  }

  .main {
    margin-left: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .header {
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    text-align: center;
    align-items: stretch;
  }

  .site-title {
    font-size: 20px;
    width: 100%;
    text-align: center;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-menu.active ~ * {
    filter: blur(5px);
    pointer-events: none;
  }

  /* Анимация гамбургера в крестик */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

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

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

  .promo-banner {
    width: calc(100% - 30px);
    height: 300px;
    margin: 0 15px 30px;
  }

  .promo-content {
    left: 5%;
    max-width: 90%;
  }

  .promo-main {
    font-size: 28px;
  }

  .games {
    padding: 0 15px 30px;
  }

  .game-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ctr-banner {
    flex-direction: column;
    padding: 20px;
    margin: 0 15px 30px;
    gap: 20px;
  }

  .ctr-left {
    justify-content: flex-start;
    gap: 15px;
  }

  .ctr-right {
    align-items: center;
    gap: 10px;
  }

  .ctr-icon {
    width: 60px;
    height: 60px;
  }

  .ctr-text {
    align-items: flex-start;
  }

  .ctr-big-text {
    font-size: 22px;
  }

  .ctr-medium-text {
    font-size: 18px;
  }

  .ctr-green-btn {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 120px;
  }

  .seo-content {
    padding: 0 15px 40px;
    margin: 15px;
  }

  .content-wrapper {
    padding: 20px;
  }

  .content-wrapper h1 {
    font-size: 24px;
  }

  .content-wrapper h2 {
    font-size: 20px;
  }

  .content-wrapper h3 {
    font-size: 18px;
  }

  .content-wrapper p {
    font-size: 15px;
  }

  .content-wrapper th,
  .content-wrapper td {
    padding: 10px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .game-list {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
  }

  .promo-main {
    font-size: 24px;
  }

  .block-title {
    font-size: 18px;
  }
}
