:root {
    --bg-dark: #12161c;
    --bg-panel: #1d232b;
    --border-color: #444c5e;
    --text-main: #ffffff;
    --text-muted: #a3adc2;
    --accent-blue: #5ec6ff;
    --accent-orange: #ff9800;
    --accent-yellow: #fbc02d;
    --discord-blurple: #5865F2;
}

body, html {
    margin: 0; padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', system-ui, sans-serif;
    overflow-x: hidden;
}

.highlight-blue { color: var(--accent-blue); }
.highlight-orange { color: var(--accent-orange); }
.highlight-yellow { color: var(--accent-yellow); }

/* --- NAVIGATION --- */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    height: 60px; display: flex; align-items: center;
    background: rgba(18, 22, 28, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}
.nav-container {
    width: 100%; max-width: 1400px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center; padding: 0 20px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: bold; }
.nav-logo img { height: 24px; width: auto; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: 0.2s; }
.nav-links a:hover { color: #fff; }

/* --- BUTTONS --- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 12px 24px; border-radius: 8px; font-weight: bold;
    text-decoration: none; transition: 0.3s;
    min-width: 180px;
}
.btn-primary { background: var(--accent-blue); color: #000; }
.btn-secondary { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid var(--border-color); }
.btn-discord { background: var(--discord-blurple); color: #fff; }
.btn:hover { transform: translateY(-2px); opacity: 0.9; }

/* --- HERO --- */
.hero {
    height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; background: radial-gradient(circle at center, #1d232b 0%, #12161c 100%);
    padding: 20px; box-sizing: border-box;
}
.hero-main-logo { width: 100px; margin-bottom: 15px; }
.hero h1 { font-size: clamp(2rem, 8vw, 4rem); margin-bottom: 0.5rem; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 600px; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* --- SHOWCASE --- */
#showcase-pin-container {
    position: relative; width: 100%; height: 100vh; overflow: hidden;
}

.showcase-section {
    position: absolute; top: 0; left: 0; width: 100%; height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 0 10%; box-sizing: border-box;
    opacity: 0; visibility: hidden;
}

.feat-content { flex: 1; max-width: 450px; z-index: 10; }
.feat-content h2 { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 1rem; line-height: 1.2; }
.feat-content p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.5; }

.feat-media { 
    flex: 1.5; 
    display: flex; 
    justify-content: center; 
    align-items: center;
}

.feat-media img {
    max-width: 100%;
    max-height: 70vh;
    height: auto;
    width: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* --- MOBILE FIXES --- */
@media (max-width: 768px) {
    .showcase-section {
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 20px 40px 20px;
        text-align: center;
    }

    .feat-media {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 15px;
    }

    .feat-media img {
        max-height: 40vh;
    }

    .feat-content {
        flex: 1 1 auto;
        max-width: 100%;
        padding: 0;
        overflow-y: auto; /* Fallback for very small screens */
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Footer */
.footer-cta {
    min-height: 40vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    background: var(--bg-panel); padding: 40px 20px;
}
.opensource-notice { margin-top: 10px; color: var(--text-muted); font-size: 0.9rem; }