/**
 * Welcome Page Styles - Modern UI Redesign
 */
.wesub-welcome-wrap {
    max-width: 1200px;
    margin: 40px auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Hero Section with Animated Gradient */
.wesub-welcome-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 60px 40px;
    background: linear-gradient(-45deg, #4f46e5, #a855f7, #6366f1, #3b82f6);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    border-radius: 24px;
    color: white;
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.4);
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.wesub-welcome-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: white;
    letter-spacing: -1px;
}

.wesub-welcome-subtitle {
    font-size: 20px;
    opacity: 0.9;
    margin: 0;
    font-weight: 400;
}

/* Glassmorphism Cards */
.wesub-welcome-section {
    margin-bottom: 40px;
}

.wesub-welcome-card {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wesub-welcome-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 1);
}

/* About Section */
.wesub-brand-card {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
}

.wesub-brand-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.wesub-brand-icon .dashicons {
    font-size: 44px;
    width: 44px;
    height: 44px;
    color: white;
}

.wesub-brand-card h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.wesub-brand-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #475569;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Grid */
.wesub-welcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.wesub-welcome-grid .wesub-welcome-card {
    text-align: left;
    padding: 32px;
}

.wesub-welcome-grid .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: #6366f1;
    margin-bottom: 20px;
    background: #e0e7ff;
    padding: 12px;
    border-radius: 16px;
}

.wesub-welcome-grid h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #0f172a;
}

.wesub-coming-soon-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.wesub-welcome-grid p {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 24px 0;
}

.wesub-welcome-grid .button-primary {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 8px 20px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    transition: all 0.3s;
}

.wesub-welcome-grid .button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

/* Support Section */
.wesub-support-card {
    text-align: center;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    box-shadow: none;
}

.wesub-support-card:hover {
    box-shadow: none;
    border-color: #6366f1;
}

.wesub-support-card h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: #0f172a;
}

.wesub-support-card p {
    font-size: 18px;
    color: #475569;
    margin: 0 0 30px 0;
}

.wesub-support-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.wesub-support-links .button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
}

.wesub-support-links .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Footer */
.wesub-welcome-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: 40px;
}

.wesub-welcome-footer p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.wesub-welcome-footer a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.wesub-welcome-footer a:hover {
    color: #a855f7;
}

@media (max-width: 768px) {
    .wesub-welcome-header h1 {
        font-size: 36px;
    }
    .wesub-welcome-grid {
        grid-template-columns: 1fr;
    }
    .wesub-support-links {
        flex-direction: column;
    }
    .wesub-support-links .button {
        width: 100%;
        justify-content: center;
    }
}