:root {
    --bg: #2E3B2E; 
    --field-bg: #263326;
    --text-main: #FFFFFF;
    --text-muted: rgba(255, 255, 255, 0.6);
    --accent: #D9C794; 
    --shadow-dark: #1E291E;
    --shadow-light: #384738;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor */
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.8;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
}

/* Background Noise Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s, mix-blend-mode 0.3s, box-shadow 0.3s;
    mix-blend-mode: difference;
    box-shadow: 0 0 10px rgba(217, 199, 148, 0.3);
}

.cursor.hover-active {
    width: 50px;
    height: 50px;
    background-color: #fff;
    mix-blend-mode: difference;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.container {
    max-width: 700px;
    background: var(--bg);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 15px 15px 30px var(--shadow-dark), 
               -15px -15px 30px var(--shadow-light);
    animation: fadeInUp 0.8s ease-out forwards;
    z-index: 1;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h1 {
    font-family: var(--font-serif);
    color: var(--accent);
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

h2 {
    font-family: var(--font-serif);
    color: var(--text-main);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--shadow-dark);
    padding-bottom: 0.5rem;
}

p, li {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.date {
    font-style: italic;
    margin-bottom: 3rem;
    color: var(--text-muted);
}

a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

.back-btn {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.8rem 1.5rem;
    border-radius: 15px;
    background: var(--bg);
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 5px 5px 10px var(--shadow-dark), 
               -5px -5px 10px var(--shadow-light);
    transition: all 0.2s ease;
}

.back-btn:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    body { padding: 2rem 1rem; }
    .container { padding: 2rem; }
    h1 { font-size: 2rem; }
    .cursor { display: none; }
    * { cursor: auto !important; }
}
