*{
    margin:0;
    padding:0;
    box-sizing:border-box;

    -webkit-tap-highlight-color:transparent;
    -webkit-touch-callout:none;
}

html,
body{
    width:100%;
    height:100%;
    overflow:hidden;
    -webkit-text-size-adjust:100%;
}

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#000000;
    color:#222;

    user-select:none;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
}

img,
button,
a,
div{
    -webkit-tap-highlight-color:transparent;
    outline:none;
}

/* ==========================
   CONTAINER
========================== */

.container{

    position:fixed;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    padding:20px;
    padding-bottom:80px;

}

/* ==========================
   TITLE
========================== */

.title{

    width:100%;
    max-width:760px;

    text-align:center;

    font-size:clamp(24px,3vw,42px);

    font-weight:700;
    color:#ffffff;
    line-height:1.3;

    margin-bottom:22px;

}

/* ========================== VIDEO CARD ========================== */
.video-card{
    position:relative;
    width:min(92vw,560px);
    aspect-ratio:1/1;
    overflow:hidden;
    border-radius:18px;
    background:#000;
    cursor:pointer;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}


/* ========================== VIDEO ========================== */
.video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


/* ========================== SOUND ON ========================== */
.sound-on{
    position:absolute;
    top:14px;
    right:14px;

    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:18px;

    background:rgba(0,0,0,.65);

    border:1px solid rgba(255,255,255,.20);

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    box-shadow:
        0 5px 15px rgba(0,0,0,.45),
        inset 0 1px 1px rgba(255,255,255,.12);

    z-index:6;

    cursor:pointer;
}


/* ========================== SOUND OFF ========================== */
.sound-off{
    position:absolute;
    top:14px;
    right:14px;

    width:42px;
    height:42px;

    border-radius:50%;

    display:none;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:18px;

    background:rgba(0,0,0,.65);

    border:1px solid rgba(255,255,255,.20);

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    box-shadow:
        0 5px 15px rgba(0,0,0,.45),
        inset 0 1px 1px rgba(255,255,255,.12);

    z-index:6;

    cursor:pointer;
}

/* ========================== SOUND POPUP ========================== */
.sound-popup{
    position:absolute;

    top:65px;
    right:14px;

    padding:8px 14px;

    border-radius:10px;

    color:#fff;

    font-size:13px;
    font-weight:700;

    background:rgba(0,0,0,.85);

    border:1px solid rgba(255,255,255,.18);

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);

    box-shadow:
        0 5px 20px rgba(0,0,0,.45);

    opacity:0;

    transform:translateY(-8px);

    pointer-events:none;

    z-index:20;

    transition:.25s ease;
}


/* ========================== POPUP AKTIF ========================== */
.sound-popup.show{

    opacity:1;

    transform:translateY(0);

}

/* ========================== PLAY BUTTON BESAR ========================== */
.play-button{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:84px;
    height:84px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:8;
    background:rgba(255,255,255,.18);
    border:1px solid rgba(255,255,255,.28);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:
        0 10px 35px rgba(0,0,0,.30),
        inset 0 1px 1px rgba(255,255,255,.35);
    animation:pulse 1.8s ease-in-out infinite;
}

/* ========================== SEGITIGA PLAY ========================== */
.play-button::before{
    content:"";
    width:0;
    height:0;
    margin-left:7px;
    border-top:16px solid transparent;
    border-bottom:16px solid transparent;
    border-left:26px solid #2d8cff;

    /* OUTLINE HIJAU + GLOW */
    filter:
    drop-shadow(-1px 0 #00ff66)
    drop-shadow(1px 0 #00ff66)
    drop-shadow(0 -1px #00ff66)
    drop-shadow(0 1px #00ff66)
    drop-shadow(0 0 2px #2d8cff);
}

/* ========================== INFO VIDEO ========================== */
.video-info{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:15px;
    background:linear-gradient(transparent,rgba(0,0,0,.88));
    z-index:7;
}

/* ========================== GARIS VIDEO ========================== */
.video-progress{
    position:relative;
    width:100%;
    height:4px;
    overflow:hidden;
    border-radius:50px;
    background:rgba(255,255,255,.18);
}

/* GARIS BIRU DIATUR OLEH JS */
.video-progress-fill{
    position:absolute;
    left:0;
    top:0;
    width:0%;
    height:100%;
    border-radius:50px;

    background:linear-gradient(
        90deg,
        #2d8cff,
        #67b8ff
    );

    box-shadow:
        0 0 5px #2d8cff,
        0 0 10px rgba(45,140,255,.45);

    /* TANPA SMOOTH AGAR EFEK TET TET */
    transition:none;
}

/* ========================== WAKTU ========================== */
.video-time{
    margin-top:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;

    color:#fff;
    font-size:14px;
    font-weight:600;
}

/* ========================== CONTROL ========================== */
.center-controls{
    display:flex;
    align-items:center;
    gap:34px;
}

.control-icon{
    color:#fff;
    font-size:22px;
    user-select:none;
}

/* ========================== PLAY GLASS ========================== */
.mini-play{
    width:36px;
    height:36px;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.28);

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,.35),
        0 8px 18px rgba(0,0,0,.30);
}

/* ========================== SEGITIGA PLAY ========================== */
.mini-play-icon{
    width:0;
    height:0;
    margin-left:3px;

    border-top:7px solid transparent;
    border-bottom:7px solid transparent;
    border-left:12px solid #2d8cff;

    filter:
        drop-shadow(-1px 0 #00ff66)
        drop-shadow(1px 0 #00ff66)
        drop-shadow(0 -1px #00ff66)
        drop-shadow(0 1px #00ff66)
        drop-shadow(0 0 2px #2d8cff);
}


/* ========================== PULSE PLAY BESAR ========================== */
@keyframes pulse{

    0%{
        transform:translate(-50%,-50%) scale(1);

        box-shadow:
            0 10px 35px rgba(0,0,0,.30),
            0 0 0 rgba(45,140,255,0);
    }


    50%{
        transform:translate(-50%,-50%) scale(1.08);

        box-shadow:
            0 16px 45px rgba(0,0,0,.40),
            0 0 30px rgba(45,140,255,.18);
    }


    100%{
        transform:translate(-50%,-50%) scale(1);

        box-shadow:
            0 10px 35px rgba(0,0,0,.30),
            0 0 0 rgba(45,140,255,0);
    }

}

 /* ==========================
    NOTE TITLE
 ========================== */

.note strong{
    display:block;
    margin-bottom:6px;
    font-size:17px;
    font-weight:800;
}

.note strong span{
    background:linear-gradient(
        180deg,
        #ffe58a 0%,
        #ffc84a 35%,
        #ff9800 70%,
        #ff6a00 100%
    );

    -webkit-background-clip:text;
    background-clip:text;

    -webkit-text-fill-color:transparent;

    text-shadow:
        0 0 2px rgba(80,255,120,.35);
}

.note{
    width:100%;
    max-width:560px;

    margin-top:18px;

    padding:16px 18px;

    border-radius:14px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    color:#fff;

    text-align:center;

    font-size:15px;

    font-weight:800;

    line-height:1.7;
}

.note a{
    color:#2196ff;
    text-decoration:none;
    font-weight:800;
    cursor:pointer;
}

.note a:hover{
    color:#64b5ff;
    text-decoration:underline;
}


/* ==========================
   FOOTER
========================== */

.footer{

    position:fixed;

    left:0;
    right:0;
    bottom:0;

    width:100%;

    background:#111;

    color:#fff;

    text-align:center;

    padding:18px 15px;

    font-size:14px;

    z-index:999;

}

/* ============================================
   🔵 RESPONSIVE FIXED (HP - TABLET)
   VIDEO RASIO 3:4
   NOTE LEBIH BESAR
=============================================== */


/* HP KECIL 4" - 4.7" */
@media (max-width:360px){

.container{
    padding:15px;
    padding-bottom:95px;
}

.title{
    font-size:22px;
    margin-bottom:16px;
}

.video-card{
    width:92vw;
    aspect-ratio:3/4;
}

.play-button{
    width:68px;
    height:68px;
}

.play-button::before{
    border-top-width:13px;
    border-bottom-width:13px;
    border-left-width:21px;
}

.sound-on,
.sound-off{
    width:38px;
    height:38px;
    top:10px;
    right:10px;
    font-size:16px;
}

.video-info{
    padding:12px;
}

.video-progress{
    height:3px;
}

.video-time{
    margin-top:8px;
    font-size:12px;
}

.center-controls{
    gap:22px;
}

.control-icon{
    font-size:18px;
}

.mini-play{
    width:32px;
    height:32px;
}

.note{
    width:92vw;
    margin-top:8px;
    padding:12px 14px;
    font-size:14px;
    line-height:1.5;
}

.note strong{
    font-size:16px;
    margin-bottom:4px;
}

.footer{
    padding:15px 10px;
    font-size:12px;
}

}


/* HP NORMAL 5" - 5.5" */
@media (min-width:361px) and (max-width:420px){

.container{
    padding:18px;
    padding-bottom:95px;
}

.title{
    font-size:24px;
    margin-bottom:18px;
}

.video-card{
    width:92vw;
    aspect-ratio:3/4;
}

.play-button{
    width:76px;
    height:76px;
}

.sound-on,
.sound-off{
    width:40px;
    height:40px;
}

.video-info{
    padding:14px;
}

.video-progress{
    height:4px;
}

.video-time{
    margin-top:10px;
    font-size:13px;
}

.center-controls{
    gap:26px;
}

.control-icon{
    font-size:20px;
}

.mini-play{
    width:34px;
    height:34px;
}

.note{
    width:92vw;
    margin-top:8px;
    padding:13px 15px;
    font-size:15px;
    line-height:1.5;
}

.note strong{
    font-size:17px;
}

.footer{
    padding:15px;
    font-size:12px;
}

}


/* HP BESAR 6" - 6.5" */
@media (min-width:421px) and (max-width:460px){

.container{
    padding:18px;
    padding-bottom:95px;
}

.title{
    font-size:26px;
    margin-bottom:20px;
}

.video-card{
    width:90vw;
    max-width:430px;
    aspect-ratio:3/4;
}

.play-button{
    width:80px;
    height:80px;
}

.sound-on,
.sound-off{
    width:42px;
    height:42px;
}

.video-info{
    padding:15px;
}

.video-time{
    font-size:14px;
}

.center-controls{
    gap:30px;
}

.note{
    width:90vw;
    max-width:430px;
    margin-top:10px;
    padding:14px 16px;
    font-size:15px;
    line-height:1.55;
}

.note strong{
    font-size:18px;
}

.footer{
    padding:16px;
    font-size:13px;
}

}


/* HP EXTRA BESAR 6.6" - 7" */
@media (min-width:461px) and (max-width:480px){

.container{
    padding:20px;
    padding-bottom:98px;
}

.title{
    font-size:28px;
    margin-bottom:22px;
}

.video-card{
    width:88vw;
    max-width:450px;
    aspect-ratio:3/4;
}

.play-button{
    width:82px;
    height:82px;
}

.sound-on,
.sound-off{
    width:42px;
    height:42px;
}

.video-info{
    padding:16px;
}

.video-time{
    font-size:14px;
}

.center-controls{
    gap:32px;
}

.note{
    width:88vw;
    max-width:450px;
    margin-top:10px;
    padding:14px 18px;
    font-size:16px;
    line-height:1.55;
}

.note strong{
    font-size:18px;
}

.footer{
    padding:16px;
    font-size:13px;
}

}


/* TABLET */
@media (min-width:481px) and (max-width:820px){

.container{
    padding:20px;
    padding-bottom:105px;
}

.title{
    font-size:30px;
    margin-bottom:22px;
}

.video-card{
    width:88vw;
    max-width:560px;
    aspect-ratio:3/4;
}

.play-button{
    width:84px;
    height:84px;
}

.sound-on,
.sound-off{
    width:42px;
    height:42px;
}

.video-info{
    padding:16px;
}

.video-progress{
    height:4px;
}

.video-time{
    margin-top:12px;
    font-size:14px;
}

.center-controls{
    gap:34px;
}

.control-icon{
    font-size:22px;
}

.mini-play{
    width:36px;
    height:36px;
}

.note{
    width:88vw;
    max-width:560px;
    margin-top:10px;
    padding:16px 18px;
    font-size:16px;
    line-height:1.55;
}

.note strong{
    font-size:18px;
}

.footer{
    padding:18px 15px;
    font-size:14px;
}

}


/* ============================================
   🔵 RESPONSIVE DESKTOP FIXED (LAPTOP - PC)
   TITLE & NOTE KECIL - VIDEO TINGGI BESAR
=============================================== */


/* LAPTOP KECIL 11" - 13" */
@media (min-width:821px) and (max-width:1200px){

.container{
    padding:15px;
    padding-bottom:65px;
}

.title{
    font-size:18px;
    margin-bottom:12px;
}

.video-card{
    width:520px;
    height:720px;
    aspect-ratio:auto;
}

.play-button{
    width:78px;
    height:78px;
}

.sound-on,
.sound-off{
    width:40px;
    height:40px;
    top:12px;
    right:12px;
}

.video-info{
    padding:12px;
}

.video-time{
    margin-top:8px;
    font-size:13px;
}

.center-controls{
    gap:28px;
}

.control-icon{
    font-size:20px;
}

.mini-play{
    width:34px;
    height:34px;
}

.note{
    width:520px;
    margin-top:6px;
    padding:8px 12px;
    font-size:13px;
    line-height:1.35;
}

.note strong{
    font-size:15px;
    margin-bottom:2px;
}

.footer{
    padding:14px;
    font-size:12px;
}

}


/* LAPTOP NORMAL 14" - 15.6" */
@media (min-width:1201px) and (max-width:1600px){

.container{
    padding:18px;
    padding-bottom:65px;
}

.title{
    font-size:19px;
    margin-bottom:12px;
}

.video-card{
    width:560px;
    height:790px;
    aspect-ratio:auto;
}

.play-button{
    width:82px;
    height:82px;
}

.sound-on,
.sound-off{
    width:42px;
    height:42px;
}

.video-info{
    padding:14px;
}

.video-time{
    font-size:13px;
    margin-top:10px;
}

.center-controls{
    gap:30px;
}

.control-icon{
    font-size:21px;
}

.mini-play{
    width:35px;
    height:35px;
}

.note{
    width:560px;
    margin-top:6px;
    padding:8px 12px;
    font-size:14px;
    line-height:1.35;
}

.note strong{
    font-size:16px;
    margin-bottom:2px;
}

.footer{
    padding:15px;
    font-size:13px;
}

}


/* DESKTOP BESAR 1601px - 2200px */
@media (min-width:1601px) and (max-width:2200px){

.container{
    padding:20px;
    padding-bottom:70px;
}

.title{
    font-size:20px;
    margin-bottom:14px;
}

.video-card{
    width:620px;
    height:900px;
    aspect-ratio:auto;
}

.play-button{
    width:86px;
    height:86px;
}

.sound-on,
.sound-off{
    width:44px;
    height:44px;
}

.video-info{
    padding:15px;
}

.video-time{
    font-size:14px;
}

.center-controls{
    gap:34px;
}

.control-icon{
    font-size:22px;
}

.mini-play{
    width:36px;
    height:36px;
}

.note{
    width:620px;
    margin-top:6px;
    padding:8px 14px;
    font-size:14px;
    line-height:1.35;
}

.note strong{
    font-size:16px;
    margin-bottom:2px;
}

.footer{
    padding:16px;
    font-size:13px;
}

}


/* KOMPUTER SUPER BESAR 2201px+ */
@media (min-width:2201px){

.container{
    padding:25px;
    padding-bottom:75px;
}

.title{
    font-size:22px;
    margin-bottom:16px;
}

.video-card{
    width:700px;
    height:1050px;
    aspect-ratio:auto;
}

.play-button{
    width:90px;
    height:90px;
}

.sound-on,
.sound-off{
    width:46px;
    height:46px;
}

.video-info{
    padding:18px;
}

.video-time{
    font-size:15px;
}

.center-controls{
    gap:38px;
}

.control-icon{
    font-size:24px;
}

.mini-play{
    width:38px;
    height:38px;
}

.note{
    width:700px;
    margin-top:8px;
    padding:10px 16px;
    font-size:15px;
    line-height:1.4;
}

.note strong{
    font-size:17px;
    margin-bottom:3px;
}

.footer{
    padding:18px;
    font-size:14px;
}

}