/* === Кнопки общего назначения === */
.btn {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: normal;
  padding: 8px 15px;
  text-align: center;
  justify-content: center;
  border-radius: 8px;
}

/* === Кнопка "Регистрация" === */
.header__button-register {
  background-color: transparent;
  background-image: linear-gradient(0deg, transparent 0%, transparent 100%);
  cursor: pointer;
  transition: all 0.1s;
}

.header__button-register:hover {
  background-color: #2a2f4b;
  background-image: linear-gradient(0deg, transparent 0%, transparent 100%);
}

/* === Кнопка "Войти" === */
.header__button-login {
  background-color: #51bdd0;
  cursor: pointer;
  transition: all 0.1s;
}

.header__button-login:hover {
  background-color: #2a2f4b;
  background-image: linear-gradient(70deg, #31bc69 -8%, #089e4e 96%);
}

/* === Таблица === */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 0em 0;
  font-size: 1rem;
  background-color: #fff;
}

/* Заголовки таблицы */
thead th {
  background-color: #fff;
  color: #333;
  font-weight: 400;
  font-size: 12px;
  text-align: left;
  padding: 12px 15px;
  border: 1px solid #dddddd4c;
  white-space: nowrap;
}

/* Ячейки таблицы */
td {
  padding: 12px 15px;
  border: 1px solid #dddddd4c;
  white-space: nowrap;
}

/* Зебра */
tbody tr:nth-child(even) {
  background-color: #fff;
}

/* === Адаптивность таблицы === */
@media (max-width: 600px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  thead, tbody, th, td, tr {
    white-space: nowrap;
  }
}

/* === Отзывы === */

.review-scroll {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px;
  scroll-behavior: smooth;
}

.review {
  flex: 0 0 calc(50% - 15px);
  scroll-snap-align: start;
  background: #f0f0f0;
  border-radius: 8px;
  padding: 15px;
  box-sizing: border-box;
  min-height: 120px;
}

.review h4 {
  margin: 0 0 10px;
  color: #005598;
}

.review p {
  margin: 0;
}

/* Адаптивность: по одному на мобиле */
@media (max-width: 600px) {
  .review {
    flex: 0 0 100%;
  }
}

/* Убираем горизонтальный скроллбар на WebKit */
.review-scroll::-webkit-scrollbar {
  display: none;
}


/* === faq === */

.faq-full {
  width: 100%;
  max-width: 100%;
  padding-top: 40px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.faq-item {
  border-radius: 12px;
  background: #F0F0F0;
  margin-bottom: 12px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  text-align: left;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question .arrow {
  width: 20px;
  height: 20px;
  fill: #000;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 15px;
  color: #000;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 16px;
}


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .header-section {
            background: linear-gradient(135deg, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
            color: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .header-section h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        
        .section-header {
            background: linear-gradient(135deg, #1e5799 0%, #2989d8 100%);
            color: white;
            padding: 15px 20px;
            border-radius: 8px 8px 0 0;
            font-size: 1.3em;
            font-weight: bold;
            margin-top: 30px;
        }
        
        .section-content {
            background: white;
            padding: 20px;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }
        
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .info-table th {
            background: linear-gradient(135deg, #1e5799 0%, #2989d8 100%);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: bold;
        }
        
        .info-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .info-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .rating-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .rating-table th {
            background: linear-gradient(135deg, #1e5799 0%, #2989d8 100%);
            color: white;
            padding: 15px;
            text-align: left;
        }
        
        .rating-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }
        
        .rating {
            color: #ff6b35;
            font-weight: bold;
            font-size: 1.1em;
        }
        
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #1e5799 0%, #2989d8 100%);
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 10px 5px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background: linear-gradient(135deg, #2989d8 0%, #1e5799 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .btn-large {
            font-size: 1.2em;
            padding: 15px 40px;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #e8f4fd 0%, #d6e9f8 100%);
            border-left: 4px solid #2989d8;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        
        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 20px 0;
        }
        
        .pros {
            background: #e8f5e8;
            border-left: 4px solid #4caf50;
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        
        .cons {
            background: #ffeaea;
            border-left: 4px solid #f44336;
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        
        .pros h3, .cons h3 {
            margin-bottom: 15px;
            color: #333;
        }
        
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        
        .lazy-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
        }
        
        .lazy-image:hover {
            transform: scale(1.02);
        }
        
        .bet-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .bet-type {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-top: 4px solid #2989d8;
        }
        
        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 20px 0;
        }
        
        .payment-method {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
            border: 2px solid #e0e0e0;
            transition: border-color 0.3s ease;
        }
        
        .payment-method:hover {
            border-color: #2989d8;
        }
        
        .bonus-card {
            background: linear-gradient(135deg, #1e599b 0%, #2886d5 100%);
            color: white;
            padding: 25px;
            border-radius: 12px;
            margin: 20px 0;
            text-align: center;
        }
        
        .bonus-card h3 {
            font-size: 1.8em;
            margin-bottom: 15px;
        }
        
        .step-list {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin: 20px 0;
        }
        
        .step-list ol {
            padding-left: 20px;
        }
        
        .step-list li {
            margin: 10px 0;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        
        .contact-info {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border: 2px solid #e9ecef;
            margin: 20px 0;
        }
        
        @media (max-width: 768px) {
            .pros-cons {
                grid-template-columns: 1fr;
            }
            
            .header-section h1 {
                font-size: 2em;
            }
            
            .container {
                padding: 10px;
            }
        }