*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#0f1117;
    color:#fff;
    font-family:Arial,Helvetica,sans-serif;
    line-height:1.6;
    padding:20px;
}

.container{
    width:100%;
    max-width:900px;
    margin:0 auto;
}

.card{
    background:#171b23;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.35);
    padding:25px;
}

h1{
    font-size:32px;
    margin-bottom:20px;
    line-height:1.4;
}

h2{
    font-size:22px;
    margin:25px 0 15px;
}

h3{
    font-size:18px;
    margin-bottom:15px;
}

hr{
    border:none;
    border-top:1px solid #2d3440;
    margin:25px 0;
}

.player-box{
    width:100%;
    background:#000;
    border-radius:12px;
    overflow:hidden;
}

.player-box iframe{
    width:100%;
    height:520px;
    border:0;
    display:block;
}

input[type=text]{
    width:100%;
    background:#11161f;
    border:1px solid #2f3745;
    color:#fff;
    border-radius:10px;
    padding:14px;
    font-size:15px;
    margin-bottom:15px;
}

a{
    color:#fff;
    text-decoration:none;
}

.btn{
    display:inline-block;
    background:#17b34a;
    padding:12px 28px;
    border-radius:8px;
    font-weight:bold;
    transition:.25s;
}

.btn:hover{
    background:#14943d;
}

ol{
    padding-left:22px;
}

ol li{
    margin:10px 0;
}

.download-box{
    background:#11161f;
    border:1px solid #2b313d;
    border-radius:12px;
    padding:20px;
    margin-top:20px;
}

/* ==========================
   Tablet
========================== */

@media(max-width:991px){

    body{
        padding:15px;
    }

    .card{
        padding:20px;
    }

    h1{
        font-size:26px;
    }

    .player-box iframe{
        height:420px;
    }

}

/* ==========================
   Mobile
========================== */

@media(max-width:768px){

    body{
        padding:10px;
    }

    .card{
        border-radius:12px;
        padding:15px;
    }

    h1{
        font-size:22px;
        line-height:1.4;
    }

    h2{
        font-size:18px;
    }

    h3{
        font-size:16px;
    }

    .player-box iframe{
        height:230px;
    }

    input[type=text]{
        font-size:13px;
        padding:12px;
    }

    .btn{
        width:100%;
        text-align:center;
        padding:14px;
    }

    ol{
        padding-left:18px;
    }

}

/* ==========================
   HP kecil
========================== */

@media(max-width:480px){

    .player-box iframe{
        height:200px;
    }

    h1{
        font-size:20px;
    }
}
    
/*==================================
HEADER
==================================*/

.site-header{

    position:sticky;
    top:0;
    z-index:999;

    background:rgba(22,27,34,.92);

    backdrop-filter:blur(12px);

    border-bottom:1px solid #30363d;

}

.header-wrap{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:72px;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

}

.logo-icon{

    font-size:30px;

}

.logo-text{

    color:#fff;

    font-size:26px;

    font-weight:700;

}

.main-nav{

    display:flex;

    gap:30px;

}

.main-nav a{

    color:#8b949e;

    text-decoration:none;

    transition:.25s;

    font-weight:600;

}

.main-nav a:hover{

    color:#fff;

}


/*==============================
HEADER MOBILE
==============================*/

@media(max-width:768px){

.main-nav{

    display:none;

}

.logo-text{

    font-size:22px;

}

}

/*==============================
BREADCRUMB
==============================*/

.breadcrumb{

    max-width:900px;

    margin:0 auto 25px;

    font-size:14px;

    color:#9aa5b1;

}

.breadcrumb a{

    color:#9aa5b1;

    text-decoration:none;

}

.breadcrumb a:hover{

    color:#ffffff;

}

.breadcrumb span{

    margin:0 8px;

}

.current{

    color:#ffffff;

    font-weight:600;

}
}


/*==============================
HERO
==============================*/

.hero-card{
    display:flex;
    gap:20px;
    align-items:center;
    margin-bottom:25px;
}

.hero-poster{
    width:170px;
    flex-shrink:0;
}

.hero-poster img{
    width:100%;
    display:block;
    border-radius:12px;
}

.hero-info{
    flex:1;
}

.hero-info h1{
    margin:0 0 15px;
    font-size:30px;
    line-height:1.4;
}

.hero-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.hero-meta span{
    background:#222936;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
}

.status{
    background:#0b8f45 !important;
}



@media(max-width:768px){

.hero-card{
    flex-direction:column;
    text-align:center;
}

.hero-poster{
    width:180px;
}

.hero-info h1{
    font-size:22px;
}

.hero-meta{
    justify-content:center;
}

}


/*==============================
DOWNLOAD HEADER
==============================*/

.download-header{
    margin-bottom:20px;
}

.download-header h1{
    margin:0 0 15px;
    font-size:30px;
    line-height:1.4;
}

.download-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.download-meta span{
    background:#222936;
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
}

.status-badge{
    background:#0b8f45 !important;
    color:#fff;
}

@media(max-width:768px){

.download-header h1{
    font-size:22px;
}

.download-meta{
    justify-content:center;
}

}