.welcome-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    padding: 2rem;
    animation: fadeIn 1s ease-in-out;
}

.welcome-logo {
    width: 220px;
    height: 220px;
    margin-bottom: 2rem;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.4), inset 0 0 20px rgba(0, 255, 136, 0.2);
    border: 2px solid rgba(0, 255, 136, 0.3);
}

.welcome-title {
    font-family: 'Jersey 15', sans-serif;
    font-size: 6rem;
    color: #00ffff;
    text-shadow: 0 0 10px #00ff88, 0 0 20px #ff006e;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    line-height: 1;
}

.welcome-desc {
    font-family: "DotGothic16", sans-serif;
    font-size: 1.5rem;
    color: rgba(0, 255, 136, 0.8);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Enlarge the existing run button for the landing page */
.welcome-btn {
    font-family: 'Jersey 15', sans-serif;
    font-size: 2rem;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
}

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