/*
 * Dedicated stylesheet for profile-banner.html.
 * Extracted from the inline <style> block to keep the markup clean.
 */
body {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 80%);
}

.banner-page-header {
    max-width: 960px;
    margin: 2.5rem auto;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    background: radial-gradient(circle at top right, rgba(244, 114, 182, 0.15), transparent 55%),
                radial-gradient(circle at bottom left, rgba(56, 189, 248, 0.2), transparent 60%),
                #ffffff;
    box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.25);
    position: relative;
    overflow: hidden;
}

.banner-page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.05), transparent 65%);
    pointer-events: none;
}

.banner-page-header h1 {
    font-size: clamp(2rem, 3vw, 2.75rem);
    margin-bottom: 1.25rem;
    color: #0f172a;
}

.banner-page-header p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.9;
}

.banner-price-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.banner-price-badge {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(14, 165, 233, 0.25));
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    display: inline-flex;
    flex-direction: column;
    min-width: 220px;
}

.banner-price-badge span:first-child {
    color: #be123c;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}

.banner-price-badge strong {
    font-size: 1.35rem;
    color: #0f172a;
}

.profile-banner-grid {
    max-width: 1100px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    padding: 0 1.25rem;
}

.profile-banner-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 40px -40px rgba(15, 23, 42, 0.3);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.profile-banner-card header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.profile-banner-card header h2 {
    font-size: 1.35rem;
    margin: 0;
    color: #0f172a;
}

.profile-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    background: rgba(59, 130, 246, 0.15);
    color: #1d4ed8;
}

.profile-banner-meta {
    display: grid;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #475569;
}

.banner-perks {
    display: grid;
    gap: 0.6rem;
    padding-right: 1.25rem;
    color: #0f172a;
}

.banner-perks li {
    position: relative;
    line-height: 1.8;
}

.banner-perks li::before {
    content: '\\f5b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #22c55e;
    position: absolute;
    right: -1.25rem;
}

.banner-page-footer {
    max-width: 960px;
    margin: 0 auto 4rem;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(236, 72, 153, 0.18));
    border: 1px solid rgba(15, 23, 42, 0.12);
    text-align: center;
    color: #0f172a;
}

.banner-page-footer h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cta-buttons a {
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
}

.cta-primary {
    background: #1d4ed8;
    color: #ffffff;
}

.cta-secondary {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.1);
}

@media (max-width: 768px) {
    .banner-page-header {
        padding: 2rem 1.5rem;
    }

    .banner-price-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .profile-banner-grid {
        grid-template-columns: 1fr;
    }
}
