/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    padding: 100px 0;
}

@media (max-width: 968px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding: 60px 0;
        gap: 40px;
    }
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    text-shadow: 0 0 30px var(--primary-glow);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
}

.hero-content h3 {
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
}

.hero-box {
    background: var(--card-gradient);
    width: 360px;
    max-width: 100%;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: var(--shadow-strong), 0 0 40px rgba(249, 192, 79, 0.1);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.hero-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.step-card {
    background: var(--card-gradient);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--primary-glow);
    border-color: var(--primary);
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 32px;
}

.category-card {
    background: var(--card-gradient);
    padding: 28px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 25px var(--primary-glow);
    border-color: var(--primary);
}

/* App Section */
.app-section {
    background: var(--card-gradient);
    padding: 50px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    gap: 40px;
}

@media (max-width: 768px) {
    .app-section {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 30px;
    }
}

/* FAQ Accordion */
.faq-container {
    margin-top: 24px;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(249, 192, 79, 0.4);
}

.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.15);
    color: var(--text-main);
    transition: all 0.3s ease;
}

.faq-question span {
    transition: transform 0.3s ease;
    font-size: 20px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 18px 24px;
    max-height: 500px;
}

.faq-item.active .faq-question {
    color: var(--primary);
    background: rgba(249, 192, 79, 0.1);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.testimonial-card {
    background: var(--card-gradient);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-author {
    text-align: right;
    color: var(--primary);
    font-style: italic;
    margin-top: 16px;
    font-weight: 700;
}

/* General Section Styling */
section {
    margin-top: 64px;
}

section h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    section h2 {
        font-size: 26px;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.feature-card {
    background: var(--card-gradient);
    padding: 32px 24px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 0 0 25px var(--primary-glow);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(249, 192, 79, 0.2) 0%, rgba(232, 175, 63, 0.1) 100%);
    border-radius: 50%;
    border: 2px solid rgba(249, 192, 79, 0.4);
    box-shadow: 0 0 20px rgba(249, 192, 79, 0.2);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.feature-card p {
    margin-bottom: 0;
}

/* Jackpot Section */
.jackpot-section {
    background: linear-gradient(135deg, #2a1550 0%, #1a0f3a 100%);
    padding: 48px 32px;
    border-radius: 16px;
    border: 1px solid rgba(249, 192, 79, 0.3);
    box-shadow: 0 0 40px rgba(249, 192, 79, 0.1);
    text-align: center;
}

.jackpot-section h2 {
    margin-bottom: 32px;
    font-size: 36px;
    text-shadow: 0 0 20px var(--primary-glow);
}

.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.jackpot-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 32px 24px;
    border-radius: 14px;
    border: 1px solid rgba(249, 192, 79, 0.4);
    transition: all 0.3s ease;
}

.jackpot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(249, 192, 79, 0.2);
}

.jackpot-title {
    color: var(--text-main);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.jackpot-amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    text-shadow: 0 0 15px var(--primary-glow);
}

.jackpot-card p {
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(249, 192, 79, 0.15) 0%, rgba(232, 175, 63, 0.05) 100%);
    padding: 56px 32px;
    border-radius: 16px;
    border: 1px solid rgba(249, 192, 79, 0.3);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .jackpot-section {
        padding: 36px 20px;
    }

    .jackpot-section h2 {
        font-size: 28px;
    }

    .jackpot-amount {
        font-size: 32px;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }
}