/* =========================
   RESET & BASICS
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background: #0b1220; /* Deep dark blue */
    color: #ffffff;
    padding-top: 80px; /* Space for fixed navbar */
}

/* =========================
   PREMIUM NAVBAR CUSTOM
========================= */
.navbar-custom {
    background: rgba(2, 6, 23, 0.95); /* Almost black with transparency */
    backdrop-filter: blur(12px); /* Glass blur effect */
    border-bottom: 1px solid rgba(34, 197, 94, 0.15); /* Subtle green glow */
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.brand-text {
    font-weight: 800;
    font-size: 1.35rem;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.brand-accent {
    color: #22c55e; /* Green */
}

/* Menu Links */
.custom-link {
    color: #cbd5e1 !important; /* Light gray */
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 18px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom-link:hover {
    color: #22c55e !important;
    background: rgba(34, 197, 94, 0.1); /* Light green tint on hover */
    transform: translateY(-1px);
}

/* Mobile Toggler - HIGH VISIBILITY UPDATE */
.navbar-toggler {
    border: 2px solid #22c55e; /* Bright Green Border */
    background-color: rgba(34, 197, 94, 0.1); /* Slight green tint */
    padding: 6px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    outline: none;
}

.navbar-toggler-icon {
    /* Force the icon to be bright white */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Live Badge Animation */
.pulsing-badge {
    background-color: #ef4444; /* Red */
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

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

/* =========================
   MATCH LIST (INDEX)
========================= */
.match-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.match-card {
    background: #1e293b; /* Slightly lighter than body */
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: #22c55e;
}

.match-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.match-time {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 600;
}

.match-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

/* Watch Button */
.watch-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    transition: all 0.2s ease;
}

.watch-btn:hover {
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.6);
    transform: scale(1.05);
}

/* =========================
   PLAYER & WATCH PAGE
========================= */
.stream-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.stream-buttons button {
    background: #1e293b;
    border: 1px solid #334155;
    color: #cbd5e1;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.stream-buttons button.active,
.stream-buttons button:hover {
    background: #22c55e;
    color: #000;
    border-color: #22c55e;
}

.player-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid #334155;
}

.player-wrapper iframe, 
.player-wrapper .play-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.play-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: radial-gradient(circle, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
    z-index: 10;
}

.play-overlay svg {
    width: 80px;
    height: 80px;
    fill: #22c55e;
    transition: transform 0.2s ease;
}

.play-overlay:hover svg {
    transform: scale(1.1);
}

/* =========================
   SOCIAL & FOOTER
========================= */
.social-cta {
    margin: 20px auto 30px auto;
    max-width: 1100px; /* Match container */
    padding: 0 20px;
    display: flex;
    gap: 16px;
}

.social-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.2s;
}

.social-cta a:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

.cta-telegram {
    background: #229ED9;
    box-shadow: 0 8px 20px rgba(34, 158, 217, 0.3);
}

.cta-whatsapp {
    background: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.footer {
    border-top: 1px solid #1e293b;
    padding: 40px 0;
    margin-top: 60px;
    background: #020617;
}

.footer-disclaimer {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copy {
    color: #94a3b8;
    font-size: 14px;
}

/* SEO Content */
.seo-content {
    margin-top: 60px;
    padding: 30px;
    background: #1e293b;
    border-radius: 16px;
    color: #cbd5e1;
    line-height: 1.7;
}
.seo-content h2, .seo-content h3 {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}
