#intro-overlay {
    position: fixed;
    inset: 0;
    background-color: #00356b;
    z-index: 10000;
    cursor: crosshair;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
}

#crack-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

#intro-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    pointer-events: none;
}

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

body {
    min-height: 100vh;
    background-color: #a51c30;
    color: #fff4f1;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}

.page-inner {
    max-width: 42rem;
    text-align: center;
}

.page h1 {
    font-size: clamp(2.1rem, 6vw, 4.2rem);
    line-height: 0.95;
    letter-spacing: 0.08em;
    margin-bottom: 2rem;
}

.page p {
    font-size: clamp(0.98rem, 1.6vw, 1.12rem);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
    .page {
        padding-top: 6rem;
    }

    .page h1 {
        margin-bottom: 1.5rem;
    }
}
