:root {
    --bg: #0a0a0a;
    --text: #f0f0f0;
    --accent: #ff4500; 
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: "Times New Roman", Times, serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}


body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://grainy-gradients.vercel.app/noise.svg'); 
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

.minimal {
    max-width: 600px;
    width: 100%;
    padding: 100px 20px;
}

.intro-block {
    margin-bottom: 100px;
}

h1.serif {
    font-size: 5rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: -3px;
    line-height: 0.9;
}

.manifesto {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-top: 30px;
    color: #888;
}

/* --- THE DOORS --- */
.action-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #333;
}

.door {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: baseline;
    padding: 30px 0;
    text-decoration: none;
    color: var(--text);
    border-bottom: 1px solid #333;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.door:hover {
    color: var(--accent);
    padding-left: 20px;
}

.no {
    font-family: monospace;
    font-size: 0.8rem;
    opacity: 0.4;
}

.label {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: lowercase;
}

.desc {
    font-size: 0.8rem;
    font-family: monospace;
    opacity: 0.4;
}

.footer {
    margin-top: auto;
    padding: 40px;
    font-size: 0.7rem;
    font-family: monospace;
    color: #444;
}