/* CSS переменные для цветовой схемы "Королевская роскошь" */
:root {
  --primary-purple: #2D1B69;
  --secondary-purple: #4A148C;
  --dark-blue: #1A0E3D;
  --gold: #D4AF37;
  --light-gold: #F4E4C1;
  --accent-purple: #7B68EE;
  --text-white: #FFFFFF;
  --text-light: #F5F5F5;
  --text-gray: #B8B8B8;
  --success-green: #4CAF50;
  --warning-yellow: #FF9800;
  --error-red: #F44336;
}

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-white);
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--dark-blue) 100%);
  min-height: 100vh;
}

/* Типографика */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  color: var(--gold);
}

h3 {
  font-size: 2rem;
  color: var(--light-gold);
}

p {
  margin-bottom: 1rem;
  max-width: 85ch;
  line-height: 1.7;
}

/* Контейнер */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Шапка */
header {
  background: rgba(26, 14, 61, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 50px;
  width: auto;
  border-radius: 8px;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--gold);
}

/* Кнопки */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn i {
  margin-right: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
  color: var(--primary-purple);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--primary-purple);
}

/* Hero секция */
.hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Фоновое изображение удалено по запросу */

/* Анимированный бонусный баннер */
.bonus-banner {
  margin-bottom: 2rem;
  perspective: 1000px;
}

.bonus-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  position: relative;
  overflow: hidden;
  animation: bonusFloat 3s ease-in-out infinite;
}

.bonus-icon {
  font-size: 2.5rem;
  color: var(--gold);
  animation: iconPulse 2s ease-in-out infinite;
}

.bonus-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.bonus-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-pulse {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
  animation: pulseEffect 2s ease-out infinite;
}

@keyframes bonusFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes pulseEffect {
  0% { opacity: 0; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0; transform: scale(1.2); }
}

/* Featured Image Section */
.featured-image {
  padding: 40px 0;
  text-align: center;
}

.featured-img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.featured-img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .featured-image {
    padding: 20px 0;
  }
  
  .featured-img {
    border-radius: 12px;
    border-width: 2px;
  }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Секции */
section {
  padding: 80px 0;
  position: relative;
  margin-bottom: 40px;
}

section:last-child {
  margin-bottom: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Карточки */
.card {
  background: rgba(74, 20, 140, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:last-child {
  margin-bottom: 0;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--gold);
}

/* Сетка */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: stretch;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: stretch;
}

/* Интерактивные виджеты */
.widget {
  background: rgba(26, 14, 61, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid var(--gold);
  margin: 3rem 0;
}

.widget h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Прогресс-бар */
.progress-bar {
  width: 100%;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin: 1rem 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--light-gold) 100%);
  border-radius: 10px;
  transition: width 1s ease-out;
}

/* Слайдер */
.slider {
  width: 100%;
  margin: 1rem 0;
}

.slider input[type="range"] {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  outline: none;
  -webkit-appearance: none;
}

.slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

.slider input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.5);
}

/* Табы */
.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.tab-button {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-button.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.tab-button:hover {
  color: var(--light-gold);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Отзывы */
.testimonial {
  background: rgba(74, 20, 140, 0.6);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.testimonial-name {
  font-weight: 600;
  color: var(--gold);
}

.testimonial-context {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* FAQ */
.faq-item {
  background: rgba(74, 20, 140, 0.6);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  color: var(--gold);
}

/* Footer */
footer {
  background: rgba(26, 14, 61, 0.95);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--gold);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  text-align: center;
}

.footer-bottom p:last-child {
  margin-bottom: 0;
}

.footer-cta {
  display: inline-block;
  margin-top: 1rem;
  text-align: center;
}

/* Анимации */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* Адаптивность */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  nav ul {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .card {
    padding: 1.5rem;
  }
  
  .widget {
    padding: 1.5rem;
  }
}

/* Доступность */
.btn:focus,
.tab-button:focus,
.faq-question:focus {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

/* Скрытие элементов для screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Дополнительные стили для улучшения внешнего вида */

/* Стили для шагов регистрации */
.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(74, 20, 140, 0.4);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(74, 20, 140, 0.6);
  transform: translateX(5px);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--primary-purple);
  border-radius: 50%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step h3 {
  margin-bottom: 0.5rem;
  color: var(--light-gold);
  font-size: 1.25rem;
}

/* Стили для категорий игр */
.game-category {
  background: rgba(74, 20, 140, 0.6);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.game-category:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-category i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.game-category h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Стили для тегов провайдеров */
.providers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
  justify-content: center;
}

.provider-tag {
  background: rgba(212, 175, 55, 0.2);
  color: var(--light-gold);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid var(--gold);
  transition: all 0.3s ease;
}

.provider-tag:hover {
  background: var(--gold);
  color: var(--primary-purple);
  transform: scale(1.05);
}

/* Стили для отзывов */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial {
  background: rgba(74, 20, 140, 0.6);
  border-radius: 12px;
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.testimonial-name {
  font-weight: 600;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
}

.testimonial-context {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 0.25rem;
}

/* Стили для FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(74, 20, 140, 0.6);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--gold);
}

.faq-item.active {
  border-color: var(--gold);
  background: rgba(74, 20, 140, 0.8);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Мобильное меню */
.mobile-menu-button {
  display: none;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(26, 14, 61, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 1rem 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.mobile-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* Уведомления */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: rgba(74, 20, 140, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid var(--gold);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  color: var(--text-white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  z-index: 1001;
  transform: translateX(400px);
  transition: all 0.3s ease;
  max-width: 300px;
}

.notification.show {
  transform: translateX(0);
}

.notification-success {
  border-color: var(--success-green);
  background: rgba(76, 175, 80, 0.1);
}

.notification-error {
  border-color: var(--error-red);
  background: rgba(244, 67, 54, 0.1);
}

.notification-warning {
  border-color: var(--warning-yellow);
  background: rgba(255, 152, 0, 0.1);
}

/* Стили для скорости выплат */
.speed-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.speed-label {
  font-weight: 600;
  color: var(--text-light);
}

.speed-value {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
}

.speed-value.fast {
  background: rgba(76, 175, 80, 0.2);
  color: var(--success-green);
}

.speed-value.medium {
  background: rgba(255, 152, 0, 0.2);
  color: var(--warning-yellow);
}

.speed-value.slow {
  background: rgba(244, 67, 54, 0.2);
  color: var(--error-red);
}

.method-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.method-icon {
  font-size: 2rem;
}

.method-name {
  flex: 1;
  font-weight: 600;
  color: var(--light-gold);
  font-family: 'Montserrat', sans-serif;
}

.method-rating {
  color: var(--gold);
}

.method-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row:last-child {
  border-bottom: none;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .mobile-menu-button {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  nav ul {
    display: none;
  }
  
  .steps {
    gap: 1rem;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .providers {
    justify-content: center;
  }
  
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}
/* Адаптивность для бонусного баннера на мобильных устройствах */
@media (max-width: 768px) {
  .bonus-banner {
    margin-bottom: 1rem;
  }
  
  .bonus-content {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .bonus-icon {
    font-size: 2rem;
  }
  
  .bonus-title {
    font-size: 1rem;
  }
  
  .bonus-value {
    font-size: 1.25rem;
  }
}

/* Дополнительные стили для разделения информационных блоков */
.bonus-content h3,
.games-content h3,
.responsible-content h3,
.legal-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.bonus-content h3:first-child,
.games-content h3:first-child,
.responsible-content h3:first-child,
.legal-content h3:first-child {
  margin-top: 0;
}

.bonus-content ul,
.games-content ul,
.responsible-content ul,
.legal-content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.bonus-content ul li,
.games-content ul li,
.responsible-content ul li,
.legal-content ul li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}