/**
 * SEO Optimization Styles for Baige
 * Used for SEO content sections that should be visible to search engines
 */

/* SEO Main Content Container */
.seo-main-content {
    max-width: 960px;
    margin: 24px auto;
    padding: 0 16px;
}

/* SEO Content Block */
.seo-content {
    background: #fff;
    border: 1px solid #e8eaf3;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 5px 18px rgba(31, 41, 55, 0.06);
    color: #374151;
    line-height: 1.85;
}

.seo-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seo-content h2 {
    margin: 28px 0 12px;
    color: #1f2937;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid #667eea;
}

.seo-content h2:first-of-type {
    margin-top: 0;
}

.seo-content p {
    margin: 0 0 14px;
    font-size: 15px;
    color: #4b5563;
}

/* SEO Navigation Links */
.seo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #eef0f5;
}

.seo-links a {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f3f4ff 0%, #e8eaf6 100%);
    color: #5b5fc7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.seo-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

.seo-links a:active {
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .seo-main-content {
        margin: 16px auto;
        padding: 0 12px;
    }

    .seo-content {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .seo-content h1 {
        font-size: 22px;
    }

    .seo-content h2 {
        font-size: 18px;
    }

    .seo-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .seo-links {
        gap: 8px;
        margin-top: 20px;
        padding-top: 16px;
    }

    .seo-links a {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .seo-links {
        justify-content: center;
    }
}
