.landing-body {
    background: #14161b;
    color: #e8e8ea;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.landing-box {
    text-align: center;
    max-width: 480px;
    padding: 40px;
}

.landing-title {
    color: #ff4fd8;
    font-size: 28px;
    margin: 0 0 8px;
}

.landing-tagline {
    color: #9a9ca5;
    font-size: 15px;
    margin-bottom: 32px;
}

.landing-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.landing-actions .btn-primary,
.landing-actions .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    border: none;
}

.landing-actions .btn-primary {
    background: #ff4fd8;
    color: #1b1d23;
}

.landing-actions .btn-primary:hover {
    background: #ff77e2;
}

.landing-actions .btn-secondary {
    background: transparent;
    color: #e8e8ea;
    border: 1px solid #3a3d47;
}

.landing-actions .btn-secondary:hover {
    border-color: #ff4fd8;
    color: #ff4fd8;
}

.landing-note {
    color: #6b6d76;
    font-size: 12px;
}
