/* Homepage Specific Styles */

/* Hero Section */
.hero {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Live Dealer */
.live-dealer {
    padding: 80px 0;
}

.live-dealer h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffd700;
}

.feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px 24px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.3);
    padding: 16px 18px;
    border-radius: 12px;
}

.feature-list i {
    color: #ff1493;
    margin-top: 2px;
}

/* Sports Betting */
.sports-betting {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.sports-betting h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ff1493;
}

.sports-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sports-col h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffd700;
}

.predictions {
    list-style: none;
    display: grid;
    gap: 12px;
}

.predictions li {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.3);
    padding: 14px 16px;
    border-radius: 12px;
}

.predictions .match {
    display: block;
    font-weight: 700;
    color: #ffffff;
}

.predictions .tip {
    color: #cccccc;
    font-size: 14px;
}

/* How to Start */
.how-to-start {
    padding: 80px 0;
}

.how-to-start h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #ff1493;
}

.steps {
    list-style: none;
    max-width: 900px;
    margin: 0 auto 24px;
    display: grid;
    gap: 12px;
}

.steps li {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 20, 147, 0.3);
    padding: 14px 16px;
    border-radius: 12px;
}

.step-index {
    font-size: 18px;
}

.start-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* Hot Promotions */
.hot-promotions {
    padding: 80px 0;
    background: rgba(22, 33, 62, 0.5);
}

.hot-promotions h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #ffd700;
}

.spotlight-live {
    background: linear-gradient(90deg, #ff1493 0%, #ffd700 100%);
    color: #1a1a2e;
    padding: 18px 0;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 10px;
    margin: 40px auto 32px;
    box-shadow: 0 2px 16px 0 rgba(255, 20, 147, 0.12);
    position: relative;
    overflow: hidden;
}

.spotlight-live .live-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ff1493;
    border-radius: 50%;
    margin-right: 10px;
    animation: live-blink 1s infinite alternate;
    vertical-align: middle;
}

@keyframes live-blink {
    0% { opacity: 1; }
    100% { opacity: 0.3; }
}


.promos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.promo-card {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 14px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
}

.promo-card h3 {
    color: #ff1493;
    margin-bottom: 6px;
}

.promo-card .code {
    margin-top: 8px;
    color: #ffffff;
}

/* Responsive additions */
@media (max-width: 768px) {
    .sports-grid {
        grid-template-columns: 1fr;
    }
    .start-actions {
        flex-direction: column;
    }
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.hero-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 20, 147, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.hero-card:hover::before {
    left: 100%;
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.giveaway-card {
    grid-row: span 1;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.5) 0%, rgba(153, 50, 204, 0.2) 100%), url('../images/3.avif') center/cover no-repeat;
}

.giveaway-card h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffd700;
    animation: neon 2s infinite alternate;
}

.giveaway-card p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #ffffff;
}

.participate-btn {
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s infinite;
}

.participate-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.cashback-card {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.5) 0%, rgba(30, 144, 255, 0.2) 100%), url('../images/4.avif') center/cover no-repeat;
}

.cashback-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.casino-btn {
    background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.casino-btn:hover {
    transform: scale(1.05);
}

.bonus-card {
    background: linear-gradient(135deg, rgba(138,43,226,0.5) 0%, rgba(75,0,130,0.2) 100%), url('../images/11.png') center/cover no-repeat;
}

.bonus-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

/* Welcome Section Styles */
.welcome-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0,191,255,0.08) 0%, rgba(30,144,255,0.04) 100%);
}

.welcome-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.welcome-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff1493;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(30,144,255,0.08);
}

.welcome-section p {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 600px) {
    .welcome-section {
        padding: 40px 0;
    }
    .welcome-section h2 {
        font-size: 1.5rem;
    }
    .welcome-section .container {
        padding: 0 8px;
    }
}


.register-hero-btn {
    background: linear-gradient(135deg, #9932cc 0%, #4b0082 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.register-hero-btn:hover {
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(22, 33, 62, 0.5);
}

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

.feature-item {
    text-align: center;
    padding: 30px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(255, 20, 147, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #ff1493;
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.2);
}

.feature-item i {
    font-size: 48px;
    color: #ff1493;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.feature-item h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Game Categories */
.game-categories {
    padding: 80px 0;
}

.game-categories h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ff1493;
    animation: fadeInUp 0.8s ease-out;
}

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

.category-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 20, 147, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #ff1493;
    box-shadow: 0 15px 30px rgba(255, 20, 147, 0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-icon i {
    font-size: 28px;
    color: #ffffff;
}

.category-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 8px;
}

.game-count {
    color: #cccccc;
    font-size: 14px;
}

.category-card img {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    opacity: 0.3;
}

/* Spotlight Games */
.spotlight-games {
    padding: 80px 0;
    background: rgba(15, 52, 96, 0.3);
}

.spotlight-games h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ffd700;
    animation: fadeInUp 0.8s ease-out;
}

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

.game-card {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.3);
    border-color: #ff1493;
}

.game-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: linear-gradient(135deg, #ff1493 0%, #9932cc 100%);
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.game-info p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.play-btn {
    background: linear-gradient(135deg, #00ff7f 0%, #32cd32 100%);
    color: #000000;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 255, 127, 0.3);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #ff1493;
    animation: fadeInUp 0.8s ease-out;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(26, 26, 46, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 20, 147, 0.3);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: #ff1493;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #ff1493;
    box-shadow: 0 10px 25px rgba(255, 20, 147, 0.2);
}

.quote {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 15px;
    font-style: italic;
}

.author {
    color: #ffd700;
    font-weight: 600;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .giveaway-card h2 {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero, .features, .game-categories, .spotlight-games, .testimonials {
        padding: 40px 0;
    }
    
    .hero-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-card h2 {
        font-size: 20px;
    }
    
    .participate-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .feature-item i {
        font-size: 36px;
    }
    
    .category-card {
        padding: 20px;
    }
    
    .game-info {
        padding: 15px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}