modify ths css based to be futuristic elite :root {
    --bg-color: #0a0a0a;
    --text-color: #e0e0e0;
    --accent-color: #c5a059; /* Muted Gold */
    --secondary-text: #666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-weight: 400;
}

.access-bar {
    display: flex;
    gap: 10px;
}

input[type="text"], input[type="password"] {
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 10px;
    font-family: monospace;
}

button {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
}

.post-meta {
    font-size: 0.8rem;
    color: var(--secondary-text);
    border-left: 2px solid var(--accent-color);
    padding-left: 10px;
    margin-bottom: 30px;
}

.related-box {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.related-item {
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

.locked-content {
    filter: blur(5px);
    user-select: none;
}

/* Add to style.css */
.login-wrapper {
    background-color: var(--bg-color);
}

.login-box {
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
}
 
input:focus {
    outline: 1px solid var(--accent-color);
    border-color: var(--accent-color);
}