/* style.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #050505;
    font-family: 'Inter', sans-serif;
    color: white;
}

#canvas3d {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    pointer-events: none; /* Allows mouse to pass through to 3D layer */
}

h1 {
    font-size: 5rem;
    letter-spacing: 1.5rem;
    margin-bottom: 0;
    text-transform: uppercase;
}

.counter {
    font-size: 2rem;
    font-family: monospace;
    margin: 20px 0;
    color: #00ffcc;
}

.notify-btn {
    pointer-events: auto; /* Re-enable clicking for the button */
    padding: 12px 30px;
    background: transparent;
    border: 1px solid #00ffcc;
    color: #00ffcc;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.notify-btn:hover {
    background: #00ffcc;
    color: #000;
}