/* LANDING.CSS */
/* Base styles */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --primary-color: #E5BE01; /* The gold/yellow color from the logo */
    --background-color: #000000;
    --text-color: #ffffff;
    --secondary-color: #333333;
}

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

body {
    font-family: 'JetBrains Mono', monospace;
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.landing-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.logo-symbol {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.enter-text {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 1rem;
    cursor: pointer;
    animation: pulse 2s infinite;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .logo {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.6rem;
    }
}