/* --- Variables --- */
:root {
    --color-bg: #050505;        /* Void Black */
    --color-panel: #111111;
    --color-purple: #b026ff;    /* Neon Purple */
    --color-cyan: #00f3ff;      /* Cyber Cyan */
    --color-text: #eeeeee;
    --color-grey: #444444;
    
    --font-head: 'Montserrat', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    --glow: 0 0 10px rgba(176, 38, 255, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-mono);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; filter: grayscale(100%); transition: 0.5s; }
img:hover { filter: grayscale(0%); }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* --- Header --- */
.hub-header { padding: 30px 0; position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(5,5,5,0.9); backdrop-filter: blur(5px); border-bottom: 1px solid #222; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; font-weight: 900; letter-spacing: -1px; }
.neon-purple { color: var(--color-purple); text-shadow: var(--glow); }
.cursor { animation: blink 1s infinite; color: var(--color-cyan); }
@keyframes blink { 50% { opacity: 0; } }

.cyber-nav ul { display: flex; gap: 30px; align-items: center; }
.cyber-nav a { font-size: 0.9rem; font-weight: bold; color: #888; }
.cyber-nav a:hover, .cyber-nav a.active { color: var(--color-white); text-shadow: 0 0 5px #fff; }

.btn-cyan { border: 1px solid var(--color-cyan); color: var(--color-cyan) !important; padding: 10px 25px; transition: 0.3s; box-shadow: 0 0 5px var(--color-cyan); }
.btn-cyan:hover { background-color: var(--color-cyan); color: #000 !important; }

.mobile-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 30px; height: 2px; background-color: var(--color-purple); }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-bg); z-index: 2000;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: 0.3s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.close-menu { position: absolute; top: 30px; right: 30px; font-size: 2rem; color: var(--color-purple); background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; margin: 15px 0; color: #fff; font-weight: 900; }

/* --- Hero --- */
.hero-cyber { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: -2; opacity: 0.4; }
.overlay-grid { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; 
    background-image: linear-gradient(rgba(176, 38, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(176, 38, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content { z-index: 1; padding: 20px; }
.status-badge { border: 1px solid var(--color-cyan); color: var(--color-cyan); padding: 5px 10px; font-size: 0.8rem; display: inline-block; margin-bottom: 20px; box-shadow: 0 0 10px var(--color-cyan); }
.hero-content h1 { font-family: var(--font-head); font-size: 5rem; line-height: 1; margin-bottom: 20px; font-weight: 900; }
.glitch-text { color: var(--color-purple); text-shadow: 2px 2px 0px var(--color-cyan); }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; color: #ccc; }

.cta-group { display: flex; gap: 20px; justify-content: center; }
.btn-primary { background-color: var(--color-purple); color: #fff; padding: 15px 30px; font-weight: bold; border: none; cursor: pointer; }
.btn-primary:hover { background-color: #fff; color: #000; }
.btn-secondary { border: 1px solid #fff; color: #fff; padding: 15px 30px; font-weight: bold; }
.btn-secondary:hover { border-color: var(--color-cyan); color: var(--color-cyan); }

/* --- Modules --- */
.section-padding { padding: 100px 0; }
.section-title { margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; color: #fff; }
.line-purple { width: 100px; height: 4px; background-color: var(--color-purple); margin-top: 10px; }

.module-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.module-card { background-color: var(--color-panel); padding: 30px; border: 1px solid #222; transition: 0.3s; position: relative; overflow: hidden; }
.module-card:hover { border-color: var(--color-purple); box-shadow: var(--glow); }
.module-card .icon { font-size: 3rem; margin-bottom: 20px; }
.module-card h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 10px; }
.module-card p { color: #888; font-size: 0.9rem; }

/* --- Event Banner --- */
.event-banner { background-color: var(--color-purple); color: #fff; padding: 40px 0; margin-top: 50px; }
.banner-content { display: flex; justify-content: space-between; align-items: center; }
.date span { display: block; font-size: 0.8rem; opacity: 0.8; }
.date strong { font-family: var(--font-head); font-size: 3rem; line-height: 1; }
.info h3 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 5px; }
.btn-ticket { background: #000; color: #fff; padding: 15px 40px; font-weight: bold; border: 1px solid #fff; }
.btn-ticket:hover { background: #fff; color: #000; }

/* --- Spaces (About) --- */
.page-head { text-align: center; margin-bottom: 80px; }
.page-head h1 { font-family: var(--font-head); font-size: 4rem; text-transform: uppercase; }

.space-list { display: flex; flex-direction: column; gap: 80px; }
.space-item { display: flex; gap: 50px; align-items: center; }
.space-item.reverse { flex-direction: row-reverse; }
.s-img { flex: 1; position: relative; }
.s-img img { border: 1px solid var(--color-cyan); }
.badge-loc { position: absolute; top: -10px; right: -10px; background: var(--color-cyan); color: #000; padding: 5px 15px; font-weight: bold; font-family: var(--font-head); }
.s-info { flex: 1; }
.s-info h3 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 20px; }
.specs { margin: 20px 0; color: #aaa; }
.specs li::before { content: '> '; color: var(--color-purple); }
.link-neon { color: var(--color-purple); font-weight: bold; border-bottom: 1px solid var(--color-purple); }

/* --- Community --- */
.founder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.founder-card { background: var(--color-panel); padding: 30px; border: 1px solid #222; }
.founder-card.highlight { border-color: var(--color-cyan); }
.f-avatar { width: 50px; height: 50px; background: #333; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: bold; margin-bottom: 20px; color: var(--color-cyan); }
.founder-card h3 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 15px; }
.founder-card p { font-size: 0.9rem; color: #ccc; margin-bottom: 20px; }
.f-name { font-size: 0.8rem; color: var(--color-purple); font-weight: bold; }

/* --- Contact --- */
.apply-container { max-width: 700px; margin: 0 auto; border: 1px solid var(--color-purple); padding: 50px; background: rgba(17,17,17,0.8); }
.form-header { text-align: center; margin-bottom: 40px; }
.form-header h2 { font-family: var(--font-head); font-size: 2.5rem; }

.cyber-form .input-line { margin-bottom: 30px; }
.cyber-form label { display: block; color: var(--color-cyan); font-size: 0.8rem; margin-bottom: 10px; }
.cyber-form input, .cyber-form select, .cyber-form textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid #444; color: #fff; padding: 10px 0; font-family: var(--font-mono); outline: none; }
.cyber-form input:focus { border-bottom-color: var(--color-purple); }
.btn-glitch { width: 100%; background: var(--color-purple); color: #fff; padding: 20px; border: none; font-family: var(--font-head); font-weight: 900; font-size: 1.2rem; cursor: pointer; margin-top: 20px; }
.btn-glitch:hover { background: var(--color-cyan); color: #000; }

/* --- Legal --- */
.data-terminal { max-width: 800px; margin: 0 auto; background: #000; padding: 40px; border: 1px solid #333; font-family: 'Courier New', monospace; }
.data-terminal h1 { color: var(--color-cyan); font-size: 2rem; }
.data-terminal h3 { margin-top: 30px; color: var(--color-purple); }
.data-terminal p { color: #888; font-size: 0.9rem; }

/* --- Footer --- */
.hub-footer { border-top: 1px solid #222; padding: 60px 0; margin-top: auto; }
.footer-content { display: flex; justify-content: space-between; align-items: flex-end; }
.f-brand { font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; }
.f-social a { margin-left: 20px; color: #888; }
.f-social a:hover { color: var(--color-cyan); }
.copyright { color: #444; font-size: 0.8rem; }

@media (max-width: 992px) {
    .cyber-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    .space-item, .space-item.reverse { flex-direction: column; }
    .banner-content, .founder-grid { flex-direction: column; gap: 30px; }
    .banner-content { text-align: center; }
    .module-grid { grid-template-columns: 1fr; }
}