@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700&display=swap');

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

body, html {
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Strictly prevents scrolling */
    background-color: #050507;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
}

/* 3D Canvas Background */
#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

/* UI Content */
.content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px 20px 10vh 20px;
    text-align: center;
    pointer-events: none; /* Lets mouse interactions pass through to 3D canvas */
    
    /* Smooth gradient fade at the bottom to ensure text is always readable */
    background: linear-gradient(to top, rgba(5,5,7,0.95) 0%, rgba(5,5,7,0.6) 25%, rgba(5,5,7,0) 100%);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    color: #00e5ff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

h1 {
    /* Fluid typography: scales dynamically between mobile and desktop */
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #ffffff 0%, #888899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: #9999aa;
    margin-top: 15px;
    margin-bottom: 35px;
    max-width: 400px;
}

.notify-btn {
    pointer-events: auto; /* Re-enables clicking for the button */
    padding: 16px 42px;
    background: #ffffff;
    color: #000000;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.3);
    background: #00e5ff;
    color: #050507;
}