@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

body { margin: 0; padding: 0; font-family: 'Poppins', sans-serif; color: #f5f5f5; background-color: #050203; overflow-x: hidden; }

/* Engine UI Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #050203; }
::-webkit-scrollbar-thumb { background: #e63946; border-radius: 10px; }

#magic-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: #000; z-index: 9999; display: flex; justify-content: center;
    align-items: center; cursor: pointer; transition: opacity 0.8s ease;
}
.pulse-text { color: #ffb5a7; font-size: 16px; font-weight: 400; animation: pulseGlowText 2s infinite; }
@keyframes pulseGlowText { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }

/* LOGIN UI REVISI */
.login-body {
    background: url('https://images.unsplash.com/photo-1588628566587-f1c246f406ce?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    height: 100vh; display: flex; justify-content: center; align-items: center; position: relative; overflow: hidden;
}
.fireflies { position: absolute; width: 100%; height: 100%; z-index: 1; pointer-events: none;}
.firefly { position: absolute; width: 4px; height: 4px; background: #fff; border-radius: 50%; box-shadow: 0 0 10px #ffb5a7; animation: drift 15s infinite linear; }
.firefly:nth-child(1) { top: 20%; left: 10%; animation-duration: 20s; }
.firefly:nth-child(2) { top: 70%; left: 30%; animation-duration: 25s; }
.firefly:nth-child(3) { top: 40%; left: 60%; animation-duration: 18s; }
.firefly:nth-child(4) { top: 80%; left: 80%; animation-duration: 22s; }
.firefly:nth-child(5) { top: 10%; left: 90%; animation-duration: 19s; }
@keyframes drift { 0% { transform: translateY(0) translateX(0); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateY(-500px) translateX(100px); opacity: 0; } }

.login-glass {
    background: rgba(20, 10, 15, 0.6); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(230, 57, 70, 0.3); padding: 50px 40px; border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.9); text-align: center; max-width: 420px; z-index: 10;
}
.mystery-icon { font-size: 38px; margin-bottom: 15px; animation: pulseGlow 2s infinite ease-in-out; }
.login-glass h1 { font-size: 26px; font-weight: 600; color: #ffb5a7; margin-bottom: 10px; }
.login-glass p { font-size: 14px; color: #ddd; line-height: 1.6; margin-bottom: 25px;}
.error-msg { color: #fff; font-size: 13px; background: rgba(230, 57, 70, 0.5); padding: 10px; border-radius: 8px; margin-bottom: 15px; border: 1px solid #e63946;}
.input-group { display: flex; gap: 12px; margin-bottom: 25px; }
.input-group input {
    width: 100%; padding: 15px; border: 1px solid rgba(255, 255, 255, 0.15); background: rgba(0,0,0,0.6);
    border-radius: 12px; text-align: center; font-weight: 600; color: #ffb5a7; font-size: 16px; transition: 0.3s;
}
.input-group input:focus { border-color: #e63946; outline: none; background: rgba(0,0,0,0.8); }
.btn-glow {
    background: #e63946; color: #fff; border: none; padding: 15px 30px;
    border-radius: 12px; cursor: pointer; font-size: 16px; font-weight: 600; width: 100%;
    transition: 0.3s; 
}
.btn-glow:hover { background: #ff4d5e; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(230,57,70,0.4);}

.petals { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; z-index: 2;}
.petal { position: absolute; background-color: #ffb5a7; border-radius: 150px 0 150px 0; opacity: 0.4; animation: fall linear infinite; }
.petal:nth-child(1) { width: 18px; height: 18px; left: 15%; animation-duration: 9s; }
.petal:nth-child(2) { width: 12px; height: 12px; left: 35%; animation-duration: 12s; animation-delay: 2s; }
.petal:nth-child(3) { width: 22px; height: 22px; left: 55%; animation-duration: 8s; animation-delay: 4s; }
.petal:nth-child(4) { width: 15px; height: 15px; left: 75%; animation-duration: 11s; animation-delay: 1s; }
.petal:nth-child(5) { width: 20px; height: 20px; left: 85%; animation-duration: 7s; animation-delay: 3s; }
@keyframes fall { 0% { transform: translateY(-10vh) rotate(0deg); opacity: 0; } 20% { opacity: 0.6; } 100% { transform: translateY(110vh) rotate(360deg); opacity: 0; } }
@keyframes pulseGlow { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.15); opacity: 1; text-shadow: 0 0 20px #e63946; } }

/* GLASS NAVIGATION */
.glass-nav {
    position: fixed; top: 0; width: 100%; background: rgba(5, 2, 3, 0.8); backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px); padding: 20px 0; z-index: 1000; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.glass-nav ul { list-style: none; display: flex; justify-content: center; gap: 30px; margin: 0; padding: 0; }
.glass-nav ul li a { text-decoration: none; color: #ffb5a7; font-weight: 500; font-size: 14px; transition: 0.3s; }
.glass-nav ul li a:hover { color: #e63946; }

section { min-height: 100vh; padding: 120px 20px 80px 20px; display: flex; flex-direction: column; justify-content: center; align-items: center; box-sizing: border-box; }

.section-pesan {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), 
                url('https://images.unsplash.com/photo-1490750967868-88cb4ecb07cb?q=80&w=1920&auto=format&fit=crop') fixed center center/cover;
}
.content-glass {
    background: rgba(10, 5, 8, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 50px 40px; border-radius: 20px; max-width: 800px; text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05); box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.content-glass h2 { color: #e63946; font-size: 26px; margin-bottom: 25px; min-height: 40px; font-weight: 600;}
.love-letter p { font-size: 15px; line-height: 1.8; color: #f5f5f5; text-align: justify; margin-bottom: 20px; font-weight: 300;}

/* INTERACTIVE ENGINE SYSTEM BUTTONS */
.forgive-section { margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.forgive-section h3 { font-size: 18px; color: #ffb5a7; margin-bottom: 20px; font-weight: 500;}
.forgive-buttons { display: flex; justify-content: center; gap: 15px; align-items: center; min-height: 60px; position: relative;}
.btn-yes { background: #e63946; color: #fff; border: none; padding: 12px 30px; border-radius: 12px; font-size: 15px; font-weight: 600; cursor: pointer; transition: 0.3s; z-index: 2; }
.btn-yes:hover { background: #ff4d5e; transform: scale(1.05); }
.btn-no { background: transparent; color: #ccc; border: 1px solid #666; padding: 12px 30px; border-radius: 12px; font-size: 15px; cursor: pointer; transition: 0.3s; z-index: 100; }

.scroll-indicator { margin-top: 40px; color: #ffb5a7; font-size: 13px; animation: float 2.5s infinite ease-in-out; }
.arrow { width: 12px; height: 12px; border-right: 2px solid #e63946; border-bottom: 2px solid #e63946; transform: rotate(45deg); margin: 10px auto 0 auto; }
@keyframes float { 0%, 100% { transform: translateY(0); opacity: 0.6; } 50% { transform: translateY(10px); opacity: 1; } }

/* CORE COMPONENT: INTERACTIVE MULTI-DESKTOP GLOW CARD */
.section-galeri { background: #050203; }
.section-video { background: #080304; }
.section-galeri h2, .section-video h2 { color: #ffb5a7; font-size: 28px; margin-bottom: 5px; text-align: center; font-weight: 600;}
.subtitle { font-size: 14px; color: #999; font-weight: 300; margin-bottom: 40px; text-align: center; }

.locked-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; width: 100%; max-width: 900px; }
.locked-card {
    background: rgba(15, 8, 11, 0.8); border: 1px solid rgba(255, 255, 255, 0.05);
    height: 240px; border-radius: 16px; display: flex; flex-direction: column;
    justify-content: center; align-items: center; cursor: pointer; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.locked-card:hover { transform: translateY(-5px); background: rgba(230, 57, 70, 0.1); border-color: #e63946; box-shadow: 0 10px 25px rgba(230, 57, 70, 0.2); }
.lock-icon { font-size: 35px; margin-bottom: 15px; transition: 0.3s; }
.locked-card p { color: #fff; font-size: 15px; margin: 0 0 15px 0; font-weight: 500; }
.locked-card span { background: #e63946; color: #fff; padding: 8px 16px; border-radius: 8px; font-size: 12px; font-weight: 600; }

/* OVERLAY WORKSPACE INTERFACE (DESKTOP MODE) */
.desktop-mode {
    display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: #050203; z-index: 10000; flex-direction: column;
}
.desktop-header {
    display: flex; justify-content: space-between; align-items: center; padding: 20px 40px;
    background: rgba(10, 5, 8, 0.9); border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.btn-close-desktop { background: transparent; border: 1px solid #666; color: #ccc; padding: 8px 16px; border-radius: 8px; cursor: pointer; font-size: 13px; transition: 0.3s; }
.btn-close-desktop:hover { background: #e63946; color: #fff; border-color: #e63946; }
#desktop-title { color: #fff; font-size: 16px; font-weight: 500;}

.desktop-slider-container { flex: 1; display: flex; overflow: hidden; position: relative; }
.desktop-slide { width: 100%; height: 100%; display: none; flex-direction: row; animation: fadeDesktop 0.5s ease-in-out; }
.desktop-slide.active { display: flex; }
@keyframes fadeDesktop { from { opacity: 0; transform: scale(0.99); } to { opacity: 1; transform: scale(1); } }

.desk-media-side { flex: 1; display: flex; justify-content: center; align-items: center; background: #000; padding: 20px; }
.desk-media-side img, .desk-media-side video { max-width: 100%; max-height: 80vh; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.desk-text-side {
    width: 400px; background: #0a0406; padding: 50px 40px; display: flex; flex-direction: column;
    justify-content: center; border-left: 1px solid rgba(255, 255, 255, 0.05); overflow-y: auto;
}
.desk-text-side h3 { color: #ffb5a7; font-size: 22px; margin-bottom: 20px; font-weight: 500; }
.desk-text-side p { font-size: 15px; line-height: 1.8; color: #ddd; text-align: justify; font-weight: 300; }

.desktop-controls {
    display: flex; justify-content: space-between; padding: 20px 40px; background: rgba(10, 5, 8, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.btn-desk-nav { background: transparent; border: 1px solid #666; color: #ccc; padding: 10px 20px; border-radius: 8px; cursor: pointer; transition: 0.3s; font-size: 14px; }
.btn-desk-nav.next { background: #e63946; color: #fff; border: none; font-weight: 600; }
.btn-desk-nav.next:hover { background: #ff4d5e; }

/* MEDIA ADAPTIVE BREAKPOINTS */
@media (max-width: 800px) {
    .desktop-slide { flex-direction: column; }
    .desk-media-side { flex: unset; height: 45vh; }
    .desk-text-side { width: 100%; height: 55vh; border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 30px 20px; }
    .desk-text-side h3 { font-size: 20px; margin-bottom: 15px; }
    .desk-text-side p { font-size: 14px; line-height: 1.7; }
    .desktop-header { padding: 15px 20px; }
    .desktop-controls { padding: 15px 20px; }
    .locked-grid { grid-template-columns: repeat(2, 1fr); }
}

/* AUDIO HOVER CORE EFFECT */
.music-box {
    position: fixed; bottom: 30px; right: 30px; background: #e63946;
    width: 55px; height: 55px; border-radius: 50%; display: flex; justify-content: center; align-items: center;
    z-index: 20000; cursor: pointer; transition: 0.3s; box-shadow: 0 5px 15px rgba(230,57,70,0.4);
}
.music-box:hover { background: #ff4d5e; transform: scale(1.1); }
#music-icon { font-size: 22px; color: #fff; }
.rotating { animation: rotateDisc 5s linear infinite; }
@keyframes rotateDisc { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
/* =========================================
   SISTEM KEAMANAN & PRIVASI (ANTI-COPY & DRAG)
   ========================================= */
body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    -webkit-touch-callout: none; /* iOS Safari */
}

img, video {
    -webkit-user-drag: none; /* Mencegah gambar diseret */
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Menyembunyikan tombol download di beberapa browser lama */
video::-internal-media-controls-download-button {
    display: none;
}
video::-webkit-media-controls-enclosure {
    overflow: hidden;
}
video::-webkit-media-controls-panel {
    width: calc(100% + 30px); /* Menyembunyikan tombol paling kanan (download) */
}
/* =========================================
   TOMBOL WHATSAPP MELAYANG PREMIUM
   ========================================= */
.wa-floating-box {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Diletakkan di kiri bawah agar tidak tabrakan dengan tombol musik di kanan */
    background: rgba(10, 5, 8, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 57, 70, 0.3);
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 25000; /* Tetap terlihat di mode desktop overlay */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    transition: 0.3s;
}

.wa-floating-box:hover {
    transform: translateY(-3px);
    border-color: #e63946;
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.2);
}

.wa-icon {
    font-size: 20px;
}

.wa-text {
    display: flex;
    flex-direction: column;
}

.wa-text span.note {
    font-size: 11px;
    color: #ffb5a7;
    font-weight: 300;
}

.wa-text span.phone {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 600px) {
    .wa-floating-box {
        bottom: 100px; /* Biar nggak tabrakan sama kontrol navigasi di HP */
        left: 20px;
        padding: 8px 14px;
    }
    .wa-text span.note { font-size: 10px; }
    .wa-text span.phone { font-size: 12px; }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

html { scroll-behavior: smooth; }
body { margin: 0; padding: 0; font-family: 'Poppins', sans-serif; color: #f5f5f5; background-color: #050203; overflow-x: hidden; }

/* Engine UI Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #050203; }
::-webkit-scrollbar-thumb { background: #e63946; border-radius: 10px; }

#magic-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: #000; z-index: 9999; display: flex; justify-content: center;
    align-items: center; cursor: pointer; transition: opacity 0.8s ease;
}
.pulse-text { color: #ffb5a7; font-size: 16px; font-weight: 400; animation: pulseGlowText 2s infinite; }
@keyframes pulseGlowText { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }

/* LOGIN UI REVISI */
.login-body {
    background: url('https://images.unsplash.com/photo-1588628566587-f1c246f406ce?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    height: 100vh; display: flex; justify-content: center; align-items: center; position: relative; overflow: hidden;
}
.fireflies { position: absolute; width: 100%; height: 100%; z-index: 1; pointer-events: none;}
.firefly { position: absolute; width: 4px; height: 4px; background: #fff; border-radius: 50%; box-shadow: 0 0 10px #ffb5a7; animation: drift 15s infinite linear; }
.firefly:nth-child(1) { top: 20%; left: 10%; animation-duration: 20s; }
.firefly:nth-child(2) { top: 70%; left: 30%; animation-duration: 25s; }
.firefly:nth-child(3) { top: 40%; left: 60%; animation-duration: 18s; }
.firefly:nth-child(4) { top: 80%; left: 80%; animation-duration: 22s; }
.firefly:nth-child(5) { top: 10%; left: 90%; animation-duration: 19s; }
@keyframes drift { 0% { transform: translateY(0) translateX(0); opacity: 0; } 50% { opacity: 1; } 100% { transform: translateY(-500px) translateX(100px); opacity: 0; } }

.login-glass {
    background: rgba(20, 10, 15, 0.6); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(230, 57, 70, 0.3); padding: 50px 40px; border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.9); text-align: center; max-width: 420px; z-index: 10;
}
.mystery-icon { font-size: 38px; margin-bottom: 15px; animation: pulseGlow 2s infinite ease-in-out; }
.login-glass h1 { font-size: 26px; font-weight: 600; color: #ffb5a7; margin-bottom: 10px; }
.login-glass p { font-size: 14px; color: #ddd; line-height: 1.6; margin-bottom: 25px;}
.error-msg { color: #fff; font-size: 13px; background: rgba(230, 57, 70, 0.5); padding: 10px; border-radius: 8px; margin-bottom: 15px; border: 1px solid #e63946;}
.input-group { display: flex; gap: 12px; margin-bottom: 25px; }
.input-group input {
    width: 100%; padding: 15px; border: 1px solid rgba(255, 255, 255, 0.15); background: rgba(0,0,0,0.6);
    border-radius: 12px; text-align: center; font-weight: 600; color: #ffb5a7; font-size: 16px; transition: 0.3s;
}
.input-group input:focus { border-color: #e63946; outline: none; background: rgba(0,0,0,0.8); }
.btn-glow {
    background: #e63946; color: #fff; border: none; padding: 15px 30px;
    border-radius: 12px; cursor: pointer; font-size: 16px; font-weight: 600; width: 100%;
    transition: 0.3s; 
}
.btn-glow:hover { background: #ff4d5e; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(230,57,70,0.4);}

.petals { position: absolute; width: 100%; height: 100%; top: 0; left: 0; pointer-events: none; z-index: 2;}
.petal { position: absolute; background-color: #ffb5a7; border-radius: 150px 0 150px 0; opacity: 0.4; animation: fall linear infinite; }
.petal:nth-child(1) { width: 18px; height: 18px; left: 15%; animation-duration: 9s; }
.petal:nth-child(2) { width: 12px; height: 12px; left: 35%; animation-duration: 12s; animation-delay: 2s; }
.petal:nth-child(3) { width: 22px; height: 22px; left: 55%; animation-duration: 8s; animation-delay: 4s; }
.petal:nth-child(4) { width: 15px; height: 15px; left: 75%; animation-duration: 11s; animation-delay: 1s; }
.petal:nth-child(5) { width: 20px; height: 20px; left: 85%; animation-duration: 7s; animation-delay: 3s; }
@keyframes fall { 0% { transform: translateY(-10vh) rotate(0deg); opacity: 0; } 20% { opacity: 0.6; } 100% { transform: translateY(110vh) rotate(360deg); opacity: 0; } }
@keyframes pulseGlow { 0%, 100% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.15); opacity: 1; text-shadow: 0 0 20px #e63946; } }

/* GLASS NAVIGATION */
.glass-nav {
    position: fixed; top: 0; width: 100%; background: rgba(5, 2, 3, 0.8); backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px); padding: 20px 0; z-index: 1000; border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.glass-nav ul { list-style: none; display: flex; justify-content: center; gap: 30px; margin: 0; padding: 0; }
.glass-nav ul li a { text-decoration: none; color: #ffb5a7; font-weight: 500; font-size: 14px; transition: 0.3s; }
.glass-nav ul li a:hover { color: #e63946; }

section { min-height: 100vh; padding: 120px 20px 80px 20px; display: flex; flex-direction: column; justify-content: center; align-items: center; box-sizing: border-box; }

.section-pesan {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), 
                url('https://images.unsplash.com/photo-1490750967868-88cb4ecb07cb?q=80&w=1920&auto=format&fit=crop') fixed center center/cover;
}
.content-glass {
    background: rgba(10, 5, 8, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 50px 40px; border-radius: 20px; max-width: 800px; text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05); box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.content-glass h2 { color: #e63946; font-size: 26px; margin-bottom: 25px; min-height: 40px; font-weight: 600;}
.love-letter p { font-size: 15px; line-height: 1.8; color: #f5f5f5; text-align: justify; margin-bottom: 20px; font-weight: 300;}

/* INTERACTIVE ENGINE SYSTEM BUTTONS */
.forgive-section { margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.forgive-section h3 { font-size: 18px; color: #ffb5a7; margin-bottom: 20px; font-weight: 500;}
.forgive-buttons { display: flex; justify-content: center; gap: 15px; align-items: center; min-height: 60px; position: relative;}
.btn-yes { background: #e63946; color: #fff; border: none; padding: 12px 30px; border-radius: 12px; font-size: 15px; font-weight: 600; cursor: pointer; transition: 0.3s; z-index: 2; }
.btn-yes:hover { background: #ff4d5e; transform: scale(1.05); }
.btn-no { background: transparent; color: #ccc; border: 1px solid #666; padding: 12px 30px; border-radius: 12px; font-size: 15px; cursor: pointer; transition: 0.3s; z-index: 100; }

.scroll-indicator { margin-top: 40px; color: #ffb5a7; font-size: 13px; animation: float 2.5s infinite ease-in-out; }
.arrow { width: 12px; height: 12px; border-right: 2px solid #e63946; border-bottom: 2px solid #e63946; transform: rotate(45deg); margin: 10px auto 0 auto; }
@keyframes float { 0%, 100% { transform: translateY(0); opacity: 0.6; } 50% { transform: translateY(10px); opacity: 1; } }

/* CORE COMPONENT: INTERACTIVE MULTI-DESKTOP GLOW CARD */
.section-galeri { background: #050203; }
.section-video { background: #080304; }
.section-galeri h2, .section-video h2 { color: #ffb5a7; font-size: 28px; margin-bottom: 5px; text-align: center; font-weight: 600;}
.subtitle { font-size: 14px; color: #999; font-weight: 300; margin-bottom: 40px; text-align: center; }

.locked-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; width: 100%; max-width: 900px; }
.locked-card {
    background: rgba(15, 8, 11, 0.8); border: 1px solid rgba(255, 255, 255, 0.05);
    height: 240px; border-radius: 16px; display: flex; flex-direction: column;
    justify-content: center; align-items: center; cursor: pointer; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.locked-card:hover { transform: translateY(-5px); background: rgba(230, 57, 70, 0.1); border-color: #e63946; box-shadow: 0 10px 25px rgba(230, 57, 70, 0.2); }
.lock-icon { font-size: 35px; margin-bottom: 15px; transition: 0.3s; }
.locked-card p { color: #fff; font-size: 15px; margin: 0 0 15px 0; font-weight: 500; }
.locked-card span { background: #e63946; color: #fff; padding: 8px 16px; border-radius: 8px; font-size: 12px; font-weight: 600; }

/* OVERLAY WORKSPACE INTERFACE (DESKTOP MODE) */
.desktop-mode {
    display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: #050203; z-index: 10000; flex-direction: column;
}
.desktop-header {
    display: flex; justify-content: space-between; align-items: center; padding: 20px 40px;
    background: rgba(10, 5, 8, 0.9); border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.btn-close-desktop { background: transparent; border: 1px solid #666; color: #ccc; padding: 8px 16px; border-radius: 8px; cursor: pointer; font-size: 13px; transition: 0.3s; }
.btn-close-desktop:hover { background: #e63946; color: #fff; border-color: #e63946; }
#desktop-title { color: #fff; font-size: 16px; font-weight: 500;}

.desktop-slider-container { flex: 1; display: flex; overflow: hidden; position: relative; }
.desktop-slide { width: 100%; height: 100%; display: none; flex-direction: row; animation: fadeDesktop 0.5s ease-in-out; }
.desktop-slide.active { display: flex; }
@keyframes fadeDesktop { from { opacity: 0; transform: scale(0.99); } to { opacity: 1; transform: scale(1); } }

.desk-media-side { flex: 1; display: flex; justify-content: center; align-items: center; background: #000; padding: 20px; }
.desk-media-side img, .desk-media-side video { max-width: 100%; max-height: 80vh; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.desk-text-side {
    width: 400px; background: #0a0406; padding: 50px 40px; display: flex; flex-direction: column;
    justify-content: center; border-left: 1px solid rgba(255, 255, 255, 0.05); overflow-y: auto;
}
.desk-text-side h3 { color: #ffb5a7; font-size: 22px; margin-bottom: 20px; font-weight: 500; }
.desk-text-side p { font-size: 15px; line-height: 1.8; color: #ddd; text-align: justify; font-weight: 300; }

.desktop-controls {
    display: flex; justify-content: space-between; padding: 20px 40px; background: rgba(10, 5, 8, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.btn-desk-nav { background: transparent; border: 1px solid #666; color: #ccc; padding: 10px 20px; border-radius: 8px; cursor: pointer; transition: 0.3s; font-size: 14px; }
.btn-desk-nav.next { background: #e63946; color: #fff; border: none; font-weight: 600; }
.btn-desk-nav.next:hover { background: #ff4d5e; }

/* MEDIA ADAPTIVE BREAKPOINTS */
@media (max-width: 800px) {
    .desktop-slide { flex-direction: column; }
    .desk-media-side { flex: unset; height: 45vh; }
    .desk-text-side { width: 100%; height: 55vh; border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 30px 20px; }
    .desk-text-side h3 { font-size: 20px; margin-bottom: 15px; }
    .desk-text-side p { font-size: 14px; line-height: 1.7; }
    .desktop-header { padding: 15px 20px; }
    .desktop-controls { padding: 15px 20px; }
    .locked-grid { grid-template-columns: repeat(2, 1fr); }
}

/* AUDIO HOVER CORE EFFECT */
.music-box {
    position: fixed; bottom: 30px; right: 30px; background: #e63946;
    width: 55px; height: 55px; border-radius: 50%; display: flex; justify-content: center; align-items: center;
    z-index: 20000; cursor: pointer; transition: 0.3s; box-shadow: 0 5px 15px rgba(230,57,70,0.4);
}
.music-box:hover { background: #ff4d5e; transform: scale(1.1); }
#music-icon { font-size: 22px; color: #fff; }
.rotating { animation: rotateDisc 5s linear infinite; }
@keyframes rotateDisc { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* =========================================
   SISTEM KEAMANAN & PRIVASI (ANTI-COPY & DRAG)
   ========================================= */
body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    -webkit-touch-callout: none; /* iOS Safari */
}

img, video {
    -webkit-user-drag: none; /* Mencegah gambar diseret */
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

video::-internal-media-controls-download-button { display: none; }
video::-webkit-media-controls-enclosure { overflow: hidden; }
video::-webkit-media-controls-panel { width: calc(100% + 30px); }

/* =========================================
   TOMBOL WHATSAPP MELAYANG PREMIUM
   ========================================= */
.wa-floating-box {
    position: fixed; bottom: 30px; left: 30px;
    background: rgba(10, 5, 8, 0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 57, 70, 0.3); padding: 10px 18px; border-radius: 30px;
    display: flex; align-items: center; gap: 10px; z-index: 25000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); text-decoration: none; transition: 0.3s;
}
.wa-floating-box:hover { transform: translateY(-3px); border-color: #e63946; box-shadow: 0 15px 35px rgba(230, 57, 70, 0.2); }
.wa-icon { font-size: 20px; }
.wa-text { display: flex; flex-direction: column; }
.wa-text span.note { font-size: 11px; color: #ffb5a7; font-weight: 300; }
.wa-text span.phone { font-size: 13px; color: #fff; font-weight: 500; }
@media (max-width: 600px) {
    .wa-floating-box { bottom: 100px; left: 20px; padding: 8px 14px; }
    .wa-text span.note { font-size: 10px; }
    .wa-text span.phone { font-size: 12px; }
}

/* =========================================
   AVATAR ASISTEN (SWEETALERT IMAGE) BULAT
   ========================================= */
.swal2-image {
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e63946; /* Garis pinggir merah elegan */
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4); /* Efek bercahaya */
}