:root {
  --bg: #013220;               /* Темно-зеленый фон */
  --fg: #e0e0d4;               /* Светлый, приятный для глаз */
  --accent: #20603d;          /* Мятно-зеленый акцент */
  --surface: rgba(1,50,32,0.85);
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
  --btn-bg: #20603d;
  --btn-hover: #21421e;
}

/* Общие сбросы и шрифты */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

/* Header & Footer */
header, footer {
  background: var(--surface);
  backdrop-filter: blur(10px);
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
header h1 {
  font-size: 1.8rem;
  color: var(--accent);
}

/* Контейнер */
.container {
  max-width: 900px;
  margin: 30px auto;
  padding: 0 20px;
}

/* Стеклянный блок */
.glass-block {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Промо-блок */
.promo-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 15px;
  margin: 35px 0;
  background: var(--surface);
  box-shadow: 0 4px 15px rgba(32,96,61,0.5);
}
.promo-code {
  font-size: 1.1rem;
  font-weight: bold;
  color: #00ffff;
  margin-right: 10px;
}
.copy-btn {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.copy-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* Кнопки и ссылки */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--btn-bg);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.btn:hover {
  background: var(--btn-hover);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

/* Таблица казино */
.casino-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.casino-table caption {
  caption-side: top;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
  color: var(--accent);
}
.casino-table th,
.casino-table td {
  border: 1px solid rgba(224,224,212,0.3);
  padding: 10px;
  text-align: left;
}
.casino-table th {
  background-color: var(--accent);
  color: #fff;
}

/* SEO списки */
.seo-list {
  margin-top: 15px;
  list-style: none;
}
.seo-list li {
  margin-bottom: 8px;
}

/* Адаптив */
@media (max-width: 600px) {
  .promo-container {
    flex-direction: column;
    padding: 12px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}
