
:root {
    --pink-1: #ff4fa1;
    --pink-2: #ff7bc3;
    --pink-3: #ffd8ea;
    --rose-dark: #7a1b54;
    --bg-1: #fff7fb;
    --bg-2: #fff0f7;
    --text-1: #342236;
    --shadow-1: 0 16px 40px rgba(255, 79, 161, .16);
}
html, body { min-height: 100%; }
body {
    font-family: 'Be Vietnam Pro', system-ui, sans-serif;
    background:
        radial-gradient(circle at top right, rgba(255,123,195,.18), transparent 25%),
        radial-gradient(circle at top left, rgba(255,79,161,.12), transparent 20%),
        linear-gradient(180deg, var(--bg-1) 0%, #ffffff 55%, var(--bg-2) 100%);
    color: var(--text-1);
}
.glass-nav {
    background: linear-gradient(90deg, rgba(122,27,84,.96), rgba(255,79,161,.92));
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 30px rgba(122,27,84,.18);
}
.brand-mark { letter-spacing: .3px; }
.hero-surface, .card {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255, 79, 161, .10) !important;
    box-shadow: var(--shadow-1);
}
.hero-surface {
    background: linear-gradient(135deg, rgba(255,255,255,.95) 0%, rgba(255,216,234,.75) 100%);
}
.creator-card, .stat-card, .card {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.creator-card:hover, .stat-card:hover, .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(255, 79, 161, .18);
    border-color: rgba(255, 79, 161, .2) !important;
}
.table > :not(caption) > * > * { padding: .95rem .8rem; }
.rounded-4 { border-radius: 1.4rem !important; }
.form-control, .form-select {
    min-height: 48px;
    border-radius: 1rem;
    border-color: rgba(255, 79, 161, .18);
    background: rgba(255,255,255,.92);
}
textarea.form-control { min-height: 120px; }
.form-control:focus, .form-select:focus {
    border-color: rgba(255,79,161,.55);
    box-shadow: 0 0 0 .25rem rgba(255,79,161,.12);
}
.btn {
    border-radius: 999px !important;
    padding: .78rem 1.2rem;
    font-weight: 700;
    border: 0;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-gradient, .btn-dark, .btn-primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--pink-1), #ff6ab5 50%, #ff9ccf 100%);
    box-shadow: 0 12px 24px rgba(255,79,161,.28);
}
.btn-gradient:hover, .btn-dark:hover, .btn-primary:hover {
    background: linear-gradient(135deg, #ff72bb, #ff4fa1 55%, #f44f9d 100%);
    filter: saturate(1.06);
}
.btn-outline-pink {
    color: var(--pink-1);
    background: rgba(255,79,161,.08);
    border: 1px solid rgba(255,79,161,.18);
}
.btn-outline-pink:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
}
.btn-light.btn-pill {
    color: var(--rose-dark);
    background: rgba(255,255,255,.94);
}
.badge-soft-pink {
    color: var(--rose-dark);
    background: rgba(255,79,161,.12);
    border: 1px solid rgba(255,79,161,.12);
}
.creator-cover {
    position: relative;
    min-height: 230px;
    border-radius: 1.6rem;
    overflow: hidden;
    background: linear-gradient(135deg, #ffd5ea, #ffc3df 45%, #ffa9d0 100%);
}
.creator-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.creator-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(52,34,54,.02), rgba(52,34,54,.28));
}
.creator-cover-content {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 2;
    display: flex;
    align-items: end;
    gap: 1rem;
    color: white;
}
.creator-avatar {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,.9);
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    box-shadow: 0 12px 28px rgba(0,0,0,.15);
    flex: 0 0 auto;
    display: grid;
    place-items: center;
}
.creator-avatar img { width: 100%; height: 100%; object-fit: cover; }
.creator-avatar-fallback {
    font-weight: 800;
    font-size: 1.55rem;
    color: #fff;
    letter-spacing: .06em;
}
.creator-mini-avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    overflow: hidden;
    flex: 0 0 auto;
    background: linear-gradient(135deg, var(--pink-1), var(--pink-2));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
}
.creator-mini-avatar img { width: 100%; height: 100%; object-fit: cover; }
.metric-chip {
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: .6rem .9rem;
    color: var(--rose-dark);
    font-weight: 600;
}
.table thead th {
    color: #8c5570;
    font-weight: 700;
}
.nav-link { color: rgba(255,255,255,.85) !important; }
.nav-link:hover, .nav-link.active { color: #fff !important; }
