/* Homepage Specific Styles */

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0b2b 0%, #2d1b69 50%, #1a0b2b 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(131, 56, 236, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #ff006e, #8338ec, #3a86ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #ff006e;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #ffd700;
    min-width: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Promotional Cards */
.promotional-cards {
    padding: 4rem 0;
    background: linear-gradient(180deg, #1a0b2b 0%, #0f051a 100%);
}

.cards-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    height: 400px;
}

.promo-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tournament-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
		border-radius: 20px;
		margin-bottom: 20px;
    border-radius: 16px 16px 0 0;
    display: block;
}


.car-giveaway {
    background: linear-gradient(135deg, rgba(26,11,43,0.5) 0%, rgba(15,5,26,0.5) 100%), url('../images/1.avif') center center/cover no-repeat;
    color: #fff;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
}

.cashback {
	background: linear-gradient(135deg, rgba(26,11,43,0.5) 0%, rgba(15,5,26,0.5) 100%), url('../images/4.avif') center center/cover no-repeat;
	color: #fff;
	box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);}

.bonus {
	background: linear-gradient(135deg, rgba(26,11,43,0.5) 0%, rgba(15,5,26,0.5) 100%), url('../images/11.png') center center/cover no-repeat;
	color: #fff;
	box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.card-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}


/* Spotlight Games */
.spotlight-games {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f051a 0%, #1a0b2b 100%);
}

.spotlight-games h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ff006e, #ffd700);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.games-section {
    margin-bottom: 3rem;
}

.games-section h3 {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-align: center;
}

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

/* Game Categories */
.game-categories {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0b2b 0%, #0f051a 100%);
}

.game-categories h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.category-icon {
    font-size: 3rem;
    color: #ff006e;
    margin-bottom: 1rem;
}

.category-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.category-info p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Tournament Section */
.tournaments {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0f051a 0%, #2d1b69 100%);
}

.tournaments h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffd700;
}

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

.tournament-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 0, 110, 0.2);
}

.tournament-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 0, 110, 0.5);
}

.tournament-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.tournament-header h3 {
    font-size: 1.3rem;
    color: #ffffff;
}

.prize-pool {
    background: linear-gradient(135deg, #ffd700, #ffb703);
    color: #000000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
}

.tournament-info {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #cccccc;
}

.tournament-btn {
    display: inline-block;
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #ff006e, #8338ec);
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tournament-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.4);
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a0b2b 0%, #0f051a 100%);
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.quote {
    margin-bottom: 1.5rem;
}

.quote i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.quote p {
    font-size: 1.1rem;
    color: #ffffff;
    font-style: italic;
}

.author .name {
    color: #cccccc;
    font-weight: 500;
}

.security-note {
    text-align: center;
    background: rgba(0, 255, 165, 0.1);
    border: 1px solid rgba(0, 255, 165, 0.3);
    border-radius: 10px;
    padding: 1rem;
    color: #00ffa5;
}

.security-note i {
    margin-right: 0.5rem;
    color: #00ffa5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .promo-card {
        height: 250px;
    }
    
    .car-giveaway,
    .bonus {
        flex-direction: column;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tournaments-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .hero-features {
        gap: 0.5rem;
    }
}