
/* =========================
RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#0d0d0d;
    color:#fff;
}

/* =========================
SCROLL
========================= */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-thumb{
    background:#2d2d2d;
    border-radius:10px;
}

/* =========================
HEADER
========================= */
/* =========================
HEADER
========================= */

header{
    width:100%;
    background:#121212;
    border-bottom:1px solid #1f1f1f;
    position:sticky;
    top:0;
    z-index:999;
}

.header-content{
    max-width:1200px;
    margin:auto;
    padding:14px 15px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
}

.logo{
    font-size:28px;
    font-weight:bold;
    white-space:nowrap;
}

.logo span{
    color:#00d26a;
}

/* =========================
MENU DESKTOP
========================= */

.desktop-menu{
    display:flex;
    align-items:center;
    gap:18px;
}

.desktop-menu a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    transition:0.2s;
}

.desktop-menu a:hover{
    color:#00d26a;
}

/* =========================
SELECT
========================= */

.league-select{
    height:42px;
    background:#1a1a1a;
    border:1px solid #2b2b2b;
    color:#fff;
    border-radius:10px;
    padding:0 12px;
    outline:none;
    cursor:pointer;
}
.league-select1{
    height:42px;
    background:#1a1a1a;
    border:1px solid #2b2b2b;
    color:#fff;
    border-radius:10px;
    padding:0 12px;
    outline:none;
    cursor:pointer;
}

/* =========================
DROPDOWN
========================= */

.dropdown{
    position:relative;
}

.dropdown-btn{
    height:42px;
    padding:0 14px;
    border:none;
    border-radius:10px;
    background:#1a1a1a;
    color:#fff;
    cursor:pointer;
}

.dropdown-content{
    opacity:0;
    visibility:hidden;
    pointer-events:none;

    position:absolute;
    right:0;
    top:48px;

    min-width:180px;

    background:#1a1a1a;
    border:1px solid #2a2a2a;
    border-radius:12px;

    overflow:hidden;

    transition:0.2s;
}

.dropdown-content a{
    display:block;
    padding:14px;
    border-bottom:1px solid #2a2a2a;
}

.dropdown-content a:last-child{
    border-bottom:none;
}

/* SEGURA O MENU */

.dropdown:hover .dropdown-content{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

/* =========================
MENU MOBILE
========================= */

.menu-btn{
    display:none;
    background:none;
    border:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.mobile-menu{
    display:none;
    flex-direction:column;
    padding:15px;
    gap:15px;
    border-top:1px solid #1f1f1f;
    background:#121212;
}

.mobile-menu.active{
    display:flex;
}

.mobile-menu a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
}

.mobile-select{
    width:100%;
}

/* =========================
RESPONSIVO
========================= */

@media(max-width:950px){

    .desktop-menu{
        display:none;
    }

    .menu-btn{
        display:block;
    }

    .logo{
        font-size:24px;
    }
}
/* =========================
MAIN
========================= */

main{
    max-width:1200px;
    margin:auto;
    padding:30px 15px 0px;
}

/* =========================
TOP DESCRIPTION
========================= */

.top-description{
    text-align:center;
    margin-bottom:35px;
}

.top-description h1{
    font-size:34px;
    margin-bottom:12px;
}

.top-description p{
    color:#bdbdbd;
    line-height:1.6;
    max-width:850px;
    margin:auto;
}

/* =========================
SEARCH
========================= */

.search-area{
    margin-bottom:45px;
}

.search-title{
    font-size:22px;
    margin-bottom:15px;
}

.search-box{
    display:flex;
    align-items:center;
    gap:12px;
}

.search-box input{
    flex:1;
    height:55px;
    background:#181818;
    border:1px solid #2a2a2a;
    border-radius:12px;
    padding:0 18px;
    color:#fff;
    font-size:16px;
    outline:none;
}

.search-box input:focus{
    border-color:#00d26a;
}

.search-box button{
    min-width:130px;
    height:55px;
    border:none;
    background:#00d26a;
    color:#fff;
    border-radius:12px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
}

/* =========================
SECTION
========================= */

.section{
    margin-bottom:55px;
}

.section-title{
    font-size:26px;
    margin-bottom:22px;
}
.section-title-2{
    font-size:18px;
    margin-bottom:18px;
}

/* =========================
LIVE GRID
========================= */

.live-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

.live-card{
    background:#161616;
    border:1px solid #242424;
    border-radius:14px;
    overflow:hidden;
    transition:0.2s;
}

.live-card:hover{
    transform:translateY(-4px);
}

.live-thumb{
    width:100%;
    height:170px;
    background:#1f1f1f;
}

.live-content{
    padding:15px;
}

.live-content h3{
    font-size:17px;
    margin-bottom:10px;
}

.live-content p{
    color:#aaa;
    margin-bottom:15px;
    font-size:14px;
}

.watch-btn{
    width:100%;
    height:45px;
    border:none;
    padding: 10px 15px;
    border-radius:10px;
    background:#009b4d;
    color:#ffffff;
    font-weight:bold;
    cursor:pointer;
    text-decoration:none;
}

/* =========================
TABLE
========================= */

.table-wrapper{
    overflow-x:auto;
    margin-bottom:25px;
}

table{
    width:100%;
    border-collapse:collapse;
    background:#161616;
    border-radius:12px;
    overflow:hidden;
}

th{
    background:#1c1c1c;
    padding:14px;
    color:#00d26a;
    font-size:15px;
}

td{
    padding:14px;
    border-bottom:1px solid #242424;
    text-align:center;
}

/* =========================
LEAGUES
========================= */

.leagues-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:15px;
}

.league-btn{
    background:linear-gradient(135deg,#161616,#1c1c1c);
    border:1px solid #242424;
    border-radius:14px;
    padding:16px;
    display:flex;
    align-items:center;
    gap:14px;
    cursor:pointer;
    transition:0.2s;
    text-decoration:none;
    color:#fff;
    min-height:78px;
}

.league-btn span{
    font-size:15px;
    font-weight:bold;
    line-height:1.3;
}

.league-btn:hover{
    border-color:#00d26a;
    transform:translateY(-3px);
    background:linear-gradient(135deg,#171717,#202020);
}

.league-logo{
    width:46px;
    height:46px;
    object-fit:contain;
    border-radius:10px;
    background:rgba(255,255,255,0.06);
    padding:5px;
    flex-shrink:0;

    filter:
        drop-shadow(0 2px 4px rgba(0,0,0,0.45))
        brightness(1.08)
        contrast(1.08);
}

/* =========================
HIGHLIGHTS
========================= */

.highlight-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

.highlight-card{
    background:#161616;
    border-radius:14px;
    overflow:hidden;
    border:1px solid #242424;
}

.highlight-thumb{
    width:100%;
    aspect-ratio:16/9;
    object-fit:cover;
    display:block;
    cursor:pointer;
    border-radius:12px 12px 0 0;
}

.highlight-content{
    padding:15px;
}

/* =========================
NEWS
========================= */

.news-list{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.news-item{
    background:#161616;
    border:1px solid #242424;
    border-radius:12px;
    padding:18px;
    font-size:16px;
    font-weight:bold;
}

/* =========================
FOOTER
========================= */

footer{
    background:#121212;
    border-top:1px solid #1f1f1f;
    text-align:center;
    padding:35px 20px;
    color:#aaa;
}

/* =========================
RESPONSIVO
========================= */

@media(max-width:900px){

    .live-grid,
    .highlight-grid,
    .leagues-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:600px){

    .menu-btn{
        display:block;
    }

    .top-description h1{
        font-size:27px;
    }

    .section-title{
        font-size:22px;
    }

    .search-title{
        font-size:20px;
    }

    /* SEARCH MOBILE */

    .search-box{
        display:flex;
        flex-direction:column;
        align-items:stretch;
        width:100%;
        gap:12px;
    }

    .search-box input{
        height:56px;
        line-height:56px;
        padding:0 18px;
        font-size:16px;
    }


    .search-box button{
        width:100%;
        min-width:100%;
        height:56px;
        font-size:16px;
    }

    .live-grid,
    .highlight-grid,
    .leagues-grid{
        grid-template-columns:1fr;
    }

    .logo{
        font-size:24px;
    }

    .league-btn{
        padding:14px;
    }
}
/* =========================
SECTION HEADER
========================= */

.section-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-bottom:22px;
}

.view-more-desktop{
    color:#00d26a;
    text-decoration:none;
    font-size:15px;
    font-weight:bold;
}

.view-more-desktop:hover{
    opacity:0.8;
}
.view-more{
    color:#00d26a;
    text-decoration:none;
    font-size:15px;
    font-weight:bold;
}
/* =========================
VIEW MORE MOBILE
========================= */

.view-more-mobile{
    display:none;

    width:100%;
    height:50px;

    margin-top:18px;

    background:#181818;
    border:1px solid #2a2a2a;
    border-radius:12px;

    color:#fff;
    text-decoration:none;

    align-items:center;
    justify-content:center;

    font-weight:bold;
}

/* =========================
RESPONSIVO
========================= */

@media(max-width:600px){

    .section-header{
        align-items:center;
    }

    .view-more-desktop{
        display:none;
    }

    .view-more-mobile{
        display:flex;
    }
}
/* =========================
FOOTER
========================= */

footer{
    background:#121212;
    border-top:1px solid #1f1f1f;
    margin-top:60px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    padding:45px 20px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:30px;
}

/* =========================
FOOTER LINKS
========================= */

.footer-links{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
}

.footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    transition:0.2s;
}

.footer-links a:hover{
    color:#00d26a;
}

/* =========================
SOCIAL
========================= */

.footer-social{
    display:flex;
    align-items:center;
    gap:16px;
}

.social-icon{
    width:52px;
    height:52px;

    background:#1d1d1d;
    border:1px solid #2a2a2a;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    font-size:24px;

    transition:0.2s;
}

.social-icon:hover{
    transform:translateY(-3px);
    border-color:#00d26a;
}

/* =========================
COPY
========================= */

.footer-copy{
    text-align:center;
    color:#bdbdbd;
    line-height:1.8;
    font-size:14px;
}

/* =========================
RESPONSIVO
========================= */

@media(max-width:600px){

    .footer-container{
        padding:40px 15px;
        gap:25px;
    }

    .footer-links{
        gap:14px;
    }

    .footer-links a{
        font-size:14px;
    }

    .social-icon{
        width:48px;
        height:48px;
        font-size:22px;
    }
}
/* =========================
STATUS JOGO
========================= */

.live-now{

    display:inline-block;

    background:#ff2b2b;

    color:#fff;

    padding:6px 10px;

    border-radius:8px;

    font-size:13px;

    font-weight:bold;

    margin-bottom:12px;
}

.live-future{

    display:inline-block;

    background:#1f1f1f;

    color:#00d26a;

    padding:6px 10px;

    border-radius:8px;

    font-size:13px;

    font-weight:bold;

    margin-bottom:12px;
}
.live-ended{
    display:inline-block;
    background:#f5c542;
    color:#111;
    padding:6px 10px;
    border-radius:8px;
    font-size:13px;
    font-weight:bold;
    margin-bottom:12px;
}
.match-thumb{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px;
    background:#111;
}

.match-teams{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    width:100%;
}

.team-side{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    width:105px;
    text-align:center;
    font-size:13px;
    font-weight:bold;
}

.team-badge{
    width:62px;
    height:62px;
    object-fit:contain;
}

.team-badge-placeholder{
    width:62px;
    height:62px;
    border-radius:50%;
    background:#242424;
    border:1px solid #333;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#777;
    font-weight:bold;
}

.match-vs{
    font-size:25px;
    font-weight:bold;
    color:#00d26a;
}
.team-table-cell{
    display:flex;
    align-items:center;
    gap:8px;
    justify-content:flex-start;
}

.table-team-badge{
    width:24px;
    height:24px;
    object-fit:contain;
}
.live-badge{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#ff0000;
    color:#fff;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
    font-weight:bold;
    margin-bottom:10px;
    animation:pulseLive 1.5s infinite;
}

.live-dot{
    width:8px;
    height:8px;
    background:#fff;
    border-radius:50%;
}

@keyframes pulseLive{

    0%{
        opacity:1;
        transform:scale(1);
    }

    50%{
        opacity:0.7;
        transform:scale(1.05);
    }

    100%{
        opacity:1;
        transform:scale(1);
    }
}
.standing-more-box{
    margin-top:15px;
    text-align:center;
}

.standing-group-title{
    margin:18px 0 8px;
    font-size:16px;
    font-weight:bold;
}
.video-player-box{
    width:100%;
    max-width:900px;
    margin:0 auto 30px auto;
    background:#111;
    border-radius:12px;
    overflow:hidden;
}

.video-player-box iframe{
    width:100%;
    height:500px;
    border:0;
    display:block;
}

.video-player-info{
    padding:15px;
    background:#181818;
}

@media(max-width:768px){

    .video-player-box iframe{
        height:260px;
    }
}
#videoEmbedContainer{
    position:relative;
}

#youtubeBlockedBox{
    width:100%;
    min-height:420px;
    background:#000;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
}

.youtube-blocked-content h3{
    margin-bottom:20px;
    color:#fff;
}
#videoEmbedContainer{
    position:relative;
}

#youtubeBlockedBox{
    width:100%;
    min-height:420px;
    background:#000;
    border-radius:12px;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:25px;
}

.youtube-blocked-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:18px;
}

.youtube-blocked-content h3{
    color:#fff;
    margin:0;
}
.highlight-card{
    text-decoration:none;
    color:inherit;
    display:block;
}

.watch-highlight-link{
    margin-top:10px;
    color:#009b4d;
    font-weight:bold;
}
.news-item{
    color:#ffffff;
    text-decoration:none;
    display:block;
}

.news-item:hover,
.news-item:focus,
.news-item:active{
    color:#ffffff;
    text-decoration:none;
}