* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Arial", sans-serif;
    line-height: 1.6;
    color: #333;
    background: #0a0a0a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    font-size: 2rem;
    font-weight: bold;
    color: #1a64fc;
    text-decoration: none;
}
.logo > img {
    max-width: 200px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #1a64fc;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: bold;
}

.btn-primary {
    background: linear-gradient(149deg, #41c6ff 8.4%, #1a64fc 80.38%);
    color: #000;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #1a64fc;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(95, 113, 218, 0.4);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}
.mobile-auth-btn {
    display: none;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 9px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -9px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-top: 1px solid #333;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-nav ul li {
    margin-bottom: 1rem;
}

.mobile-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    transition: color 0.3s;
}

.mobile-nav ul li a:hover {
    color: #1a64fc;
}

.mobile-auth {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-auth .btn {
    text-align: center;
}

/* Banner */
.banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/placeholder.svg?height=400&width=1200");
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.banner:hover {
    transform: scale(1.02);
}

.banner-content {
    text-align: center;
    color: #fff;
}

.banner h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Slots Section */
.slots-section {
    padding: 4rem 0;
    background: #111;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffff;
    margin-bottom: 3rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.slot-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.slot-item:hover {
    transform: translateY(-5px);
}

.slot-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: filter 0.3s;
    display: block;
}

.slot-item:hover .slot-image {
    filter: brightness(0.4);
}

.slot-overlay {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.slot-item:hover .slot-overlay {
    opacity: 1;
}

.load-more {
    text-align: center;
}

/* Table of Contents */
.toc-section {
    background: #1a1a1a;
    padding: 3rem 0;
}

.toc-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

.toc {
    background: #222;
    padding: 2rem;
    border-radius: 10px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.toc h3 {
    color: #ffff;
    margin-bottom: 1rem;
}

.toc ul {
    list-style: none;
}

.toc li {
    margin-bottom: 0.5rem;
}

.toc a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.toc a:hover {
    color: #1a64fc;
}

/* Main Content */
.main-content {
    background: #1a1a1a;
    color: #fff;
}

.content-section {
    margin-bottom: 1rem;
}

.content-section h2 {
    color: #1a64fc;
    margin-bottom: 1rem;
    font-size: 2rem;
}
.content-section h3 {
    color: #ffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}
.content-section ul,
.content-section ol {
    margin-bottom: 1rem;
    padding-left: 16px;
}
.content-section a {
    color: #1a189c;
}

.casino-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
}

.casino-table th,
.casino-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.casino-table th {
    background: rgba(25, 33, 54, 0.765);
    color: #fff;
    font-weight: bold;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros,
.cons {
    background: #222;
    padding: 2rem;
    border-radius: 10px;
}

.pros h3 {
    color: #4caf50;
    margin-bottom: 1rem;
}

.cons h3 {
    color: #f44336;
    margin-bottom: 1rem;
}

.pros ul li::before {
    content: "✅ ";
}

.cons ul li::before {
    content: "❌ ";
}

.pros ul,
.cons ul {
    list-style: none;
}

.pros ul li,
.cons ul li {
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-section {
    background: #111;
    padding: 4rem 0;
}

.faq-item {
    background: #222;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    font-weight: bold;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #333;
}
.faq-question h3 {
    font-size: 16px;
    color: #ffff;
}

.faq-answer {
    padding: 1rem 1.5rem 1.5rem;
    color: #ccc;
    display: none;
}

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

/* Trust Resources */
.trust-section {
    background: #1a1a1a;
    padding: 4rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-item img {
    height: 50px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.trust-item:hover img {
    transform: scale(1.05);
}

/* Providers Slider */
.providers-section {
    background: #111;
    padding: 4rem 0;
}

.slider-container {
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    width: calc(200px * 16); /* точная ширина для 16 элементов */
    animation: slide 30s infinite linear;
}

/* .slider {
            display: flex;
            animation: slide 20s infinite linear;
        } */

.provider-item {
    width: 130px;
    background: #222;
    margin-right: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* @keyframes slide {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        } */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 8 - 2rem * 8));
    }
}

/* Payment Systems */
.payment-section {
    background: #1a1a1a;
    padding: 4rem 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 2rem;
    align-items: center;
}

.payment-item {
    text-align: center;
    padding: 1rem;
    background: #222;
    border-radius: 10px;
    transition: transform 0.3s;
}

.payment-item:hover {
    transform: translateY(-5px);
}

.payment-icon {
    width: 80px;
    height: 40px;
    background: url("/placeholder.svg?height=40&width=60");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 3rem 0 1rem;
    color: #fff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a64fc;
}

.footer-menu ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #1a64fc;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #1a64fc;
    color: #000;
}

/* Copyright */
.copyright {
    background: #000;
    padding: 1rem 0;
    text-align: center;
    color: #666;
    border-top: 1px solid #333;
}
.bonus-button {
    margin-top: 2rem;
}
.banner-content-bonus > span {
    color: #4ce892;
    font-size: 24px;
    font-weight: 900;
    text-shadow: 0 2.5px 49px #4ce89296;
    text-transform: uppercase;
}
.banner-content-bonus {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-auth-btn {
        display: block;
        margin-right: 30px;
    }

    .slots-section,
    .payment-section,
    .providers-section,
    .faq-section {
        padding: 1rem 0;
    }
    .banner {
        height: 280px;
    }
    .content-section h2 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .header-content {
        position: relative;
    }

    .burger-menu {
        display: flex;
    }

    .desktop-nav,
    .desktop-auth {
        display: none;
    }

    .slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .toc-container {
        grid-template-columns: 1fr;
    }

    .toc {
        position: static;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .banner h1 {
        font-size: 2rem;
    }
    nav > ul {
        flex-direction: column;
        gap: 0rem;
    }
    .footer-logo {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slot-overlay > a {
        width: 80%;
    }
    .slot-overlay > a > .btn {
        width: 100%;
        font-size: 14px;
    }
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .logo > img {
        max-width: 120px;
    }
    .payment-icon {
        height: auto;
        width: 100%;
    }
}
