/* ============================================
   CYBERSTORE — MAIN STYLE (PREMIUM EDITION)
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --cyan: #00f0ff;
    --pink: #e040fb;
    --purple: #a855f7;
    --dark: #050a14;
    --dark2: #080f1e;
    --dark3: #0d1829;
    --card-bg: rgba(13,24,41,0.85);
    --border: rgba(0,240,255,0.15);
    --text: #e2e8f0;
    --text-dim: #7a8fa6;
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --gold: #f9ca24;
    --orange: #f0932b;
}

html { scroll-behavior: smooth; }

body {
    background: var(--dark);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--cyan), var(--purple)); border-radius: 3px; }

.gradient-cyan {
    background: linear-gradient(135deg, #00f0ff 0%, #0080ff 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-pink {
    background: linear-gradient(135deg, #c020f0 0%, #e040fb 50%, #ff6ee7 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-gold {
    background: linear-gradient(135deg, #f9ca24 0%, #f0932b 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   TYPING ANIMATION - CYBERSTORE LOGO
   ============================================ */

.typing-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.typing-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    position: relative;
}

.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1.2rem;
    background: var(--cyan);
    animation: cursorBlink 0.8s step-end infinite;
    margin-left: 2px;
    border-radius: 2px;
}

@keyframes cursorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ============================================
   WARNING POPUP
   ============================================ */
.warning-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: warningFadeIn 0.6s ease;
}

.warning-overlay.hidden { display: none; }

@keyframes warningFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.warning-modal {
    background: linear-gradient(160deg, #0d1829, #080f1e, #0d1829);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 32px;
    padding: 3.5rem 3rem;
    max-width: 560px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 60px rgba(255,215,0,0.03);
    animation: warningModalIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes warningModalIn {
    from { opacity: 0; transform: scale(0.9) translateY(30px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.warning-icon { font-size: 4rem; color: #f9ca24; margin-bottom: 1rem; animation: warningPulse 2s ease-in-out infinite; }
@keyframes warningPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.warning-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    color: #f9ca24;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.warning-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.warning-text strong { color: #f9ca24; }

.warning-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.8rem;
    padding: 14px 18px;
    background: rgba(255, 215, 0, 0.04);
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.06);
    transition: all 0.3s ease;
}
.warning-checkbox:hover {
    background: rgba(255, 215, 0, 0.06);
    border-color: rgba(255, 215, 0, 0.12);
}
.warning-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #f9ca24;
    cursor: pointer;
    flex-shrink: 0;
}
.warning-checkbox label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    cursor: pointer;
    text-align: left;
    font-weight: 500;
}

.warning-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 48px;
    background: linear-gradient(135deg, #f9ca24, #f0932b);
    border: none;
    border-radius: 16px;
    color: #0a0a12;
    font-weight: 800;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.4;
    pointer-events: none;
    width: 100%;
}
.warning-btn.active {
    opacity: 1;
    pointer-events: all;
    box-shadow: 0 8px 30px rgba(249, 202, 36, 0.3);
}
.warning-btn.active:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 50px rgba(249, 202, 36, 0.4);
}

.warning-footer {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    font-weight: 500;
    border-top: 1px solid rgba(255, 215, 0, 0.05);
    padding-top: 1.2rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2.5rem;
    height: 70px;
    background: rgba(5,10,20,0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s;
}
.navbar.scrolled {
    background: rgba(5,10,20,0.96);
    box-shadow: 0 4px 40px rgba(0,240,255,0.08);
}

.logo-wrapper {
    display: flex; align-items: center; gap: 10px;
    cursor: pointer;
}
.logo-3d {
    width: 40px; height: 40px;
    animation: logoSpin 8s linear infinite, logoPulse 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 8px rgba(0,240,255,0.6));
}
.logo-3d svg { width: 40px; height: 40px; }

@keyframes logoSpin {
    0%   { transform: rotateY(0deg) rotateX(0deg); }
    25%  { transform: rotateY(90deg) rotateX(15deg); }
    50%  { transform: rotateY(180deg) rotateX(0deg); }
    75%  { transform: rotateY(270deg) rotateX(-15deg); }
    100% { transform: rotateY(360deg) rotateX(0deg); }
}
@keyframes logoPulse {
    0%   { filter: drop-shadow(0 0 6px rgba(0,240,255,0.5)) drop-shadow(0 0 12px rgba(168,85,247,0.3)); }
    100% { filter: drop-shadow(0 0 14px rgba(0,240,255,0.9)) drop-shadow(0 0 28px rgba(168,85,247,0.6)); }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.nav-center { display: flex; gap: 2.5rem; }
.nav-link {
    font-size: 0.95rem; font-weight: 500; color: var(--text-dim);
    text-decoration: none; position: relative;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; border-radius: 2px;
    background: var(--cyan);
    transform: scaleX(0); transition: transform 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--cyan); }
.nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }

.nav-right {
    display: flex; align-items: center; gap: 1rem;
}
.wa-btn {
    display: flex; align-items: center; gap: 8px;
    background: #25D366;
    padding: 8px 16px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.wa-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(37,211,102,0.3);
}
.wa-btn i { font-size: 1.1rem; }

/* ============================================
   HOOK SECTIONS - SEMUA DISAMAKAN
   ============================================ */
.hook-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 40px;
    overflow: hidden;
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.hook-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0,240,255,0.03), transparent 60%);
    pointer-events: none;
}

.hook-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    position: relative;
    z-index: 2;
    min-height: 80vh;
}

.hook-container.reverse { direction: rtl; }
.hook-container.reverse .hook-content { direction: ltr; }

.hook-content {
    direction: ltr;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 4rem 3rem 2rem;
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, rgba(5, 10, 20, 0.95) 0%, rgba(5, 10, 20, 0.7) 80%, transparent 100%);
}

.hook-container.reverse .hook-content {
    padding: 3rem 2rem 3rem 4rem;
    background: linear-gradient(225deg, rgba(5, 10, 20, 0.95) 0%, rgba(5, 10, 20, 0.7) 80%, transparent 100%);
}

.hook-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(0,240,255,0.06);
    border: 1px solid rgba(0,240,255,0.1);
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hook-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hook-gradient {
    background: linear-gradient(135deg, #00f0ff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hook-gradient-2 {
    background: linear-gradient(135deg, #f9ca24, #f0932b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hook-gradient-3 {
    background: linear-gradient(135deg, #e040fb, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hook-gradient-4 {
    background: linear-gradient(135deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hook-gradient-5 {
    background: linear-gradient(135deg, #f0932b, #f9ca24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hook-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hook-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    border: none;
    border-radius: 14px;
    color: var(--dark);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0,240,255,0.15);
}
.hook-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0,240,255,0.25);
}

/* ============================================
   HOOK VISUAL - SLIDESHOW FULL (SAMA PERSIS UNTUK SEMUA)
   ============================================ */
.hook-visual {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 100%;
    overflow: hidden;
}

.slideshow-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

.slideshow-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    direction: ltr;
}

.slideshow-wrapper .slide-item {
    min-width: 100%;
    height: 100%;
}

.slideshow-wrapper .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradiasi hitam dari kiri ke kanan - SAMA UNTUK SEMUA */
.slideshow-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 10, 20, 0.85) 0%, rgba(5, 10, 20, 0.3) 40%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Reverse untuk hook yang posisi gambar di kiri - DISAMAKAN DENGAN YANG NORMAL */
.hook-container.reverse .slideshow-overlay {
    background: linear-gradient(90deg, rgba(5, 10, 20, 0.85) 0%, rgba(5, 10, 20, 0.3) 40%, transparent 70%);
}

.slideshow-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.slideshow-indicators .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.4s ease;
}

.slideshow-indicators .dot.active {
    background: var(--cyan);
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
    transform: scale(1.3);
}

/* Hook Orbs */
.hook-orb,
.hook-orb-2 {
    z-index: 2;
    pointer-events: none;
}

.hook-card-float {
    z-index: 3;
}

.hook-orb {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,240,255,0.15), transparent 70%);
    animation: hookOrbFloat 8s ease-in-out infinite;
    filter: blur(40px);
}
.hook-orb-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.12), transparent 70%);
    animation: hookOrbFloat 10s ease-in-out infinite reverse;
    filter: blur(30px);
    position: absolute;
    bottom: 0;
    right: 20%;
}
.hook-orb-pink { background: radial-gradient(circle, rgba(224,64,251,0.15), transparent 70%); }
.hook-orb-blue { background: radial-gradient(circle, rgba(79,172,254,0.15), transparent 70%); }
.hook-orb-orange { background: radial-gradient(circle, rgba(240,147,43,0.15), transparent 70%); }
.hook-orb-purple { background: radial-gradient(circle, rgba(168,85,247,0.12), transparent 70%); }
.hook-orb-gold { background: radial-gradient(circle, rgba(249,202,36,0.12), transparent 70%); }
.hook-orb-pink-2 { background: radial-gradient(circle, rgba(224,64,251,0.08), transparent 70%); }

@keyframes hookOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.hook-card-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(13,24,41,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    animation: hookCardFloat 5s ease-in-out infinite;
}

.hook-card-float i {
    font-size: 1.2rem;
    color: var(--cyan);
}

@keyframes hookCardFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.06);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
}
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--cyan));
    animation: scrollProgress 3s ease-in-out infinite;
}
@keyframes scrollProgress {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-100%); }
}

/* ============================================
   SECTIONS
   ============================================ */
.katalog-section, .medsos-section, .game-section, .edukasi-section {
    padding: 6rem 2rem;
    max-width: 1200px; margin: 0 auto;
}

.section-header {
    text-align: center; margin-bottom: 3.5rem;
}
.section-eyebrow {
    color: var(--cyan); font-size: 0.85rem;
    font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900; margin-bottom: 0.75rem;
}
.section-desc {
    color: var(--text-dim); font-size: 1rem; line-height: 1.7;
}

/* ============================================
   PRODUCT GRID - DENGAN BACKGROUND GAMBAR
   ============================================ */
.product-grid, .medsos-grid, .game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
    min-height: 280px;
}

/* BACKGROUND GAMBAR DI SETIAP KARTU */
.product-card .card-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .card-bg-image {
    transform: scale(1.08);
}

/* OVERLAY GELAP DI ATAS GAMBAR */
.product-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 10, 20, 0.4) 0%, rgba(5, 10, 20, 0.85) 70%, rgba(5, 10, 20, 0.95) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.product-card:hover .card-overlay {
    background: linear-gradient(180deg, rgba(5, 10, 20, 0.2) 0%, rgba(5, 10, 20, 0.7) 60%, rgba(5, 10, 20, 0.9) 100%);
}

/* SEMUA KONTEN DI ATAS OVERLAY */
.product-card .card-icon,
.product-card h3,
.product-card p,
.product-card .price,
.product-card .card-btn,
.product-card .card-badge-top {
    position: relative;
    z-index: 2;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,240,255,0.02), rgba(168,85,247,0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0,240,255,0.4);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,240,255,0.06);
}
.product-card:hover::before { opacity: 1; }

.product-card.featured {
    border-color: rgba(168,85,247,0.4);
    background: linear-gradient(135deg, rgba(13,24,41,0.95), rgba(20,10,35,0.95));
}

/* ============================================
   ANIMASI CAHAYA KETIKA DIKLIK (LIGHT BURST)
   ============================================ */
.product-card .light-burst {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card .light-burst.active {
    opacity: 1;
    animation: lightBurst 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 4 SISI CAHAYA */
.product-card .light-burst .light-edge {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
}

.product-card .light-burst .light-edge.top {
    top: -2px;
    left: 0;
    right: 0;
    height: 3px;
    animation: lightEdgeTop 1.2s ease forwards;
}

.product-card .light-burst .light-edge.bottom {
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    animation: lightEdgeBottom 1.2s ease forwards;
}

.product-card .light-burst .light-edge.left {
    left: -2px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--cyan), transparent);
    animation: lightEdgeLeft 1.2s ease forwards;
}

.product-card .light-burst .light-edge.right {
    right: -2px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--cyan), transparent);
    animation: lightEdgeRight 1.2s ease forwards;
}

/* CAHAYA DARI SUDUT */
.product-card .light-burst .light-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0;
}

.product-card .light-burst .light-corner.tl {
    top: -10px;
    left: -10px;
    background: radial-gradient(circle at top left, rgba(0,240,255,0.4), transparent 70%);
    animation: lightCornerTL 1s ease forwards;
}

.product-card .light-burst .light-corner.tr {
    top: -10px;
    right: -10px;
    background: radial-gradient(circle at top right, rgba(168,85,247,0.4), transparent 70%);
    animation: lightCornerTR 1s ease forwards;
}

.product-card .light-burst .light-corner.bl {
    bottom: -10px;
    left: -10px;
    background: radial-gradient(circle at bottom left, rgba(224,64,251,0.4), transparent 70%);
    animation: lightCornerBL 1s ease forwards;
}

.product-card .light-burst .light-corner.br {
    bottom: -10px;
    right: -10px;
    background: radial-gradient(circle at bottom right, rgba(0,240,255,0.4), transparent 70%);
    animation: lightCornerBR 1s ease forwards;
}

/* KEYFRAMES ANIMASI CAHAYA */
@keyframes lightEdgeTop {
    0% { transform: scaleX(0); opacity: 1; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(1); opacity: 0; }
}

@keyframes lightEdgeBottom {
    0% { transform: scaleX(0); opacity: 1; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(1); opacity: 0; }
}

@keyframes lightEdgeLeft {
    0% { transform: scaleY(0); opacity: 1; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1); opacity: 0; }
}

@keyframes lightEdgeRight {
    0% { transform: scaleY(0); opacity: 1; }
    50% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(1); opacity: 0; }
}

@keyframes lightCornerTL {
    0% { opacity: 0; transform: scale(0.5); }
    30% { opacity: 1; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(2); }
}

@keyframes lightCornerTR {
    0% { opacity: 0; transform: scale(0.5); }
    30% { opacity: 1; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(2); }
}

@keyframes lightCornerBL {
    0% { opacity: 0; transform: scale(0.5); }
    30% { opacity: 1; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(2); }
}

@keyframes lightCornerBR {
    0% { opacity: 0; transform: scale(0.5); }
    30% { opacity: 1; transform: scale(1.5); }
    100% { opacity: 0; transform: scale(2); }
}

/* GLOW BORDER YANG BERGERAK (HOVER) */
.product-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    z-index: 0;
    background: conic-gradient(from var(--angle, 0deg),
        transparent 0%,
        rgba(0,240,255,0.3) 20%,
        rgba(168,85,247,0.3) 40%,
        rgba(224,64,251,0.3) 60%,
        rgba(0,240,255,0.3) 80%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderGlowSpin 3s linear infinite;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 0.6;
}

@keyframes borderGlowSpin {
    to { --angle: 360deg; }
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* ============================================
   PRODUCT ICON - FUTURISTIK & PREMIUM
   ============================================ */

.product-card .card-icon {
    width: 76px;
    height: 76px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    z-index: 2;
}

/* Background gradasi per brand */
.product-card .card-icon.netflix {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.25), rgba(184, 29, 36, 0.05));
    border-color: rgba(229, 9, 20, 0.2);
}
.product-card .card-icon.spotify {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.25), rgba(18, 138, 64, 0.05));
    border-color: rgba(29, 185, 84, 0.2);
}
.product-card .card-icon.youtube {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.25), rgba(204, 0, 0, 0.05));
    border-color: rgba(255, 0, 0, 0.2);
}
.product-card .card-icon.canva {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(168, 85, 247, 0.05));
    border-color: rgba(124, 58, 237, 0.2);
}
.product-card .card-icon.chatgpt {
    background: linear-gradient(135deg, rgba(0, 166, 126, 0.25), rgba(13, 138, 105, 0.05));
    border-color: rgba(0, 166, 126, 0.2);
}
.product-card .card-icon.disney {
    background: linear-gradient(135deg, rgba(17, 60, 207, 0.25), rgba(11, 46, 168, 0.05));
    border-color: rgba(17, 60, 207, 0.2);
}
.product-card .card-icon.capcut {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(0, 128, 255, 0.05));
    border-color: rgba(0, 212, 255, 0.2);
}
.product-card .card-icon.instagram {
    background: linear-gradient(135deg, rgba(220, 39, 67, 0.25), rgba(246, 148, 51, 0.05));
    border-color: rgba(220, 39, 67, 0.2);
}
.product-card .card-icon.tiktok {
    background: linear-gradient(135deg, rgba(37, 244, 238, 0.25), rgba(254, 44, 85, 0.05));
    border-color: rgba(37, 244, 238, 0.2);
}
.product-card .card-icon.pb {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.25), rgba(247, 147, 30, 0.05));
    border-color: rgba(255, 107, 53, 0.2);
}
.product-card .card-icon.mlbb {
    background: linear-gradient(135deg, rgba(0, 78, 146, 0.25), rgba(0, 51, 102, 0.05));
    border-color: rgba(0, 78, 146, 0.2);
}
.product-card .card-icon.template {
    background: linear-gradient(135deg, rgba(249, 202, 36, 0.25), rgba(240, 147, 43, 0.05));
    border-color: rgba(249, 202, 36, 0.2);
}
.product-card .card-icon.video {
    background: linear-gradient(135deg, rgba(224, 64, 251, 0.25), rgba(168, 85, 247, 0.05));
    border-color: rgba(224, 64, 251, 0.2);
}

/* Border animasi berputar dengan warna brand */
.product-card .card-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: conic-gradient(from var(--angle, 0deg),
        transparent 0%,
        var(--brand-color1, #00f0ff) 20%,
        var(--brand-color2, #a855f7) 40%,
        var(--brand-color3, #e040fb) 60%,
        var(--brand-color1, #00f0ff) 80%,
        transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderSpin 3s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .card-icon::before {
    opacity: 1;
}

/* Warna border per brand */
.product-card .card-icon.netflix { --brand-color1: #e50914; --brand-color2: #ff6b6b; --brand-color3: #b81d24; }
.product-card .card-icon.spotify { --brand-color1: #1db954; --brand-color2: #4caf50; --brand-color3: #128a40; }
.product-card .card-icon.youtube { --brand-color1: #ff0000; --brand-color2: #ff4444; --brand-color3: #cc0000; }
.product-card .card-icon.canva { --brand-color1: #7c3aed; --brand-color2: #a855f7; --brand-color3: #5b21b6; }
.product-card .card-icon.chatgpt { --brand-color1: #00a67e; --brand-color2: #4caf50; --brand-color3: #0d8a69; }
.product-card .card-icon.disney { --brand-color1: #113ccf; --brand-color2: #4f8cff; --brand-color3: #0b2ea8; }
.product-card .card-icon.capcut { --brand-color1: #00d4ff; --brand-color2: #00f0ff; --brand-color3: #0080ff; }
.product-card .card-icon.instagram { --brand-color1: #dc2743; --brand-color2: #f09433; --brand-color3: #e6683c; }
.product-card .card-icon.tiktok { --brand-color1: #25f4ee; --brand-color2: #fe2c55; --brand-color3: #000000; }
.product-card .card-icon.pb { --brand-color1: #ff6b35; --brand-color2: #ff8c42; --brand-color3: #f7931e; }
.product-card .card-icon.mlbb { --brand-color1: #004e92; --brand-color2: #0066cc; --brand-color3: #003366; }
.product-card .card-icon.template { --brand-color1: #f9ca24; --brand-color2: #f0932b; --brand-color3: #e67e22; }
.product-card .card-icon.video { --brand-color1: #e040fb; --brand-color2: #a855f7; --brand-color3: #7c3aed; }

@keyframes borderSpin {
    to { --angle: 360deg; }
}

/* Efek glow di belakang icon */
.product-card .card-icon::after {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow-color, rgba(0, 240, 255, 0.15)), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(0.6);
    pointer-events: none;
}

.product-card:hover .card-icon::after {
    opacity: 1;
    transform: scale(1.5);
}

/* Glow warna per brand */
.product-card .card-icon.netflix { --glow-color: rgba(229, 9, 20, 0.25); }
.product-card .card-icon.spotify { --glow-color: rgba(29, 185, 84, 0.25); }
.product-card .card-icon.youtube { --glow-color: rgba(255, 0, 0, 0.25); }
.product-card .card-icon.canva { --glow-color: rgba(124, 58, 237, 0.25); }
.product-card .card-icon.chatgpt { --glow-color: rgba(0, 166, 126, 0.25); }
.product-card .card-icon.disney { --glow-color: rgba(17, 60, 207, 0.25); }
.product-card .card-icon.capcut { --glow-color: rgba(0, 212, 255, 0.25); }
.product-card .card-icon.instagram { --glow-color: rgba(220, 39, 67, 0.25); }
.product-card .card-icon.tiktok { --glow-color: rgba(37, 244, 238, 0.25); }
.product-card .card-icon.pb { --glow-color: rgba(255, 107, 53, 0.25); }
.product-card .card-icon.mlbb { --glow-color: rgba(0, 78, 146, 0.25); }
.product-card .card-icon.template { --glow-color: rgba(249, 202, 36, 0.25); }
.product-card .card-icon.video { --glow-color: rgba(224, 64, 251, 0.25); }

/* Icon image dan font */
.product-card .card-icon img {
    width: 92%;
    height: 92%;
    object-fit: contain;
    border-radius: 0;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 25px var(--glow-color, rgba(0, 240, 255, 0.2)));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-card .card-icon i {
    position: relative;
    z-index: 2;
    font-size: 2.4rem;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 25px var(--glow-color, rgba(0, 240, 255, 0.2)));
}

.product-card:hover .card-icon {
    transform: translateY(-8px) scale(1.06);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.3), 0 0 60px var(--glow-color, rgba(0, 240, 255, 0.05));
    border-color: var(--brand-color1, #00f0ff);
}

.product-card:hover .card-icon img,
.product-card:hover .card-icon i {
    transform: scale(1.12);
    filter: drop-shadow(0 0 50px var(--glow-color, rgba(0, 240, 255, 0.5)));
}

/* ============================================
   CARD CONTENT
   ============================================ */
.product-card h3 {
    font-size: 1.1rem; font-weight: 700;
    margin-bottom: 0.5rem; color: var(--text);
    z-index: 2;
    position: relative;
}
.product-card p {
    font-size: 0.85rem; color: var(--text-dim);
    line-height: 1.6; margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}
.product-card .price {
    font-size: 1.2rem; font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}
.product-card .card-btn {
    width: 100%; padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(0,240,255,0.3);
    background: rgba(0,240,255,0.06);
    color: var(--cyan);
    font-weight: 600; font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    position: relative;
}
.product-card .card-btn:hover {
    background: rgba(0,240,255,0.15);
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0,240,255,0.15);
}
.card-badge-top {
    position: absolute; top: 16px; right: 16px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--dark);
    font-size: 0.65rem; font-weight: 800;
    padding: 3px 12px; border-radius: 100px;
    letter-spacing: 1px;
    z-index: 3;
}

/* ============================================
   EDUKASI CARD - SAMA DENGAN PRODUCT CARD TAPI TANPA ICON
   ============================================ */
.edukasi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.edukasi-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
    min-height: 280px;
}

/* BACKGROUND GAMBAR DI SETIAP KARTU EDUKASI */
.edukasi-card .card-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.edukasi-card:hover .card-bg-image {
    transform: scale(1.08);
}

/* ============================================
   VIDEO BACKGROUND UNTUK EDUKASI CARD (VIDEO TUTORIAL)
   ============================================ */
.edukasi-card .card-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.edukasi-card:hover .card-bg-video {
    transform: scale(1.08);
}

/* OVERLAY GELAP DI ATAS GAMBAR/VIDEO */
.edukasi-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 10, 20, 0.4) 0%, rgba(5, 10, 20, 0.85) 70%, rgba(5, 10, 20, 0.95) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}

.edukasi-card:hover .card-overlay {
    background: linear-gradient(180deg, rgba(5, 10, 20, 0.2) 0%, rgba(5, 10, 20, 0.7) 60%, rgba(5, 10, 20, 0.9) 100%);
}

/* SEMUA KONTEN DI ATAS OVERLAY - TANPA ICON */
.edukasi-card h4,
.edukasi-card p,
.edukasi-card .price,
.edukasi-card .edukasi-btn {
    position: relative;
    z-index: 2;
}

.edukasi-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,240,255,0.02), rgba(168,85,247,0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 1;
}

.edukasi-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0,240,255,0.4);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,240,255,0.06);
}
.edukasi-card:hover::before { opacity: 1; }

/* GLOW BORDER YANG BERGERAK (HOVER) UNTUK EDUKASI */
.edukasi-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    z-index: 0;
    background: conic-gradient(from var(--angle, 0deg),
        transparent 0%,
        rgba(0,240,255,0.3) 20%,
        rgba(168,85,247,0.3) 40%,
        rgba(224,64,251,0.3) 60%,
        rgba(0,240,255,0.3) 80%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: borderGlowSpin 3s linear infinite;
    pointer-events: none;
}

.edukasi-card:hover::after {
    opacity: 0.6;
}

/* ANIMASI CAHAYA KETIKA DIKLIK UNTUK EDUKASI */
.edukasi-card .light-burst {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.edukasi-card .light-burst.active {
    opacity: 1;
    animation: lightBurst 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.edukasi-card .light-burst .light-edge {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
}

.edukasi-card .light-burst .light-edge.top {
    top: -2px;
    left: 0;
    right: 0;
    height: 3px;
    animation: lightEdgeTop 1.2s ease forwards;
}

.edukasi-card .light-burst .light-edge.bottom {
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    animation: lightEdgeBottom 1.2s ease forwards;
}

.edukasi-card .light-burst .light-edge.left {
    left: -2px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--cyan), transparent);
    animation: lightEdgeLeft 1.2s ease forwards;
}

.edukasi-card .light-burst .light-edge.right {
    right: -2px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--cyan), transparent);
    animation: lightEdgeRight 1.2s ease forwards;
}

.edukasi-card .light-burst .light-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0;
}

.edukasi-card .light-burst .light-corner.tl {
    top: -10px;
    left: -10px;
    background: radial-gradient(circle at top left, rgba(0,240,255,0.4), transparent 70%);
    animation: lightCornerTL 1s ease forwards;
}

.edukasi-card .light-burst .light-corner.tr {
    top: -10px;
    right: -10px;
    background: radial-gradient(circle at top right, rgba(168,85,247,0.4), transparent 70%);
    animation: lightCornerTR 1s ease forwards;
}

.edukasi-card .light-burst .light-corner.bl {
    bottom: -10px;
    left: -10px;
    background: radial-gradient(circle at bottom left, rgba(224,64,251,0.4), transparent 70%);
    animation: lightCornerBL 1s ease forwards;
}

.edukasi-card .light-burst .light-corner.br {
    bottom: -10px;
    right: -10px;
    background: radial-gradient(circle at bottom right, rgba(0,240,255,0.4), transparent 70%);
    animation: lightCornerBR 1s ease forwards;
}

.edukasi-card h4 {
    font-size: 1.1rem; font-weight: 700;
    margin-bottom: 0.5rem; color: var(--text);
    z-index: 2;
    position: relative;
}
.edukasi-card p {
    font-size: 0.85rem; color: var(--text-dim);
    line-height: 1.6; margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}
.edukasi-card .price {
    font-size: 1.2rem; font-weight: 700;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}
.edukasi-card .edukasi-btn {
    width: 100%; padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(0,240,255,0.3);
    background: rgba(0,240,255,0.06);
    color: var(--cyan);
    font-weight: 600; font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    position: relative;
}
.edukasi-card .edukasi-btn:hover {
    background: rgba(0,240,255,0.15);
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0,240,255,0.15);
}

/* ============================================
   EDUKASI TABS
   ============================================ */
.edukasi-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.edukasi-tab {
    padding: 12px 28px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    color: var(--text-dim);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.edukasi-tab:hover {
    border-color: var(--cyan);
    color: var(--text);
    background: rgba(0,240,255,0.04);
}
.edukasi-tab.active {
    border-color: var(--cyan);
    background: rgba(0,240,255,0.08);
    color: var(--cyan);
    box-shadow: 0 0 30px rgba(0,240,255,0.05);
}

/* ============================================
   PROMO PAKET CARD
   ============================================ */
.promo-section {
    padding: 4rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
}

#promoContainer {
    margin-top: 2rem;
}

.promo-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    min-height: 500px;
    border: 1px solid rgba(249, 202, 36, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.promo-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(249, 202, 36, 0.5);
    box-shadow: 0 30px 80px rgba(249, 202, 36, 0.1);
}

.promo-card .promo-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.promo-card .promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 10, 20, 0.7) 0%, rgba(5, 10, 20, 0.9) 60%, rgba(5, 10, 20, 0.95) 100%);
    z-index: 1;
}

.promo-card .promo-content {
    position: relative;
    z-index: 2;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 500px;
    justify-content: center;
}

.promo-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #f9ca24, #f0932b);
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #0a0a12;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: promoPulse 2s ease-in-out infinite;
}

@keyframes promoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #f9ca24, #f0932b, #f9ca24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.promo-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.promo-price-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.promo-original-price {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.promo-price {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f9ca24, #f0932b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-discount {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(249, 202, 36, 0.15);
    border: 1px solid rgba(249, 202, 36, 0.3);
    border-radius: 40px;
    color: #f9ca24;
    font-weight: 800;
    font-size: 0.9rem;
}

.promo-includes {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    width: 100%;
}

.promo-includes li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-align: left;
    padding: 4px 0;
}

.promo-btn {
    padding: 16px 48px;
    background: linear-gradient(135deg, #f9ca24, #f0932b);
    border: none;
    border-radius: 16px;
    color: #0a0a12;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(249, 202, 36, 0.2);
}

.promo-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 50px rgba(249, 202, 36, 0.3);
}

@media (max-width: 768px) {
    .promo-card .promo-content {
        padding: 2rem;
        min-height: 400px;
    }
    .promo-price {
        font-size: 2rem;
    }
    .promo-includes {
        grid-template-columns: 1fr;
    }
    .promo-title {
        font-size: 1.8rem;
    }
}

/* ============================================
   SLIDER DI MODAL - FIX (AUTO PLAY & HIDE SCROLLBAR)
   ============================================ */
.slider-container {
    user-select: none;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slide-item {
    min-width: 100%;
    position: relative;
    flex-shrink: 0;
}

.slide-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* HIDE SCROLLBAR */
.slider-container::-webkit-scrollbar {
    display: none;
}
.slider-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 2000;
    align-items: center; justify-content: center;
    padding: 2rem;
}
.modal-overlay.active { display: flex; }

.modal-content {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none;
    color: var(--text-dim); font-size: 2rem;
    cursor: pointer; transition: color 0.3s;
}
.modal-close:hover { color: #fff; }

.modal-title {
    font-family: var(--font-display);
    font-size: 1.8rem; font-weight: 700;
    margin-bottom: 0.5rem;
}
.modal-subtitle {
    color: var(--text-dim);
    margin-bottom: 1.5rem;
}

.modal-options {
    display: flex; flex-direction: column; gap: 1rem;
}
.modal-option-group {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
}
.modal-option-group h4 {
    font-size: 1rem; font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--cyan);
}
.modal-option-group .option-row {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.modal-option-group .option-btn {
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
    color: var(--text-dim);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.modal-option-group .option-btn:hover {
    border-color: var(--cyan);
    color: var(--cyan);
    background: rgba(0,240,255,0.05);
}
.modal-option-group .option-btn.active {
    border-color: var(--cyan);
    background: rgba(0,240,255,0.1);
    color: var(--cyan);
}

/* Action Buttons */
.product-action-buttons,
.game-action-buttons,
.medsos-action-buttons {
    display: flex;
    gap: 10px;
    margin-top: 0.75rem;
}

.product-action-buttons .btn-checkout,
.game-action-buttons .btn-checkout,
.medsos-action-buttons .btn-checkout {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--dark);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.product-action-buttons .btn-checkout:hover,
.game-action-buttons .btn-checkout:hover,
.medsos-action-buttons .btn-checkout:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(0,240,255,0.2);
}

.product-action-buttons .btn-confirm,
.game-action-buttons .btn-confirm,
.medsos-action-buttons .btn-confirm {
    flex: 1;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #25D366;
    background: rgba(37,211,102,0.05);
    color: #25D366;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.product-action-buttons .btn-confirm:hover,
.game-action-buttons .btn-confirm:hover,
.medsos-action-buttons .btn-confirm:hover {
    background: rgba(37,211,102,0.1);
    transform: scale(1.03);
}

.modal-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 1.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
}
.modal-wa-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(37,211,102,0.3);
}

/* ============================================
   SLIDER (UTAMA)
   ============================================ */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    z-index: 10;
}
.slider-btn:hover {
    background: rgba(0,240,255,0.3);
    transform: translateY(-50%) scale(1.1);
}
.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}
.slider-dot:hover { transform: scale(1.3); }

.back-btn {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s;
}
.back-btn:hover {
    border-color: var(--cyan);
    color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--border);
    padding: 2rem;
    background: rgba(5,10,20,0.95);
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.85rem; color: var(--text-dim); }
.logo-3d-sm { filter: drop-shadow(0 0 6px rgba(0,240,255,0.4)); }

/* ============================================
   RESPONSIVE - TETAP SAMA PERSIS DI SEMUA DEVICE
   ============================================ */
@media (max-width: 1024px) {
    .hook-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 0;
        min-height: 70vh;
    }
    .hook-content {
        padding: 2rem !important;
    }
}

@media (max-width: 768px) {
    .hook-container {
        grid-template-columns: 1fr 1fr !important;
        min-height: 70vh;
    }
    .hook-content {
        padding: 1.5rem !important;
    }
    .hook-title {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
    }
    .hook-desc {
        font-size: 0.95rem !important;
    }
    .hook-btn {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
    .hook-badge {
        font-size: 0.65rem !important;
        padding: 4px 12px !important;
    }
    .hook-visual {
        min-height: 300px;
        height: 100% !important;
    }
    .slideshow-container {
        position: absolute !important;
        height: 100% !important;
        border-radius: 0;
    }
    .slideshow-overlay {
        background: linear-gradient(90deg, rgba(5, 10, 20, 0.85) 0%, rgba(5, 10, 20, 0.3) 40%, transparent 70%) !important;
    }
    .hook-container.reverse .slideshow-overlay {
        background: linear-gradient(90deg, rgba(5, 10, 20, 0.85) 0%, rgba(5, 10, 20, 0.3) 40%, transparent 70%) !important;
    }
    .slideshow-indicators {
        bottom: 15px;
        gap: 8px;
    }
    .slideshow-indicators .dot {
        width: 10px;
        height: 10px;
    }
    .navbar {
        padding: 0 1rem !important;
        height: 60px !important;
    }
    .nav-center {
        display: flex !important;
        gap: 1rem !important;
    }
    .nav-link {
        font-size: 0.75rem !important;
    }
    .wa-btn {
        padding: 6px 12px !important;
        font-size: 0.7rem !important;
    }
    .wa-btn span {
        display: inline !important;
    }
    .logo-text {
        font-size: 1rem !important;
    }
    .logo-3d {
        width: 32px !important;
        height: 32px !important;
    }
    .typing-text {
        font-size: 1rem !important;
    }
    .typing-cursor {
        height: 1rem !important;
    }
    .katalog-section, .medsos-section, .game-section, .edukasi-section {
        padding: 4rem 1.5rem !important;
    }
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
    }
    .section-desc {
        font-size: 0.9rem !important;
    }
    .product-grid, .medsos-grid, .game-grid, .edukasi-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hook-container {
        grid-template-columns: 1fr 1fr !important;
        min-height: 60vh;
    }
    .hook-content {
        padding: 1rem !important;
    }
    .hook-title {
        font-size: clamp(1.2rem, 2.5vw, 1.6rem) !important;
        margin-bottom: 0.8rem !important;
    }
    .hook-desc {
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.8rem !important;
    }
    .hook-btn {
        padding: 6px 14px !important;
        font-size: 0.65rem !important;
        gap: 4px !important;
    }
    .hook-btn i {
        font-size: 0.7rem !important;
    }
    .hook-badge {
        font-size: 0.5rem !important;
        padding: 3px 8px !important;
        margin-bottom: 0.5rem !important;
    }
    .hook-visual {
        min-height: 150px;
        height: 100% !important;
    }
    .slideshow-container {
        position: absolute !important;
        height: 100% !important;
    }
    .slideshow-overlay {
        background: linear-gradient(90deg, rgba(5, 10, 20, 0.85) 0%, rgba(5, 10, 20, 0.3) 40%, transparent 70%) !important;
    }
    .hook-container.reverse .slideshow-overlay {
        background: linear-gradient(90deg, rgba(5, 10, 20, 0.85) 0%, rgba(5, 10, 20, 0.3) 40%, transparent 70%) !important;
    }
    .slideshow-indicators {
        bottom: 8px;
        gap: 5px;
    }
    .slideshow-indicators .dot {
        width: 6px;
        height: 6px;
    }
    .hook-card-float {
        padding: 4px 10px !important;
        font-size: 0.6rem !important;
        gap: 4px !important;
    }
    .hook-card-float i {
        font-size: 0.7rem !important;
    }
    .scroll-indicator {
        display: none !important;
    }
    .navbar {
        padding: 0 0.5rem !important;
        height: 50px !important;
    }
    .nav-center {
        display: flex !important;
        gap: 0.5rem !important;
    }
    .nav-link {
        font-size: 0.6rem !important;
    }
    .wa-btn {
        padding: 4px 8px !important;
        font-size: 0.6rem !important;
        gap: 4px !important;
    }
    .wa-btn span {
        display: inline !important;
        font-size: 0.55rem !important;
    }
    .logo-text {
        font-size: 0.8rem !important;
    }
    .logo-3d {
        width: 26px !important;
        height: 26px !important;
    }
    .typing-text {
        font-size: 0.8rem !important;
    }
    .typing-cursor {
        height: 0.8rem !important;
    }
    .katalog-section, .medsos-section, .game-section, .edukasi-section {
        padding: 2rem 0.8rem !important;
    }
    .section-header {
        margin-bottom: 1.5rem !important;
    }
    .section-eyebrow {
        font-size: 0.6rem !important;
    }
    .section-title {
        font-size: clamp(1rem, 2.5vw, 1.4rem) !important;
    }
    .section-desc {
        font-size: 0.7rem !important;
    }
    .product-grid, .medsos-grid, .game-grid, .edukasi-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
        gap: 0.6rem !important;
    }
    .product-card {
        padding: 1rem !important;
        min-height: 180px !important;
        border-radius: 14px !important;
    }
    .product-card .card-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.3rem !important;
        border-radius: 12px !important;
        margin-bottom: 0.5rem !important;
    }
    .product-card .card-icon img {
        width: 85% !important;
        height: 85% !important;
    }
    .product-card h3 {
        font-size: 0.75rem !important;
        margin-bottom: 0.2rem !important;
    }
    .product-card p {
        font-size: 0.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.4rem !important;
    }
    .product-card .price {
        font-size: 0.8rem !important;
        margin-bottom: 0.4rem !important;
    }
    .product-card .card-btn {
        padding: 6px !important;
        font-size: 0.6rem !important;
        border-radius: 8px !important;
    }
    .card-badge-top {
        font-size: 0.45rem !important;
        padding: 2px 6px !important;
        top: 8px !important;
        right: 8px !important;
    }
    .edukasi-tabs {
        gap: 6px !important;
        margin-bottom: 1.2rem !important;
    }
    .edukasi-tab {
        padding: 6px 12px !important;
        font-size: 0.65rem !important;
        border-radius: 10px !important;
    }
    .edukasi-card {
        padding: 0.8rem !important;
        min-height: 160px !important;
        border-radius: 14px !important;
    }
    .edukasi-card h4 {
        font-size: 0.75rem !important;
    }
    .edukasi-card p {
        font-size: 0.6rem !important;
    }
    .edukasi-card .price {
        font-size: 0.8rem !important;
    }
    .edukasi-card .edukasi-btn {
        padding: 6px !important;
        font-size: 0.6rem !important;
    }
    .modal-content {
        padding: 1rem !important;
        margin: 0.5rem !important;
        border-radius: 16px !important;
    }
    .modal-title {
        font-size: 1.2rem !important;
    }
    .modal-subtitle {
        font-size: 0.8rem !important;
    }
    .modal-option-group {
        padding: 0.8rem 1rem !important;
    }
    .modal-option-group h4 {
        font-size: 0.8rem !important;
    }
    .modal-option-group .option-btn {
        padding: 4px 10px !important;
        font-size: 0.7rem !important;
    }
    .product-action-buttons,
    .game-action-buttons,
    .medsos-action-buttons {
        flex-direction: row !important;
        gap: 6px !important;
    }
    .product-action-buttons .btn-checkout,
    .game-action-buttons .btn-checkout,
    .medsos-action-buttons .btn-checkout,
    .product-action-buttons .btn-confirm,
    .game-action-buttons .btn-confirm,
    .medsos-action-buttons .btn-confirm {
        padding: 8px !important;
        font-size: 0.7rem !important;
        border-radius: 8px !important;
    }
    .promo-card {
        min-height: 300px !important;
        border-radius: 16px !important;
    }
    .promo-card .promo-content {
        padding: 1.5rem !important;
        min-height: 300px !important;
    }
    .promo-badge {
        font-size: 0.6rem !important;
        padding: 4px 12px !important;
    }
    .promo-title {
        font-size: 1.2rem !important;
    }
    .promo-desc {
        font-size: 0.8rem !important;
    }
    .promo-price {
        font-size: 1.5rem !important;
    }
    .promo-original-price {
        font-size: 0.9rem !important;
    }
    .promo-discount {
        font-size: 0.7rem !important;
        padding: 2px 10px !important;
    }
    .promo-includes li {
        font-size: 0.7rem !important;
    }
    .promo-btn {
        padding: 10px 20px !important;
        font-size: 0.8rem !important;
    }
    .slider-btn {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.9rem !important;
    }
    .slide-item img {
        height: 200px !important;
    }
    .warning-modal {
        padding: 1.5rem 1rem !important;
        border-radius: 20px !important;
    }
    .warning-title {
        font-size: 1.2rem !important;
    }
    .warning-text {
        font-size: 0.85rem !important;
    }
    .warning-btn {
        padding: 12px 24px !important;
        font-size: 0.85rem !important;
    }
    .warning-icon {
        font-size: 3rem !important;
    }
}

/* ============================================
   PERBAIKAN GAMBAR HP - TANPA UBAH LAYOUT
   ============================================ */

/* PERBAIKAN SLIDESHOW GAMBAR AGAR SIMETRIS */
.slideshow-wrapper .slide-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #050a14 !important;
}

.slideshow-wrapper .slide-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    background: #050a14 !important;
}

.slideshow-wrapper {
    height: 100% !important;
}

.slideshow-container {
    height: 100% !important;
    min-height: 300px !important;
    background: #050a14 !important;
}

.hook-visual {
    min-height: 300px !important;
    height: 100% !important;
    background: #050a14 !important;
}

/* KHUSUS HP (max 768px) - TANPA UBAH LAYOUT */
@media (max-width: 768px) {
    .slideshow-container {
        min-height: 250px !important;
        height: 100% !important;
    }
    
    .hook-visual {
        min-height: 250px !important;
        height: 100% !important;
    }
    
    .slideshow-wrapper .slide-item {
        min-height: 250px !important;
    }
    
    .slideshow-wrapper .slide-item img {
        object-fit: contain !important;
        max-height: 250px !important;
    }
}

/* KHUSUS HP KECIL (max 480px) */
@media (max-width: 480px) {
    .slideshow-container {
        min-height: 150px !important;
    }
    
    .hook-visual {
        min-height: 150px !important;
    }
    
    .slideshow-wrapper .slide-item {
        min-height: 150px !important;
    }
    
    .slideshow-wrapper .slide-item img {
        max-height: 150px !important;
    }
}
/* PERBAIKAN JARAK VERTIKAL DI HP */
@media (max-width: 768px) {
    /* KECILKAN PADDING SECTION */
    .hook-section {
        padding: 40px 0 20px !important;
        min-height: auto !important;
    }
    
    /* KECILKAN PADDING CONTENT */
    .hook-content {
        padding: 1rem 1.2rem !important;
    }
    
    /* KECILKAN MARGIN BADGE */
    .hook-badge {
        margin-bottom: 0.3rem !important;
        font-size: 0.5rem !important;
        padding: 3px 10px !important;
    }
    
    /* KECILKAN MARGIN TITLE */
    .hook-title {
        margin-bottom: 0.3rem !important;
        font-size: clamp(1rem, 2.5vw, 1.4rem) !important;
        line-height: 1.2 !important;
    }
    
    /* KECILKAN MARGIN DESC */
    .hook-desc {
        margin-bottom: 0.5rem !important;
        font-size: 0.7rem !important;
        line-height: 1.4 !important;
    }
    
    /* KECILKAN PADDING BUTTON */
    .hook-btn {
        padding: 6px 14px !important;
        font-size: 0.65rem !important;
    }
    
    /* KECILKAN HEIGHT SLIDESHOW */
    .slideshow-container {
        min-height: 150px !important;
    }
    
    .hook-visual {
        min-height: 150px !important;
    }
}

@media (max-width: 480px) {
    .hook-section {
        padding: 20px 0 10px !important;
    }
    
    .hook-content {
        padding: 0.5rem 0.8rem !important;
    }
    
    .hook-title {
        font-size: 0.9rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .hook-desc {
        font-size: 0.55rem !important;
        margin-bottom: 0.3rem !important;
        line-height: 1.3 !important;
    }
    
    .hook-btn {
        padding: 4px 10px !important;
        font-size: 0.55rem !important;
    }
    
    .hook-badge {
        font-size: 0.4rem !important;
        padding: 2px 6px !important;
        margin-bottom: 0.2rem !important;
    }
    
    .slideshow-container {
        min-height: 100px !important;
    }
    
    .hook-visual {
        min-height: 100px !important;
    }
}