:root {
  --bg: #021102;
  --fg: #e0e0e0;
  --accent: #21421E,;
  --surface: rgba(255, 255, 255, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --hover-border: rgba(0, 255, 0, 0.2);
  --button-bg: #28a745;
  --button-hover: #218838;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  background: var(--surface);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  z-index: 100;
  border-radius: 0 0 16px 16px; /* Скругление нижних углов */
  border-style: solid;
  border-width: 0 0.5px 0.5px 0.5px; /* Верх: 0, Право: 0.5px, Низ: 0.5px, Лево: 0.5px */
  border-color: rgba(255, 255, 255, 0.1); /* Полупрозрачный белый цвет */
}


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

.logo img {
  height: 40px; /* Настройте высоту по вашему усмотрению */
  margin-right: 8px;
}

.logo span {
  font-size: 24px;
  font-weight: bold;
  color: #fff; /* Измените цвет текста при необходимости */
}

.nav-toggle {
  font-size: 1.5rem;
  color: var(--fg);
  display: none;
  cursor: pointer;
}

nav {
  display: flex;
  gap: 16px;
}

nav a {
  color: var(--fg);
  text-decoration: none;
  font-size: 1rem;
}

.header-buttons {
  display: flex;
  gap: 3px;
}

.header-buttons a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(45deg, #2D572C, #507D2A);
  border: 2px solid #507D2A;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(80, 125, 42, 0.5);
}

.header-buttons a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(204, 51, 51, 0.8);
}

/* Мобильная адаптация */
@media (max-width: 480px) {
  .header-buttons a {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 4px;
  }
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
  padding: 60px 20px;
  background: linear-gradient(135deg, #013220, #21421E, #20603D);
  border-radius: 16px;
  color: #fff;
}




.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--fg);
}

/* Sections */
main {
  padding: 24px 16px;
}

section {
  margin-bottom: 40px;
}

section h2 {
  font-size: 1.25rem;
  color: var(--accent);
  margin-bottom: 12px;
}

section p,
section li {
  font-size: 1rem;
  margin-bottom: 8px;
}

ul,
ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

table th,
table td {
  border: 1px solid #7fffd4;
  padding: 8px;
}

/* Back to top button */
.btn-up {
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 1000;
  display: none;
}

.btn-up img {
  width: 50px;
  height: 50px;
}

/* Footer */
footer {
  padding: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05); /* Полупрозрачный фон */
  backdrop-filter: blur(10px); /* Эффект размытия фона */
  -webkit-backdrop-filter: blur(10px); /* Поддержка для Safari */
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Тонкая верхняя граница */
  color: #ccc; /* Цвет текста */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* Тень для глубины */
  border-radius: 0 0 16px 16px; /* Скругление нижних углов */
}

/* Ссылки в футере */
footer a {
  color: #ccc;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff; /* Изменение цвета при наведении */
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  header.active nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--surface);
  }
}



/* Сетка карточек */
.casblock {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #013220, #21421E);
  border-radius: 16px;
  margin: 40px auto;
  max-width: 1200px;
}

/* Карточка казино */
.cascard {
  background: var(--glass-bg);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
  overflow: hidden; /* Предотвращает выход содержимого за пределы карточки */
}

/* Анимация тряски при наведении */
.cascard:hover {
  border-color: var(--hover-border);
  animation: shake 0.3s;
}

/* Логотип казино */
.cascard img {
  width: 100%; /* Изображение занимает всю ширину контейнера */
  height: auto; /* Высота автоматически подстраивается для сохранения пропорций */
  object-fit: contain; /* Сохраняет пропорции изображения и вписывает его в контейнер */
  max-width: 100%; /* Предотвращает превышение ширины контейнера */
  display: block; /* Убирает возможные пробелы снизу изображения */
  margin-bottom: 10px;
}



/* Разделительная линия */
.cascard hr {
  border: none;
  border-top: 1px solid var(--glass-border);
  margin: 10px 0;
}

/* Название казино */
.cascard h3 {
  color: #fff;
  margin: 10px 0;
  font-size: 1.2rem;
}

/* Ссылки */
.cascard a {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  border-radius: 25px;
  background-color: var(--button-bg);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cascard a:hover {
  background-color: var(--button-hover);
}

/* Анимация тряски */
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
  75% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 600px) {
  .cascard img {
    width: 100%;
    height: auto;
  }
}
/* Секция слотов */
.slots-section {
  padding: 40px 20px;
  background: #013220;
  border-radius: 16px;
  color: #fff;
  text-align: center;
}

/* Заголовок секции */
.slots-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

/* Сетка слотов */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Карточка слота */
.slot-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(80, 125, 42, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Эффект при наведении */
.slot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(80, 125, 42, 0.7);
}

/* Заголовок карточки */
.slot-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Текст карточки */
.slot-card p {
  font-size: 14px;
  line-height: 1.5;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 600px) {
  .slots-section {
    padding: 20px 10px;
  }

  .slots-section h2 {
    font-size: 24px;
  }

  .slot-card h3 {
    font-size: 18px;
  }

  .slot-card p {
    font-size: 13px;
  }
}
.animated-title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(270deg, #34C924, #20603D, #34C924);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.promo-section {
  text-align: center;

  padding: 30px 20px;
  background: linear-gradient(135deg, #013220, #21421E, #20603D);
  border-radius: 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.promo-box {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px;
  margin: 10px 0;
}

.promo-box input {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 18px;
  padding: 10px;
  width: 150px;
  text-align: center;
}

.promo-box button {
  margin-left: 10px;
  padding: 8px 12px;
  background-color: #21421E;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.promo-box button:hover {
  background-color: #20603D;
}

@media (max-width: 600px) {
  .promo-box {
    flex-direction: column;
  }

  .promo-box button {
    margin-left: 0;
    margin-top: 10px;
  }
}
.play-button {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background-color: #44c931;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.play-button:hover {
  background-color: #31c969;
}
