/* ========================================
   Live Game Page Styles
   ======================================== */

/* Live Banner */
.live-banner {
    margin-top: 120px;
    width: 100%;
    height: 280px;
    background-image: url('3 Live Game/live_img/live_banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Game Tabs */
.game-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    background: var(--primary-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    padding: 18px 80px;
    background: transparent;
    color: var(--text-secondary);
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-btn.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #007bff);
}

/* Coming Soon Section */
.coming-soon-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(180deg, rgba(13, 21, 32, 0.95) 0%, rgba(21, 25, 31, 0.98) 100%),
        url('3 Live Game/live_img/live_banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.coming-soon-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 0% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 40%),
        radial-gradient(ellipse at 100% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 40%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.coming-soon-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 60px 20px;
}

.coming-soon-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.coming-soon-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* Notify Form */
.notify-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    background: #fff;
    border: none;
    font-size: 14px;
    color: #333;
    outline: none;
}

.email-input::placeholder {
    color: #999;
}

.btn-notify {
    padding: 15px 30px;
    background: linear-gradient(90deg, #1e3a5f 0%, #2c4a6e 100%);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-notify:hover {
    background: linear-gradient(90deg, #2c4a6e 0%, #3a5a7e 100%);
}

/* ========================================
   Responsive Design for Live Page
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .live-banner {
        margin-top: 60px;
        height: 220px;
    }
    
    .tab-btn {
        padding: 15px 60px;
        font-size: 14px;
    }
    
    .coming-soon-title {
        font-size: 38px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .live-banner {
        height: 180px;
    }
    
    .tab-btn {
        padding: 15px 40px;
        font-size: 14px;
        flex: 1;
        text-align: center;
    }
    
    .game-tabs {
        padding: 0;
    }
    
    .coming-soon-section {
        min-height: 350px;
    }
    
    .coming-soon-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .coming-soon-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .email-input {
        border-radius: 5px 5px 0 0;
    }
    
    .btn-notify {
        border-radius: 0 0 5px 5px;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .live-banner {
        height: 150px;
    }
    
    .tab-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
    
    .coming-soon-title {
        font-size: 28px;
    }
    
    .coming-soon-content {
        padding: 40px 15px;
    }
}
