* { 
    box-sizing: border-box;
}
.header {
    padding: 24px 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ceb8b8;
    text-shadow: 0 2px 10px rgba(255,255,255,0.2);
}

.header {
    position: relative;
    padding: 24px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #25d366, #5f7dcf, #7e0974);
    border-radius: 10px;
}
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 500;
    background: linear-gradient(145deg, #0f1115, #1a1d24);
    color: #f1f1f1;
}
/* ================= CONTAINER ================= */
.container {
    max-width: 420px;
    margin: 30px auto;
    padding: 20px;
    background: #1c1f27;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* ================= VIDEO ================= */
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5; /* sedikit memanjang */
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ================= TOMBOL ATAS ================= */
.icon-btn {
    position: absolute;
    top: 14px;
    display: flex;
    align-items: center;     /* center vertikal */
    justify-content: center;
    gap: 8px;

    padding: 8px 14px;
    height: auto;            /* jangan pakai height fix */
    border-radius: 12px;
    border: none;

    font-size: 13px;
    font-weight: 600;
    line-height: 1;          /* penting agar teks tidak turun */
    cursor: pointer;

    z-index: 10;
    transition: 0.2s ease;
}

/* Icon */
.icon-btn img {
    width: 18px;
    height: 18px;
    display: block;          /* hilangkan efek baseline */
    object-fit: contain;
}

.icon-btn:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* WA */
.icon-btn.wa {
    left: 14px;
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

/* FB */
.icon-btn.fb {
    right: 14px;
    background: rgba(92, 31, 249, 0.15);
    color: #5f7dcf;
}

.icon-btn img {
    width: 16px;
    height: 16px;
}

/* ================= PLAY BUTTON ================= */
#startBtn {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    border: none;
    background: rgba(255,255,255,0.95);
    cursor: pointer;
    font-size: 26px;
    font-weight: bold;
    color: #000;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;
    transition: 0.25s ease;
}

#startBtn:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

/* ================= VIDEO OVERLAY ================= */
#videoOverlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    border: none;
    cursor: pointer;
    display: none;
}

#videoOverlay .overlay-text {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    pointer-events: none;
}

#videoOverlay.show {
    display: block;
}

/* ================= SHARE BUTTON ================= */
.share-btn {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border: none;
    background: linear-gradient(135deg, #2a2f3a, #3a3f4b);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.25s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}