/* ===== BASE STYLES & RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #111216;
    color: #f1f1f1;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Base Variables */
:root {
    --roblox-red: #E2231A;
    --robux-gold: #FFB000;
    --robux-gold-glow: #ffc13b;
    --dark-bg: #1B1E23;
    --darker-bg: #111216;
    --glass-bg: rgba(27, 30, 35, 0.7);
    --border-color: rgba(255, 255, 255, 0.08);
    --accent: #E2231A;
}

.gold-text { color: var(--robux-gold); }
.accent-text { color: var(--accent); }

/* Background Base Layer */
.bg-layer {
    position: fixed; top: 0; left: 0; width: 110vw; height: 110vh;
    background: url('https://images.unsplash.com/photo-1628155930542-3c7a64e2c833?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    filter: blur(5px) brightness(0.25);
    transform: translate(-5%, -5%);
    animation: panBg 30s ease-in-out infinite alternate;
    z-index: -3;
}

.bg-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 50% 50%, rgba(27, 30, 35, 0.4) 0%, #111216 100%);
    z-index: -2;
}

@keyframes panBg {
    0% { transform: translate(-5%, -5%) scale(1); }
    100% { transform: translate(0, 0) scale(1.1); }
}

/* Background Particles */
#particles-container {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    opacity: 0.15;
    background-image: url('https://img.icons8.com/color/color/robux.png');
    background-size: contain;
    animation: floatUp linear infinite;
    filter: drop-shadow(0 0 8px rgba(255, 176, 0, 0.4));
}

@keyframes floatUp {
    0% { transform: translateY(100vh) rotate(0deg) scale(0.8); opacity: 0; }
    10% { opacity: 0.2; }
    90% { opacity: 0.2; }
    100% { transform: translateY(-100px) rotate(360deg) scale(1.2); opacity: 0; }
}

/* ===== HEADER ===== */
.site-header {
    width: 100%;
    max-width: 1200px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 32px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
}

.logo-text {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a0aab2;
    background: rgba(0,0,0,0.3);
    padding: 6px 14px;
    border-radius: 20px;
}

.pulse-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: pulse 2s infinite;
}

/* ===== MAIN SECTION ===== */
.main-container {
    width: 100%;
    max-width: 800px;
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Hero */
.hero {
    text-align: center;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-sub {
    font-size: 1.1rem;
    color: #b0bac9;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

#live-users { color: #10b981; font-weight: 800; }

/* ===== WIZARD CONTAINER ===== */
.wizard-box {
    width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    position: relative;
}

.progress-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.progress-step {
    font-size: 0.85rem;
    font-weight: 800;
    color: #5b6270;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.progress-step.active {
    color: var(--robux-gold);
    text-shadow: 0 0 10px rgba(255, 176, 0, 0.5);
}

.progress-line {
    flex-grow: 1;
    height: 2px;
    background: #2a2e37;
    margin: 0 15px;
    transition: all 0.3s;
}

.progress-line.active { background: var(--robux-gold); }

/* Steps general */
.wizard-step {
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.4s ease;
}

.wizard-step h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
}

/* STEP 1: Inputs */
.input-grp { width: 100%; margin-bottom: 25px; }

.input-grp label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #a0aab2;
}

.input-grp input {
    width: 100%;
    background: #15171b;
    border: 2px solid #2a2e37;
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    outline: none;
    transition: all 0.3s;
}

.input-grp input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(226, 35, 26, 0.2);
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
}

.platform-btn {
    background: #15171b;
    border: 2px solid #2a2e37;
    border-radius: 10px;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: #8892b0;
    transition: all 0.2s;
}

.platform-btn:hover { border-color: #4a5468; color: #fff; }

.platform-btn.active {
    background: rgba(226, 35, 26, 0.1);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 4px 15px rgba(226, 35, 26, 0.2);
}

/* Generic Buttons */
.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.action-btn {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(226, 35, 26, 0.3);
}

.action-btn:hover {
    background: #ff3329;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(226, 35, 26, 0.4);
}

.action-btn.secondary {
    background: #2a2e37;
    box-shadow: none;
}
.action-btn.secondary:hover { background: #3a404c; }

/* STEP 2: Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.robux-pack {
    background: #15171b;
    border: 2px solid #2a2e37;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.robux-pack img { height: 60px; margin-bottom: 12px; transition: transform 0.3s; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)); }
.robux-pack .pack-amount { font-size: 1.4rem; font-weight: 900; color: #fff; }

.pack-badge {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(226,35,26,0.5);
    z-index: 2;
}

.pack-badge.premium { background: #8b5cf6; box-shadow: 0 2px 8px rgba(139,92,246,0.5); }
.pack-badge.vip { background: #10b981; box-shadow: 0 2px 8px rgba(16,185,129,0.5); }

.robux-pack.recommended { border-color: var(--accent); background: rgba(226,35,26,0.05); }

.robux-pack:hover, .robux-pack.active {
    border-color: var(--robux-gold);
    background: rgba(255,176,0,0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,176,0,0.15);
}
.robux-pack:hover img, .robux-pack.active img { transform: scale(1.1); }
.robux-pack.active .pack-amount { color: var(--robux-gold); }


/* STEP 3: Console */
.status-cards {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.status-card {
    flex: 1;
    background: #15171b;
    border: 1px solid #2a2e37;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.status-card span { font-size: 0.8rem; color: #8892b0; font-weight: 700; text-transform: uppercase; }
.status-card strong { font-size: 1.2rem; font-weight: 800; }

.hack-hud {
    background: #0d0f12; border: 2px solid #2a2e37; border-radius: 12px; padding: 15px;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8), 0 8px 15px rgba(0,0,0,0.4);
    font-family: 'Courier New', Courier, monospace; position: relative;
    overflow: hidden;
}

.hack-hud::after {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(rgba(16, 185, 129, 0.03) 50%, rgba(0,0,0,0.2) 50%);
    background-size: 100% 4px; pointer-events: none; z-index: 10;
}

.hud-top { display: flex; justify-content: space-between; font-size: 0.8rem; color: #fff; margin-bottom: 15px; font-weight: bold; border-bottom: 1px dashed rgba(255,255,255,0.1); padding-bottom: 8px;}
.blink-fast { animation: blink 1s step-end infinite; }

.terminal-container {
    width: 100%; background: #000; border-radius: 8px; border: 1px solid #2a2e37;
    overflow: hidden; margin-bottom: 15px;
}

.terminal-header {
    background: #1a1d24; padding: 8px 12px; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid #2a2e37;
}

.dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid #000; }
.dot.red { background: #ef4444; } .dot.yellow { background: #f59e0b; } .dot.green { background: #10b981; }
.term-title { font-size: 0.85rem; color: #8892b0; font-weight: bold; }

.terminal-split { display: flex; height: 160px; }
.terminal-body {
    flex: 3; padding: 10px; overflow-y: auto; font-family: 'Courier New', monospace;
    font-size: 0.85rem; font-weight: 700; line-height: 1.4; border-right: 1px dashed #2a2e37;
}
.terminal-sidebar {
    flex: 1; padding: 10px; overflow-y: hidden; font-size: 0.75rem; color: #8892b0; text-align: right; opacity: 0.7;
}

.terminal-body p { margin-bottom: 4px; }
.sys { color: #8892b0; } .inf { color: #3b82f6; } .suc { color: #10b981; } .act { color: var(--robux-gold); } .err { color: #ef4444; font-weight: bold;}

.bars-container { display: flex; gap: 15px; margin-bottom: 15px; }
.bar-group { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.bar-label { font-size: 0.8rem; color: #8892b0; font-weight: 800; }

.progress-track { width: 100%; background: #15171b; border: 1px solid #2a2e37; border-radius: 4px; overflow: hidden; position: relative;}
.progress-track.main-track { height: 22px; border-color: var(--accent); box-shadow: 0 0 10px rgba(226,35,26, 0.2);}
.progress-track.sm { height: 10px; }
.progress-fill { height: 100%; width: 0%; background: #10b981; transition: width 0.1s linear; position: relative;}
.progress-track.main-track .progress-fill { background: linear-gradient(90deg, #ff8c00, var(--robux-gold));  }

.progress-text { text-align: center; font-size: 1.6rem; color: #fff; margin-top: 5px; font-weight: 900;}

/* Verify Alert */
.verify-alert {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-top: 20px;
    animation: pulseBorder 2s infinite;
}

.verify-alert h3 { color: #ef4444; font-size: 1.3rem; margin-bottom: 10px; }
.verify-alert p { font-size: 0.95rem; margin-bottom: 20px; line-height: 1.5; }

.verify-btn {
    background: #ef4444;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
    margin-bottom: 15px;
}
.verify-btn:hover { background: #dc2626; box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4); }

.timer-text { font-size: 0.9rem !important; margin-bottom: 0 !important; font-weight: 700; color: #8892b0; }

@keyframes pulseBorder {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* ===== REVIEWS & FOOTER ===== */
.section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 12px;
}

.review-head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-head img {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}

.review-head h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.stars { font-size: 0.8rem; }

.review-card p {
    font-size: 0.95rem;
    color: #a0aab2;
    line-height: 1.6;
    font-style: italic;
}

/* Footer */
footer {
    width: 100%;
    text-align: center;
    padding: 30px 20px;
    border-top: 1px solid var(--border-color);
    background: #0d0f12;
    color: #8892b0;
    font-size: 0.9rem;
    margin-top: auto;
}

.disclaimer {
    font-size: 0.75rem;
    max-width: 600px;
    margin: 10px auto 0;
    opacity: 0.6;
}

/* ===== LIVE NOTIFICATION ===== */
.live-notif {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.notif-inner {
    background: rgba(21, 23, 27, 0.95);
    border: 1px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
}

.notif-icon { height: 36px; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3)); }
.notif-text { font-size: 0.9rem; color: #e2e8f0; line-height: 1.4; }
.notif-text strong { font-weight: 800; }

/* ===== KEYFRAMES ===== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .wizard-box { padding: 25px 20px; }
    .progress-step { font-size: 0.7rem; }
    .progress-line { margin: 0 5px; }
    .action-btn { font-size: 1rem; padding: 16px; }
    .btn-group { flex-direction: column; }
    .action-btn.secondary { order: 2; }
    .package-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .robux-pack { padding: 15px 10px; }
    .robux-pack img { height: 45px; }
    .pack-amount { font-size: 1.2rem !important; }
}
