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

.hero-section {
    padding: 3rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

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

.hero-section h1 {
}

.hero-section p {
    font-size: 1.15rem;
    max-width: 900px;
}

.hero-section .content-image {
    width: 100%;
    margin: 2rem 0 0;
}

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

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

.contents-section {
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.03) 0%, rgba(255, 199, 0, 0.03) 100%);
    border-top: 1px solid rgba(255, 230, 0, 0.1);
    border-bottom: 1px solid rgba(255, 230, 0, 0.1);
}

.contents-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.contents-list li {
    background: rgba(10, 14, 39, 0.4);
    border: 1px solid rgba(255, 230, 0, 0.2);
    border-radius: 12px;
    transition: var(--transition);
}

.contents-list li:hover {
    background: rgba(255, 230, 0, 0.08);
    border-color: var(--primary);
    transform: translateX(5px);
}

.contents-list a {
    display: block;
    padding: 1.25rem;
    color: var(--light);
    font-weight: 500;
}

.contents-list a:hover {
    color: var(--secondary);
}

.login-section {
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mobile-app-section {
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.03) 0%, rgba(255, 199, 0, 0.03) 100%);
}

.games-section {
    position: relative;
}

.games-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.benefits-section {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.cards-grid-2 .container > p {
    max-width: 900px;
    margin-bottom: 3rem;
}

.cards-grid-2 .benefit-card {
    margin-bottom: 2rem;
}

.cards-grid-2 .benefit-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.payments-section {
    position: relative;
}

.providers-section {
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.02) 0%, rgba(255, 199, 0, 0.02) 100%);
}

.faq-section {
    background: var(--darker);
}

.accordion-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 230, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.accordion-header {
    padding: 1.5rem 3rem 1.5rem 1.5rem;
    cursor: pointer;
    position: relative;
    margin: 0;
    color: var(--light);
    font-size: 1.25rem;
    transition: var(--transition);
    user-select: none;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--secondary);
    transition: var(--transition);
    font-weight: 300;
}

.accordion-item.active .accordion-header {
    color: var(--secondary);
}

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

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

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

.accordion-body p {
    margin-bottom: 1rem;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

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

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

@media (max-width: 767px) {
    h2::after {
        width: 40px;
        height: 3px;
    }

    .contents-list {
        grid-template-columns: 1fr;
    }

    .accordion-header {
        padding: 1.25rem 3rem 1.25rem 1.25rem;
        font-size: 1.1rem;
    }

    .accordion-header::after {
        right: 1.25rem;
        font-size: 1.75rem;
    }

    .accordion-body {
        padding: 0 1.25rem;
    }

    .accordion-item.active .accordion-body {
        padding: 0 1.25rem 1.25rem;
    }

    .login-section .content-image.portrait img {
        max-width: 100%;
        max-height: 300px;
        width: auto;
        height: auto;
    }
}