:root {
    --para-red: #ff3b3b; /* */
    --nom-blue: #00a2ff; /* */
    --accent-cyan: #00ffff;
    --evil-red: #700000;
    --dark-bg: #030303;
}

body {
    background-color: var(--dark-bg);
    color: #f0f0f0;
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

/* Film Grain texture for a grimy feel */
.grain {
    position: fixed;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/7/76/1k_Grain_Noise.png');
    opacity: 0.05;
    pointer-events: none;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 100px 0;
    text-align: center; /* Center all child text elements */
    z-index: 2;
}

/* Header Branding */
.studio-logo {
    width: 80px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.2rem, 10vw, 4.2rem);
    margin: 0;
    letter-spacing: -3px;
    line-height: 1.1;
}

.red { color: var(--para-red); }
.blue { color: var(--nom-blue); }

.pronunciation {
    font-family: 'Space Mono', monospace;
    color: var(--accent-cyan);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 15px;
    opacity: 0.8;
}

.location {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #444;
    margin-top: 30px;
}

/* Definition Section - Centered dictionary style */
.definition-section {
    max-width: 600px;
    margin: 80px auto;
    padding: 0 20px;
}

.def-block {
    margin-bottom: 25px;
}

.def-block p {
    color: #777;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.def-block strong {
    color: #eee;
    font-family: 'Space Mono', monospace;
}

/* Evil Project Card - Fully Centered */
.evil-card {
    background: #000;
    border: 1px solid #111;
    padding: 80px 40px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items in flex column */
}

.status-tag {
    font-family: 'Space Mono', monospace;
    color: var(--evil-red);
    font-size: 0.7rem;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.game-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 7vw, 3.5rem);
    margin: 0 0 20px 0;
    color: #fff;
    text-shadow: 0 0 20px rgba(112, 0, 0, 0.4);
}

.game-pitch {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: #888;
    line-height: 1.4;
    max-width: 500px;
    margin-bottom: 40px;
}

/* Button */
.evil-btn {
    display: inline-block;
    padding: 18px 45px;
    background: #080808;
    color: #fff;
    border: 1px solid #222;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.evil-btn:hover {
    background: var(--evil-red);
    border-color: var(--para-red);
    box-shadow: 0 0 30px rgba(112, 0, 0, 0.6);
}

footer {
    margin-top: 100px;
    font-size: 0.6rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 3px;
}