/* Landing Modal - SEO-Friendly Welcome Screen */

.landing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.landing-modal {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    padding: 48px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
    position: relative;
}

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

.landing-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.landing-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: block;
}

.landing-modal h1 {
    font-size: 32px;
    font-weight: 500;
    color: #202124;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.landing-modal h2 {
    font-size: 18px;
    font-weight: 400;
    color: #5f6368;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

.landing-features {
    margin: 32px 0;
}

.landing-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.landing-feature-icon {
    width: 24px;
    height: 24px;
    color: #e7c54d;
    flex-shrink: 0;
    margin-top: 2px;
}

.landing-feature-content h3 {
    font-size: 16px;
    font-weight: 500;
    color: #202124;
    margin: 0 0 4px 0;
}

.landing-feature-content p {
    font-size: 14px;
    color: #5f6368;
    margin: 0;
    line-height: 1.5;
}

.landing-cta {
    text-align: center;
    margin-top: 40px;
}

.landing-cta-button {
    background: linear-gradient(135deg, #e7c54d 0%, #d4af37 100%);
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(231, 197, 77, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.landing-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 197, 77, 0.4);
}

.landing-cta-button:active {
    transform: translateY(0);
}

.landing-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e8eaed;
}

.landing-footer p {
    font-size: 13px;
    color: #5f6368;
    margin: 0;
    line-height: 1.6;
}

.landing-footer a {
    color: #e7c54d;
    text-decoration: none;
    font-weight: 500;
}

.landing-footer a:hover {
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .landing-modal {
        padding: 32px 24px;
        max-width: 90%;
    }

    .landing-modal h1 {
        font-size: 24px;
    }

    .landing-modal h2 {
        font-size: 16px;
    }

    .landing-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* SEO Content - Hidden but accessible */
.landing-seo-content {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

