/* Базовые стили */
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
  background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
}

a {
  color: #8B0000; /* кроваво-красный */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Заголовки */
h1, h2 {
  margin: 0.5em 0;
  font-weight: 700;
  color: #F5EDEB; /* чуть светлее для контраста */
}

/* Списки и секции */
ul {
  padding-left: 1.2em;
}
section {
  padding: 1em;
}

/* Хедер и футер со стеклянным эффектом */
.glass-header,
.glass-footer {
  background: rgba(20, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1em;
  text-align: center;
  border-bottom: 1px solid #5A0000;
}

.glass-footer {
  border-top: 1px solid #5A0000;
  border-bottom: none;
}

/* Навигация */
nav {
  display: flex;
  justify-content: center;
  gap: 1.2em;
  flex-wrap: wrap;
  margin-top: 0.5em;
}

.btn {
  display: inline-block;
  padding: 0.6em 1.2em;
  margin-top: 1em;
  background: #8B0000; /* кроваво-красный */
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-align: center;
}

/* Список слотов */
.slot-list ul {
  background-color: #1a0000;
  border: 1px solid #5A0000;
  border-radius: 8px;
  padding: 1em;
}

.slot-list li {
  margin-bottom: 0.5em;
}

/* Бонусный блок */
.bonus-info {
  background: #2B0000;
  border-left: 4px solid #8B0000;
  padding: 1em;
  border-radius: 5px;
  margin-top: 1em;
}

/* FAQ */
.faq details {
  margin-bottom: 1em;
  background: #1a0000;
  border-radius: 5px;
  padding: 0.8em;
  border: 1px solid #5A0000;
}

.faq summary {
  font-weight: bold;
  cursor: pointer;
  color: #F5EDEB;
}

/* Промо-блок */
.promo-container {
  max-width: 400px;
  margin: 50px auto;
  font-family: Arial, sans-serif;
  text-align: center;
}

.promo-title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #8B0000; /* кроваво-красный */
}

.promo-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#promoCode {
  font-size: 25px;
  padding: 10px;
  width: 150px;
  text-align: center;
  border: 1px solid #5A0000;
  border-radius: 4px;
  background: #2B0000;
  color: #F5EDEB;
}

.copy-button {
  background: none;
  border: none;
  margin-left: 10px;
  cursor: pointer;
  padding: 0;
}

.copy-button img {
  width: 30px;
  height: 30px;
  transition: transform 0.6s ease;
  filter: brightness(0) saturate(100%) invert(12%) sepia(90%) saturate(600%) hue-rotate(350deg) brightness(90%) contrast(90%);
}

.copy-button:hover img {
  transform: rotate(360deg) scale(1.1);
}

.copied-message {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
  background-color: #8B0000;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Мобильная адаптация */
@media screen and (max-width: 600px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.6em;
  }

  h2 {
    font-size: 1.3em;
  }

  nav {
    flex-direction: column;
    gap: 0.5em;
  }

  .slot-list li {
    font-size: 15px;
  }
}
