/* Homepage Specific Styles */

/* Hero Section Enhanced */
.hero {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(255, 0, 128, 0.1) 0%, rgba(0, 255, 255, 0.1) 100%),
        radial-gradient(ellipse at top, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: var(--text-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-large {
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 700;
    min-width: 200px;
}

.btn-large i {
    margin-right: 10px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Promotional Banners */
.promo-banners {
    padding: 80px 0;
}

.promo-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    padding: 40px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.promo-card.lambo {
    background: url(../images/2.avif) no-repeat center center;
    background-size: cover;
}

.promo-card.cashback {
    background: url(../images/11.png) no-repeat center center;
    background-size: cover;
}

.promo-card.bonus {
    background: url(../images/4.avif) no-repeat center center;
    background-size: cover;
}

.promo-content {
    position: relative;
    z-index: 2;
    color: white;
}

.promo-card h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.promo-card p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


/* Featured Games */
.featured-games {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.game-section {
    margin-bottom: 60px;
}

.game-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-light);
    font-weight: 700;
}

.game-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.game-card:hover::before {
    transform: scaleX(1);
}

.game-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.3);
    border-color: var(--primary-color);
}

.game-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover img {
    transform: scale(1.1);
}

.game-card-content {
    padding: 20px;
}

.game-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 600;
}

.game-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

/* Game Categories */
.game-categories {
    padding: 80px 0;
}

.category-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.3);
    border-color: var(--primary-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 2;
}

.category-content {
    position: relative;
    z-index: 2;
}

.category-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 700;
}

.category-count {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.category-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 15px;
}

/* Tournament Section */
.tournaments {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
}

.tournament-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tournament-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tournament-card:hover::before {
    transform: scaleX(1);
}

.tournament-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.tournament-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--dark-bg);
    font-weight: bold;
}

.tournament-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 700;
}

.tournament-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.prize {
    background: var(--gold-gradient);
    color: var(--dark-bg);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
}

/* How to Start Section */
.how-to-start {
    padding: 80px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.2);
    border-color: var(--primary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 600;
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Current Promos */
.current-promos {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.3);
}

.promo-item {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-item:hover::before {
    opacity: 0.05;
}

.promo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.3);
    border-color: var(--primary-color);
}

.promo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    position: relative;
    z-index: 2;
}

.promo-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.promo-item p {
    color: var(--text-gray);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 128, 0.2);
    border-color: var(--primary-color);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-weight: 600;
}

.stars {
    color: #ffd700;
}

.stars i {
    margin-right: 2px;
}

.security-badge {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.security-badge i {
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
}

.security-badge p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 15px;
}

.payment-icons i {
    font-size: 32px;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.payment-icons i:hover {
    color: var(--primary-color);
}

.payment-method {
    background: var(--gradient-1);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .promo-card {
        padding: 30px 20px;
        min-height: 250px;
        text-align: center;
    }
    
    .promo-content {
        max-width: 100%;
    }
    
    .promo-card h2 {
        font-size: 1.8rem;
    }
    
    .promo-card img {
        position: static;
        transform: none;
        width: 100%;
        height: 120px;
        margin-top: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .promo-card h2 {
        font-size: 1.5rem;
    }
    
    .feature-card,
    .category-card,
    .tournament-card,
    .promo-item {
        padding: 25px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content p {
        font-size: 1.1rem;
    }
}
