:root {
    --background-color: #030303;
    --text-color: #E0E0E0;
    --accent-color: #00FF41;
    --alert-color: #FF3333;
    --font-family: 'Space Mono', monospace;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    overflow: hidden;
    cursor: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    font-size: 14px;
}

.logo {
    font-weight: 700;
}

.status {
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

#rain-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#particle-canvas {
    position: absolute;
    top: -80vh;
    left: 0;
    width: 100%;
    height: 180vh;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.scroll-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    z-index: 10;
}

.scroll-content {
    height: 300vh; /* Adjust as needed for scroll length */
    position: relative;
}

section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.alignment-text {
    font-size: 5rem;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease, filter 0.5s ease;
}

.learning-text {
    font-size: 5rem;
    font-weight: 700;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.monolith-container {
    text-align: center;
}

#monolith-canvas {
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

.legal-text {
    font-size: 14px;
    line-height: 1.6;
}

#fallback-link {
    font-size: 10px;
    color: #555;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
}

#fallback-link:hover {
    color: var(--text-color);
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.1s ease;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #1a1a1a;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    color: var(--text-color);
    position: relative;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}


#mute-indicator {
    cursor: pointer;
    padding: 10px;
    position: absolute;
    top: 10px;
    right: 20px;
}
