:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #F7931A; /* Bitcoin Orange */
    --secondary-accent: #ffffff;
    --dim-text: #888;

    /* Fonts */
    /* Cinzel: Cinematic, classic but sharp serif. Ancient yet timeless. */
    /* --font-main: 'Cinzel', serif; */
    /* Cormorant Garamond: Classic, academic, "Arkham"-esque */
    --font-main: 'Cormorant Garamond', serif;
    /* Space Grotesk: Technical, data-driven sans-serif */
    --font-tech: 'Space Grotesk', sans-serif;

    --card-bg: rgba(10, 10, 10, 0.7);
    --card-border: rgba(247, 147, 26, 0.2); /* Subtle orange border */
    --terminal-bg: #080808;
}

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

html {
    scroll-behavior: smooth;
    overflow: hidden; /* Prevent scrolling on main page since it's single screen */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow: hidden; /* Prevent scrolling */
    width: 100%;
    height: 100vh;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Behind everything */
    opacity: 1;
}

.main-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100vh; /* Full height for centering */
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    padding: 2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    z-index: 100;
    pointer-events: none;
}

header * {
    pointer-events: auto;
}

.logo {
    font-family: var(--font-tech);
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 2px;
    border: 1px solid var(--text-color);
    padding: 0.4rem 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,0.3);
    text-transform: uppercase;
    display: inline-block; /* Since it's alone now */
}

.logo:hover {
    background: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

/* Hero */
.hero {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    mix-blend-mode: normal;
    z-index: 2;
}

h1 {
    font-family: var(--font-main);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1;
    text-transform: uppercase;
    color: #f0f0f0;
    text-shadow: none;
    background: linear-gradient(to bottom, #888 0%, #555 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Reveal Animation: Cinematic fade in */
.reveal-text {
    opacity: 0;
    animation: cinematicReveal 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    filter: blur(10px);
    transform: scale(1.1);
}

@keyframes cinematicReveal {
    0% {
        opacity: 0;
        filter: blur(20px);
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: scale(1);
    }
}

.subtitle-container {
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-family: var(--font-tech);
    font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    letter-spacing: 4px;
    color: var(--dim-text);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 1.5s;
    font-weight: 300;
    background: transparent;
    padding: 0;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.sep {
    color: var(--accent-color);
    opacity: 0.6;
    font-weight: 300;
}

.location-ticker {
    font-family: var(--font-tech);
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--dim-text);
    opacity: 0;
    animation: fadeUp 1s forwards 1.8s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.separator {
    color: var(--accent-color);
    font-size: 0.7rem;
    font-weight: 300;
    opacity: 0.55;
    display: inline-flex;
    align-items: center;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 3.5rem; }
}
