:root {
    --bg-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 40%, #f97316 80%, #7f1d1d 100%);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --accent: #fdbf11;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

header h1 {
    font-weight: 200;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.entry {
    margin-bottom: 4rem;
}

.entry-header {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.entry-date {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.entry-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin: 0.5rem 0;
}

h3 {
    color: var(--accent);
    font-weight: 400;
    margin-top: 2rem;
}

code {
    background: rgba(0,0,0,0.3);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
}

pre {
    background: rgba(0,0,0,0.4);
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    border: 1px solid var(--glass-border);
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.back-link:hover {
    transform: translateX(-5px);
}

footer {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    letter-spacing: 1px;
}
