/* ===== BASE STYLES & RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.font-text {
    font-family: 'Nunito', sans-serif;
}

.font-title {
    font-family: 'Lilita One', cursive; /* Supercell Magic Alternative */
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.bg-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(circle at 50% 50%, rgba(10, 22, 40, 0.5) 0%, rgba(10, 22, 40, 0.9) 100%);
    z-index: -1;
}

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

@keyframes pulseBg {
    0% { opacity: 0.6; }
    100% { opacity: 1; transform: scale(1.05); }
}

:root {
    --cr-blue: #23589B;
    --cr-dark-blue: #0A1628;
    --cr-gold: #FFD21E;
    --cr-red: #D2211C;
    --cr-wood: #D7BC8E;
    --cr-wood-dark: #8F693A;
}

.gold-text { color: var(--cr-gold); text-shadow: 0 3px 0px #B47200, 0 5px 10px rgba(0,0,0,0.5); }
.accent-text { color: #5DA1C8; text-shadow: 0 3px 0px #1B456C; }

/* ===== HEADER ===== */
.site-header {
    width: 100%;
    max-width: 1200px;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 5px solid var(--cr-blue);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 25px rgba(0,0,0,0.6);
}

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

.logo img {
    height: 50px;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.6));
    animation: floatLogo 3s infinite ease-in-out;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

.logo-text { font-size: 1.8rem; text-shadow: 0 4px 0 #000; }

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #fff;
    background: #118C2C;
    padding: 6px 18px;
    border-radius: 25px;
    border: 3px solid #000;
    box-shadow: 0 4px 0 #074613;
}

.pulse-dot {
    width: 12px; height: 12px;
    background: #5EFF7E;
    border-radius: 50%;
    box-shadow: 0 0 12px #5EFF7E;
    animation: pulse 1s infinite;
}

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

/* Hero */
.hero {
    text-align: center;
    animation: zoomIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-title {
    font-size: 3.8rem;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.1;
    text-shadow: 0 5px 0 var(--cr-blue), 0 8px 15px rgba(0,0,0,0.6), -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000;
}

.hero-sub {
    font-family: 'Nunito', sans-serif;
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 28px;
    font-weight: 800;
    text-shadow: 0 2px 5px #000;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    background: rgba(0,0,0,0.4);
    padding: 15px 30px;
    border-radius: 30px;
    border: 2px solid #23589B;
    box-shadow: inset 0 0 15px rgba(35,88,155,0.4), 0 5px 15px rgba(0,0,0,0.5);
}

.trust-item {
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 2px 3px #000;
}

/* ===== WIZARD CONTAINER ===== */
.wizard-box {
    width: 100%;
    background: #192D50;
    border: 5px solid #000;
    border-radius: 25px;
    padding: 35px;
    box-shadow: inset 0 5px 0 rgba(255,255,255,0.1), 0 15px 0 #091325, 0 35px 60px rgba(0,0,0,0.8);
    position: relative;
}

.progress-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    background: #0B1627;
    border: 3px solid #000;
    border-radius: 30px;
    padding: 12px 25px;
    box-shadow: inset 0 3px 8px rgba(0,0,0,0.8);
}

.progress-step {
    font-family: 'Lilita One', cursive;
    font-size: 1rem;
    color: #3E5C8D;
    transition: all 0.3s;
}

.progress-step.active {
    color: var(--cr-gold);
    text-shadow: 0 2px 0 #000;
    transform: scale(1.15);
}

.progress-line {
    flex-grow: 1;
    height: 5px;
    background: #0B1627;
    box-shadow: inset 0 2px 4px #000;
    margin: 0 15px;
    border-radius: 3px;
}

.progress-line.active { background: var(--cr-gold); box-shadow: 0 0 8px var(--cr-gold); }

/* Steps general */
.wizard-step {
    display: flex;
    flex-direction: column;
    animation: popSlide 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wizard-step h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 0 4px 0 #000, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

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

.input-grp label {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #5DA1C8;
}

.input-grp input {
    width: 100%;
    background: #fff;
    border: 4px solid #000;
    color: #111C3D;
    padding: 16px;
    border-radius: 15px;
    font-size: 1.5rem;
    font-family: 'Lilita One', cursive;
    outline: none;
    transition: all 0.2s;
    box-shadow: inset 0 4px 6px rgba(0,0,0,0.2), 0 5px 0 rgba(0,0,0,0.3);
}

.input-grp input:focus { border-color: var(--cr-gold); }

/* Platform Grid */
.platform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.platform-btn {
    background: #23589B;
    border: 4px solid #000;
    border-radius: 15px;
    padding: 18px 10px;
    text-align: center;
    cursor: pointer;
    font-family: 'Lilita One', cursive;
    font-size: 1.2rem;
    color: #fff;
    transition: all 0.1s;
    box-shadow: inset 0 4px 0 rgba(255,255,255,0.2), 0 6px 0 #0F2A4F;
    text-shadow: 0 2px 0 #000;
}

.platform-btn:active { transform: translateY(6px); box-shadow: inset 0 4px 0 rgba(255,255,255,0.2), 0 0px 0 #0F2A4F; }

.platform-btn.active {
    background: var(--cr-gold);
    color: #000;
    box-shadow: inset 0 4px 0 rgba(255,255,255,0.4), 0 6px 0 #A16A00;
    text-shadow: none;
}
.platform-btn.active:active { transform: translateY(6px); box-shadow: inset 0 4px 0 rgba(255,255,255,0.4), 0 0px 0 #A16A00; }

/* ACTION BUTTONS (Juicy 3D Gold/Wood) */
.btn-group { display: flex; gap: 15px; margin-top: 15px; }

.action-btn {
    width: 100%;
    background: var(--cr-gold);
    background: linear-gradient(180deg, #FFE15E 0%, #FFA800 100%);
    color: #fff;
    border: 4px solid #000;
    border-radius: 20px;
    padding: 20px 0;
    font-size: 1.6rem;
    cursor: pointer;
    transition: transform 0.1s, box-shadow 0.1s;
    box-shadow: inset 0 4px 0 rgba(255,255,255,0.5), 0 8px 0 #9E5600;
    text-shadow: 0 3px 0 #9E5600, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}

.action-btn:active {
    transform: translateY(8px);
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.5), 0 0 0 #9E5600;
}

.action-btn.secondary {
    background: var(--cr-wood);
    background: linear-gradient(180deg, #E6C898 0%, #C49F60 100%);
    color: #fff;
    box-shadow: inset 0 4px 0 rgba(255,255,255,0.5), 0 8px 0 #6C4E26;
    text-shadow: 0 3px 0 #6C4E26, -2px -2px 0 #000, 2px -2px 0 #000, -2px 2px 0 #000, 2px 2px 0 #000;
}
.action-btn.secondary:active { box-shadow: inset 0 2px 0 rgba(255,255,255,0.5), 0 0 0 #6C4E26; transform: translateY(8px); }

/* STEP 2: Package Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.reward-pack {
    background: #395786;
    border: 4px solid #000;
    border-radius: 20px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s;
    box-shadow: inset 0 5px 0 rgba(255,255,255,0.1), 0 8px 0 #091325;
}

.pack-img-bg {
    background: #23395B;
    border: 4px solid #000;
    border-radius: 50%;
    width: 90px; height: 90px;
    margin: 0 auto 12px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.6);
}

.reward-pack img { height: 70px; filter: drop-shadow(0 5px 5px rgba(0,0,0,0.6)); transition: transform 0.3s; }
.reward-pack .pack-title { font-size: 1.3rem; color: #fff; text-shadow: 0 2px 0 #000; }

.pack-badge {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: var(--cr-red);
    color: #fff;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 20px;
    border: 3px solid #000;
    white-space: nowrap;
    box-shadow: 0 4px 0 #7A0A0A;
    z-index: 2;
    font-family: 'Lilita One', cursive;
}

.reward-pack.recommended { border-color: var(--cr-gold); background: #4D76B1; }
.reward-pack.legendary-pack { background: #613C82; border-color: #A365D8;}

.reward-pack:hover, .reward-pack.active {
    transform: translateY(-8px);
    background: var(--cr-gold);
    box-shadow: inset 0 5px 0 rgba(255,255,255,0.3), 0 12px 0 #A16A00;
    border-color: #000;
}
.reward-pack:hover .pack-img-bg, .reward-pack.active .pack-img-bg { background: #A16A00; border-color: #fff;}
.reward-pack:hover .pack-title, .reward-pack.active .pack-title { color: #000; text-shadow: none; }
.reward-pack:hover img, .reward-pack.active img { transform: scale(1.15) translateY(-5px); }

/* STEP 3: Console */
.status-cards { display: flex; gap: 15px; margin-bottom: 25px; }
.status-card {
    flex: 1; background: #fff; border: 4px solid #000; padding: 15px; border-radius: 15px;
    display: flex; flex-direction: column; align-items: center; box-shadow: inset 0 -4px 0 rgba(0,0,0,0.1), 0 5px 0 #091325;
}
.status-card span { font-size: 0.95rem; font-weight: 900; color: #7389a8; }
.status-card strong { font-size: 1.5rem; text-transform: none; }

.hack-hud {
    background: #090B10; border: 4px solid var(--cr-dark-blue); 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(0, 255, 94, 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.2); padding-bottom: 8px;}
.blink-fast { animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

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

.terminal-header {
    background: #0A1628; padding: 8px 12px; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 3px solid #3E5C8D;
}

.dot { width: 10px; height: 10px; border-radius: 50%; border: 1px solid #000; }
.dot.red { background: #FF4A4A; } .dot.yellow { background: #FFC000; } .dot.green { background: #00FF5E; }
.term-title { font-size: 0.85rem; color: #5DA1C8; text-transform: uppercase; text-shadow: 0 0 5px #5DA1C8; }

.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: 2px dashed #333;
}
.terminal-sidebar {
    flex: 1; padding: 10px; overflow-y: hidden; font-size: 0.75rem; color: var(--cr-gold); text-align: right; opacity: 0.7;
}

.terminal-body p { margin-bottom: 4px; }
.sys { color: #5DA1C8; } .inf { color: #fff; } .suc { color: #00FF5E; } .act { color: var(--cr-gold); } .err { color: #FF4A4A; }

.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: #5DA1C8; }

.progress-track { width: 100%; background: #0A1628; border: 2px solid #333; border-radius: 6px; overflow: hidden; position: relative;}
.progress-track.main-track { height: 22px; border-color: var(--cr-blue); box-shadow: 0 0 10px rgba(35,88,155, 0.4);}
.progress-track.sm { height: 10px; }
.progress-fill { height: 100%; width: 0%; background: #00FF5E; transition: width 0.1s linear; position: relative;}
.progress-track.main-track .progress-fill { background: linear-gradient(90deg, #00A8FF, #00FF5E);  }

.progress-fill::after {
    content:''; position:absolute; top:0; right:0; width:20px; height:100%;
    background: rgba(255,255,255,0.4); filter: blur(2px);
}

.progress-text { text-align: center; font-size: 1.8rem; color: #fff; margin-top: 5px; text-shadow: 0 3px 0 #000; }

/* Verify Alert */
.verify-alert {
    background: rgba(210, 33, 28, 0.15); border: 4px dashed var(--cr-red); border-radius: 20px; padding: 25px;
    text-align: center; margin-top: 20px; animation: flashBorder 1.5s infinite; backdrop-filter: blur(5px);
}
.verify-alert h3 { color: var(--cr-red); font-size: 1.7rem; margin-bottom: 15px; text-shadow: 0 2px 0 #000;}
.verify-alert p { font-size: 1.1rem; margin-bottom: 20px; font-weight: 800; color: #E5E7EB; line-height: 1.6;}

.verify-btn { background: var(--cr-red); background: linear-gradient(180deg, #FF5555 0%, #CC0000 100%); color: #fff; box-shadow: inset 0 4px 0 rgba(255,255,255,0.4), 0 8px 0 #660000; border-color: #000; margin-bottom:15px; text-shadow: 0 3px 0 #660000; }
.verify-btn:active { box-shadow: inset 0 2px 0 rgba(255,255,255,0.4), 0 0 0 #660000; transform: translateY(8px); }

.timer-text { font-size: 1.2rem !important; margin-bottom: 0 !important; color: #94A3B8 !important; }

/* ===== REVIEWS ===== */
.section-title { text-align: center; font-size: 2.3rem; margin-bottom: 30px; color: #fff; text-shadow: 0 4px 0 #000; }
.review-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; width: 100%; max-width: 900px; margin: 0 auto;}
.review-card {
    background: #192D50; border: 4px solid #000; padding: 25px; border-radius: 20px;
    box-shadow: inset 0 3px 0 rgba(255,255,255,0.1), 0 8px 0 #0A1628;
}
.review-head { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.review-head img { width: 55px; height: 55px; border-radius: 12px; border: 3px solid #000; background: #0A1628;}
.stars { font-size: 0.9rem; filter: drop-shadow(0 2px 0 #000); }
.review-card h4 { font-size: 1.3rem; text-shadow: 0 2px 0 #000; color: #fff; }
.review-card p { font-size: 1.05rem; line-height: 1.6; font-weight: 700; color: #cbd5e1;}

/* Footer */
footer { text-align: center; padding: 40px 20px; background: #0A1628; width: 100%; margin-top: 50px; border-top: 5px solid #000; }
footer p { color: #fff; }
.disclaimer { font-size: 0.8rem; max-width: 650px; margin: 12px auto 0; color: #5DA1C8; font-weight: 600;}

/* ===== LIVE NOTIFICATION ===== */
.live-notif { position: fixed; bottom: 25px; left: 25px; z-index: 1000; }
.notif-inner {
    background: #118C2C; border: 4px solid #000; box-shadow: inset 0 3px 0 rgba(255,255,255,0.3), 0 12px 0 #074613;
    padding: 15px 20px 15px 60px; border-radius: 20px; display: flex; align-items: center; gap: 15px;
    position: relative; font-family: 'Nunito', sans-serif;
}
.notif-badge { position: absolute; left:-10px; top:-15px; background:var(--cr-red); color:#fff; padding:4px 10px; border-radius:12px; border:3px solid #000; font-size:0.8rem; transform: rotate(-10deg); box-shadow: 0 3px 0 #7A0A0A;}
.notif-icon { position: absolute; left: 10px; top: 50%; transform: translateY(-50%) rotate(15deg); height: 50px; filter: drop-shadow(0 3px 3px rgba(0,0,0,0.6)); }
.notif-text { font-size: 0.95rem; font-weight: 800; line-height: 1.4; color: #fff; text-shadow: 0 1px 2px #000;}

/* ===== KEYFRAMES ===== */
@keyframes zoomIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes popSlide { from { opacity: 0; transform: translateY(40px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.4); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-100px) rotate(-10deg); } to { opacity: 1; transform: translateX(0) rotate(0); } }
@keyframes flashBorder { 0%, 100% { border-color: var(--cr-red); box-shadow: 0 0 0px var(--cr-red); } 50% { border-color: #FF5555; box-shadow: 0 0 25px var(--cr-red); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 3.1rem; }
    .hero-sub { font-size: 1rem; }
    .wizard-box { padding: 25px 20px; border-width: 4px; }
    .progress-bar-container { padding: 10px 15px; margin-bottom: 25px; }
    .progress-step { font-size: 0.8rem; }
    .action-btn { font-size: 1.3rem; padding: 18px 0; border-width: 3px; }
    .package-grid { gap: 15px; }
    .reward-pack { padding: 15px 8px; border-width: 3px;}
    .pack-img-bg { width: 70px; height: 70px; }
    .reward-pack img { height: 50px; }
    .pack-title { font-size: 1.1rem !important; }
    .review-card { padding: 20px; border-width: 3px; }
    .site-header { height: 70px; padding: 0 15px; }
    .logo img { height: 35px; }
    .logo-text { font-size: 1.4rem; }
    .trust-bar { padding: 10px; gap: 10px; font-size: 0.9rem; border-radius: 15px;}
    .live-notif { bottom: 20px; left: 10px; right: 10px; }
}
