:root {
    --bg-dark: #0a0a0c;
    --cyan: #00f7ff;
    --cyan-glow: rgba(0, 247, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
}

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

body {
    background: var(--bg-dark);
    background-image: 
        linear-gradient(rgba(10, 10, 12, 0.95), rgba(10, 10, 12, 0.85)),
        url('/img/bg.png');
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 4%; }
.glass { 
    background: var(--glass-bg); 
    backdrop-filter: blur(12px); 
    border: 1px solid var(--glass-border); 
    border-radius: 16px;
    padding: 40px;
}

header { padding: 30px 0; background: rgba(0,0,0,0.5); border-bottom: 1px solid var(--glass-border); position: sticky; top: 0; z-index: 100; }
.navbar { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 900; font-size: 1.4rem; letter-spacing: 2px; text-decoration: none; color: white; }
.cyan { color: var(--cyan); text-shadow: 0 0 15px var(--cyan-glow); }
nav a { text-decoration: none; color: var(--text-primary); margin-left: 30px; font-size: 0.85rem; font-weight: 700; opacity: 0.7; transition: 0.3s; letter-spacing: 1px; }
nav a:hover { opacity: 1; color: var(--cyan); }

.hero { margin: 80px 0; text-align: center; }
.hero h1 { font-size: 4rem; font-weight: 900; line-height: 1.1; margin-bottom: 20px; }
.subtitle { font-size: 1.2rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto 40px; }
.btn { display: inline-block; padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: 0.3s; margin: 0 10px; font-size: 0.9rem; }
.btn.primary { background: var(--cyan); color: #000; box-shadow: 0 0 30px var(--cyan-glow); }
.btn.secondary { border: 1px solid var(--glass-border); color: white; }
.btn:hover { transform: translateY(-3px); }

.section-title { font-size: 2rem; margin-bottom: 40px; border-left: 4px solid var(--cyan); padding-left: 20px; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 30px; }
.post-card { padding: 30px; transition: 0.3s; }
.post-card:hover { border-color: var(--cyan); box-shadow: 0 0 40px rgba(0, 247, 255, 0.1); }
.post-meta { font-size: 0.75rem; color: var(--cyan); font-weight: 900; text-transform: uppercase; margin-bottom: 15px; }
.post-card h3 { font-size: 1.4rem; margin-bottom: 15px; }
.post-card h3 a { color: white; text-decoration: none; }
.post-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 20px; }
.read-more { color: var(--cyan); text-decoration: none; font-weight: 700; font-size: 0.85rem; }

.post-single { margin: 60px 0; max-width: 900px; margin-left: auto; margin-right: auto; }
.post-header { margin-bottom: 40px; }
.post-title { font-size: 3rem; font-weight: 900; }
.post-content { font-size: 1.1rem; color: #ddd; }
.post-content p { margin-bottom: 25px; }

footer { padding: 80px 0; margin-top: 100px; border-top: 1px solid var(--glass-border); background: rgba(0,0,0,0.3); text-align: center; }
.footer-content p { margin-bottom: 10px; }
.muted { font-size: 0.8rem; opacity: 0.5; }
