/* Live Casino Page Specific Styles */

/* Live Casino Games Section */
.live-casino-games-section {
    background: var(--dark-secondary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.live-casino-games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(139, 47, 186, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.live-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.live-game-card {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.live-game-card.teen-patti {
    border-color: var(--primary-purple);
}

.live-game-card.andar-bahar {
    border-color: var(--primary-blue);
}

.live-game-card.lightning-roulette {
    border-color: var(--primary-gold);
}

.live-game-card.vip-blackjack {
    border-color: var(--primary-green);
}

.live-game-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.6s ease;
}

.live-game-card:hover::before {
    left: 100%;
}

.live-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 47, 186, 0.3);
}

.live-game-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.live-game-card.teen-patti img {
    border-color: var(--primary-purple);
}

.live-game-card.andar-bahar img {
    border-color: var(--primary-blue);
}

.live-game-card.lightning-roulette img {
    border-color: var(--primary-gold);
}

.live-game-card.vip-blackjack img {
    border-color: var(--primary-green);
}

.live-game-card:hover img {
    transform: scale(1.1);
    border-color: var(--primary-gold);
}

.live-game-card i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.live-game-card i.purple {
    color: var(--primary-purple);
}

.live-game-card i.blue {
    color: var(--primary-blue);
}

.live-game-card i.gold {
    color: var(--primary-gold);
}

.live-game-card i.green {
    color: var(--primary-green);
}

.live-game-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.live-game-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 15px 0;
    flex-grow: 1;
}

.live-status {
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
}

.live-status.live-now {
    background: var(--primary-green);
    color: white;
}

.live-status.vip-only {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.live-status i {
    font-size: 0.8rem;
    animation: pulse 1s infinite;
}

/* Sports Betting Section */
.sportsbook-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
}

.sportsbook-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 195, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.sportsbook-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sportsbook-feature {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sportsbook-feature.international {
    border-left: 4px solid var(--primary-blue);
}

.sportsbook-feature.markets {
    border-left: 4px solid var(--primary-purple);
}

.sportsbook-feature.updates {
    border-left: 4px solid var(--primary-gold);
}

.sportsbook-feature::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: right 0.6s ease;
}

.sportsbook-feature:hover::before {
    right: 100%;
}

.sportsbook-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 195, 247, 0.2);
}

.sportsbook-feature h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.sportsbook-feature h4.blue {
    color: var(--primary-blue);
}

.sportsbook-feature h4.purple {
    color: var(--primary-purple);
}

.sportsbook-feature h4.gold {
    color: var(--primary-gold);
}

.match-tag {
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin: 10px 5px 0 0;
}

.match-tag.live {
    background: var(--primary-green);
    color: white;
}

.match-tag.boosted {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.match-tag.stats {
    background: var(--primary-blue);
    color: white;
}

/* Why Better Section */
.why-better-section {
    background: var(--dark-bg);
    padding: 80px 0;
    position: relative;
}

.why-better-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 47, 186, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.better-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.better-feature {
    background: var(--dark-card);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.better-feature.seamless {
    border-color: var(--primary-purple);
}

.better-feature.support {
    border-color: var(--primary-blue);
}

.better-feature.challenges {
    border-color: var(--primary-gold);
}

.better-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(139, 47, 186, 0.3);
}

.better-feature h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
}

.better-feature h4.purple {
    color: var(--primary-purple);
}

.better-feature h4.blue {
    color: var(--primary-blue);
}

.better-feature h4.gold {
    color: var(--primary-gold);
}

/* Live Matches Section */
.live-matches-section {
    background: var(--dark-secondary);
    padding: 80px 0;
    position: relative;
}

.live-matches-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.matches-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.match-card {
    background: var(--dark-card);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.match-card.cricket {
    border-color: var(--primary-green);
}

.match-card.football-copa {
    border-color: var(--primary-blue);
}

.match-card.football-champions {
    border-color: var(--primary-gold);
}

.match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 47, 186, 0.2);
}

.match-info h4 {
    color: var(--primary-gold);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.match-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.match-odds {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.odds-value {
    font-weight: bold;
    font-size: 1.2rem;
}

.odds-value.blue {
    color: var(--primary-blue);
}

.odds-value.purple {
    color: var(--primary-purple);
}

.odds-value.gold {
    color: var(--primary-gold);
}

.odds-label {
    color: var(--text-gray);
    font-size: 0.8rem;
}

.bet-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Dealers Section */
.dealers-section {
    background: var(--gradient-dark);
    padding: 80px 0;
    position: relative;
}

.dealers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 195, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.dealers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.dealer-card {
    background: var(--dark-card);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dealer-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 25px rgba(139, 47, 186, 0.3);
}

.dealer-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
}

.dealer-avatar.purple {
    background: var(--gradient-purple);
    color: white;
}

.dealer-avatar.blue {
    background: var(--gradient-blue);
    color: white;
}

.dealer-avatar.gold {
    background: var(--gradient-gold);
    color: var(--dark-bg);
}

.dealer-card h4 {
    color: var(--primary-gold);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.dealer-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.dealer-status {
    color: var(--primary-green);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.dealer-status i {
    font-size: 0.6rem;
}

/* Combo Betting Section */
.combo-betting-section {
    background: var(--dark-bg);
    padding: 80px 0;
    position: relative;
}

.combo-betting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 47, 186, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.combo-builder {
    background: var(--gradient-purple);
    padding: 40px;
    border-radius: 20px;
    color: white;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.combo-builder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.combo-builder h4 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.combo-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: center;
}

.combo-step {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.combo-step i {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.combo-step h5 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.combo-step p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.combo-operator {
    color: var(--primary-gold);
    font-size: 2.5rem;
    text-align: center;
    align-self: center;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.combo-result {
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
}

.combo-description {
    text-align: center;
    margin-top: 30px;
}

.combo-description p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Ready Section */
.ready-live-section {
    background: var(--gradient-purple);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ready-live-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.ready-live-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Responsive Design */
@media (max-width: 1160px) {
    .live-games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sportsbook-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .better-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .match-card {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .dealers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .combo-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .combo-operator {
        font-size: 2rem;
        transform: rotate(90deg);
    }
    
    .ready-live-section h2 {
        font-size: 2rem;
    }
    
    .live-game-card img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .live-game-card,
    .sportsbook-feature,
    .better-feature {
        padding: 20px;
    }
    
    .dealers-grid {
        grid-template-columns: 1fr;
    }
    
    .combo-builder {
        padding: 25px;
    }
    
    .match-card {
        padding: 20px;
    }
    
    .live-game-card img {
        width: 60px;
        height: 60px;
    }
} 