/* ============================================================
   LYNN.ID — Top Up Game
   Theme: Cyberpunk Tri-Color Gradient
   ============================================================ */

:root {
    --neon-cyan:    #00f3ff;
    --neon-purple:  #b026ff;
    --neon-pink:    #ff26be;
    --dark:         #0a0a12;
    --dark-2:       #111119;
    --dark-3:       #1a1a24;
}

* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background-color: var(--dark);
    color: #e2e8f0;
    font-family: 'Rajdhani', sans-serif;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(176, 38, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 38, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: -15%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: blobPulse 8s ease-in-out infinite alternate;
}

@keyframes blobPulse {
    from { transform: scale(1) translate(0, 0); }
    to   { transform: scale(1.15) translate(3%, 5%); }
}

.blob-pink {
    position: fixed;
    top: -10%;
    right: -10%;
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 38, 190, 0.14) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: blobPulse 10s ease-in-out infinite alternate-reverse;
}

/* ============================================================
   GLASS EFFECTS
   ============================================================ */
.glass-panel {
    background: rgba(10, 10, 18, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(176, 38, 255, 0.25);
}

.glass-card {
    background: rgba(17, 17, 25, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(176, 38, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.text-gradient {
    background: linear-gradient(135deg, #00f3ff, #b026ff, #ff26be);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-size: 200% auto;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0612 0%, #1e1030 50%, #150a1e 100%);
    border: 1px solid rgba(176, 38, 255, 0.3);
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(176, 38, 255, 0.15);
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(255, 38, 190, 0.35) 0%, transparent 65%);
    pointer-events: none;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.25) 0%, transparent 65%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 60%;
}

.hero-char {
    position: absolute;
    right: -20px;
    bottom: -20px;
    height: 110%;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(176, 38, 255, 0.6));
    pointer-events: none;
}

@media (max-width: 768px) {
    .hero-banner { padding: 1.5rem; min-height: 240px; }
    .hero-content { max-width: 75%; }
    .hero-char { height: 85%; right: -40px; }
}

/* ============================================================
   FLASH SALE SECTION
   ============================================================ */
.flash-section {
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.08), rgba(255, 38, 190, 0.08));
    border: 1px solid rgba(255, 38, 190, 0.25);
    border-radius: 1.5rem;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.flash-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.75rem;
    background: linear-gradient(135deg, #ff8dd9, #ff26be, #b026ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    letter-spacing: 0.05em;
}

.flash-sub {
    text-align: center;
    color: #9ca3af;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.flash-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1.25rem 0;
}

.cd-box {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(176, 38, 255, 0.15));
    border: 1.5px solid rgba(0, 243, 255, 0.4);
    border-radius: 0.75rem;
    min-width: 56px;
    padding: 0.5rem 0.6rem;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

.cd-num {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.8);
}

.cd-sep {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #ff26be;
}

.cd-label {
    font-size: 0.6rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

.flash-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(10, 10, 18, 0.7);
    border: 1px solid rgba(255, 38, 190, 0.3);
    border-radius: 1rem;
    padding: 0.75rem;
    transition: all 0.3s;
    cursor: pointer;
}

.flash-card:hover {
    border-color: rgba(255, 38, 190, 0.7);
    transform: translateX(4px);
    box-shadow: 0 0 20px rgba(255, 38, 190, 0.3);
}

.flash-card img {
    width: 48px;
    height: 48px;
    border-radius: 0.6rem;
    object-fit: cover;
    flex-shrink: 0;
}

/* ============================================================
   GAME CARD
   ============================================================ */
.game-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 1 / 1;
}

.game-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(176, 38, 255, 0.7);
    box-shadow:
        0 12px 35px rgba(176, 38, 255, 0.35),
        0 0 0 1px rgba(0, 243, 255, 0.3) inset;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-card:hover img {
    transform: scale(1.1);
}

.game-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 18, 0.98) 0%, rgba(10, 10, 18, 0.3) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.85rem;
    pointer-events: none;
}

.game-card-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.game-card-publisher {
    font-size: 0.7rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    opacity: 0.9;
}

.popular-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(135deg, #ff26be, #b026ff);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 0 12px rgba(255, 38, 190, 0.7);
}

/* ============================================================
   DENOM ITEM
   ============================================================ */
.denom-item {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 0.85rem;
    cursor: pointer;
    transition: all 0.25s;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.denom-item:hover {
    border-color: rgba(0, 243, 255, 0.5);
    background: var(--dark-3);
    transform: translateY(-2px);
}

.denom-item.selected {
    border-color: var(--neon-cyan);
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.1), rgba(176, 38, 255, 0.15));
    box-shadow:
        0 0 20px rgba(0, 243, 255, 0.35),
        0 0 0 1px rgba(0, 243, 255, 0.5) inset;
}

.denom-item .d-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.denom-item .d-price {
    font-size: 0.85rem;
    color: var(--neon-pink);
    font-weight: 700;
}

.denom-item .d-tag {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: #fff;
    font-size: 0.55rem;
    font-weight: 900;
    padding: 0.15rem 0.45rem;
    border-radius: 0.35rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ============================================================
   BUTTON
   ============================================================ */
.btn-primary {
    background: linear-gradient(135deg, #00f3ff 0%, #b026ff 50%, #ff26be 100%);
    background-size: 200% auto;
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 20px rgba(176, 38, 255, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-primary:hover {
    background-position: 100% 50%;
    box-shadow: 0 0 30px rgba(176, 38, 255, 0.6);
    transform: translateY(-2px);
}

.btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 243, 255, 0.4);
}

/* ============================================================
   SEARCH INPUT
   ============================================================ */
.search-input {
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    width: 100%;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.15);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input {
    width: 100%;
    background: var(--dark-2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 0.65rem;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.15);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-label {
    display: block;
    color: var(--neon-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
}

/* ============================================================
   BOTTOM NAV
   ============================================================ */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(176, 38, 255, 0.25);
    padding: 0.5rem 0.25rem calc(0.5rem + env(safe-area-inset-bottom));
    display: none;
}

.bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0.4rem 0.25rem;
    color: #6b7280;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: 0.5rem;
}

.bottom-nav-item i {
    font-size: 1.1rem;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: #00f3ff;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.6);
}

.bottom-nav-item.active i {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .bottom-nav { display: block; }
    body { padding-bottom: 80px; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #b026ff, #00f3ff);
    border-radius: 4px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fade-in-up 0.4s ease-out;
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(176, 38, 255, 0.4); }
    50%      { box-shadow: 0 0 40px rgba(176, 38, 255, 0.8); }
}

.animate-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

/* ============================================================
   LOADER
   ============================================================ */
#loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
    transition: opacity 0.5s;
}

#loader .spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(176, 38, 255, 0.15);
    border-top-color: var(--neon-cyan);
    border-right-color: var(--neon-purple);
    border-bottom-color: var(--neon-pink);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#bg-canvas {
    opacity: 0.55;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 640px) {
    .game-card-title { font-size: 0.75rem; }
    .game-card-publisher { font-size: 0.6rem; }
    .denom-item { padding: 0.7rem; }
    .denom-item .d-name { font-size: 0.8rem; }
    .denom-item .d-price { font-size: 0.75rem; }
}

.game-grid-section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #00f3ff;
    margin: 1.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================================
   POSTER BANNER — Full Width, Visual Only (No Click)
   ============================================================ */
.poster-banner {
    position: relative;
    border-radius: 1.75rem;
    overflow: hidden;
    border: 1.5px solid rgba(176, 38, 255, 0.4);
    background: linear-gradient(135deg, #0d0612 0%, #1e1030 50%, #150a1e 100%);
    box-shadow: 0 20px 60px rgba(176, 38, 255, 0.25);
    min-height: 340px;
    padding: 2rem;
    display: flex;
    align-items: center;
    pointer-events: none; /* TIDAK BISA DI-KLIK */
    user-select: none;
}

.poster-bg-gradient {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(176, 38, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 38, 255, 0.06) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.poster-bg-blob-1 {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(255, 38, 190, 0.4) 0%, transparent 65%);
    pointer-events: none;
}

.poster-bg-blob-2 {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.25) 0%, transparent 65%);
    pointer-events: none;
}

.poster-char {
    position: absolute;
    right: -20px;
    bottom: -30px;
    height: 105%;
    z-index: 2;
    filter: drop-shadow(0 0 40px rgba(176, 38, 255, 0.7));
    pointer-events: none;
    opacity: 0.9;
}

.poster-content {
    position: relative;
    z-index: 5;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
}

.poster-left {
    flex: 1;
    min-width: 280px;
    max-width: 65%;
}

/* Logo */
.poster-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: #fff;
}

.poster-logo i {
    font-size: 1.6rem;
    background: linear-gradient(135deg, #00f3ff, #b026ff, #ff26be);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(176, 38, 255, 0.8));
}

/* Flash Sale */
.poster-flash-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff26be, #b026ff);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 13px;
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 38, 190, 0.7);
    letter-spacing: 0.05em;
    animation: pulseBadge 1.5s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); box-shadow: 0 0 25px rgba(255, 38, 190, 0.7); }
    50% { transform: scale(1.04); box-shadow: 0 0 40px rgba(255, 38, 190, 1); }
}

.poster-flash-sub {
    color: #9ca3af;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Countdown */
.poster-countdown {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 1rem 0;
}

.poster-cd-box {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(176, 38, 255, 0.15));
    border: 1.5px solid rgba(0, 243, 255, 0.5);
    border-radius: 0.65rem;
    min-width: 52px;
    padding: 0.5rem 0.6rem;
    text-align: center;
    box-shadow: 0 0 18px rgba(0, 243, 255, 0.25);
}

.poster-cd-num {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 12px rgba(0, 243, 255, 0.9);
}

.poster-cd-sep {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: #ff26be;
    margin-top: -8px;
}

.poster-cd-label {
    font-size: 0.55rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

/* Promo list */
.poster-promos {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: 420px;
}

.poster-promo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 10, 18, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(176, 38, 255, 0.3);
    border-radius: 0.75rem;
    padding: 0.55rem 0.75rem;
}

.poster-promo-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.2), rgba(255, 38, 190, 0.2));
    border: 1px solid rgba(0, 243, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f3ff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.poster-promo-info {
    flex: 1;
    min-width: 0;
}

.poster-promo-name {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.poster-promo-denom {
    font-size: 0.65rem;
    color: #9ca3af;
}

.poster-promo-price {
    text-align: right;
    flex-shrink: 0;
}

.poster-price-old {
    font-size: 0.6rem;
    color: #6b7280;
    text-decoration: line-through;
    line-height: 1;
}

.poster-price-new {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    color: #ff26be;
    text-shadow: 0 0 10px rgba(255, 38, 190, 0.6);
}

/* QR */
.poster-right {
    flex-shrink: 0;
    text-align: center;
    z-index: 6;
}

.poster-qr-box {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 0.75rem;
    padding: 4px;
    margin: 0 auto 0.5rem;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.poster-qr-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.poster-cta-label {
    font-size: 0.6rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.poster-cta-url {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #00f3ff;
    text-shadow: 0 0 12px rgba(0, 243, 255, 0.7);
}

.poster-cta-contact {
    font-size: 0.65rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.poster-cta-contact i {
    color: #4ade80;
}

/* Mobile */
@media (max-width: 768px) {
    .poster-banner { padding: 1.25rem; min-height: auto; }
    .poster-char { height: 70%; opacity: 0.4; right: -40px; }
    .poster-content { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .poster-left { max-width: 100%; }
    .poster-right { display: flex; align-items: center; gap: 12px; text-align: left; }
    .poster-qr-box { width: 60px; height: 60px; margin: 0; }
    .poster-cd-box { min-width: 44px; padding: 0.4rem 0.5rem; }
    .poster-cd-num { font-size: 1.1rem; }
    .poster-cd-sep { font-size: 1.1rem; }
    .poster-promos { max-width: 100%; }
}

/* ============================================================
   BANNER WRAPPER
   ============================================================ */
.banner-wrapper {
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(176, 38, 255, 0.35);
    border: 1.5px solid rgba(176, 38, 255, 0.4);
    line-height: 0;
}

.banner-img {
    width: 100%;
    height: auto;
    max-height: 320px;      /* ← batasi tinggi */
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* ============================================================
   FLASH SALE HORIZONTAL
   ============================================================ */
.flash-horizontal {
    background: linear-gradient(135deg, rgba(176, 38, 255, 0.08), rgba(255, 38, 190, 0.08));
    border: 1px solid rgba(255, 38, 190, 0.25);
    border-radius: 1.25rem;
    padding: 1rem 1rem 1.25rem;
    position: relative;
    overflow: hidden;
}

.flash-horizontal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.flash-horizontal-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff26be, #b026ff);
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 14px;
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 38, 190, 0.7);
    letter-spacing: 0.05em;
    animation: pulseBadge 1.5s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); box-shadow: 0 0 25px rgba(255, 38, 190, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(255, 38, 190, 1); }
}

.flash-horizontal-countdown {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.fh-cd-label {
    color: #9ca3af;
    margin-right: 6px;
    font-weight: 600;
}

.fh-cd-box {
    background: rgba(0, 0, 0, 0.5);
    border: 1.5px solid rgba(0, 243, 255, 0.5);
    border-radius: 8px;
    padding: 4px 8px;
    min-width: 38px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.fh-cd-box span {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.8);
}

.fh-cd-sep {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    color: #ff26be;
    font-size: 15px;
}

/* Scroll Horizontal */
.flash-horizontal-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.flash-horizontal-scroll::-webkit-scrollbar {
    height: 5px;
}

.flash-horizontal-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(to right, #b026ff, #ff26be);
    border-radius: 3px;
}

/* Flash Card */
.flash-h-card {
    flex-shrink: 0;
    width: 180px;
    background: rgba(10, 10, 18, 0.85);
    border: 1.5px solid rgba(255, 38, 190, 0.4);
    border-radius: 1rem;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.flash-h-card:hover {
    border-color: rgba(255, 38, 190, 0.9);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 38, 190, 0.4);
}

.flash-h-card-img {
    width: 100%;
    height: 90px;
    border-radius: 0.65rem;
    object-fit: cover;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.flash-h-card-game {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.flash-h-card-denom {
    font-size: 10px;
    color: #9ca3af;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.flash-h-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}

.flash-h-price-old {
    font-size: 10px;
    color: #6b7280;
    text-decoration: line-through;
}

.flash-h-price-new {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 13px;
    color: #ff26be;
    text-shadow: 0 0 10px rgba(255, 38, 190, 0.6);
}

.flash-h-discount {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #ff26be, #b026ff);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    padding: 3px 7px;
    border-radius: 5px;
    letter-spacing: 0.05em;
    box-shadow: 0 0 12px rgba(255, 38, 190, 0.7);
}

.flash-h-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 6px;
}

.flash-h-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff26be, #b026ff);
    border-radius: 2px;
    transition: width 0.3s;
}

/* Mobile */
@media (max-width: 768px) {
    .flash-h-card { width: 155px; }
    .flash-h-card-img { height: 75px; }
    .flash-horizontal-title { font-size: 12px; padding: 6px 12px; }
    .fh-cd-box { min-width: 32px; padding: 3px 6px; }
    .fh-cd-box span { font-size: 13px; }
    .fh-cd-sep { font-size: 13px; }
    .fh-cd-label { display: none; }
}

/* Denom Flash Sale */
.denom-item.flash-active {
    border-color: rgba(255, 38, 190, 0.6);
    background: linear-gradient(135deg, rgba(255, 38, 190, 0.08), rgba(176, 38, 255, 0.08));
    box-shadow: 0 0 15px rgba(255, 38, 190, 0.2);
}

.d-tag-flash {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    background: linear-gradient(135deg, #ff26be, #b026ff);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 900;
    padding: 0.2rem 0.5rem;
    border-radius: 0.35rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 0 12px rgba(255, 38, 190, 0.6);
    animation: pulseFlash 1.5s ease-in-out infinite;
}

@keyframes pulseFlash {
    0%, 100% { box-shadow: 0 0 12px rgba(255, 38, 190, 0.6); }
    50% { box-shadow: 0 0 20px rgba(255, 38, 190, 1); }
}

.d-price-flash {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 0.2rem;
}

.d-price-old {
    font-size: 0.65rem;
    color: #6b7280;
    text-decoration: line-through;
}

.d-price-new {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    color: #ff26be;
    text-shadow: 0 0 10px rgba(255, 38, 190, 0.6);
}