/* ========== Landing Page ========== */

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
}

.landing {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo-placeholder {
    height: 200px; width: auto;
    display: flex; justify-content: center; align-items: center;
    font-size: 14px; opacity: 1;
}

.landing-buttons { display: flex; gap: 20px; margin-top: 10px; }

.landing-buttons a {
    text-decoration: none; background: var(--accent); color: #fff;
    padding: 12px 20px; border-radius: 10px; font-weight: 600;
    min-width: 150px; text-align: center; transition: background .2s, filter .2s;
}
.landing-buttons a:hover { filter: brightness(1.1); }
