/* Sportsbook Specific Styles */
.page-header {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

.page-header h1 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 10px;
}

.page-header p {
    color: #ddd;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

.betting-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.betting-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cricket-btn {
    background-color: var(--primary);
    color: var(--dark);
}

.football-btn {
    background-color: #4caf50;
    color: white;
}

.esports-btn {
    background-color: #9c27b0;
    color: white;
}

.betting-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Sports Categories */
.sports-categories {
    margin-bottom: 20px;
}

.sports-categories h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #ccc;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sports-categories ul li {
    margin-bottom: 10px;
}

.sports-categories ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.sports-categories ul li a:hover {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--primary);
}

.sports-categories ul li a i {
    margin-right: 10px;
    color: var(--primary);
}

.sports-categories ul li.active a {
    background-color: rgba(255, 193, 7, 0.2);
    color: var(--primary);
}

.count {
    background-color: rgba(255, 193, 7, 0.2);
    color: var(--primary);
    border-radius: 50px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
}

/* Live Now Section */
.live-now {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.live-now h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #fff;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.live-badge {
    background-color: #f44336;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 50px;
    animation: pulse 2s infinite;
}

.live-matches {
    margin-bottom: 15px;
}

.live-match {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.live-match:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.teams span:first-child,
.teams span:last-child {
    font-weight: 600;
}

.teams span:nth-child(2) {
    color: #999;
    font-size: 12px;
}

.match-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.match-time {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #ccc;
}

.live-icon {
    color: #f44336;
    font-size: 8px;
    margin-right: 5px;
    animation: pulse 1s infinite;
}

.watch-btn {
    background-color: var(--primary);
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.watch-btn:hover {
    background-color: var(--primary-dark);
}

.view-all-btn {
    display: block;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: rgba(255, 193, 7, 0.1);
}

/* Intro Section */
.intro-section {
    background-color: var(--darker);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    line-height: 1.8;
}

/* Sports Section */
.sports-section {
    background-color: var(--darker);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    color: var(--primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.section-header h2 i {
    margin-right: 10px;
}

.view-all {
    color: #ccc;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.view-all i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.view-all:hover {
    color: var(--primary);
}

.view-all:hover i {
    transform: translateX(3px);
}

/* Sports Features */
.sports-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    font-size: 14px;
    color: #ccc;
}

/* Upcoming Matches */
.upcoming-matches h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
}

.match-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.match-card:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(255, 193, 7, 0.2);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tournament {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.match-date {
    font-size: 13px;
    color: #ccc;
}

.match-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.team, .draw {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.team-name, .draw-text {
    font-size: 14px;
    margin-bottom: 8px;
    text-align: center;
}

.odds {
    background-color: rgba(255, 193, 7, 0.15);
    color: var(--primary);
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.match-card:hover .odds {
    background-color: rgba(255, 193, 7, 0.25);
}

.match-markets {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 13px;
    color: #ccc;
}

.bet-now-btn {
    background-color: var(--primary);
    color: var(--dark);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bet-now-btn:hover {
    background-color: var(--primary-dark);
}

/* eSports Categories */
.esports-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.esport-category {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.esport-category i {
    margin-right: 10px;
    color: #9c27b0;
}

.esport-category:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Mobile Betting Section */
.mobile-betting {
    background: linear-gradient(to right, #134e5e, #71b280);
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
}

.mobile-betting::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 2;
    padding: 30px;
}

.mobile-betting h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.mobile-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-feature {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.mobile-feature:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.mobile-feature .feature-icon {
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 20px 0 0;
    flex-shrink: 0;
}

.mobile-feature .feature-icon i {
    color: #fff;
}

.feature-content h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #4caf50, #8bc34a);
    border-radius: 10px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background-color: #fff;
    color: #4caf50;
}

.cta-btn.secondary {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.cta-btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

/* Animations */
@keyframes pulse {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .betting-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .betting-btn {
        width: 80%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 80%;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .sports-features {
        grid-template-columns: 1fr;
    }
    
    .match-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mobile-feature .feature-icon {
        margin: 0 0 15px 0;
    }
    
    .page-header {
        padding: 20px;
    }
    
    .page-header h1 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .esports-categories {
        flex-direction: column;
    }
    
    .match-card {
        padding: 10px;
    }
    
    .match-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
} 