/* === Кнопки общего назначения === */
.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%);
}


/* === Отзывы === */

.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;
}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background: #f5f5f5;
            color: #333333;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }

        .hero-section {
            background: linear-gradient(135deg, #1e4a72 0%, #2563eb 100%);
            padding: 40px;
            border-radius: 10px;
            margin-bottom: 30px;
            text-align: center;
            color: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .hero-section h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .author-info {
            font-style: italic;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .feature-card {
            background: white;
            padding: 25px;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .feature-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .feature-card h3 {
            color: #1e4a72;
            font-size: 1.3rem;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .bonus-section {
            background: linear-gradient(135deg, #059669 0%, #10b981 100%);
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
            color: white;
        }

        .bonus-amount {
            font-size: 3rem;
            font-weight: bold;
            margin: 15px 0;
        }

        .section-title {
            font-size: 2rem;
            color: #1e4a72;
            margin: 35px 0 25px 0;
            font-weight: 700;
            border-bottom: 3px solid #2563eb;
            padding-bottom: 10px;
        }

        .info-table-container {
            overflow-x: auto;
            margin: 25px 0;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .info-table {
            width: 100%;
            min-width: 600px;
            border-collapse: collapse;
            background: white;
        }

        .info-table th,
        .info-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
            white-space: nowrap;
        }

        .info-table th {
            background: #1e4a72;
            color: white;
            font-weight: 600;
            position: sticky;
            top: 0;
        }

        .info-table tr:hover {
            background: #f8fafc;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .payment-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            border-left: 4px solid #2563eb;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .payment-card h4 {
            color: #1e4a72;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .sports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 15px;
            margin: 25px 0;
        }

        .sport-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid #e5e7eb;
            transition: all 0.2s ease;
        }

        .sport-item:hover {
            border-color: #2563eb;
            background: #f8fafc;
        }

        .pros-cons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin: 30px 0;
        }

        .pros, .cons {
            padding: 25px;
            border-radius: 8px;
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .pros {
            border-left: 4px solid #059669;
        }

        .cons {
            border-left: 4px solid #dc2626;
        }

        .pros h3 {
            color: #059669;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .cons h3 {
            color: #dc2626;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .highlight-box {
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            border: 2px solid #2563eb;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
        }

        .highlight-box h3 {
            color: #1e4a72;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .highlight-box ul {
            margin: 15px 0;
            padding-left: 25px;
        }

        .highlight-box li {
            color: #4b5563;
            font-size: 1rem;
            line-height: 1.6;
            margin: 8px 0;
            position: relative;
            list-style: none;
            padding-left: 20px;
        }

        .highlight-box li:before {
            content: "💎";
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .cta-button {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-block;
            margin: 15px 0;
        }

        .cta-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
            color: white;
            text-decoration: none;
        }

        .section-cta {
            text-align: center;
            margin: 40px 0;
        }

        .hero-buttons {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin: 30px 0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons .cta-button {
            margin: 0;
            padding: 15px 20px;
            font-size: 0.95rem;
            text-align: center;
        }

        .cta-download {
            background: linear-gradient(135deg, #059669, #10b981);
        }

        .cta-download:hover {
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
        }

        .cta-bonus {
            background: linear-gradient(135deg, #dc2626, #ef4444);
        }

        .cta-bonus:hover {
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
        }

        .cta-register {
            background: linear-gradient(135deg, #7c3aed, #8b5cf6);
        }

        .cta-register:hover {
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
        }

        .cta-casino {
            background: linear-gradient(135deg, #ea580c, #f97316);
        }

        .cta-casino:hover {
            box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
        }

        .section-image {
            text-align: center;
            margin: 30px 0;
        }

        .section-image img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .image-large {
            max-width: 800px;
            width: 100%;
        }

        .image-medium {
            max-width: 600px;
            width: 100%;
        }

        .image-small {
            max-width: 400px;
            width: 100%;
        }

        .text-content {
            background: white;
            padding: 25px;
            border-radius: 8px;
            margin: 25px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            line-height: 1.7;
        }

        .text-content h1,
        h1 {
            color: #ddefff;
            font-size: 2.2rem;
            font-weight: 700;
            margin: 30px 0 20px 0;
            line-height: 1.3;
            border-bottom: 3px solid #2563eb;
            padding-bottom: 10px;
        }

        .text-content h2,
        h2 {
            color: #1e4a72;
            font-size: 1.8rem;
            font-weight: 600;
            margin: 25px 0 15px 0;
            line-height: 1.4;
        }

        .text-content h3,
        h3 {
            color: #2563eb;
            font-size: 1.4rem;
            font-weight: 600;
            margin: 20px 0 12px 0;
            line-height: 1.4;
        }

        .text-content h4,
        h4 {
            color: #374151;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 18px 0 10px 0;
            line-height: 1.4;
        }

        .text-content p {
            color: #4b5563;
            font-size: 1rem;
            line-height: 1.7;
            margin: 12px 0;
            text-align: justify;
        }

        .text-content ul,
        .text-content ol {
            margin: 15px 0;
            padding-left: 25px;
        }

        .text-content li {
            color: #4b5563;
            font-size: 1rem;
            line-height: 1.6;
            margin: 8px 0;
            position: relative;
        }

        .text-content ul li {
            list-style: none;
            padding-left: 20px;
        }

        .text-content ul li:before {
            content: "▶";
            color: #2563eb;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .text-content ol li {
            list-style: decimal;
            color: #4b5563;
        }

        .text-content strong {
            color: #1e4a72;
            font-weight: 600;
        }

        .text-content em {
            color: #6b7280;
            font-style: italic;
        }

        .exclusives-list {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #0ea5e9;
            margin: 20px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .exclusives-list h3 {
            color: #0369a1;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .exclusives-list ul {
            margin: 15px 0;
            padding-left: 25px;
        }

        .exclusives-list li {
            color: #1e40af;
            font-size: 1rem;
            line-height: 1.6;
            margin: 8px 0;
            position: relative;
            list-style: none;
            padding-left: 20px;
        }

        .exclusives-list li:before {
            content: "⭐";
            color: #0ea5e9;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        .requirements-table-container {
            overflow-x: auto;
            margin: 20px 0;
        }

        .requirements-table {
            width: 100%;
            min-width: 500px;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .requirements-table th,
        .requirements-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
        }

        .requirements-table th {
            background: #1e4a72;
            color: white;
            font-weight: 600;
        }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 25px 0;
        }

        .provider-card {
            background: white;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
			color: #000;
        }

        .provider-card h4 {
            color: #1e4a72;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .rating-section {
            background: linear-gradient(135deg, #7c3aed, #8b5cf6);
            color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            margin: 30px 0;
        }

        .installation-steps {
            background: linear-gradient(135deg, #ffffff, #f1f5f9);
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #10b981;
        }

        .installation-steps h3 {
            color: #059669;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .installation-steps ol {
            padding-left: 20px;
            counter-reset: step-counter;
        }

        .installation-steps li {
            margin-bottom: 10px;
            color: #374151;
            line-height: 1.6;
            position: relative;
            list-style: none;
            counter-increment: step-counter;
            padding-left: 30px;
        }

        .installation-steps li:before {
            content: counter(step-counter);
            background: #10b981;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 2px;
        }

        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
            
            .hero-section h1 {
                font-size: 1.8rem;
            }
            
            .bonus-amount {
                font-size: 2rem;
            }
            
            .pros-cons {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 1.5rem;
            }

            .info-table-container,
            .requirements-table-container {
                -webkit-overflow-scrolling: touch;
            }
        }