:root {
    --bg-base: #0a0b0e;
    --bg-panel: #14171d;
    --bg-card: #1c2028;
    --accent-blue: #00d2ff;
    --accent-hover: #0099cc;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    
    --status-live: #10b981;
    --status-dev: #f59e0b;
    --status-plan: #3b82f6;
}

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

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem; }
.bg-panel { background-color: var(--bg-panel); }
.text-center { text-align: center; }

h1, h2, h3, h4 { color: #ffffff; margin-bottom: 1rem; }
p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--bg-panel);
    border-bottom: 1px solid #2a2f3a;
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo-container { display: flex; align-items: center; gap: 10px; }
.nav-logo { width: 40px; height: 40px; border-radius: 4px; }
.navbar h1 { font-size: 1.5rem; margin: 0; letter-spacing: 2px; }
.navbar nav a { color: var(--text-main); text-decoration: none; margin-left: 2rem; font-weight: 500; transition: color 0.2s; }
.navbar nav a:hover { color: var(--accent-blue); }

.btn-primary { background-color: var(--accent-blue); color: var(--bg-base) !important; padding: 0.5rem 1.2rem; border-radius: 4px; font-weight: bold; }
.btn-primary:hover { background-color: var(--accent-hover); }

/* Hero Section */
.hero { text-align: center; padding: 6rem 2rem; background: radial-gradient(circle at center, #1c2028 0%, #0a0b0e 100%); }
.hero-image { width: 200px; margin-bottom: 2rem; filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.2)); }
.hero h2 { font-size: 3rem; color: var(--accent-blue); }
.hero p { max-width: 600px; margin: 0 auto 2rem auto; font-size: 1.2rem; }

/* Status Banner */
.status-banner {
    display: inline-flex; align-items: center; gap: 10px;
    background-color: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--status-dev); padding: 0.5rem 1rem; border-radius: 50px;
    font-size: 0.9rem; font-weight: bold;
}
.indicator.pulse { width: 10px; height: 10px; background-color: var(--status-dev); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.editor-screenshot { width: 100%; border-radius: 8px; border: 1px solid #2a2f3a; box-shadow: 0 10px 30px rgba(0,0,0,0.5); margin-top: 2rem; }

/* Features Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.card { background-color: var(--bg-card); padding: 1.5rem; border-radius: 6px; border: 1px solid #2a2f3a; transition: border-color 0.2s; }
.card:hover { border-color: var(--accent-blue); }
.card ul { list-style: none; color: var(--text-muted); }
.card ul li { margin-bottom: 0.5rem; padding-left: 1.5rem; position: relative; }
.card ul li::before { content: "▹"; position: absolute; left: 0; color: var(--accent-blue); }

.badge { font-size: 0.7rem; padding: 0.2rem 0.6rem; border-radius: 4px; float: right; text-transform: uppercase; font-weight: bold; }
.badge.live { background-color: rgba(16, 185, 129, 0.1); color: var(--status-live); border: 1px solid var(--status-live); }
.badge.dev { background-color: rgba(245, 158, 11, 0.1); color: var(--status-dev); border: 1px solid var(--status-dev); }
.badge.plan { background-color: rgba(59, 130, 246, 0.1); color: var(--status-plan); border: 1px solid var(--status-plan); }
.disclaimer { font-style: italic; border-left: 3px solid var(--status-dev); padding-left: 1rem; }

/* Blog Specific */
.blog-content p { color: var(--text-main); margin-bottom: 1rem; }
.blog-content img { max-width: 100%; height: auto; border-radius: 4px; margin: 1rem 0; border: 1px solid #2a2f3a; }
.blog-content ul, .blog-content ol { margin-left: 2rem; margin-bottom: 1.5rem; color: var(--text-main); }
.blog-content a { color: var(--accent-blue); text-decoration: none; }
.blog-content a:hover { text-decoration: underline; }

footer { background-color: #050608; padding: 4rem 0; border-top: 1px solid #14171d; }
.copyright { font-size: 0.9rem; margin-top: 2rem; opacity: 0.5; }