* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: #060714; color: white; min-height: 100vh; overflow-x: hidden; }
:root { --primary: #a855f7; --dark: #060714; --glass: rgba(255, 255, 255, 0.05); }

/* FLASH SALE BAR */
.flash-sale-bar {
    background: linear-gradient(90deg, #ff4757, #ff6b81);
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3);
    margin-top: 80px; /* Jarak dari navbar */
    margin-bottom: -30px; /* Rapatkan ke konten bawah */
    animation: pulseBar 2s infinite;
}
@keyframes pulseBar {
    0% { box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3); }
    50% { box-shadow: 0 5px 25px rgba(255, 71, 87, 0.6); }
    100% { box-shadow: 0 5px 15px rgba(255, 71, 87, 0.3); }
}

/* INTRO LOADER */
.loader-wrapper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #02020a; display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 9999; }
.loader-text { font-size: 3rem; font-weight: 700; letter-spacing: 5px; margin-bottom: 20px; }
.dot { color: var(--primary); }
.loading-bar { width: 200px; height: 4px; background: #222; border-radius: 2px; }
.progress { width: 0%; height: 100%; background: var(--primary); animation: load 1.5s ease-in-out forwards; }
@keyframes load { 100% { width: 100%; } }

/* NAVBAR & SEARCH */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; position: fixed; width: 100%; top: 0; background: rgba(6,7,20,0.8); backdrop-filter: blur(10px); z-index: 100; }
.logo { font-size: 1.5rem; font-weight: 700; }
.accent { color: var(--primary); }
.nav-menu { display: flex; gap: 20px; }
.nav-link { color: #aaa; text-decoration: none; }
.nav-link.active, .nav-link:hover { color: white; }

/* SEARCH WRAPPER */
.search-wrapper { position: relative; width: 300px; margin: 0 20px; }
.search-wrapper input { width: 100%; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50px; padding: 10px 20px 10px 45px; color: white; font-size: 0.9rem; outline: none; transition: all 0.3s ease; }
.search-wrapper input:focus { background: rgba(168, 85, 247, 0.1); border-color: var(--primary); box-shadow: 0 0 15px rgba(168, 85, 247, 0.2); }
.search-wrapper i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #888; pointer-events: none; }

/* HERO SECTION */
.hero-section { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: 60px; background: radial-gradient(circle at center, rgba(168,85,247,0.1) 0%, rgba(6,7,20,1) 70%); }
.hero-content h4 { color: var(--primary); letter-spacing: 2px; }
.hero-content h1 { font-size: 4rem; line-height: 1.1; margin: 20px 0; }
.sketch-text { font-family: 'Architects Daughter'; color: transparent; -webkit-text-stroke: 1px var(--primary); }
.hero-content p { color: #888; max-width: 600px; margin: 0 auto 30px; }
.btn-main { padding: 15px 40px; border: 2px solid var(--primary); color: white; text-decoration: none; font-weight: bold; border-radius: 50px; transition: 0.3s; }
.btn-main:hover { background: var(--primary); box-shadow: 0 0 20px rgba(168,85,247,0.4); }
.spill-box { display: flex; justify-content: center; gap: 30px; margin-bottom: 40px; color: #ccc; }
.spill-item i { color: var(--primary); margin-right: 5px; }

/* STATS & TESTIMONI */
.stats-section { display: flex; justify-content: center; gap: 50px; padding: 50px 20px; background: rgba(255,255,255,0.02); border-top: 1px solid #222; border-bottom: 1px solid #222; }
.stat-item h2 { font-size: 2.5rem; color: var(--primary); font-weight: 800; }
.stat-item p { color: #888; letter-spacing: 2px; }
.testi-section { padding: 100px 5%; text-align: center; background: linear-gradient(180deg, rgba(6,7,20,0) 0%, rgba(6,7,20,1) 100%); }
.section-header { font-size: 2.5rem; margin-bottom: 60px; font-weight: 800; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; justify-content: center; }
.testi-card { background: #0f1121; padding: 35px; border-radius: 20px; text-align: left; border: 1px solid rgba(255,255,255,0.05); box-shadow: 0 10px 30px rgba(0,0,0,0.2); transition: 0.3s; }
.testi-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.user-profile { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.user-profile img { width: 60px; height: 60px; border-radius: 50%; border: 2px solid var(--primary); }
.stars { color: #FFD700; font-size: 0.9rem; }
.testi-card p { color: #a1a1aa; font-style: italic; line-height: 1.6; }

/* FOOTER */
footer { background: #020205; padding: 50px 20px 20px; text-align: center; margin-top: 50px; }
.footer-content h3 { font-size: 1.5rem; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid #222; padding-top: 20px; color: #444; font-size: 0.8rem; }

/* ETALASE PRODUK */
.etalase-section { padding: 100px 5%; background: #080916; }
.container-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.product-card { background: var(--glass); border: 1px solid rgba(255,255,255,0.1); border-radius: 15px; padding: 20px; transition: 0.3s; cursor: pointer; position: relative; overflow: hidden; }
.product-card:hover { transform: translateY(-5px); border-color: var(--primary); }

/* GAMBAR PRODUK */
.card-img-placeholder { padding: 0 !important; height: 140px; overflow: hidden; position: relative; background: #0f1121; display: flex; justify-content: center; align-items: center; border-radius: 10px; margin-bottom: 15px; }
.real-prod-img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; transition: transform 0.4s ease; }
.product-card:hover .real-prod-img { transform: scale(1.1); }
.fallback-icon { font-size: 3rem; color: #333; }
.prod-title { font-weight: 600; margin-bottom: 5px; }
.prod-price { color: var(--primary); font-weight: bold; }

/* STYLE DISKON */
.discount-badge { position: absolute; top: 10px; right: 10px; background: #ff4757; color: white; font-size: 0.75rem; font-weight: bold; padding: 3px 8px; border-radius: 4px; z-index: 10; box-shadow: 0 0 10px rgba(255, 71, 87, 0.4); }
.price-wrapper { display: flex; align-items: center; gap: 8px; }
.coret-price { text-decoration: line-through; color: #777; font-size: 0.8rem; }

/* HELP CARD */
.help-card { background: #0f1121; padding: 30px; border-radius: 20px; border-left: 4px solid var(--primary); position: sticky; top: 100px; }
.step-list { list-style: none; margin: 20px 0; }
.step-list li { display: flex; gap: 15px; margin-bottom: 15px; color: #aaa; }
.step-num { background: var(--primary); width: 25px; height: 25px; display: flex; justify-content: center; align-items: center; border-radius: 50%; color: white; font-weight: bold; flex-shrink: 0; }
.btn-wa { display: block; background: #25D366; color: white; text-align: center; padding: 10px; border-radius: 8px; text-decoration: none; font-weight: bold; }

/* MODAL */
.modal { display: none; position: fixed; z-index: 200; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); }
.modal-content { background: #151725; margin: 10% auto; padding: 30px; width: 90%; max-width: 500px; border-radius: 20px; border: 1px solid #333; position: relative; }
.close-btn { position: absolute; right: 20px; top: 15px; font-size: 24px; cursor: pointer; }
.badge { background: #ffbd00; color: black; padding: 2px 8px; border-radius: 4px; font-size: 10px; }
.price-box h3 { color: white; font-size: 1.5rem; }
.btn-pay { width: 100%; background: var(--primary); border: none; padding: 15px; color: white; font-weight: bold; border-radius: 10px; cursor: pointer; margin-top: 20px; }


/* =========================================
   NEW CYBER PAYMENT UI (FULL)
   ========================================= */

.payment-body-cyber {
    background-color: #05050a;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    color: white;
}

/* Background Effects */
.grid-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}
.cyber-blob {
    position: fixed; width: 300px; height: 300px; border-radius: 50%;
    filter: blur(100px); z-index: -2; opacity: 0.5;
}
.blob-top { top: -50px; left: -50px; background: #a855f7; }
.blob-bottom { bottom: -50px; right: -50px; background: #3b82f6; }

/* Main Container */
.checkout-container {
    width: 100%; max-width: 480px;
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    margin: 20px;
}

/* Header */
.checkout-header {
    display: flex; align-items: center; gap: 15px;
    margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}
.header-icon {
    width: 50px; height: 50px; background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-radius: 12px; display: flex; justify-content: center; align-items: center; font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}
.checkout-header h1 { font-size: 1.2rem; font-weight: 700; margin: 0; }
.checkout-header p { font-size: 0.8rem; color: #aaa; margin: 0; }
.timer-badge {
    margin-left: auto; background: rgba(239, 68, 68, 0.2); color: #ff6b6b;
    padding: 5px 10px; border-radius: 8px; font-size: 0.85rem; font-weight: bold;
    display: flex; align-items: center; gap: 5px; border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Order Summary Box */
.order-summary-box {
    background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px; padding: 15px;
    display: flex; align-items: center; gap: 15px; margin-bottom: 25px;
}
.product-icon-box img { width: 50px; height: 50px; object-fit: contain; }
.product-info .label { font-size: 0.75rem; color: #888; display: block; }
.product-info h2 { font-size: 1rem; margin: 2px 0; font-weight: 600; }
.price-tag { color: #a855f7; font-weight: bold; font-size: 1.1rem; text-shadow: 0 0 10px rgba(168, 85, 247, 0.3); }

/* Method Grid */
.section-title { font-size: 0.9rem; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
.method-card {
    background: rgba(255,255,255,0.03); border: 2px solid rgba(255,255,255,0.05);
    border-radius: 16px; padding: 15px; text-align: center; cursor: pointer;
    position: relative; transition: 0.3s;
}
.method-card img { height: 25px; margin-bottom: 5px; }
.method-card span { display: block; font-size: 0.8rem; color: #ccc; }
.method-card.active {
    border-color: #a855f7; background: rgba(168, 85, 247, 0.1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}
.check-circle {
    position: absolute; top: 5px; right: 5px; width: 20px; height: 20px;
    background: #a855f7; border-radius: 50%; font-size: 10px;
    display: flex; justify-content: center; align-items: center; color: white;
}
.method-card.disabled { opacity: 0.5; cursor: not-allowed; filter: grayscale(1); }

/* QRIS Area - CLEAN (No Red Line) */
.qris-area { text-align: center; margin-bottom: 30px; }
.scan-frame {
    width: 220px; height: 220px; background: white; padding: 10px;
    border-radius: 20px; margin: 0 auto 15px; position: relative;
    overflow: hidden; box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
    border: 4px solid #a855f7;
}
.qris-img { width: 100%; height: 100%; object-fit: contain; }
.scan-hint { font-size: 0.8rem; color: #aaa; max-width: 80%; margin: 0 auto; line-height: 1.5; }

/* Buttons */
.action-buttons { display: flex; flex-direction: column; gap: 15px; }
.btn-confirm-cyber {
    display: flex; justify-content: center; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white; padding: 16px; border-radius: 14px; text-decoration: none;
    font-weight: 700; font-size: 1rem; position: relative; overflow: hidden;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: 0.3s;
}
.btn-confirm-cyber:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4); }
.btn-glow {
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}
@keyframes shine { 100% { left: 150%; } }

.divider { text-align: center; position: relative; margin: 5px 0; }
.divider::before {
    content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px;
    background: rgba(255,255,255,0.1); z-index: 1;
}
.divider span { background: #13131f; position: relative; z-index: 2; padding: 0 10px; font-size: 0.7rem; color: #666; }

.btn-redeem-outline {
    display: flex; justify-content: center; align-items: center; gap: 8px;
    border: 1px solid rgba(255,255,255,0.2); color: #ccc;
    padding: 14px; border-radius: 14px; text-decoration: none;
    font-size: 0.9rem; transition: 0.3s;
}
.btn-redeem-outline:hover { border-color: #a855f7; color: white; background: rgba(168, 85, 247, 0.05); }

.footer-secure { text-align: center; font-size: 0.75rem; color: #555; margin-top: 20px; }
/* =========================================
   STYLE TAMBAHAN (PAYMENT)
   ========================================= */

.payment-body-cyber {
    background-color: #05050a;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    color: white;
}

/* Background Effects */
.grid-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}
.cyber-blob {
    position: fixed; width: 300px; height: 300px; border-radius: 50%;
    filter: blur(100px); z-index: -2; opacity: 0.5;
}
.blob-top { top: -50px; left: -50px; background: #a855f7; }
.blob-bottom { bottom: -50px; right: -50px; background: #3b82f6; }

/* Main Container */
.checkout-container {
    width: 100%; max-width: 480px;
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    margin: 20px;
}

/* Header */
.checkout-header {
    display: flex; align-items: center; gap: 15px;
    margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}
.header-icon {
    width: 50px; height: 50px; background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-radius: 12px; display: flex; justify-content: center; align-items: center; font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}
.checkout-header h1 { font-size: 1.2rem; font-weight: 700; margin: 0; }
.checkout-header p { font-size: 0.8rem; color: #aaa; margin: 0; }
.timer-badge {
    margin-left: auto; background: rgba(239, 68, 68, 0.2); color: #ff6b6b;
    padding: 5px 10px; border-radius: 8px; font-size: 0.85rem; font-weight: bold;
    display: flex; align-items: center; gap: 5px; border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Order Summary Box */
.order-summary-box {
    background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px; padding: 15px;
    display: flex; align-items: center; gap: 15px; margin-bottom: 25px;
}
.product-icon-box {
    width: 50px; height: 50px; background: rgba(255,255,255,0.1); 
    border-radius: 12px; display: flex; justify-content: center; align-items: center;
}
.product-info .label { font-size: 0.75rem; color: #888; display: block; }
.product-info h2 { font-size: 1rem; margin: 2px 0; font-weight: 600; }
.price-tag { color: #a855f7; font-weight: bold; font-size: 1.1rem; text-shadow: 0 0 10px rgba(168, 85, 247, 0.3); }

/* Method Grid */
.section-title { font-size: 0.9rem; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
.method-card {
    background: rgba(255,255,255,0.03); border: 2px solid rgba(255,255,255,0.05);
    border-radius: 16px; padding: 15px; text-align: center; cursor: pointer;
    position: relative; transition: 0.3s;
}
.method-card img { height: 25px; margin-bottom: 5px; }
.method-card span { display: block; font-size: 0.8rem; color: #ccc; }
.method-card.active {
    border-color: #a855f7; background: rgba(168, 85, 247, 0.1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}
.method-card.active .check-circle { display: flex; }
.check-circle {
    position: absolute; top: 5px; right: 5px; width: 20px; height: 20px;
    background: #a855f7; border-radius: 50%; font-size: 10px;
    display: none; justify-content: center; align-items: center; color: white;
}

/* Payment Display Areas */
.qris-area { text-align: center; margin-bottom: 30px; }
.scan-frame {
    width: 220px; height: 220px; background: white; padding: 10px;
    border-radius: 20px; margin: 0 auto 15px; position: relative;
    overflow: hidden; box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
    border: 4px solid #a855f7;
}
.qris-img { width: 100%; height: 100%; object-fit: contain; }
.scan-hint { font-size: 0.8rem; color: #aaa; max-width: 80%; margin: 0 auto; line-height: 1.5; }

/* WALLET CARD STYLE (NEW) */
.wallet-card {
    width: 100%; height: 180px;
    background: linear-gradient(135deg, #4c3494, #321f66); /* Default OVO color */
    border-radius: 20px; position: relative; padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.1);
}
.wallet-logo { font-size: 1.5rem; font-weight: 800; font-style: italic; opacity: 0.8; }
.wallet-chip {
    margin-top: 15px; font-size: 2rem;
    background: linear-gradient(45deg, #FFD700, #DAA520);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.wallet-number {
    font-size: 1.4rem; font-family: monospace; letter-spacing: 2px;
    margin-top: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.wallet-name {
    position: absolute; bottom: 20px; left: 20px;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7;
}
.btn-copy {
    width: 100%; padding: 12px; background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 12px;
    color: white; cursor: pointer; transition: 0.3s; margin-bottom: 20px;
}
.btn-copy:hover { background: rgba(255,255,255,0.2); }

/* Buttons */
.action-buttons { display: flex; flex-direction: column; gap: 15px; }
.btn-confirm-cyber {
    display: flex; justify-content: center; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white; padding: 16px; border-radius: 14px; text-decoration: none;
    font-weight: 700; font-size: 1rem; position: relative; overflow: hidden;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: 0.3s;
}
.btn-confirm-cyber:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4); }
.btn-glow {
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}
@keyframes shine { 100% { left: 150%; } }

.divider { text-align: center; position: relative; margin: 5px 0; }
.divider::before {
    content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px;
    background: rgba(255,255,255,0.1); z-index: 1;
}
.divider span { background: #13131f; position: relative; z-index: 2; padding: 0 10px; font-size: 0.7rem; color: #666; }

.btn-redeem-outline {
    display: flex; justify-content: center; align-items: center; gap: 8px;
    border: 1px solid rgba(255,255,255,0.2); color: #ccc;
    padding: 14px; border-radius: 14px; text-decoration: none;
    font-size: 0.9rem; transition: 0.3s;
}
.btn-redeem-outline:hover { border-color: #a855f7; color: white; background: rgba(168, 85, 247, 0.05); }

.footer-secure { text-align: center; font-size: 0.75rem; color: #555; margin-top: 20px; }
/* =========================================
   STYLE TAMBAHAN (PAYMENT UPDATE)
   ========================================= */

.payment-body-cyber {
    background-color: #05050a;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    color: white;
}

/* Background Effects */
.grid-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}
.cyber-blob {
    position: fixed; width: 300px; height: 300px; border-radius: 50%;
    filter: blur(100px); z-index: -2; opacity: 0.5;
}
.blob-top { top: -50px; left: -50px; background: #a855f7; }
.blob-bottom { bottom: -50px; right: -50px; background: #3b82f6; }

/* Main Container */
.checkout-container {
    width: 100%; max-width: 480px;
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    margin: 20px;
}

/* Header */
.checkout-header {
    display: flex; align-items: center; gap: 15px;
    margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}
.header-icon {
    width: 50px; height: 50px; background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-radius: 12px; display: flex; justify-content: center; align-items: center; font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}
.checkout-header h1 { font-size: 1.2rem; font-weight: 700; margin: 0; }
.checkout-header p { font-size: 0.8rem; color: #aaa; margin: 0; }
.timer-badge {
    margin-left: auto; background: rgba(239, 68, 68, 0.2); color: #ff6b6b;
    padding: 5px 10px; border-radius: 8px; font-size: 0.85rem; font-weight: bold;
    display: flex; align-items: center; gap: 5px; border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Order Summary Box */
.order-summary-box {
    background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px; padding: 15px;
    display: flex; align-items: center; gap: 15px; margin-bottom: 25px;
}
.product-icon-box {
    width: 50px; height: 50px; background: rgba(255,255,255,0.1); 
    border-radius: 12px; display: flex; justify-content: center; align-items: center;
}
.product-info .label { font-size: 0.75rem; color: #888; display: block; }
.product-info h2 { font-size: 1rem; margin: 2px 0; font-weight: 600; }
.price-tag { color: #a855f7; font-weight: bold; font-size: 1.1rem; text-shadow: 0 0 10px rgba(168, 85, 247, 0.3); }

/* Method Grid */
.section-title { font-size: 0.9rem; color: #aaa; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
.method-card {
    background: rgba(255,255,255,0.03); border: 2px solid rgba(255,255,255,0.05);
    border-radius: 16px; padding: 15px; text-align: center; cursor: pointer;
    position: relative; transition: 0.3s;
}
.method-card img { height: 25px; margin-bottom: 5px; }
.method-card span { display: block; font-size: 0.8rem; color: #ccc; }
.method-card.active {
    border-color: #a855f7; background: rgba(168, 85, 247, 0.1);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.1);
}
.method-card.active .check-circle { display: flex; }
.check-circle {
    position: absolute; top: 5px; right: 5px; width: 20px; height: 20px;
    background: #a855f7; border-radius: 50%; font-size: 10px;
    display: none; justify-content: center; align-items: center; color: white;
}

/* Payment Display Areas */
.qris-area { text-align: center; margin-bottom: 30px; }
.scan-frame {
    width: 220px; height: 220px; background: white; padding: 10px;
    border-radius: 20px; margin: 0 auto 15px; position: relative;
    overflow: hidden; box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
    border: 4px solid #a855f7;
}
.qris-img { width: 100%; height: 100%; object-fit: contain; }
.scan-hint { font-size: 0.8rem; color: #aaa; max-width: 80%; margin: 0 auto; line-height: 1.5; }

/* WALLET CARD STYLE */
.wallet-card {
    width: 100%; height: 180px;
    background: linear-gradient(135deg, #4c3494, #321f66); 
    border-radius: 20px; position: relative; padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 15px; border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}
.wallet-logo { font-size: 1.5rem; font-weight: 800; font-style: italic; opacity: 0.8; }
.wallet-chip {
    margin-top: 15px; font-size: 2rem;
    background: linear-gradient(45deg, #FFD700, #DAA520);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.wallet-number {
    font-size: 1.4rem; font-family: monospace; letter-spacing: 2px;
    margin-top: 20px; text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.wallet-name {
    position: absolute; bottom: 20px; left: 20px;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7;
}

/* TOMBOL BUKA APLIKASI (FLASHY) */
.btn-app-link {
    display: flex; justify-content: center; align-items: center; gap: 8px;
    background: white; color: #060714; padding: 12px;
    border-radius: 12px; font-weight: 800; text-decoration: none;
    margin-bottom: 20px; transition: 0.3s;
    box-shadow: 0 5px 15px rgba(255,255,255,0.2);
}
.btn-app-link:hover { transform: scale(1.02); background: #a855f7; color: white; box-shadow: 0 5px 20px rgba(168, 85, 247, 0.5); }

/* TOAST COPY NOTIFICATION */
.copy-toast {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%) translateY(-20px);
    background: #25D366; color: white; padding: 8px 15px; border-radius: 20px;
    font-size: 0.8rem; font-weight: bold; opacity: 0; transition: 0.3s;
    pointer-events: none; z-index: 10;
}

/* Buttons */
.action-buttons { display: flex; flex-direction: column; gap: 15px; }
.btn-confirm-cyber {
    display: flex; justify-content: center; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white; padding: 16px; border-radius: 14px; text-decoration: none;
    font-weight: 700; font-size: 1rem; position: relative; overflow: hidden;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
    transition: 0.3s;
}
.btn-confirm-cyber:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4); }
.btn-glow {
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}
@keyframes shine { 100% { left: 150%; } }

.divider { text-align: center; position: relative; margin: 5px 0; }
.divider::before {
    content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px;
    background: rgba(255,255,255,0.1); z-index: 1;
}
.divider span { background: #13131f; position: relative; z-index: 2; padding: 0 10px; font-size: 0.7rem; color: #666; }

.btn-redeem-outline {
    display: flex; justify-content: center; align-items: center; gap: 8px;
    border: 1px solid rgba(255,255,255,0.2); color: #ccc;
    padding: 14px; border-radius: 14px; text-decoration: none;
    font-size: 0.9rem; transition: 0.3s;
}
.btn-redeem-outline:hover { border-color: #a855f7; color: white; background: rgba(168, 85, 247, 0.05); }

.footer-secure { text-align: center; font-size: 0.75rem; color: #555; margin-top: 20px; }
/* =========================================
   REDEEM PAGE CYBER STYLE
   ========================================= */

.redeem-box-cyber {
    position: relative;
    margin-bottom: 25px;
    margin-top: 10px;
}

.redeem-box-cyber input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    outline: none;
    transition: 0.3s;
}

.redeem-box-cyber input:focus {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.05);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.redeem-box-cyber input::placeholder {
    color: #555;
    font-weight: 400;
    letter-spacing: 0;
}

.input-icon-cyber {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #a855f7;
    font-size: 1.2rem;
}

/* Animasi Shake kalau salah password */
@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}