:root{
    --bg:#ffffff;
    --bg-soft:#f8fafc;
    --card:#ffffff;
    --border:#e5e7eb;

    --primary:#dc2626;
    --primary-dark:#7f1d1d;

    --text:#111827;
    --text-soft:#6b7280;
}

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:var(--text);

    opacity:0;
    transition:opacity .6s ease;
}

body.loaded{
    opacity:1;
}

/* ===== HEADER ===== */
.header{
    position:relative;
    z-index:10;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:16px 40px;
    box-shadow:0 4px 20px rgba(220,38,38,0.3);
    background:linear-gradient(
            90deg,
            #140000 0%,
            #7f1d1d 40%,
            #dc2626 75%,
            #ff2a2a 100%
        );
    
}

.header-logo img{
    height:42px;
}

.header-actions{
    display:flex;
    gap:5px;
}

.circle-btn{
    width:38px;
    height:38px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,0.15);
    color:#fff;
    text-decoration:none;

    transition:.25s;
}

.circle-btn:hover{
    background:rgba(255,255,255,0.35);
    transform:scale(1.05);
}

/* ===== HERO ===== */
.hero-home{
    position:relative;
    width:100vw;

    height:65vh;           /* ⬅️ lebih tinggi dari sebelumnya */
    min-height:520px;      /* ⬅️ fallback biar ga terlalu kecil */

    margin-left:calc(-50vw + 50%);
    overflow:hidden;
}

/* slide */
.hero-slide{
    position:absolute;
    inset:0;

    background-size:cover;
    background-position:center;

    opacity:0;
    transform:scale(1.05);

    transition:opacity .8s ease;
}

.hero-slide.active{
    opacity:1;
    animation:heroZoom 8s ease forwards;
}

@keyframes heroZoom{
    from{ transform:scale(1.05); }
    to{ transform:scale(1.15); }
}

/* overlay */
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,rgba(0,0,0,.65),rgba(0,0,0,.2));
}

/* content */
.hero-content{
    position:absolute;
    inset:0; /* full cover hero */

    display:flex;
    flex-direction:column;
    justify-content:center;  /* ⬅️ vertical center */
    align-items:flex-start;  /* ⬅️ kiri (desktop) */

    max-width:1100px;
    margin:auto;
    padding:0 clamp(20px,5vw,40px);

    color:#fff;
    text-shadow:0 4px 16px rgba(0,0,0,0.6);
}

.hero-content h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:14px;

    background:linear-gradient(90deg,#facc15,#fde68a,#fbbf24);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.hero-content h1::after{
    content:'';
    display:block;

    width:120px;
    height:3px;

    margin-top:10px;

    background:linear-gradient(
        to right,
        transparent,
        #dc2626,
        transparent
    );
}
.hero-content p{
    max-width:520px;
    margin-bottom:20px;
}

/* ===== GLASS BUTTON ===== */
.btn-glass{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:12px 18px;
    border-radius:999px;

    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);

    color:#fff;
    text-decoration:none;
    font-weight:600;

    border:1px solid rgba(255,255,255,0.2);

    transition:.25s;
}

.btn-glass:hover{
    background:rgba(255,255,255,0.3);
    transform:translateY(-2px);
}

/* ===== ARROW ===== */
.hero-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:44px;
    height:44px;

    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);

    color:#fff;
    cursor:pointer;
    z-index:3;

    transition:.25s;
}

.hero-arrow:hover{
    transform:translateY(-50%) scale(1.1);
    background:rgba(255,255,255,0.3);
}

.hero-arrow.left{ left:20px; }
.hero-arrow.right{ right:20px; }

/* ===== DOT ===== */
.hero-dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
}

.hero-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.5);
    cursor:pointer;
    transition:.3s;
}

.hero-dot.active{
    background:#fff;
    transform:scale(1.3);
}

.container{
    max-width:1280px;
    margin:auto;
    padding:30px clamp(16px, 4vw, 32px);
}

/* ===== SECTION ===== */
.section{
    margin-top:10px;
}

.section:nth-child(even){
    background:#ffffff;
    padding:30px 20px;
    border-radius:20px;
}

.section-title{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    gap:10px;
}

.section-title i{
    color:var(--primary);
}

/* ===== GRID ===== */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:20px;
}

/* ===== CARD ===== */
.card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    overflow:hidden;

    transition:.25s;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 28px rgba(0,0,0,0.12);
}

.card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.card-content{
    padding:16px;
}

/* ===== GALLERY ===== */
.gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
}

.gallery img{
    width:100%;
    height:150px;
    object-fit:cover;
    border-radius:10px;
}

/* ===== REVEAL ===== */
.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:.7s ease;
}

.reveal.show{
    opacity:1;
    transform:translateY(0);
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    .header{
        padding:14px 16px;
    }

    .hero-home{
        height:480px;
    }

    .hero-content{
        padding:120px 22px 60px;
    }

    .hero-content h1{
        font-size:26px;
    }

    .gallery{
        grid-template-columns:repeat(2,1fr);
    }

}
/* ===== ADMIN BADGE ===== */
.admin-badge{
    display:flex;
    align-items:center;
    gap:6px;

    padding:6px 12px;
    border-radius:999px;

    background:rgba(255,255,255,0.2);
    backdrop-filter:blur(6px);

    color:#fff;
    font-size:12px;
    font-weight:600;

    border:1px solid rgba(255,255,255,0.25);

    text-decoration:none;
    transition:.25s;
}

/* hover biar terasa clickable */
.admin-badge:hover{
    background:rgba(255,255,255,0.35);
    transform:translateY(-1px);
}

/* coming soon variant */
.admin-badge.warning{
    background:rgba(255, 200, 0, 0.2);
    border:1px solid rgba(255, 200, 0, 0.4);
}

/* optional: warning tidak clickable */
.admin-badge.warning{
    cursor:default;
}
/* ===== SUB NAV GLASS ===== */
.subnav{
    position:absolute; /* ⬅️ ini kunci */
    top:72px; /* tinggi header */
    left:0;
    width:100%;
    z-index:10;

    display:flex;
    justify-content:center;
    gap:30px;
    /* glass */
    background:rgba(255,255,255,0.25); /* ⬅️ jangan terlalu putih */
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,0.2);
}

/* MENU */
.subnav a{
    position:relative;
    text-decoration:none;

    color:#fff;              /* ⬅️ putih */
    font-weight:600;         /* ⬅️ lebih tebal */
    font-size:14px;
    letter-spacing:0.3px;

    padding:4px 6px;

    transition:.2s;
}

/* underline */
.subnav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;

    width:0;
    height:2px;
    background:#fff; /* ⬅️ putih */

    transition:.25s;
}

.subnav a:hover::after,
.subnav a.active::after{
    width:100%;
}

/* ACTIVE */
.subnav a.active{
    font-weight:700;
}
/* ===== LOGIN BUTTON GLASS ===== */
.nav-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;

    padding:8px 16px;
    border-radius:999px;

    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(8px);

    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:13px;

    border:1px solid rgba(255,255,255,0.25);

    transition:.25s;
}

/* hover */
.nav-btn:hover{
    background:rgba(255,255,255,0.3);
    transform:translateY(-1px);
}
/* icon spacing */
.subnav a{
    display:flex;
    align-items:center;
    gap:6px;
}

/* icon size */
.subnav a i{
    font-size:13px;
    opacity:0.85;
}

/* hover efek */
.subnav a:hover i{
    transform:translateY(-1px);
    opacity:1;
}

/* active */
.subnav a.active i{
    opacity:1;
}

/* ===== HAMBURGER CLEAN & CONSISTENT ===== */
.hamburger{
    width:24px;
    height:18px;

    display:none;
    flex-direction:column;
    justify-content:space-between;

    cursor:pointer;
    z-index:1100;
}

/* garis */
.hamburger span{
    display:block;
    height:2.4px;              /* ⬅️ lebih tebal biar setara icon */
    width:100%;
    background:#fff;
    border-radius:2px;

    transition:.25s ease;
    transform-origin:center;
}

/* ===== ANIMASI JADI X (SIMETRIS) ===== */
.hamburger.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
    opacity:0;
}

.hamburger.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

/* ===== SIDEBAR DARK GLASS ===== */
.sidebar{
    position:fixed;
    top:0;
    left:-280px;
    width:260px;
    height:100%;

    background:rgba(15,23,42,0.75);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    z-index:1001;

    padding:20px;

    box-shadow:0 10px 40px rgba(0,0,0,0.4);

    transition:.35s ease;
}

.sidebar.active{
    left:0;
}

/* ===== HEADER ===== */
.sidebar-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

/* BRAND */
.sidebar-brand{
    display:flex;
    align-items:center;
    gap:10px;
}

.sidebar-brand img{
    height:32px;
}

.sidebar-brand span{
    font-weight:700;
    font-size:15px;
    color:#fff;
}

/* CLOSE ICON */
.sidebar-header i{
    font-size:18px;
    cursor:pointer;
    color:#fff;
    opacity:0.7;
    transition:.2s;
}

.sidebar-header i:hover{
    opacity:1;
}

/* ===== MENU ===== */
.sidebar-menu{
    display:flex;
    flex-direction:column;
    gap:14px; /* ⬅️ lebih lega biar premium */
}

/* LINK */
.sidebar-menu a{
    display:flex;
    align-items:center;
    gap:12px;

    text-decoration:none;
    color:#e5e7eb;

    font-weight:500;
    font-size:14px;

    transition:.2s;
}

/* ICON */
.sidebar-menu a i{
    font-size:16px;
    opacity:0.8;
    transition:.2s;
}

/* HOVER (TANPA BACKGROUND) */
.sidebar-menu a:hover{
    color:#fff;
    transform:translateX(4px);
}

.sidebar-menu a:hover i{
    opacity:1;
}

/* ACTIVE (TANPA BOX) */
.sidebar-menu a.active{
    color:#fff;
    font-weight:600;
}

.sidebar-menu a.active i{
    color:#dc2626; /* ⬅️ highlight halus */
    opacity:1;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    .subnav{
        display:none;
    }

    .hamburger{
        display:flex;
    }

}
/* ===== HEADER ICON CLEAN ===== */
.header-actions a,
.header-actions .admin-badge,
.nav-btn{
    background:none !important;
    border:none !important;
    box-shadow:none !important;

    padding:6px;
    width:auto;
    height:auto;

    color:#fff;
    font-size:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.2s;
}

/* hover halus */
.header-actions a:hover{
    opacity:0.7;
    transform:scale(1.05);
}

/* hapus style lama */
.admin-badge.warning{
    background:none !important;
    border:none !important;
}
/* ================= FIX HEADER ICON CONSISTENCY ================= */

/* samakan semua icon header */
.header-actions{
    display:flex;
    align-items:center;
    gap:5px;
}

.header-actions a,
.header-actions .hamburger{
    display:flex;
    align-items:center;
    justify-content:center;

    width:32px;
    height:32px;

    font-size:18px;
    color:#fff;

    background:none !important;
    border:none !important;
    box-shadow:none !important;

    cursor:pointer;
    transition:.2s;
}

/* hover */
.header-actions a:hover,
.header-actions .hamburger:hover{
    opacity:0.7;
    transform:scale(1.1);
}

/* icon di dalam */
.header-actions i{
    pointer-events:none;
}

/* ================= FIX HAMBURGER (FONT AWESOME MODE) ================= */

.hamburger{
    display:none;
    font-size:18px;
}

/* hilangkan style span lama (biar ga konflik) */
.hamburger span{
    display:none !important;
}

/* ================= FIX ADMIN & LOGIN ================= */

.admin-badge,
.nav-btn{
    padding:0 !important;
    width:32px;
    height:32px;
}

/* hilangkan semua glass lama */
.admin-badge,
.nav-btn,
.admin-badge.warning{
    background:none !important;
    border:none !important;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

    .subnav{
        display:none;
    }

    .hamburger{
        display:flex;
    }

}
/* ===== MOBILE EDGE ARROW ===== */
@media(max-width:768px){

    .hero-arrow{
        width:36px;
        height:80px;

        top:50%;
        transform:translateY(-50%);

        border-radius:0;
        opacity:0.3;

        background:linear-gradient(
            to right,
            rgba(0,0,0,0.4),
            transparent
        );

        backdrop-filter:blur(6px);
    }

    .hero-arrow.left{
        left:0;
        border-radius:0 10px 10px 0;
    }

    .hero-arrow.right{
        right:0;
        border-radius:10px 0 0 10px;

        background:linear-gradient(
            to left,
            rgba(0,0,0,0.4),
            transparent
        );
    }

    /* icon di tengah */
    .hero-arrow i{
        font-size:14px;
    }

    /* hover / tap */
    .hero-arrow:active{
        opacity:0.8;
    }

}
.subnav {
    display: flex;
    align-items: center;
}

.subnav-login {
    margin-left: auto;
}
/* ================= NAVBAR & SUBNAV OVERRIDE ================= */

/* ===== DESKTOP ===== */
.header{
    padding:16px 40px;
}

.subnav{
    position:absolute;
    top:72px;
    left:0;
    width:100%;
    z-index:10;

    display:flex;
    align-items:center;
    justify-content:flex-start; /* ⬅️ FIX (jangan center) */

    gap:24px;

    padding:12px 40px; /* ⬅️ samakan header */

    background:rgba(255,255,255,0.25);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,0.2);
}

/* LOGIN KE KANAN */
.subnav-login{
    margin-left:auto;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    /* HEADER */
    .header{
        padding:14px 16px;
    }

    /* SUBNAV DIMATIKAN */
    .subnav{
        display:none;
    }

    /* HAMBURGER */
    .hamburger{
        display:flex;
    }

}
/* ================= FIX MEDSOS & SEARCH ================= */

/* ❌ HAPUS UNDERLINE ICON */
.header-actions a,
.header-actions a:hover,
.header-actions a:focus,
.header-actions a:active{
    text-decoration:none !important;
}

/* 🔥 RAPATKAN ICON */
.header-actions{
    gap:5px !important;
}

.header-actions a{
    width:28px;
    height:28px;
    font-size:15px;
}

/* ================= SEARCH SUBNAV CLEAN ================= */
.subnav-search{
    position:relative;
    margin-left:16px;
}

.subnav-search input{
    height:30px;
    padding:0 30px 0 12px;

    border-radius:999px;
    border:none;
    outline:none;

    font-size:12px;

    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(6px);

    width:140px;
    transition:.25s;
}

/* fokus */
.subnav-search input:focus{
    width:180px;
    background:#fff;
}

/* icon */
.subnav-search i{
    position:absolute;
    right:8px;
    top:50%;
    transform:translateY(-50%);
    font-size:11px;
    color:#777;
}

/* ================= SIDEBAR SEARCH ================= */
.sidebar-search input{
    width:100%;
    padding:10px 12px;

    border-radius:10px;
    border:none;
    outline:none;

    font-size:13px;

    background:rgba(255,255,255,0.1);
    color:#fff;
}
/* ===== SUBNAV CENTER MODE ===== */
.subnav{
    justify-content:center !important;
    padding-top:20px;
}

/* ❗ LOGIN JANGAN KE KANAN */
.subnav-login{
    margin-left:0 !important;
}

/* 🔍 SEARCH BIAR GA NARIK KE SAMPING */
.subnav-search{
    margin-left:0 !important;
}
/* ===== STICKY HEADER ===== */
.header{
    position:sticky !important;
    top:0;
    z-index:1000;
}
.header-actions a{
    width:26px;
    height:26px;
    font-size:14px;
    padding:0;
}
/* ================= CLUB UI IMPROVE ================= */

/* section */
.club-section{
    background:#fff;
}

/* ===== FIX GARIS PASTI MUNCUL ===== */
.club-title{
    position:relative;
    text-align:center;
    font-weight:700;
    font-size:16px;
    margin-bottom:20px;
}

/* text */
.club-title span{
    position:relative;
    z-index:2;
    padding:0 16px;
    background:#fff;
}

/* garis kiri kanan */
.club-title::before{
    content:'';
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    height:2px; /* ⬅️ sebelumnya 1px terlalu tipis */

    background:linear-gradient(
        to right,
        transparent,
        #dc2626,
        transparent
    );

    transform:translateY(-50%);
}

/* scroll */
.club-scroll{
    display:flex;
    gap:18px;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;

    padding-bottom:10px;

    scrollbar-width:none;
}

.club-scroll::-webkit-scrollbar{
    display:none;
}

/* item */
.club-item{
    flex:0 0 auto;
    width:90px;
    text-align:center;
    transition:.25s;
}

/* hover */
.club-item:hover{
    transform:translateY(-4px);
}

/* ===== LOGO FIX ===== */
.club-logo{
    width:70px;
    height:70px;

    border-radius:50%;
    overflow:hidden;

    margin:auto;

    background:#fff;
    border:2px solid #eee;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.25s;
}

/* logo agar tidak kepotong */
.club-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:6px;
}


/* nama */
.club-name{
    font-size:14px;
    margin-top:8px;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    .club-section{
        padding:20px 16px;
    }

    .club-item{
        width:75px;
    }

    .club-logo{
        width:60px;
        height:60px;
    }

}
/* ===== CLUB WRAPPER ===== */
.club-wrapper{
    position:relative;
}

/* ===== ARROW ===== */
.club-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:36px;
    height:36px;

    border-radius:50%;
    background:rgba(0,0,0,0.4);
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;
    z-index:5;

    transition:.2s;
}

/* posisi */
.club-arrow.left{
    left:-10px;
}

.club-arrow.right{
    right:-10px;
}

/* hover */
.club-arrow:hover{
    background:rgba(220,38,38,0.8);
}

/* mobile kecilin */
@media(max-width:768px){
    .club-arrow{
        width:30px;
        height:30px;
        font-size:12px;
    }
}
/* ===== SPACING LEBIH LEGA ===== */
.club-scroll{
    gap:22px; /* ⬅️ tadinya terlalu rapat */
    padding:10px 50px; /* ⬅️ kasih ruang kiri kanan buat arrow */
}

/* item lebih lega */
.club-item{
    width:100px; /* ⬅️ lebih besar */
}

/* ===== NAMA CLUB FIX ===== */
.club-name{
    font-size:14px;
    margin-top:8px;

    white-space:normal;     /* ⬅️ boleh turun baris */
    overflow:visible;
    text-overflow:unset;

    line-height:1.2;
}

/* ===== MOBILE FIX ===== */
@media(max-width:768px){

    .club-scroll{
        gap:16px;
        padding:10px 40px;
    }

    .club-item{
        width:85px;
    }

    .club-name{
        font-size:12px;

        display:-webkit-box;
        -webkit-line-clamp:2;   /* ⬅️ max 2 baris */
        -webkit-box-orient:vertical;

        overflow:hidden;
    }
}
/* ===== FADE KIRI KANAN ===== */
.club-wrapper{
    position:relative;
}

/* kiri */
.club-wrapper::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:60px;
    height:100%;

    background:linear-gradient(to right,#fff,transparent);
    z-index:3;
    pointer-events:none;
}

/* kanan */
.club-wrapper::after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    width:60px;
    height:100%;

    background:linear-gradient(to left,#fff,transparent);
    z-index:3;
    pointer-events:none;
}
/* ===== ARROW MINIMAL ===== */
.club-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:28px;
    height:28px;

    border-radius:50%;
    background:rgba(255,255,255,0.6);
    backdrop-filter:blur(6px);

    color:#111;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;
    z-index:5;

    transition:.2s;
    opacity:0.7;

}

/* posisi */
.club-arrow.left{ left:8px; }
.club-arrow.right{ right:8px; }

/* hover halus */
.club-arrow:hover{
    background:#dc2626;
    color:#fff;
    opacity:1;
}

/* icon kecil */
.club-arrow i{
    font-size:12px;
}
/* ================= HERO RESPONSIVE FIX ================= */

/* DEFAULT (desktop tetap) */
.hero-content{
    max-width:1100px;
    margin:auto;
}

/* ===== TABLET ===== */
@media(min-width:769px) and (max-width:1024px){
    .hero-content{
        padding:140px clamp(40px,8vw,80px) 80px;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        max-width:600px;
    }
}

/* ===== MOBILE ===== */
@media(max-width:768px){

    .hero-content{
        inset:0;
        position:absolute;

        display:flex;
        flex-direction:column;
        justify-content:center;   /* ⬅️ vertical center */
        align-items:center;       /* ⬅️ horizontal center */

        text-align:center;

        padding:0 clamp(20px,6vw,32px); /* ⬅️ hanya padding samping */
    }

    .hero-content h1{
        font-size:26px;
    }

    .hero-content p{
        max-width:100%;
    }
    /* ⬅️ GARIS BAWAH CENTER */
    .hero-content h1::after{
        margin:10px auto 0;
    }
}
html, body{
    overflow-x:hidden;
}
.club-section + .container{
    padding-top:0;
}
/* =============================
   ADMIN TOPBAR PRO
============================= */

.admin-topbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: linear-gradient(90deg,#111,#1a1a1a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 9999;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* kiri */
.admin-left{
    font-weight: 600;
    letter-spacing: .3px;
}

/* kanan */
.admin-right{
    display: flex;
    align-items: center;
    gap: 8px;
}

/* link */
.admin-topbar a{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    color: #ddd;
    text-decoration: none;
    transition: .2s;
}

/* hover */
.admin-topbar a:hover{
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* tombol utama (POST) */
.admin-topbar a:nth-child(2){
    background: #ff512f;
    color: #fff;
    font-weight: 600;
}

.admin-topbar a:nth-child(2):hover{
    background: #e63e1d;
}

/* icon */
.admin-topbar i{
    font-size: 12px;
}

/* =============================
   SHIFT HEADER (ANTI TABRAK)
============================= */

body.admin .header{
    top: 48px !important;
}

body.admin .subnav{
    margin-top: 48px;
}

body.admin .hero-home{
    margin-top: 48px;
}

/* =============================
   MOBILE
============================= */

@media(max-width:768px){

    .admin-topbar{
        padding: 0 10px;
        font-size: 12px;
    }

    .admin-topbar a span{
        display: none; /* sembunyi text, icon saja */
    }

    .admin-topbar a{
        padding: 6px;
    }
}