/* beacon.css - Global Stylesheet for BEACON 2026 */

:root {
    --primary-pink: #ff005c;
    --soft-blue: #7efaff;
    --space-dark: #020308;
    --space-darker: #05060f;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(126, 250, 255, 0.4);
    --text-muted: #888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--space-dark);
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--space-darker);
}
::-webkit-scrollbar-thumb {
    background: rgba(126, 250, 255, 0.3);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--soft-blue);
}

/* Base Utility Classes */
.space-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.stars {
    width: 100%;
    height: 100%;
    background: url('src/1 (2).png');
    opacity: 0.3;
}

.bg-asset {
    position: absolute;
    opacity: 0.3;
    transition: 0.1s ease-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes floatRocket {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

@keyframes floatAstro {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(-5deg); }
}

@keyframes rotatePlanet {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 6%;
    background: rgba(2, 3, 8, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand, .brand-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 20px;
    text-decoration: none;
    color: white;
}

.brand img, .brand-box img {
    width: 30px;
    filter: drop-shadow(0 0 5px var(--soft-blue));
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.desktop-nav a {
    text-decoration: none;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.desktop-nav a.active, .desktop-nav a:hover {
    color: var(--soft-blue);
    text-shadow: 0 0 10px var(--soft-blue);
}

.user-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    padding: 5px 15px 5px 6px;
    border-radius: 100px;
    border: 1px solid var(--border);
}

.astro-circle {
    width: 28px;
    height: 28px;
    background: rgba(255, 0, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 92, 0.3);
}

.astro-circle img {
    width: 80%;
    filter: drop-shadow(0 0 5px var(--primary-pink));
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-pink);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    box-shadow: 0 0 15px rgba(255, 0, 92, 0.5);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #05060a;
    padding: 60px 8% 40px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.f-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.f-col h4 {
    font-family: 'Montserrat', sans-serif;
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

.f-col a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: 0.3s;
}

.f-col a:hover {
    color: var(--soft-blue);
    padding-left: 5px;
}

/* Bottom Nav (Mobile) */
.bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 400px;
    background: rgba(11, 13, 23, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 25px;
    display: none;
    justify-content: space-around;
    padding: 12px;
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-item {
    text-align: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    flex: 1;
}

.nav-item i {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
    transition: 0.3s;
}

.nav-item.active {
    color: var(--soft-blue);
}

.nav-item.active i {
    transform: translateY(-5px);
    color: var(--soft-blue);
}

@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .bottom-nav { display: flex; }
    .user-pill span { display: none; }
}

/* Forms & Inputs */
.form-group { margin-bottom: 20px; text-align: left; position: relative; }
.form-group label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; color: var(--soft-blue); font-weight: 600; }
.form-group i.input-icon { position: absolute; left: 16px; bottom: 15px; color: rgba(255, 255, 255, 0.3); font-size: 16px; }

/* Tambahkan padding ekstra di kiri jika ada icon agar teks tidak menabrak icon */
.form-group:has(.input-icon) input { padding-left: 42px; }
.auth-card input { padding-left: 42px; }
input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="datetime-local"], select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: white;
    transition: 0.3s;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

input:focus, select:focus {
    border-color: var(--soft-blue);
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    box-shadow: 0 0 10px rgba(126, 250, 255, 0.2);
}

/* Auth Cards */
.auth-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 30px;
    width: 90%;
    max-width: 450px;
    border: 1px solid var(--border);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    z-index: 10;
    position: relative;
    text-align: center;
    margin: auto;
}
.auth-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 26px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
.astro-asset {
    width: 100px;
    margin-bottom: 10px;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(126, 250, 255, 0.3));
}

/* Auth Buttons */
.btn-submit {
    width: 100%;
    padding: 16px;
    background: rgba(255, 0, 92, 0.15);
    border: 1px solid rgba(255, 0, 92, 0.3);
    color: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    font-weight: 800;
    font-size: 13px;
    cursor: not-allowed;
    transition: 0.4s;
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
}
.btn-submit.active, .btn-submit.ready {
    background: linear-gradient(135deg, var(--primary-pink), #ff4d8d);
    border-color: transparent;
    color: white;
    cursor: pointer;
    box-shadow: 0 0 25px rgba(255, 0, 92, 0.4);
    pointer-events: auto;
    opacity: 1;
}
.btn-inline {
    width: 100%;
    padding: 14px;
    background: rgba(126, 250, 255, 0.1);
    border: 1px solid rgba(126, 250, 255, 0.3);
    color: var(--soft-blue);
    border-radius: 12px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
.btn-inline:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.btn-inline:not(:disabled):hover {
    background: var(--soft-blue);
    color: #000;
    box-shadow: 0 0 15px rgba(126, 250, 255, 0.4);
}

/* Auth Footer & Misc */
.auth-footer {
    margin-top: 25px;
    font-size: 13px;
    color: #888;
}
.auth-footer a {
    color: var(--soft-blue);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.auth-footer a:hover {
    color: white;
    text-shadow: 0 0 8px var(--soft-blue);
}
.error-msg {
    color: var(--primary-pink);
    font-size: 10px;
    margin-top: 5px;
    display: none;
}
#otp-group {
    display: none;
    margin-bottom: 15px;
}

/* Main & Layout */
main {
    flex: 1;
    padding: 40px 6% 120px;
}

/* Typography Helpers */
.text-pink { color: var(--primary-pink); }
.text-blue { color: var(--soft-blue); }

/* Animation Utility */
.anim-float { animation: float 5s ease-in-out infinite; }

/* Dashboard Specific Styles */
.hero { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.hero h1 { font-family: 'Montserrat'; font-size: clamp(24px, 5vw, 42px); font-weight: 900; line-height: 1.2; }
.hero h1 span { color: var(--primary-pink); }
.hero-astro-img { width: 150px; animation: float 5s ease-in-out infinite; }

.layout-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.panel { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 20px; padding: 30px; backdrop-filter: blur(10px); }
h2.panel-title { font-family: 'Montserrat'; color: var(--soft-blue); margin-bottom: 20px; font-size: 16px; text-transform: uppercase; border-bottom: 1px solid var(--border); padding-bottom: 10px; }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
.stat-box { background: rgba(0,0,0,0.4); padding: 15px; border-radius: 12px; border: 1px solid var(--border); text-align: center; }
.stat-box h3 { color: var(--primary-pink); font-size: 24px; font-family: 'Montserrat'; }
.stat-box p { font-size: 10px; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }

.timeline-item { padding-left: 15px; margin-bottom: 15px; border-left: 2px solid var(--primary-pink); position: relative; }
.timeline-item::before { content: ''; position: absolute; left: -5px; top: 0; width: 8px; height: 8px; background: var(--soft-blue); border-radius: 50%; }
.tl-date { font-size: 10px; color: #aaa; margin-bottom: 3px; }
.tl-desc { font-size: 13px; font-weight: 500; }
.tl-tag { font-size: 8px; background: var(--border); padding: 2px 6px; border-radius: 4px; text-transform: uppercase; margin-left: 5px; }

@media (max-width: 992px) {
    .layout-grid { grid-template-columns: 1fr; }
    .hero { flex-direction: column-reverse; text-align: center; gap: 20px; }
    .hero-astro-img { width: 120px; }
}

/* My Contest specific */
.mission-selection { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 50px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.mission-card { background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%); border: 1px solid var(--border); border-radius: 30px; padding: 50px; transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1); position: relative; overflow: hidden; }
.mission-card:hover { transform: translateY(-15px) scale(1.02); border-color: rgba(126, 250, 255, 0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.mission-card .logo-lomba { width: 120px; margin-bottom: 30px; position: relative; z-index: 2; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3)); }
.mission-card h2 { font-family: 'Montserrat'; font-size: 28px; font-weight: 900; margin-bottom: 15px; text-transform: uppercase; color: white; position: relative; z-index: 2; }
.mission-card p { color: #888; font-size: 14px; line-height: 1.6; margin-bottom: 35px; position: relative; z-index: 2; }
.btn-launch { display: inline-block; padding: 15px 45px; background: transparent; border: 2px solid white; color: white; border-radius: 100px; text-decoration: none; font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 2px; transition: 0.4s; position: relative; z-index: 2; }
.btn-launch:hover { background: white; color: var(--space-dark); box-shadow: 0 0 30px white; }
.card-deco { position: absolute; opacity: 0.2; pointer-events: none; }

/* Index / Under Construction */
.container {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.container h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.container p {
    color: #888;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.rocket-box { margin-bottom: 30px; }
.rocket-box img { width: 120px; animation: float 4s ease-in-out infinite; filter: drop-shadow(0 0 15px rgba(126, 250, 255, 0.3)); }

/* Progress Bar */
.progress-container { width: 250px; height: 4px; background: rgba(255, 255, 255, 0.1); margin: 0 auto; border-radius: 10px; overflow: hidden; position: relative; }
.progress-bar { position: absolute; height: 100%; background: var(--primary-pink); box-shadow: 0 0 15px var(--primary-pink); border-radius: 10px; animation: loading 2s infinite ease-in-out; }
@keyframes loading { 0% { left: -30%; width: 30%; } 50% { width: 50%; } 100% { left: 100%; width: 30%; } }
.badge { display: inline-block; padding: 6px 15px; background: rgba(255, 0, 92, 0.1); border: 1px solid rgba(255, 0, 92, 0.3); color: var(--primary-pink); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; border-radius: 50px; margin-bottom: 20px; }

/* Popup/Launch Animation */
.launch-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(5, 6, 15, 0.98); display: none; align-items: center; justify-content: center; z-index: 9999; backdrop-filter: blur(20px); }
.launch-container { text-align: center; }
.rocket-wrap { position: relative; margin-bottom: 60px; }
.rocket-fly { width: 150px; filter: drop-shadow(0 0 20px var(--primary-pink)); animation: launchShake 0.1s infinite; }
.launching .rocket-fly { animation: rocketUp 1.2s ease-in forwards !important; }
.aborted .rocket-fly { animation: shakeAbort 0.1s infinite !important; }
@keyframes launchShake { 0% { transform: translate(1px, 1px) rotate(0deg); } 50% { transform: translate(-1px, -1px) rotate(1deg); } 100% { transform: translate(1px, -1px) rotate(-1deg); } }
@keyframes shakeAbort { 0% { transform: translate(3px, 3px) rotate(2deg); } 50% { transform: translate(-3px, -3px) rotate(-2deg); } 100% { transform: translate(3px, -3px) rotate(2deg); } }
@keyframes rocketUp { 0% { transform: translateY(0); } 100% { transform: translateY(-130vh); } }
.smoke { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); display: flex; }
.smoke span { width: 20px; height: 20px; background: #fff; border-radius: 50%; margin: 0 5px; opacity: 0.8; filter: blur(8px); animation: smokeGlow 0.5s infinite alternate; }
.launching .smoke span { animation: smokeFly 0.8s infinite; }
.aborted .smoke span { background: #ff4b2b; box-shadow: 0 0 20px #ff4b2b; animation: smokeGlowError 0.2s infinite alternate; }
@keyframes smokeGlow { from { transform: scale(1); box-shadow: 0 0 10px var(--primary-pink); } to { transform: scale(1.6); box-shadow: 0 0 30px #ff9068; } }
@keyframes smokeGlowError { from { transform: scale(1); opacity: 0.8; } to { transform: scale(1.8); opacity: 0.5; } }
@keyframes smokeFly { 0% { transform: translateY(0) scale(1); opacity: 1; } 100% { transform: translateY(150px) scale(4); opacity: 0; } }
.launch-text { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 24px; color: #fff; margin-top: 20px; }

/* Glowing Elements for auth/forms */
.glow { position: absolute; width: 300px; height: 300px; filter: blur(120px); opacity: 0.15; z-index: 0; pointer-events: none; }

/* Admin Dashboard */
.header-admin { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.role-badge { font-size: 10px; padding: 4px 12px; border-radius: 50px; background: var(--soft-blue); color: #000; font-weight: bold; text-transform: uppercase; }
.main-grid { display: grid; grid-template-columns: 2.5fr 1fr; gap: 30px; }
.btn-add { padding: 12px 25px; background: var(--soft-blue); color: #000; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; text-transform: uppercase; font-size: 11px; width: 100%; transition: 0.3s; }
.btn-add:hover { box-shadow: 0 0 15px var(--soft-blue); transform: translateY(-2px); }
.btn-file { padding: 4px 8px; background: rgba(126, 250, 255, 0.1); border: 1px solid var(--soft-blue); color: var(--soft-blue); text-decoration: none; font-size: 10px; border-radius: 4px; }
.log-container { max-height: 350px; overflow-y: auto; padding-right: 5px; }
.log-item { padding: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.log-admin { color: var(--primary-pink); font-size: 11px; font-weight: bold; }

/* DataTables Overrides */
table.dataTable { color: white !important; font-size: 12px; background: transparent !important; }
table.dataTable thead th { border-bottom: 1px solid var(--border) !important; color: var(--soft-blue); background: rgba(255,255,255,0.02); }
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate { color: #888 !important; }

/* Bepro/Benmax Landing Pages */
.hero .logo { width: 140px; margin-bottom: 25px; filter: drop-shadow(0 0 20px rgba(126, 250, 255, 0.3)); animation: float 5s ease-in-out infinite; }
.hero h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(20px, 4vw, 32px); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; }
.hero p { color: #aaa; font-size: 14px; line-height: 1.8; max-width: 600px; margin-bottom: 30px; }

.sec-title { font-family: 'Montserrat', sans-serif; font-size: 28px; text-transform: uppercase; margin: 60px 6% 30px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.grid-subj { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; padding: 0 6%; }
.subj-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 15px; padding: 30px; text-align: center; transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease; }
.subj-card:hover { transform: translateY(-8px); border-color: var(--border-hover); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }
.subj-card i { font-size: 30px; color: var(--soft-blue); margin-bottom: 15px; display: block; }
.subj-card h3 { font-family: 'Montserrat', sans-serif; font-size: 13px; color: white; text-transform: uppercase; letter-spacing: 1px; border: none; padding: 0; margin: 0; }
.timeline-container { padding: 20px 6% 80px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.tl-node { text-align: center; font-size: 13px; }
.tl-dot { width: 15px; height: 15px; background: var(--soft-blue); border-radius: 50%; margin: 0 auto 10px; box-shadow: 0 0 10px rgba(126, 250, 255, 0.4); }
@media (max-width: 768px) { .timeline-container { grid-template-columns: 1fr; text-align: left; } .tl-node { text-align: left; display: flex; gap: 15px; } }

/* Submit form styles */
.form-container { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border); padding: 50px 40px; border-radius: 30px; width: 90%; max-width: 800px; margin: 60px auto; backdrop-filter: blur(15px); position: relative; }
.stepper { display: flex; justify-content: center; align-items: center; margin-bottom: 50px; }
.step { width: 45px; height: 45px; border-radius: 50%; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; font-weight: 800; color: #555; border: 2px solid var(--border); transition: 0.4s; }
.step.active { background: rgba(255, 0, 92, 0.15); border: 2px solid var(--primary-pink); color: #fff; box-shadow: 0 0 20px rgba(255,0,92,0.4); transform: scale(1.1); }
.step.completed { background: var(--soft-blue); color: #000; border: 2px solid var(--soft-blue); }
.step-line { width: 60px; height: 2px; background: var(--border); }
.step-line.active { background: var(--soft-blue); }
.step-content { display: none; }
.step-content.active { display: block; animation: slideUp 0.5s ease-out; }
.form-title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 14px; color: var(--soft-blue); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; }
input[type="file"] { padding: 12px; background: rgba(255, 255, 255, 0.03); border: 1px dashed rgba(126, 250, 255, 0.3); cursor: pointer; width: 100%; border-radius: 12px; color: white;}
input[type="file"]::-webkit-file-upload-button { background: var(--primary-pink); border: none; padding: 8px 15px; border-radius: 8px; color: white; font-weight: 800; font-size: 10px; text-transform: uppercase; margin-right: 15px; cursor: pointer; }
.file-preview { margin-top: 10px; padding: 12px; background: rgba(126, 250, 255, 0.05); border-radius: 10px; display: none; align-items: center; gap: 10px; border: 1px solid rgba(126, 250, 255, 0.1); }
.file-preview i { color: var(--soft-blue); }
.file-preview span { font-size: 12px; color: #ccc; }
.checkbox-group { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; background: rgba(255,255,255,0.02); padding: 18px; border-radius: 12px; border: 1px solid var(--border); cursor: pointer; }
.checkbox-group input { width: 22px; height: 22px; accent-color: var(--primary-pink); }
.btn-row { display: flex; justify-content: space-between; margin-top: 40px; gap: 20px; }
.btn-prev { background: rgba(255,255,255,0.05); color: white; border: 1px solid var(--border); }
.btn-next { background: var(--soft-blue); color: #000; margin-left: auto; }
.btn-submit { background: var(--primary-pink); color: white; margin-left: auto; opacity: 0.3; pointer-events: none; }
.btn-submit.ready { opacity: 1; pointer-events: auto; box-shadow: 0 0 25px rgba(255, 0, 92, 0.5); }

/* Payment Styles */
.rocket-container { position: absolute; bottom: -200px; left: 50%; transform: translateX(-50%); z-index: 100; pointer-events: none; transition: 2s cubic-bezier(0.6, -0.28, 0.735, 0.045); }
.rocket-container img { width: 100px; filter: drop-shadow(0 0 20px var(--primary-pink)); }
.rocket-container.launching { bottom: 150% !important; }
.pay-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); padding: 40px; border-radius: 30px; width: 90%; max-width: 420px; text-align: center; backdrop-filter: blur(25px); position: relative; z-index: 5; transition: 0.5s ease; }
.view-step { transition: 0.5s ease; }
.hidden { display: none !important; }
.price { font-size: 42px; font-weight: 900; font-family: 'Montserrat', sans-serif; color: var(--soft-blue); margin: 10px 0 30px; text-shadow: 0 0 20px rgba(126, 250, 255, 0.3); }
.input-wrapper { position: relative; margin-bottom: 25px; }
.btn-check { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: var(--soft-blue); color: #000; border: none; padding: 8px 15px; border-radius: 10px; font-size: 10px; font-weight: 900; cursor: pointer; }
.btn-va { width: 100%; padding: 18px; background: linear-gradient(45deg, var(--primary-pink), #ff4d8d); border: none; border-radius: 15px; color: white; font-weight: 900; cursor: pointer; text-transform: uppercase; letter-spacing: 2px; transition: 0.3s; }
.btn-va:hover { box-shadow: 0 10px 30px rgba(255, 0, 92, 0.4); transform: translateY(-3px); }
.btn-va:disabled { opacity: 0.5; cursor: wait; }
.va-box { border: 1px solid var(--soft-blue); padding: 20px; border-radius: 20px; background: rgba(126, 250, 255, 0.03); margin-top: 20px; }
#va-num { letter-spacing: 5px; color: white; font-family: 'Montserrat', sans-serif; font-size: 24px; margin: 15px 0; }
.astro-img { width: 100px; margin-bottom: -10px; animation: float 4s ease-in-out infinite; }

/* Page-Specific Body Modifiers */
body.page-payment {
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
body.page-admin {
    padding: 30px 6%;
}
.btn-back {
    display: inline-block;
    margin-top: 25px;
    color: #888;
    font-size: 11px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-back:hover { color: white; }

/* ===== MISSING CLASSES PATCH ===== */

/* Brand Text (submit pages header) */
.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: white;
    letter-spacing: 2px;
}
.brand-text span { color: var(--primary-pink); }

/* Abort Button (submit pages) */
.btn-abort {
    color: var(--primary-pink);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-abort:hover { opacity: 0.7; transform: scale(1.05); }

/* Select Option Dark Background */
select option { background: #1a1a1a; color: white; }

/* Keyframe Animations (used by stepper & success messages) */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Admin Dashboard - h3 section headings */
.panel h3,
h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--soft-blue);
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

/* Admin Dashboard responsive */
@media (max-width: 1100px) {
    .main-grid { grid-template-columns: 1fr; }
}

/* Footer grid responsive (submit pages) */
@media (max-width: 992px) {
    .f-container { flex-direction: column; }
}

/* ========================================
   3D EFFECTS & DEPTH SYSTEM
   ======================================== */

/* 3D Perspective Container */
.perspective-wrap {
    perspective: 1000px;
}

/* 3D Tilt on Mission Cards */
.mission-card {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
}
.mission-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-3deg) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(126, 250, 255, 0.08);
}
.mission-card .logo-lomba {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.mission-card:hover .logo-lomba {
    transform: translateZ(40px) scale(1.1);
}
.mission-card:hover h2 {
    transform: translateZ(25px);
}
.mission-card:hover .btn-launch {
    transform: translateZ(30px);
}

/* 3D Tilt on Panels */
.panel {
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.panel:hover {
    transform: rotateX(2deg) rotateY(-1deg) translateZ(5px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(126, 250, 255, 0.1);
}

/* 3D Auth Card with Shine Sweep */
.auth-card {
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    overflow: hidden;
}
.auth-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(126, 250, 255, 0.06),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.8s ease;
    pointer-events: none;
    z-index: 1;
}
.auth-card:hover::after {
    left: 130%;
}
.auth-card:hover {
    transform: rotateX(3deg) rotateY(-2deg) translateZ(8px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(126, 250, 255, 0.05);
}

/* 3D Floating Animation (depth version) */
@keyframes float3d {
    0%   { transform: translateY(0)    rotateX(0deg)  rotateY(0deg)   translateZ(0);   }
    25%  { transform: translateY(-10px) rotateX(3deg)  rotateY(-2deg) translateZ(10px); }
    50%  { transform: translateY(-18px) rotateX(0deg)  rotateY(3deg)  translateZ(15px); }
    75%  { transform: translateY(-8px)  rotateX(-3deg) rotateY(0deg)  translateZ(8px);  }
    100% { transform: translateY(0)    rotateX(0deg)  rotateY(0deg)   translateZ(0);   }
}
.anim-float-3d {
    animation: float3d 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

/* 3D Stat Boxes - lift on hover */
.stat-box {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}
.stat-box:hover {
    transform: translateY(-8px) translateZ(10px) rotateX(4deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--border-hover);
}

/* 3D Button Depth Press */
.btn {
    transform-style: preserve-3d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.btn:hover {
    transform: translateY(-3px) translateZ(5px);
    box-shadow:
        0 8px 20px rgba(255, 0, 92, 0.4),
        0 2px 4px rgba(255, 0, 92, 0.2);
}
.btn:active {
    transform: translateY(1px) translateZ(0);
    box-shadow: 0 2px 8px rgba(255, 0, 92, 0.3);
}

/* 3D Stepper Steps */
.step {
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease, border 0.4s ease;
}
.step.active {
    transform: scale(1.15) translateZ(15px);
    box-shadow:
        0 0 25px rgba(255, 0, 92, 0.5),
        0 8px 20px rgba(255, 0, 92, 0.2);
}
.step.completed {
    transform: scale(1) translateZ(8px);
    box-shadow: 0 0 15px rgba(126, 250, 255, 0.3);
}

/* Parallax Star Layers */
.stars {
    transform: translateZ(-2px) scale(1.5);
    will-change: transform;
}

/* 3D Pay Card */
.pay-card {
    transform-style: preserve-3d;
    transition: transform 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
}
.pay-card:hover {
    transform: rotateX(2deg) rotateY(-1deg) translateZ(10px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(126, 250, 255, 0.05);
}

/* 3D Form Container */
.form-container {
    transform-style: preserve-3d;
    transition: box-shadow 0.5s ease;
}
.form-container:hover {
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 1px rgba(126, 250, 255, 0.15);
}

/* 3D Navbar Glow Underline on Active */
.desktop-nav a.active {
    position: relative;
}
.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--soft-blue);
    box-shadow: 0 0 8px var(--soft-blue), 0 2px 12px rgba(126, 250, 255, 0.3);
    border-radius: 2px;
}

/* Subtle 3D depth on file preview appear */
.file-preview {
    transform-style: preserve-3d;
    animation: popIn3d 0.4s ease-out;
}
@keyframes popIn3d {
    from {
        opacity: 0;
        transform: translateY(10px) translateZ(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0) scale(1);
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   LANDING PAGE STYLES v2 — 3D GALACTIC
========================================= */
.particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; background: white; opacity: 0; animation: particleDrift linear infinite; }
@keyframes particleDrift { 0% { opacity: 0; transform: translateY(100vh) scale(0); } 10% { opacity: 1; } 90% { opacity: 1; } 100% { opacity: 0; transform: translateY(-10vh) scale(1); } }
.reveal { opacity: 0; transform: translateY(60px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.landing-nav { display: flex; justify-content: space-between; align-items: center; padding: 18px 5%; position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(5,5,10,0.6); backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid rgba(126,250,255,0.08); transition: background 0.4s, box-shadow 0.4s; }
.landing-nav.scrolled { background: rgba(5,5,10,0.95); box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.landing-nav .brand { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; color: white; text-decoration: none; letter-spacing: 2px; }
.landing-nav .brand span { color: var(--primary-pink); }
.nav-links a { color: #ccc; text-decoration: none; margin-left: 28px; font-weight: 500; font-size: 14px; transition: 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary-pink); transition: width 0.3s; }
.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }

.landing-hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 120px 5% 60px; text-align: center; position: relative; overflow: hidden; perspective: 1000px; }
.landing-hero h1 { font-family: 'Montserrat', sans-serif; font-size: 64px; font-weight: 900; line-height: 1.1; margin-bottom: 20px; background: linear-gradient(135deg, #fff 30%, var(--soft-blue) 70%, var(--primary-pink)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; z-index: 2; animation: heroIn 1.2s ease-out; }
@keyframes heroIn { from { opacity: 0; transform: translateY(40px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.hero-subtitle { font-size: 13px; color: var(--soft-blue); text-transform: uppercase; letter-spacing: 6px; font-weight: 700; margin-bottom: 15px; z-index: 2; animation: heroIn 1s ease-out; }
.landing-hero p { font-size: 17px; color: #a0a0a0; max-width: 550px; margin: 0 auto 40px; line-height: 1.7; z-index: 2; animation: heroIn 1.4s ease-out; }

.astro-3d-wrap { perspective: 800px; z-index: 2; margin-bottom: 30px; animation: heroIn 0.8s ease-out; }
.floating-astro { width: 280px; animation: astroFloat 6s ease-in-out infinite; filter: drop-shadow(0 0 40px rgba(126,250,255,0.4)) drop-shadow(0 20px 60px rgba(0,0,0,0.5)); transition: transform 0.1s ease-out; }
@keyframes astroFloat { 0%, 100% { transform: translateY(0) rotateY(0deg) rotateX(0deg); } 25% { transform: translateY(-20px) rotateY(5deg) rotateX(3deg); } 50% { transform: translateY(-10px) rotateY(-3deg) rotateX(-2deg); } 75% { transform: translateY(-25px) rotateY(-5deg) rotateX(4deg); } }
.orbit-ring { position: absolute; border: 1px solid rgba(126,250,255,0.08); border-radius: 50%; animation: orbitSpin 20s linear infinite; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

.landing-section { padding: 100px 5%; position: relative; z-index: 2; }
.landing-section h2 { text-align: center; font-family: 'Montserrat', sans-serif; font-size: 38px; margin-bottom: 15px; color: white; }
.landing-section h2 span { color: var(--primary-pink); }
.section-subtitle { text-align: center; color: #777; font-size: 15px; max-width: 500px; margin: 0 auto 50px; }

.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; max-width: 1100px; margin: 0 auto; perspective: 1000px; }
.about-card { background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.06); padding: 40px 30px; border-radius: 20px; backdrop-filter: blur(10px); transition: all 0.4s ease; text-align: center; position: relative; overflow: hidden; }
.about-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary-pink), var(--soft-blue)); transform: scaleX(0); transition: transform 0.4s; }
.about-card:hover::before { transform: scaleX(1); }
.about-card:hover { transform: translateY(-12px) rotateX(2deg); border-color: rgba(126,250,255,0.2); box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(126,250,255,0.05); }
.about-card i { font-size: 36px; color: var(--primary-pink); margin-bottom: 20px; display: block; transition: 0.3s; }
.about-card:hover i { transform: scale(1.15); color: var(--soft-blue); }
.about-card h3 { color: white; font-size: 22px; margin-bottom: 12px; font-weight: 700; }
.about-card p { color: #999; line-height: 1.7; font-size: 14px; }

.comp-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; perspective: 1200px; }

.stats-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.stat-box { background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); border: 1px solid rgba(126,250,255,0.12); border-radius: 20px; padding: 40px 25px; text-align: center; min-width: 180px; flex: 1; backdrop-filter: blur(10px); transition: all 0.4s ease; position: relative; overflow: hidden; }
.stat-box::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 2px; background: var(--primary-pink); transition: width 0.4s; }
.stat-box:hover::after { width: 80%; }
.stat-box:hover { transform: translateY(-10px) scale(1.03); border-color: var(--primary-pink); box-shadow: 0 0 30px rgba(255,0,92,0.12); }
.stat-number { font-family: 'Montserrat', sans-serif; font-size: 50px; font-weight: 900; background: linear-gradient(135deg, var(--primary-pink), var(--soft-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 8px; }
.stat-label { color: #888; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; max-width: 1100px; margin: 0 auto; }
.gallery-item { background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); border: 1px solid rgba(255,255,255,0.05); border-radius: 16px; padding: 35px 25px; text-align: center; transition: all 0.4s ease; position: relative; overflow: hidden; }
.gallery-item::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary-pink), var(--soft-blue)); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover { transform: translateY(-10px); border-color: rgba(126,250,255,0.15); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.gallery-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,0,92,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; transition: 0.4s; }
.gallery-icon i { font-size: 24px; color: var(--primary-pink); transition: 0.3s; }
.gallery-item:hover .gallery-icon { background: rgba(126,250,255,0.1); transform: scale(1.1) rotateZ(5deg); }
.gallery-item:hover .gallery-icon i { color: var(--soft-blue); }
.gallery-item h4 { color: white; font-size: 17px; margin-bottom: 10px; font-weight: 700; }
.gallery-item p { color: #999; font-size: 13px; line-height: 1.6; }

.cta-section { padding: 120px 5%; text-align: center; position: relative; z-index: 2; }
.cta-section h2 { font-size: 16px; color: #666; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 15px; }
.cta-title { font-family: 'Montserrat', sans-serif; font-size: 56px; font-weight: 900; color: white; margin-bottom: 20px; }
.cta-title span { background: linear-gradient(135deg, var(--primary-pink), #ff6b9d); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.cta-section p { color: #888; max-width: 550px; margin: 0 auto 45px; font-size: 16px; line-height: 1.7; }

.landing-footer { background: rgba(0,0,0,0.6); padding: 60px 5% 25px; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 50px; z-index: 2; position: relative; }
.social-links { margin-bottom: 20px; }
.social-links a { color: white; font-size: 22px; margin: 0 15px; transition: 0.4s; display: inline-block; }
.social-links a:hover { color: var(--primary-pink); transform: scale(1.3) translateY(-5px); }

@media (max-width: 768px) {
    .landing-hero h1 { font-size: 34px; }
    .hero-subtitle { font-size: 11px; letter-spacing: 3px; }
    .nav-links { display: none; }
    .floating-astro { width: 180px; }
    .stat-number { font-size: 36px; }
    .stats-grid { gap: 12px; }
    .stat-box { min-width: 130px; padding: 25px 12px; }
    .cta-title { font-size: 30px; }
    .orbit-ring { display: none; }
}

