body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #1a0006;
  color: #fff;
}

header {
  background: rgba(26, 0, 6, 0.95);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
  flex-wrap: wrap;
}

.logo {
  height: 60px;
}

nav {
  flex: 1;
  text-align: center;
}

nav a {
  color: #FFD700;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

nav a:hover {
  color: #FF6347;
}

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

.header-buttons a {
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
  white-space: nowrap;
}

.btn-login {
  border: 2px solid #FFD700;
  color: #FFD700;
  background: transparent;
}

.btn-register {
  background: #FFD700;
  color: #000;
}

.btn-download {
  background: transparent;
  border: 2px solid #FF6347;
  color: #FF6347;
}

.btn-login:hover,
.btn-download:hover {
  background: #FFD700;
  color: #000;
}

.btn-register:hover {
  background: #fff;
}

.hero {
  position: relative;
  text-align: center;
}

.hero img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 0 0 10px #FFD700;
}

.hero-text h1 {
  font-size: 48px;
  color: #FFD700;
}

.hero-text p {
  font-size: 20px;
  color: #FF6347;
}

main {
  padding: 30px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.bonus-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.bonus-tile {
  flex: 1 1 30%;
  background: linear-gradient(145deg, #330000, #4d0000);
  border: 2px solid #FFD700;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.bonus-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.bonus-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.bonus-tile h3 {
  color: #FFD700;
  font-size: 18px;
}

.bonus-tile p {
  font-size: 14px;
  margin-bottom: 20px;
}

.bonus-button {
  background: #FF6347;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}

.bonus-button:hover {
  background: #FFD700;
  color: #000;
}

@media (max-width: 768px) {
  .bonus-cards {
    flex-direction: column;
  }
  .bonus-tile {
    flex: 1 1 100%;
  }
  .hero-text h1 {
    font-size: 32px;
  }
  .hero-text p {
    font-size: 16px;
  }
}

.seo-block ul {
  padding-left: 20px;
  margin: 15px 0;
  list-style-type: disc;
}

.seo-block ul li {
  color: #eee;
  margin-bottom: 8px;
}

.seo-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  background-color: #2a000a;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.seo-table th, .seo-table td {
  border: 1px solid #444;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
}

.seo-table th {
  background: #3a000a;
  color: #FFD700;
  text-align: left;
}

.faq-item {
  background: #2a000a;
  margin: 15px 0;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #a00;
  cursor: pointer;
}

.faq-question {
  color: #FFD700;
  font-weight: bold;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #ccc;
}

.faq-item.active .faq-answer {
  display: block;
}


/* 🔁 Новый стиль карточек бонусов */
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.bonus-tile {
  display: flex;
  background: radial-gradient(circle at top left, #4b000f, #1a0006);
  border: 2px solid #FFD700;
  border-radius: 16px;
  padding: 15px;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
  align-items: center;
  gap: 16px;
  transition: 0.3s ease-in-out;
}

.bonus-tile:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.4);
}

.bonus-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}

.bonus-tile h3 {
  font-size: 18px;
  color: #FFD700;
  margin: 0;
}

.bonus-tile p {
  font-size: 14px;
  color: #ccc;
  margin: 6px 0 10px;
}

.bonus-button {
  background: #FFD700;
  color: #000;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
}

.bonus-button:hover {
  background: #ff4d4d;
  color: #fff;
}



/* 🎨 Новый хедер с бархатным стилем */
header {
  background: url('images/baroque-texture.jpg') center/cover no-repeat;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.6);
  border-bottom: 2px solid #FFD700;
}

nav a {
  font-family: 'Georgia', serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 15px;
}



/* 🧭 Стили для оглавления */
#about ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

#about ul li {
  background: #2a000a;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  border-left: 4px solid #FFD700;
  transition: background 0.2s;
}

#about ul li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

#about ul li:hover {
  background: #3b000f;
}


.bonus-tile-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.bonus-button {
  align-self: start;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}


@media (min-width: 769px) {
  .bonus-tile {
    flex-direction: column;
    text-align: left;
  }

  .bonus-icon {
    align-self: center;
    margin-bottom: 10px;
  }

  .bonus-button {
    align-self: flex-start;
    margin-top: auto;
  }
}


@media (min-width: 769px) {
  .bonus-tile {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .bonus-icon {
    margin-bottom: 10px;
  }

  .bonus-button {
    align-self: center;
    margin-top: 10px;
  }
}



.hero {
  position: relative;
  text-align: center;
  max-height: none;
  height: auto;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: unset;
}


.hero-sub {
  font-size: 14px;
  color: #ccc;
  margin-top: 8px;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
  display: inline-block;
}

.hero-btn.primary {
  background: #FFD700;
  color: #000;
}

.hero-btn.secondary {
  background: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.hero-btn:hover {
  background: #ff4d4d;
  color: #fff;
  border-color: #ff4d4d;
}


@media (max-width: 768px) {
  .hero-text {
    padding: 0 15px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    font-size: 15px;
  }

  .hero-sub {
    font-size: 13px;
    margin-top: 10px;
  }
}


@media (max-width: 768px) {
  .hero-text {
    position: static;
    transform: none;
    margin-top: 20px;
    z-index: 2;
  }

  .hero {
    padding-bottom: 40px;
  }

  .hero img {
    object-fit: cover;
    max-height: 280px;
  }
}


footer {
  background: #0d0003;
  padding: 30px 20px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-top: 60px;
  border-top: 2px solid #FFD700;
}

.footer-links {
  margin-bottom: 12px;
}

.footer-links a {
  color: #FFD700;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
  font-size: 14px;
}

.footer-links a:hover {
  color: #FF6347;
}

.footer-license {
  font-size: 12px;
  color: #888;
  margin: 8px 0;
}

.footer-copy {
  font-size: 12px;
  color: #555;
  margin-top: 5px;
}



ul {
  list-style: disc inside;
  padding-left: 1em;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 6px;
  color: #eee;
}
