
:root {
    --bg-dark: #05070a;
    --card-bg: #0d1117;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --border-dim: #1e293b;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-family);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Gradients */
.glow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Header & Nav */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dim);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 8px var(--accent-blue));
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* Hero Section */
.hero {
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.status-badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--accent-blue);
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
}

/* Coming Soon Container */
.dev-details {
    padding: 100px 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.dev-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dim);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.dev-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
}

.dev-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dev-card h3 i { color: var(--accent-blue); }

.progress-bar {
    width: 100%;
    height: 8px;
    background: #1e293b;
    border-radius: 4px;
    margin: 20px 0;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-green));
    width: 75%;
}

/* Terminal Look */
.terminal-section {
    background: #000;
    border: 1px solid var(--border-dim);
    border-radius: 12px;
    padding: 20px;
    font-family: 'Courier New', Courier, monospace;
    margin: 60px 80px;
    font-size: 0.9rem;
    color: #a6accd;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.terminal-header {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.command { color: var(--accent-green); }
.output { margin-bottom: 8px; }

/* Contact Section */
.cta-section {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0a0e14 100%);
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #5865f2;
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    margin-top: 30px;
}

.discord-btn:hover {
    background: #4752c4;
    transform: scale(1.05);
}

footer {
    padding: 40px 80px;
    border-top: 1px solid var(--border-dim);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header, .dev-details, .terminal-section, footer {
        padding: 20px;
    }
    .hero h1 { font-size: 3rem; }
}
