/* Landing Page Specific Styles */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

#landing.view {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: pageEnter 0.5s ease-out;
}

.landing-container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    text-align: center;
    color: var(--text-color);
    margin: 0 auto;
}

.logo-container {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-card {
    background: var(--bg-surface);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--text-color);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    transition: transform 0.2s;
    border: none;
    cursor: pointer;
}

@media (hover: hover) {
    .cta-button:hover {
        transform: translateY(-2px);
    }
}

.landing-title {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.landing-tagline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.8;
}

.landing-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.landing-reset-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: underline;
    margin-top: 20px;
}
