/* Index page specific styles - hero section and animations */

/* Hero section */
.hero-section {
    background: var(--gradient-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23d4af37" opacity="0.1"><animate attributeName="opacity" values="0.1;0.3;0.1" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1.5" fill="%23d4af37" opacity="0.1"><animate attributeName="opacity" values="0.1;0.4;0.1" dur="2s" repeatCount="indefinite"/></circle><circle cx="40" cy="80" r="2.5" fill="%23d4af37" opacity="0.1"><animate attributeName="opacity" values="0.1;0.2;0.1" dur="4s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(5px); }
    66% { transform: translateY(5px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-out;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-cta {
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-cta .cta-button {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: 50px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
}

/* Registration section grid */
.registration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.registration-text-content {
    order: 1;
}

.registration-image {
    order: 2;
    text-align: center;
}

.registration-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.registration-steps {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.registration-steps li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.registration-text-content .registration-cta {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .registration-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .registration-image {
        order: 1;
    }

    .registration-text-content {
        order: 2;
    }

    .registration-image img {
        max-width: 350px;
    }
}

/* Mobile App download section */
.app-download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.app-download-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.app-platform-title {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.app-image {
    margin-bottom: 1.5rem;
    text-align: center;
}

.app-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.app-install-steps {
    padding-left: 1.25rem;
    color: var(--text-light);
}

.app-install-steps li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.mobile-features {
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .app-download-grid {
        grid-template-columns: 1fr;
    }
}

/* Payment Methods Section */
.payment-logos {
    margin: 2rem 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
}

.payment-logos img {
    max-width: 100%;
    height: auto;
}

/* Bonuses Section */
.welcome-pack-banner {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.welcome-pack-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.bonus-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .bonus-tiers {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .bonus-tiers {
        grid-template-columns: 1fr;
    }
}

/* Popular Games Section */
.popular-games-banner {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.popular-games-banner img {
    width: 100%;
    height: auto;
    display: block;
}
