:root {
    --primary: #6C5DD3;
    --gold: #FFD700;
    --bg-dark: #050505;
    --glass: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.1);
}

body {
    margin: 0; padding: 0; min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: white; background: var(--bg-dark);
    overflow-x: hidden; display: flex; flex-direction: column;
    user-select: none; -webkit-tap-highlight-color: transparent;
}

.orb {
    position: fixed; border-radius: 50%; filter: blur(90px); z-index: -1;
    opacity: 0.5;
}
.orb-1 { top: -10%; left: -20%; width: 300px; height: 300px; background: var(--primary); }
.orb-2 { bottom: 10%; right: -20%; width: 250px; height: 250px; background: var(--gold); }

.promo-banner {
    background: linear-gradient(90deg, #FF8C00, #FFD700);
    color: #000; text-align: center; font-size: 13px; font-weight: 800;
    padding: 10px; text-transform: uppercase;
}

.header { padding: 30px 20px 10px; text-align: center; }
.holo-container {
    width: 130px; height: 130px; margin: 0 auto 15px;
    border-radius: 50%; overflow: hidden;
    border: 3px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 30px rgba(108, 93, 211, 0.5);
    background: #000; display: flex; align-items: center; justify-content: center;
}
.duck-video { width: 100%; height: 100%; object-fit: cover; }

.balance-pill {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--glass); padding: 8px 16px;
    border-radius: 14px; font-size: 14px; font-weight: 700;
    border: 1px solid var(--border);
}
.bal-val { color: #00E676; }

.tabs-wrapper { padding: 15px 20px; }
.tabs { display: flex; background: rgba(255,255,255,0.05); border-radius: 14px; padding: 4px; }
.tab {
    flex: 1; padding: 10px; text-align: center; border-radius: 10px;
    font-weight: 700; font-size: 13px; cursor: pointer; transition: 0.3s;
    color: rgba(255,255,255,0.6);
}
.tab.active { background: rgba(255, 215, 0, 0.15); color: var(--gold); }

.container { display: none; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 20px 50px; }
.container.active { display: grid; }

.card {
    background: var(--glass); border: 1px solid var(--border);
    border-radius: 18px; padding: 15px; text-align: center;
    transition: 0.2s; cursor: pointer;
}
.card:active { transform: scale(0.96); }
.card.selected { border-color: var(--gold); background: rgba(255, 215, 0, 0.1); }

.icon-img { width: 70px; height: 70px; margin-bottom: 8px; object-fit: contain; }
.title { font-weight: 800; font-size: 15px; margin-bottom: 5px; }
.price-badge { font-size: 14px; font-weight: 700; color: #fff; background: rgba(255,255,255,0.1); padding: 5px 10px; border-radius: 8px; }
.card.selected .price-badge { background: var(--gold); color: #000; }

/* Слайдер */
.slider-card { grid-column: span 2; display: flex; flex-direction: column; gap: 10px; padding: 20px; }
.slider-info { display: flex; justify-content: space-between; font-weight: 800; font-size: 18px; }
input[type=range] { width: 100%; accent-color: var(--gold); }