/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

/* ===== ADVERTISEMENT CONTAINERS ===== */
.ad-container {
    margin: 10px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ad-placeholder {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    position: relative;
    transition: none;
    cursor: default;
}

.ad-placeholder:hover {
    transform: none;
    box-shadow: none;
}

/* Ad styling removed - using real ads now */

/* Ad Specific Sizes - Simplified for real ads */
.ad-header .ad-placeholder,
.ad-between-sections .ad-placeholder,
.ad-footer .ad-placeholder {
    margin: 0 auto;
}

/* ===== LIVE TICKER ===== */
.live-ticker {
    background: linear-gradient(90deg, #dc2626, #ef4444);
    color: white;
    padding: 8px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-content {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    padding-left: 100%;
}

.ticker-item {
    margin-right: 50px;
    font-weight: 500;
    font-size: 14px;
}

@keyframes scroll-left {
    0% { transform: translate3d(100%, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* ===== HEADER STYLES ===== */
.main-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 3px solid #333333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
}

.logo-cnc {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-bet {
    color: #cccccc;
    text-transform: lowercase;
    font-weight: 400;
}

.tagline {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    background: linear-gradient(45deg, #333333, #555555);
    color: #ffffff;
    transform: translateY(-2px);
}

.user-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login,
.btn-register {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    min-width: 100px;
    justify-content: center;
}



/* ===== BUTTON STYLES ===== */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-transform: uppercase;
}

.btn-login {
    background: transparent;
    color: #e2e8f0;
    border: 2px solid #64748b;
}

.btn-login:hover {
    background: #64748b;
    color: white;
}

.btn-login {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid #333333;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #666666;
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(45deg, #333333, #555555);
    color: #ffffff;
    border: 1px solid #666666;
}

.btn-register:hover {
    background: linear-gradient(45deg, #555555, #777777);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-promo {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    font-size: 16px;
    padding: 15px 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ===== MAIN CONTAINER ===== */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* ===== PROMOTIONAL BANNER ===== */
.promo-banner {
    background: linear-gradient(135deg, #1d0d1e 0%, #551818 50%, #dc2626 100%);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.promo-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #fbbf24;
}

.promo-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fecaca;
}

/* ===== FEATURED EVENTS WITH ADS ===== */
.featured-events-with-ads {
    margin-bottom: 30px;
}

.featured-ads-container {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 30px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.ad-featured-left,
.ad-featured-right {
    position: sticky;
    top: 20px;
}

.featured-events-center {
    min-width: 0; /* Allows flex item to shrink */
}

.featured-content-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr 250px;
    gap: 20px;
    align-items: start;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header h2 {
    color: #ffffff;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid #ef4444;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.live-indicator span {
    color: #ef4444;
    font-weight: 600;
    font-size: 12px;
}

.event-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: #fbbf24 #1e293b;
}

.event-cards::-webkit-scrollbar {
    height: 8px;
}

.event-cards::-webkit-scrollbar-track {
    background: #1e293b;
    border-radius: 4px;
}

.event-cards::-webkit-scrollbar-thumb {
    background: #666666;
    border-radius: 4px;
}

.event-card {
    min-width: 280px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 1px solid #475569;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    border-color: #666666;
}

.event-card h3 {
    color: #e2e8f0;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.event-card p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 15px;
}

.bet-now-btn {
    background: linear-gradient(45deg, #333333, #555555);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
}

.bet-now-btn:hover {
    background: linear-gradient(45deg, #555555, #777777);
    transform: translateY(-2px);
}

/* ===== MAIN CONTENT LAYOUT ===== */
.main-content {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 30px;
    margin-bottom: 30px;
}

/* ===== SIDEBAR STYLES ===== */
.sidebar {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
    border: 1px solid #475569;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    color: #ffb347;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sports-list {
    list-style: none;
}

.sport-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    color: #e2e8f0;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sport-link:hover, .sport-link.active {
    background: linear-gradient(45deg, #ffb347, #ff8c42);
    color: #1a1a1a;
    transform: translateX(5px);
}

.sport-link i {
    margin-right: 10px;
    width: 16px;
}

.match-count {
    background: rgba(255, 179, 71, 0.2);
    color: #ffb347;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.sport-link.active .match-count,
.sport-link:hover .match-count {
    background: rgba(26, 26, 26, 0.3);
    color: #1a1a1a;
}

/* ===== QUICK STATS ===== */
.quick-stats {
    background: rgba(255, 179, 71, 0.1);
    border: 1px solid #ffb347;
    border-radius: 8px;
    padding: 15px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: #94a3b8;
    font-size: 14px;
}

.stat-value {
    color: #fbbf24;
    font-weight: 600;
}

/* ===== BETTING AREA ===== */
.betting-area {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    border: 1px solid #475569;
    overflow: hidden;
}

.betting-header {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    padding: 20px;
    border-bottom: 1px solid #64748b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.betting-header h2 {
    color: #fbbf24;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.betting-filters {
    display: flex;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #64748b;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1a2332;
    border-color: #fbbf24;
}

.matches-container {
    padding: 20px;
}

/* ===== MATCH ITEMS ===== */
.match-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #475569;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 10px;
}

.match-item:hover {
    background: rgba(251, 191, 36, 0.05);
    border-color: #fbbf24;
}

.match-details {
    display: flex;
    align-items: center;
    gap: 20px;
}

.match-time {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1a2332;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    min-width: 60px;
    text-align: center;
}

.teams {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.team {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 16px;
}

.vs {
    color: #94a3b8;
    font-size: 12px;
    text-align: center;
    font-weight: 400;
}

.match-odds {
    display: flex;
    gap: 10px;
}

.odd-btn {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%);
    color: #e2e8f0;
    border: 1px solid #64748b;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 60px;
    text-align: center;
}

.odd-btn:hover {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1a2332;
    border-color: #fbbf24;
    transform: translateY(-2px);
}

.odd-btn.selected {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1a2332;
    border-color: #fbbf24;
}

/* ===== BET SLIP ===== */
.bet-slip {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    border: 1px solid #475569;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.bet-slip-header {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    padding: 15px 20px;
    border-bottom: 1px solid #64748b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bet-slip-header h3 {
    color: #fbbf24;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bet-count {
    background: #ef4444;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.bet-slip-content {
    padding: 20px;
    min-height: 200px;
}

.empty-bet-slip {
    text-align: center;
    color: #94a3b8;
    padding: 40px 20px;
}

.empty-bet-slip i {
    font-size: 48px;
    color: #64748b;
    margin-bottom: 15px;
}

.empty-bet-slip p {
    margin: 5px 0;
    font-size: 14px;
}

.bet-slip-footer {
    padding: 15px 20px;
    border-top: 1px solid #475569;
}

.btn-place-bet {
    width: 100%;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-place-bet:disabled {
    background: #64748b;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-place-bet:not(:disabled):hover {
    background: linear-gradient(45deg, #16a34a, #15803d);
    transform: translateY(-2px);
}

/* ===== FOOTER STYLES ===== */
.main-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-top: 3px solid #fbbf24;
    margin-top: 50px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-section h4 {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1a2332;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #fbbf24;
    font-size: 14px;
    text-align: center;
}

.footer-bottom {
    background: #0f172a;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
}

/* ===== FLOATING ELEMENTS ===== */
.floating-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
    transition: all 0.3s ease;
    position: relative;
    font-size: 24px;
}

.chat-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.6);
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.floating-ad {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    transition: all 0.3s ease;
}

.floating-ad-left {
    left: 10px;
}

.floating-ad-right {
    right: 10px;
}

.floating-ad .ad-placeholder {
    position: relative;
}

/* Ad close button removed - no close option for ads */

/* ===== MODAL STYLES ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    border: 2px solid #fbbf24;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #fbbf24;
}

.modal-body {
    text-align: center;
}

.modal-body h2 {
    color: #fbbf24;
    font-size: 28px;
    margin-bottom: 20px;
}

.offer-details {
    margin: 30px 0;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(251, 191, 36, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.offer-item i {
    color: #fbbf24;
    font-size: 20px;
    width: 24px;
}

.offer-item span {
    color: #e2e8f0;
    font-weight: 500;
}

.btn-modal-cta {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    font-size: 18px;
    padding: 15px 30px;
    margin: 20px 0;
    animation: pulse 2s infinite;
}

.modal-disclaimer {
    color: #94a3b8;
    font-size: 12px;
    margin-top: 15px;
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    text-align: center;
    color: #fbbf24;
}

.loading-spinner i {
    font-size: 48px;
    margin-bottom: 20px;
}

.loading-spinner p {
    font-size: 18px;
    font-weight: 500;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 200px 1fr 280px;
        gap: 20px;
    }

    .floating-ad-left,
    .floating-ad-right {
        display: none;
    }
}

@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bet-slip {
        order: -1;
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        gap: 15px;
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }

    .featured-ads-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ad-featured-left,
    .ad-featured-right {
        position: static;
        justify-self: center;
    }

    .event-cards {
        gap: 15px;
    }

    .event-card {
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .main-container {
        padding: 15px;
    }

    .featured-ads-container {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .ad-featured-left,
    .ad-featured-right {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .header-container {
        padding: 10px 15px;
    }

    .logo {
        font-size: 24px;
    }

    .logo i {
        font-size: 28px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }

    .user-section {
        flex-direction: column;
        gap: 10px;
    }

    .promo-content h2 {
        font-size: 22px;
    }

    .promo-content p {
        font-size: 14px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .event-card {
        min-width: 220px;
    }

    .match-item {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .match-details {
        width: 100%;
        justify-content: space-between;
    }

    .match-odds {
        width: 100%;
        justify-content: space-between;
    }

    .odd-btn {
        flex: 1;
        min-width: auto;
    }

    .betting-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .betting-filters {
        width: 100%;
        justify-content: space-between;
    }

    .filter-btn {
        flex: 1;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .modal-body h2 {
        font-size: 24px;
    }

    .floating-chat {
        bottom: 20px;
        right: 20px;
    }

    .chat-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    /* Ad constraints removed for real ads */

    .ticker-item {
        font-size: 12px;
        margin-right: 30px;
    }

    .logo {
        font-size: 20px;
    }

    .logo i {
        font-size: 24px;
    }

    .tagline {
        font-size: 10px;
    }

    .nav-link {
        padding: 6px 10px;
        font-size: 12px;
    }

    .nav-link i {
        display: none;
    }

    .btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .promo-content h2 {
        font-size: 18px;
    }

    .btn-promo {
        font-size: 14px;
        padding: 12px 20px;
    }

    .event-card {
        min-width: 200px;
        padding: 15px;
    }

    .event-card h3 {
        font-size: 14px;
    }

    .sidebar {
        padding: 15px;
    }

    .sidebar-section h3 {
        font-size: 16px;
    }

    .sport-link {
        padding: 10px 12px;
        font-size: 14px;
    }

    .betting-area {
        margin: 0 -15px;
        border-radius: 0;
    }

    .betting-header {
        padding: 15px;
    }

    .betting-header h2 {
        font-size: 18px;
    }

    .matches-container {
        padding: 15px;
    }

    .match-item {
        padding: 15px;
    }

    .team {
        font-size: 14px;
    }

    .match-time {
        padding: 6px 10px;
        font-size: 12px;
    }

    .odd-btn {
        padding: 10px 12px;
        font-size: 14px;
    }

    .bet-slip {
        margin: 0 -15px;
        border-radius: 0;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .ad-container,
    .floating-chat,
    .floating-ad,
    .modal-overlay,
    .loading-overlay {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .main-header,
    .main-footer {
        background: white !important;
        color: black !important;
    }
}

/* ===== SEO CONTENT ARTICLE SECTION ===== */
.seo-content-section {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    padding: 60px 0;
    margin: 40px 0;
    border-top: 2px solid #fbbf24;
    border-bottom: 2px solid #fbbf24;
}

.seo-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.betting-guide-article {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(251, 191, 36, 0.3);
}

.article-header h1 {
    color: #fbbf24;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.article-intro {
    color: #94a3b8;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.article-content {
    color: #e2e8f0;
    line-height: 1.8;
    font-size: 16px;
}

.lead-paragraph {
    font-size: 18px;
    font-weight: 500;
    color: #f1f5f9;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #fbbf24;
    border-radius: 8px;
}

.article-content h2 {
    color: #fbbf24;
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-content h3 {
    color: #f1f5f9;
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-content h3 i {
    color: #fbbf24;
    font-size: 20px;
}

.article-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.article-content strong {
    color: #fbbf24;
    font-weight: 600;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.promo-item {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.promo-item:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: #fbbf24;
    transform: translateY(-2px);
}

.promo-item h4 {
    color: #fbbf24;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-item p {
    color: #e2e8f0;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.step-item {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: #fbbf24;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.2);
}

.step-number {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1a2332;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px auto;
}

.step-item h4 {
    color: #fbbf24;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-item p {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.inline-link {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: #f59e0b;
    text-decoration: underline;
}

.cta-conclusion {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    border: 2px solid #fbbf24;
}

.cta-conclusion h3 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-conclusion p {
    color: #f1f5f9;
    font-size: 18px;
    margin-bottom: 25px;
}

.btn-cta-large {
    background: linear-gradient(45deg, #fbbf24, #f59e0b);
    color: #1a2332;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.btn-cta-large:hover {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
}

.btn-cta-large i {
    margin-right: 10px;
}

/* Responsive Design for Article */
@media (max-width: 768px) {
    .seo-content-section {
        padding: 40px 0;
        margin: 20px 0;
    }

    .betting-guide-article {
        padding: 25px 20px;
    }

    .article-header h1 {
        font-size: 28px;
    }

    .article-intro {
        font-size: 16px;
    }

    .article-content h2 {
        font-size: 24px;
    }

    .article-content h3 {
        font-size: 20px;
    }

    .promotions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-conclusion {
        padding: 30px 20px;
    }

    .cta-conclusion h3 {
        font-size: 24px;
        flex-direction: column;
        gap: 5px;
    }

    .btn-cta-large {
        font-size: 18px;
        padding: 15px 30px;
    }
}

/* ===== ADDITIONAL ELEMENTS ===== */

/* Event Status Badges */
.event-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.event-status.live {
    background: #ef4444;
    color: white;
}

.event-status.starting-soon {
    background: #f59e0b;
    color: white;
}

.event-status.upcoming {
    background: #64748b;
    color: white;
}

.event-status.featured {
    background: #fbbf24;
    color: #1a2332;
}

.event-info {
    margin: 10px 0;
}

.event-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0;
    font-size: 12px;
}

.event-info i {
    color: #fbbf24;
    width: 12px;
}

/* Match Status Badges */
.match-time-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    min-width: 60px;
}

.status-badge.live {
    background: #ef4444;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-badge.starting-soon {
    background: #f59e0b;
    color: white;
}

.status-badge.finished {
    background: #64748b;
    color: white;
}

.status-badge.upcoming {
    background: #475569;
    color: #e2e8f0;
}

.league-name {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 5px;
}

.match-info {
    display: flex;
    flex-direction: column;
}

/* Enhanced Odds Buttons */
.odd-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.odd-label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
}

.odd-value {
    font-size: 14px;
    font-weight: 600;
}

.match-item.popular {
    border-left: 3px solid #fbbf24;
}

/* Bet Slip Items */
.bet-slip-items {
    margin-bottom: 15px;
}

.bet-slip-item {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 8px;
}

.bet-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bet-type {
    color: #e2e8f0;
    font-size: 14px;
    text-transform: capitalize;
}

.bet-odd {
    color: #fbbf24;
    font-weight: 600;
}

.bet-slip-total {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
}

.total-odds {
    color: #22c55e;
    font-weight: 600;
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: 1px solid #475569;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-color: #22c55e;
}

.notification-error {
    border-color: #ef4444;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: #e2e8f0;
}

.notification-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #fbbf24;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fbbf24;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover Effects for Interactive Elements */
.event-card,
.match-item,
.ad-placeholder,
.sport-link,
.nav-link,
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus States for Accessibility */
.btn:focus,
.odd-btn:focus,
.nav-link:focus,
.sport-link:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Important Pages Section */
.important-pages {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2d2d2d 100%);
    margin: 20px 0;
}

.important-pages .container {
    max-width: 1200px;
    margin: 0 auto;
}

.important-pages h2 {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.important-pages h2 i {
    color: #ffd700;
    margin-right: 15px;
}

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

.page-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid #333333;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

.page-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: #ffd700;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.page-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.page-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-card p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Important Pages */
@media (max-width: 768px) {
    .important-pages {
        padding: 40px 15px;
    }

    .important-pages h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

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

    .page-card {
        padding: 25px 20px;
    }

    .page-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .page-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .page-card p {
        font-size: 0.9rem;
    }
}

/* Selection Styles */
::selection {
    background: #fbbf24;
    color: #1a2332;
}

::-moz-selection {
    background: #333333;
    color: #ffffff;
}

/* ===== AUTH SECTION ===== */
.auth-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    border: 1px solid #333333;
    margin: 30px 0;
    padding: 40px;
}

.auth-container {
    max-width: 800px;
    margin: 0 auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-header p {
    color: #cccccc;
    font-size: 16px;
}

.auth-forms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.auth-form {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.auth-form.active {
    border-color: #666666;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

.auth-form h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: #000000;
    border: 1px solid #333333;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #666666;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 12px;
    color: #cccccc;
}

.btn-auth {
    width: 100%;
    background: linear-gradient(45deg, #333333, #555555);
    color: #ffffff;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
}

.btn-auth:hover {
    background: linear-gradient(45deg, #555555, #777777);
    transform: translateY(-2px);
}

.auth-switch {
    text-align: center;
    color: #cccccc;
    font-size: 14px;
    margin-top: 15px;
}

.auth-switch a, .forgot-password a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.auth-switch a:hover, .forgot-password a:hover {
    text-decoration: underline;
}

.forgot-password {
    text-align: center;
    margin-top: 10px;
}

.auth-benefits {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.auth-benefits h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 14px;
}

.benefit-item i {
    color: #ffffff;
    font-size: 16px;
    width: 20px;
}

/* ===== TIMER MODAL ===== */
.timer-modal {
    max-width: 500px;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 2px solid #333333;
    position: relative;
}

.timer-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #cccccc;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.timer-close:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.server-icon {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
}

.server-icon i {
    animation: pulse 2s infinite;
}

.server-message {
    color: #cccccc;
    font-size: 16px;
    margin: 20px 0;
    line-height: 1.6;
}

.timer-container {
    margin: 30px 0;
}

.timer-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

#timerSeconds {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(45deg, #333333, #555555);
    padding: 15px 25px;
    border-radius: 10px;
    border: 2px solid #666666;
    min-width: 100px;
    text-align: center;
}

.timer-label {
    color: #cccccc;
    font-size: 16px;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #333333;
    border-radius: 4px;
    overflow: hidden;
    margin: 20px 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #666666, #888888);
    width: 100%;
    transition: width 1s linear;
}

.timer-message {
    color: #cccccc;
    font-size: 14px;
    margin: 20px 0;
}

.btn-go {
    background: linear-gradient(45deg, #333333, #555555);
    color: #ffffff;
    font-size: 18px;
    padding: 15px 30px;
    animation: pulse 2s infinite;
}

.btn-go:hover {
    background: linear-gradient(45deg, #555555, #777777);
}

.hidden {
    display: none !important;
}

/* ===== LIVE BETTING DASHBOARD ===== */
.live-betting-dashboard {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    border: 1px solid #333333;
    margin: 30px 0;
    padding: 30px;
}

.live-stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    font-size: 14px;
}

.stat-item i {
    color: #ffffff;
}

.live-betting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.live-match-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.live-match-card:hover {
    border-color: #666666;
    transform: translateY(-2px);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.live-badge {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.match-time {
    color: #cccccc;
    font-weight: 600;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.team {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.team-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.team-name {
    color: #ffffff;
    font-weight: 500;
}

.team-score {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}

.vs {
    color: #cccccc;
    font-weight: 600;
    margin: 0 15px;
}

.live-odds {
    display: flex;
    gap: 10px;
}

.odds-btn {
    background: linear-gradient(45deg, #333333, #555555);
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.odds-btn:hover {
    background: linear-gradient(45deg, #555555, #777777);
    transform: scale(1.05);
}

/* ===== BETTING FEATURES ===== */
.betting-features {
    margin: 30px 0;
}

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

.feature-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #666666;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #333333, #555555);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #ffffff;
}

.feature-card h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-btn {
    background: linear-gradient(45deg, #333333, #555555);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.feature-btn:hover {
    background: linear-gradient(45deg, #555555, #777777);
    transform: translateY(-2px);
}

/* ===== VIRTUAL SPORTS ===== */
.virtual-sports {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    border: 1px solid #333333;
    margin: 30px 0;
    padding: 30px;
}

.virtual-sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.virtual-sport-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.virtual-sport-card:hover {
    border-color: #666666;
    transform: translateY(-3px);
}

.virtual-sport-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #333333, #555555);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: #ffffff;
}

.virtual-sport-card h4 {
    color: #ffffff;
    margin-bottom: 10px;
}

.virtual-sport-card p {
    color: #cccccc;
    margin-bottom: 15px;
}

.countdown {
    color: #ffffff;
    font-weight: 600;
}

.virtual-bet-btn {
    background: linear-gradient(45deg, #333333, #555555);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.virtual-bet-btn:hover {
    background: linear-gradient(45deg, #555555, #777777);
    transform: translateY(-2px);
}

/* ===== PAYMENT METHODS ===== */
.payment-methods {
    margin: 30px 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.payment-category {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.payment-category h4 {
    color: #ffffff;
    margin-bottom: 15px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #333333;
}

/* ===== LIVE STATISTICS ===== */
.live-statistics {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    border: 1px solid #333333;
    margin: 30px 0;
    padding: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #666666;
    transform: translateY(-3px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #333333, #555555);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 20px;
    color: #ffffff;
}

.stat-number {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    color: #cccccc;
    font-size: 14px;
}