/* RESET & BASE */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(circle at top right, #111845, #02040a);
    color: #fbfff1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* HEADER & NAV */
.site-header {
    padding: 15px 0;
    background: rgba(10, 15, 72, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(48, 102, 190, 0.3);
    position: fixed; width: 100%; z-index: 1000;
}

.header-container {
    max-width: 1100px; margin: 0 auto; padding: 0 20px;
    display: flex; justify-content: space-between; align-items: center;
}

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-link { color: #b4c5e4; text-decoration: none; font-size: 0.8rem; letter-spacing: 1px; transition: 0.3s; }
.nav-link:hover { color: #fbfff1; text-shadow: 0 0 8px rgba(255, 255, 255, 0.5); }
.nav-btn { background: rgba(48, 102, 190, 0.2); padding: 8px 18px; border-radius: 6px; border: 1px solid #3066be; color: #fff; }
.nav-btn:hover { background: #3066be; }

.mobile-toggle { display: none; font-size: 1.5rem; color: #3066be; cursor: pointer; }

.logo { display: flex; align-items: center; gap: 12px; font-family: 'Audiowide', cursive; font-size: 1.5rem; }
.logo-icon { background: #3066be; width: 35px; height: 35px; display: flex; justify-content: center; align-items: center; border-radius: 8px; color: #fff; }

/* MAIN LAYOUT */
.main-content {
    flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    max-width: 1100px; margin: 0 auto; padding: 180px 20px 60px; align-items: start;
}

@media (max-width: 900px) {
    .main-content { grid-template-columns: 1fr; padding-top: 120px; }
    .right-column { order: -1; }
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
}

/* INTERACTION SECTION */
.interaction-wrapper { min-height: 450px; }
.whitelist-box {
    background: rgba(15, 26, 96, 0.4); border: 1px solid #3066be; border-radius: 20px;
    padding: 60px 40px; text-align: center; cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.whitelist-box:hover { transform: translateY(-8px); box-shadow: 0 10px 30px rgba(48, 102, 190, 0.4); }
.whitelist-box.hide { opacity: 0; transform: scale(0.9); pointer-events: none; }

.form-section, .success-view { display: none; opacity: 0; transform: translateY(20px); transition: 0.5s ease all; }
.form-section.show, .success-view.show { display: block; opacity: 1; transform: translateY(0); }

.tasks-card {
    background: rgba(15, 26, 96, 0.3); backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px;
    padding: 30px; display: flex; flex-direction: column; gap: 15px;
}

.task-btn {
    background: #192573; color: white; border: 1px solid #3066be; padding: 15px;
    border-radius: 10px; font-family: 'Orbitron'; cursor: pointer; transition: 0.3s;
}

/* SUCCESS CARD */
.success-card {
    background: rgba(0, 255, 136, 0.05); border: 1px solid #00ff88;
    border-radius: 20px; padding: 40px; text-align: center;
}
.success-icon { font-size: 3rem; color: #00ff88; margin-bottom: 15px; text-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }

/* INPUTS */
.inputs-card { display: none; flex-direction: column; gap: 10px; margin-top: 10px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.fade-in-inputs { opacity: 1 !important; }
label { font-size: 0.7rem; color: #b4c5e4; margin-bottom: 2px; display: block; }
input { background: rgba(0, 0, 0, 0.3); border: 1px solid #3066be; padding: 12px; border-radius: 8px; color: white; font-family: 'Orbitron'; margin-bottom: 10px; width: 100%; }
.submit-btn { background: linear-gradient(90deg, #3066be, #4a8df8); border: none; padding: 15px; border-radius: 8px; color: white; font-weight: bold; cursor: pointer; margin-top: 10px; transition: 0.3s; }

/* PROJECT INFO & MINT STATS */
.project-info { background: rgba(25, 37, 115, 0.2); border: 1px solid rgba(255, 255, 255, 0.05); padding: 40px; border-radius: 24px; }
.badge { background: #3066be; display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.7rem; margin-bottom: 20px; }
.mint-stats { margin-top: 25px; display: flex; flex-direction: column; gap: 12px; padding: 15px; background: rgba(48, 102, 190, 0.1); border-left: 3px solid #3066be; border-radius: 4px; }
.stat-item { display: flex; justify-content: space-between; align-items: center; transition: 0.3s; padding: 5px; }
.stat-item:hover { background: rgba(48, 102, 190, 0.2); transform: translateX(5px); }
.stat-label { font-size: 0.7rem; color: #b4c5e4; letter-spacing: 1px; }
.stat-value { font-weight: 700; color: #00ff88; font-size: 0.9rem; text-shadow: 0 0 10px rgba(0, 255, 136, 0.3); }

/* ROADMAP SECTION */
.roadmap-section { padding: 80px 20px; background: rgba(0, 0, 0, 0.2); border-top: 1px solid rgba(48, 102, 190, 0.1); }
.roadmap-container { max-width: 1100px; margin: 0 auto; text-align: center; }
.timeline { display: flex; justify-content: space-between; margin-top: 50px; position: relative; gap: 20px; }
.timeline::before { content: ''; position: absolute; top: 15px; left: 10%; right: 10%; height: 2px; background: rgba(48, 102, 190, 0.2); z-index: 1; }

.timeline-item { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; align-items: center; }
.timeline-dot { width: 30px; height: 30px; background: #02040a; border: 2px solid #3066be; border-radius: 50%; margin-bottom: 20px; }

.timeline-item.active .timeline-dot {
    background: #00ff88; border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.timeline-content h3 { font-size: 0.7rem; color: #3066be; letter-spacing: 2px; margin-bottom: 5px; }
.timeline-content p { font-size: 0.85rem; color: #b4c5e4; }

/* TAGLINE SECTION */
.about-tagline { width: 100%; padding: 120px 20px; background: rgba(0, 0, 0, 0.3); border-top: 1px solid rgba(48, 102, 190, 0.2); display: flex; justify-content: center; align-items: center; }
.tagline-container { text-align: center; }
.tagline-title { font-size: 0.8rem; color: #3066be; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 15px; }
.tagline-text { font-family: 'Audiowide', cursive; font-size: 2.5rem; color: #fbfff1; margin: 0; text-shadow: 0 0 20px rgba(48, 102, 190, 0.6); animation: glow 3s ease-in-out infinite alternate; }

/* ANIMATIONS & FOOTER */
.shake-error { animation: shake 0.4s ease-in-out; background: linear-gradient(90deg, #ff4b2b, #ff416c) !important; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-10px); } 75% { transform: translateX(10px); } }
@keyframes glow { from { opacity: 0.7; transform: scale(1); } to { opacity: 1; transform: scale(1.03); } }

.site-footer { text-align: center; padding: 40px; font-size: 0.8rem; color: #4a5568; }
.footer-links { margin-bottom: 15px; }
.footer-links a { color: #b4c5e4; text-decoration: none; margin: 0 10px; transition: 0.3s; }
.footer-links a:hover { color: #00ff88; }

@media (max-width: 768px) {
    .timeline { flex-direction: column; align-items: flex-start; padding-left: 20px; }
    .timeline::before { display: none; }
    .timeline-item { flex-direction: row; gap: 20px; margin-bottom: 30px; }
}