:root {
    --bg-dark: #05010a;
    --text-light: #f5f5f7;
    --text-muted: #a1a1a6;
    --accent: #d0bfff;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

body.splash {
    background: url('assets/vesper_bg.png');
    background-size: cover;
    background-position: center;
}

body.main {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.95)), url('assets/vesper_bg.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.glass {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(208, 191, 255, 0.1);
    border-radius: 40px;
}

h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 700;
}

/* Splash Page Styling */
.splash-hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.splash-box {
    padding: 6rem 3rem;
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.splash-box h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
    text-shadow: 0 0 30px rgba(208, 191, 255, 0.3);
}

.splash-box h2 {
    font-size: 1.3rem;
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 3rem;
    font-weight: 400;
    opacity: 0.8;
}

.splash-box p {
    font-style: italic;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.7;
}

.enter-button {
    display: inline-block;
    padding: 18px 56px;
    background: var(--accent);
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.enter-button:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(208, 191, 255, 0.5);
}

/* Inner Page Styling */
.main-content {
    min-height: 100vh;
    padding: 12rem 2rem 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content-header {
    text-align: center;
    margin-bottom: 8rem;
}

.content-header h1 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: var(--accent);
}

.content-header p {
    font-size: 1.6rem;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

.content-header small {
    display: block;
    margin-top: 2rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    opacity: 0.4;
    font-family: var(--font-main);
}

nav {
    padding: 3rem;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 4rem;
    z-index: 100;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}

footer {
    display: none;
}

@media (max-width: 768px) {
    .splash-box h1 {
        font-size: 3rem;
    }

    .content-header h1 {
        font-size: 3.5rem;
    }
}