
/* =========================
RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html, body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
}

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;
    flex-wrap:wrap;
    align-items:center;
    gap:12px;
    width:100%;
    box-sizing:border-box;
}

.search-box input{
    flex:1 1 220px;
    min-width:0;
    max-width:100%;
    height:55px;
    background:#181818;
    border:1px solid #2a2a2a;
    border-radius:12px;
    padding:0 18px;
    color:#fff;
    font-size:16px;
    outline:none;
    box-sizing:border-box;
}

.search-box select,
.search-box .league-select1{
    flex:1 1 140px;
    min-width:0;
    max-width:100%;
    box-sizing:border-box;
}

.search-box input:focus{
    border-color:#00d26a;
}

.search-box button{
    min-width:120px;
    height:55px;
    border:none;
    background:#00d26a;
    color:#fff;
    border-radius:12px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    box-sizing:border-box;
    max-width:100%;
}

/* =========================
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:24px;
    }

    .top-description p{
        font-size:14px;
    }

    .section-title{
        font-size:20px;
    }

    .search-title{
        font-size:18px;
    }

    /* SEARCH MOBILE */
    .search-box{
        display:flex;
        flex-direction:row;
        flex-wrap:wrap;
        align-items:stretch;
        gap:10px;
        width:100%;
        max-width:100%;
        margin:0 auto;
        box-sizing:border-box;
    }

    .search-box input{
        flex:1 1 180px;
        min-width:0;
        max-width:100%;
        height:48px;
        padding:0 14px;
        font-size:15px;
        box-sizing:border-box;
    }

    .search-box select,
    .search-box .league-select1{
        flex:1 1 100%;
        min-width:0;
        max-width:100%;
        height:44px;
        font-size:14px;
        box-sizing:border-box;
    }

    .search-box button{
        flex:1 1 100%;
        width:100%;
        min-width:0;
        height:46px;
        font-size:15px;
        box-sizing:border-box;
    }

    .live-grid,
    .highlight-grid,
    .leagues-grid{
        grid-template-columns:1fr;
    }

    .logo{
        font-size:22px;
    }

    .league-btn{
        padding:12px;
    }
}
/* =========================
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:#161d27 url('../img/trophy-badge.svg') no-repeat center center;
    background-size:38px 38px;
    border:1px solid rgba(255,255,255,0.12);
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:transparent;
    font-size:0;
    box-shadow:0 2px 8px rgba(0,0,0,0.25);
    flex-shrink:0;
}

.league-btn .team-badge-placeholder {
    width:46px;
    height:46px;
    background-size:28px 28px;
    border-radius:10px;
    background-color:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
}

.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);
    }
}

.live-future{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#1f2937;
    color:#10b981;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
    margin-bottom:10px;
    border:1px solid rgba(16, 185, 129, 0.25);
}

.live-ended{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#1e2430;
    color:#9ca3af;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
    margin-bottom:10px;
    border:1px solid rgba(156, 163, 175, 0.2);
}

.live-status{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#1f2937;
    color:#9ca3af;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:700;
    margin-bottom:10px;
}

.live-status.is-live{
    background:#ff0000;
    color:#fff;
    animation:pulseLive 1.5s infinite;
}

.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;
}

/* =========================
   PLACAR & BADGES MODERNOS (COMPETITIVO)
   ========================= */

.match-score {
    display: inline-block;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 10px;
    margin: 8px 0 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.match-score.is-live {
    border-color: rgba(239, 68, 68, 0.6);
    background: linear-gradient(135deg, #3f0d0d 0%, #1a0505 100%);
    color: #ff4d4f;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
}

.live-alert-banner {
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.22) 0%, rgba(220, 38, 38, 0.06) 100%);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-left: 4px solid #ef4444;
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.live-alert-banner a {
    color: #ff7875;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.live-alert-banner a:hover {
    text-decoration: underline;
}

/* Botão Unificado de Ação na Página do Jogo */
.watch-action-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    width: auto !important;
}

.watch-action-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.6);
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
}

.watch-action-main:active {
    transform: translateY(0);
}

.stream-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.stream-badge.badge-video {
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.35);
}

.stream-badge.badge-radio {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

/* Abas Modernas no Modal de Transmissão */
.stream-tabs {
    display: flex;
    gap: 8px;
    background: #1f2937;
    padding: 6px;
    border-radius: 14px;
    margin-bottom: 20px;
}

.stream-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    color: #9ca3af;
    border: none;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.stream-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.stream-tab-btn.active {
    background: #374151;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* =========================
LANGUAGE SWITCHER
========================= */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: #1e1e1e;
    border: 1px solid #333333;
    border-radius: 999px;
    padding: 3px 5px;
    gap: 4px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #a0aec0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    transition: all 0.2s ease;
}

.lang-btn .lang-flag {
    font-size: 14px;
}

.lang-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.lang-btn.active {
    background: #00d26a;
    color: #0d0d0d;
    font-weight: 800;
    box-shadow: 0 2px 6px rgba(0, 210, 106, 0.35);
}

.mobile-lang-box {
    padding: 12px 15px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #1f1f1f;
}

/* =========================
SEO EDITORIAL & FAQ SECTION
========================= */

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.seo-editorial-section {
    margin-top: 40px;
    margin-bottom: 30px;
}

.seo-editorial-card {
    background: #141414;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 26px 24px;
    color: #d1d5db;
}

.seo-editorial-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    border-bottom: 2px solid #00d26a;
    padding-bottom: 8px;
    display: inline-block;
}

.seo-editorial-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #9ca3af;
    margin-bottom: 14px;
}

.seo-editorial-content p:last-child {
    margin-bottom: 0;
}

.seo-faq-wrapper {
    margin-top: 26px;
    border-top: 1px solid #222;
    padding-top: 20px;
}

.seo-faq-heading {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.seo-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-faq-item {
    background: #1a1a1a;
    border: 1px solid #282828;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.seo-faq-item[open] {
    border-color: #00d26a;
}

.seo-faq-question {
    padding: 13px 16px;
    font-size: 14.5px;
    font-weight: 600;
    color: #f3f4f6;
    cursor: pointer;
    user-select: none;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seo-faq-question::-webkit-details-marker {
    display: none;
}

.seo-faq-question::after {
    content: "＋";
    font-size: 16px;
    color: #00d26a;
    transition: transform 0.2s ease;
}

.seo-faq-item[open] .seo-faq-question::after {
    content: "−";
    color: #00d26a;
}

.seo-faq-answer {
    padding: 0 16px 14px 16px;
    font-size: 13.5px;
    line-height: 1.65;
    color: #9ca3af;
}