/**
 * Welcome screen styles for AI Blog Writer plugin.
 * Matches the AiBlogPress dark theme design.
 */

:root {
    --abp-dark: #0f0a1e;
    --abp-purple: #7c3aed;
    --abp-purple-light: #a78bfa;
    --abp-orange: #f97316;
}

/* Hide WP admin bar chrome on welcome page */
#wpcontent {
    padding-left: 0 !important;
}

#wpbody-content {
    padding-bottom: 0;
}

.abp-welcome-screen {
    min-height: 100vh;
    background: var(--abp-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    margin-left: -20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.abp-welcome-content {
    max-width: 640px;
}

.abp-welcome-logo {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #a78bfa, #7c3aed, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 4px;
    margin-bottom: 16px;
}

.abp-welcome-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.2);
    color: var(--abp-purple-light);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 32px;
}

.abp-welcome-headline {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.abp-welcome-headline em {
    font-style: normal;
    color: var(--abp-orange);
}

.abp-welcome-sub {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.abp-welcome-cta {
    display: inline-block;
    background: var(--abp-orange);
    color: #fff;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.abp-welcome-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(249, 115, 22, 0.5);
    color: #fff;
    text-decoration: none;
}

.abp-welcome-features {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    justify-content: center;
}

.abp-welcome-feature {
    text-align: center;
}

.abp-welcome-feature .num {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.abp-welcome-feature .label {
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .abp-welcome-headline {
        font-size: 28px;
    }

    .abp-welcome-features {
        flex-direction: column;
        gap: 16px;
    }

    .abp-welcome-screen {
        padding: 20px;
    }
}
