/* ============================================
   LANDING PAGE STYLES
   ============================================ */

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background-color: black; /* Set pure black background */
    background-size: cover; /* Make the background cover the full area */
    background-position: center center; /* Center the images */
}

body.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

#landing-container {
    width: 100%;
    max-width: 900px;
    padding: 40px 20px 40px 20px;
}

#landing-dialog {
    background-color: rgba(13, 13, 13, 0.95);
    border: 3px solid #fddc34;
    color: #fddc34;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(253, 220, 52, 0.3), inset 0 0 15px rgba(253, 220, 52, 0.1);
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#typewriter-text {
    white-space: pre-wrap;
    word-wrap: break-word;
    min-height: 40px;
}

#button-container {
    text-align: center;
    margin-top: 15px;
}

.go-inside-btn {
    background-color: transparent;
    border: 2px solid #fddc34;
    color: #fddc34;
    padding: 12px 30px;
    cursor: pointer;
    font-family: 'Share Tech Mono', monospace;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    opacity: 0;
    pointer-events: none;
}

.go-inside-btn.show {
    opacity: 1;
    pointer-events: auto;
    animation: fadeIn 0.5s ease-in;
}

.go-inside-btn:hover {
    background-color: #fddc34;
    color: #0d0d0d;
    box-shadow: 0 0 15px rgba(253, 220, 52, 0.5);
}

.go-inside-btn:active {
    transform: scale(0.95);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile responsiveness */
@media only screen and (max-width: 800px) {
    #landing-container {
        padding-bottom: 20px;
    }

    #landing-dialog {
        font-size: 14px;
        padding: 20px;
    }

    .go-inside-btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}
