/* Calm Night Forest Theme */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700;900&display=swap');

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    margin: 0;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    /* Calm, clean modern font */
    font-family: 'Montserrat', sans-serif;
    
    /* New Starry Night Forest Wallpaper */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1436891620584-47fd0e565afb?q=80&w=2574&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #000;
    color: white;
}

.container {
    width: 100%;
    max-width: 400px;
    padding: 100px 24px;
    text-align: center;
}

h1 {
    /* Bigger, bolder title with extra spacing */
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 55px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #ffffff;
    opacity: 0.95;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.site-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    
    color: #ffffff;
    padding: 22px;
    font-size: 1.15rem;
    font-weight: 300; /* Light weight for a "calm" feel */
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-button:active {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0.96);
}

@media (hover: hover) {
    .site-button:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
    }
}

.tbd { opacity: 0.2; pointer-events: none; }
