section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section {
    padding: 8rem 0 6rem;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -5%;
    right: -3%;
    width: 40%;
    height: 50%;
    background: radial-gradient(circle, rgba(255, 190, 62, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -3%;
    width: 35%;
    height: 45%;
    background: radial-gradient(circle, rgba(255, 190, 62, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulse 8s ease-in-out infinite 4s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 2rem auto;
    line-height: 1.8;
}

.table-of-contents {
    background: linear-gradient(145deg, rgba(30, 34, 47, 0.4) 0%, rgba(18, 21, 30, 0.6) 100%);
    border-radius: 25px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 1000px;
    border: 2px solid rgba(255, 190, 62, 0.2);
    backdrop-filter: blur(10px);
}

.table-of-contents h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.toc-list li {
    position: relative;
    padding-left: 2rem;
}

.toc-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.toc-list li:hover::before {
    color: var(--accent-neon);
    transform: translateX(5px);
}

.toc-list a {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.toc-list a:hover {
    background: rgba(255, 190, 62, 0.1);
    transform: translateX(10px);
}

.login-access article,
.registration article,
.bonuses article,
.games article {
    margin-bottom: 3rem;
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.accordion-item {
    background: linear-gradient(145deg, rgba(30, 34, 47, 0.5) 0%, rgba(18, 21, 30, 0.7) 100%);
    border: 2px solid rgba(255, 190, 62, 0.2);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 40px rgba(255, 190, 62, 0.2);
}

.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: all 0.3s ease;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-cyan);
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    content: '−';
    color: var(--accent-neon);
}

.accordion-header:hover {
    background: rgba(255, 190, 62, 0.05);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.accordion-item.active .accordion-body {
    max-height: 1000px;
    padding: 0 2rem 1.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(30, 34, 47, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 190, 62, 0.1);
}

.badge-item {
    text-align: center;
    transition: transform 0.3s ease;
}

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

.badge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--shadow-glow));
}

.cta-section {
    text-align: center;
    padding: 6rem 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 190, 62, 0.1) 0%, transparent 70%);
    filter: blur(100px);
}

.cta-section h2 {
    margin-bottom: 2rem;
}

.cta-section .btn {
    font-size: 1.3rem;
    padding: 1.5rem 4rem;
    margin-top: 2rem;
}

.bonuses .content-image {
    max-width: 100%;
    margin: 2rem 0;
}

.bonuses .content-image img {
    width: 100%;
    max-width: 100%;
    max-height: none;
    height: auto;
}

.registration .content-image {
    max-width: 100%;
    margin: 2rem 0;
}

.registration .content-image img {
    width: 100%;
    max-width: 100%;
    max-height: none;
    height: auto;
}

@media (max-width: 767px) {
    section {
        padding: 3rem 0;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .table-of-contents {
        padding: 2rem 1.5rem;
    }

    .cards-grid-3 {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .trust-badges {
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .cta-section .btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}