/* ==========================================================================
   User Profile Premium Styles (HiAsian Design Language)
   Strictly: No banner, No bio, No location, No website, Pure Numeric User ID
   ========================================================================== */

.profile-page-wrapper {
    width: 100%;
    margin: 0 auto;
}

/* ==========================================================================
   1. Header Card & Profile Meta
   ========================================================================== */
.profile-header-card {
    background: #141d2c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: clamp(14px, 2vw, 18px);
    padding: clamp(18px, 2.5vw, 28px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
    margin-bottom: clamp(18px, 2.5vw, 26px);
}

.profile-header-content {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 24px);
    flex-wrap: wrap;
}

.profile-avatar-box {
    width: clamp(80px, 9vw, 100px);
    height: clamp(80px, 9vw, 100px);
    border-radius: 50%;
    overflow: hidden;
    background: #151b27;
    border: 2.5px solid var(--accent);
    box-shadow: 0 0 24px var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.profile-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--accent);
    background: #142030;
}

.profile-meta-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-display-name {
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.profile-badge-role {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.profile-badge-role.admin {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.profile-meta-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.profile-meta-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.profile-meta-tag.user-id {
    color: #fff;
    border-color: rgba(53, 213, 191, 0.25);
    background: rgba(53, 213, 191, 0.06);
}

.profile-meta-tag.rank {
    color: var(--accent);
    background: rgba(53, 213, 191, 0.08);
    border-color: rgba(53, 213, 191, 0.25);
}

.profile-meta-tag.points {
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.25);
}

.profile-meta-tag.joined {
    color: #94a3b8;
}

/* Header Mini Stats */
.profile-header-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

@media (max-width: 640px) {
    .profile-header-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .profile-header-stats {
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
        padding: 10px 12px;
    }
}

.p-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 6px;
}

.p-stat-num {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.p-stat-label {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

/* ==========================================================================
   2. Profile Navigation Tabs
   ========================================================================== */
.profile-nav-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
    margin-bottom: 24px;
    padding-bottom: 2px;
}

.profile-nav-tabs::-webkit-scrollbar {
    display: none;
}

.profile-tab-btn {
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 700;
    color: #94a3b8;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 8px 8px 0 0;
}

.profile-tab-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.profile-tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: rgba(53, 213, 191, 0.04);
}

.tab-counter {
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.profile-tab-btn.active .tab-counter {
    background: var(--accent);
    color: #04201c;
    box-shadow: 0 0 10px var(--accent-glow);
}

/* Headings */
.pane-heading {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

/* ==========================================================================
   3. Tab 1: Overview Tab (Stats Grid & Overview Favorites)
   ========================================================================== */
.stats-overview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .stats-overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 540px) {
    .stats-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-card {
    background: #141d2c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 18px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.stat-card-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.stat-indicator {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-card.watching .stat-indicator { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.stat-card.completed .stat-indicator { background: #10b981; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
.stat-card.on-hold .stat-indicator { background: #f59e0b; box-shadow: 0 0 8px rgba(245, 158, 11, 0.6); }
.stat-card.dropped .stat-indicator { background: #ef4444; box-shadow: 0 0 8px rgba(239, 68, 68, 0.6); }
.stat-card.plan-to-watch .stat-indicator { background: #3b82f6; box-shadow: 0 0 8px rgba(59, 130, 246, 0.6); }

.stat-title {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.stat-card-count {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

/* ==========================================================================
   4. Tab 2: Watchlist Filter Bar & Chips
   ========================================================================== */
.watchlist-filter-bar {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    margin-bottom: 24px !important;
    padding: 4px 2px 10px 2px !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
}
.watchlist-filter-bar::-webkit-scrollbar {
    display: none !important;
}

.wl-filter-chip {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    border-radius: 9999px !important;
    background: #141d2c !important;
    border: 1px solid rgba(255, 255, 255, 0.09) !important;
    color: #94a3b8 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer !important;
    user-select: none !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
}

.wl-filter-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.wl-filter-chip.active {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    color: #04201c !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 18px var(--accent-glow) !important;
    transform: translateY(-2px);
}

.wl-filter-count {
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    transition: background 0.2s ease;
}

.wl-filter-chip.active .wl-filter-count {
    background: rgba(4, 32, 28, 0.25) !important;
    color: #04201c !important;
}

.wl-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.wl-filter-chip:hover .wl-status-dot {
    transform: scale(1.25);
}

.wl-status-dot.watching { background: var(--accent); box-shadow: 0 0 8px var(--accent-glow); }
.wl-status-dot.completed { background: #10b981; box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
.wl-status-dot.on-hold { background: #f59e0b; box-shadow: 0 0 8px rgba(245, 158, 11, 0.6); }
.wl-status-dot.dropped { background: #ef4444; box-shadow: 0 0 8px rgba(239, 68, 68, 0.6); }
.wl-status-dot.plan-to-watch { background: #3b82f6; box-shadow: 0 0 8px rgba(59, 130, 246, 0.6); }

/* Backwards compatibility for old filter pills */
.filter-pills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}
.filter-pill {
    padding: 8px 16px;
    border-radius: 12px;
    background: #141d2c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.filter-pill:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}
.filter-pill.active {
    background: var(--accent);
    color: #04201c;
    border-color: var(--accent);
    font-weight: 800;
}

/* ==========================================================================
   5. Anime Cards Grid (Watchlist, Favorites, Overview)
   ========================================================================== */
.profile-anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .profile-anime-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .profile-anime-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.profile-anime-card {
    background: #141d2c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, box-shadow 0.25s ease;
    position: relative;
}

.profile-anime-card:hover {
    transform: translateY(-5px);
    border-color: rgba(53, 213, 191, 0.45);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(53, 213, 191, 0.15);
}

.p-card-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #0f172a;
    display: block;
    text-decoration: none;
}

.p-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-anime-card:hover .p-card-img {
    transform: scale(1.06);
}

.p-card-score {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fbbf24;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(251, 191, 36, 0.3);
    z-index: 2;
}

.p-card-status-pill {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.p-card-status-pill.watching {
    background: rgba(53, 213, 191, 0.9);
    color: #04201c;
}

.p-card-status-pill.completed {
    background: rgba(16, 185, 129, 0.9);
    color: #022c22;
}

.p-card-status-pill.on_hold {
    background: rgba(245, 158, 11, 0.9);
    color: #451a03;
}

.p-card-status-pill.dropped {
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
}

.p-card-status-pill.plan_to_watch {
    background: rgba(59, 130, 246, 0.9);
    color: #fff;
}

.p-card-info {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    gap: 8px;
}

.p-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #f1f5f9;
    text-decoration: none;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.p-card-title:hover {
    color: var(--accent);
}

.p-card-subinfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
    margin-top: auto;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   6. Tab 4: Activity Timeline
   ========================================================================== */
.activity-timeline {
    position: relative;
    padding-left: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-timeline::before {
    content: '';
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 8px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    background: #141d2c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.timeline-item:hover {
    border-color: rgba(53, 213, 191, 0.3);
    transform: translateX(4px);
}

.timeline-dot {
    position: absolute;
    top: 22px;
    left: -24px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
    border: 2px solid #080c14;
}

.timeline-content {
    flex: 1;
    min-width: 0;
}

.timeline-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.timeline-action {
    color: #94a3b8;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.timeline-anime-link {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: color 0.15s ease;
}

.timeline-anime-link:hover {
    color: var(--accent);
}

.timeline-quote {
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--accent);
    border-radius: 0 8px 8px 0;
    padding: 8px 12px;
    font-size: 13px;
    color: #cbd5e1;
    font-style: italic;
    margin-top: 8px;
    line-height: 1.5;
}

.timeline-time {
    font-size: 11px;
    color: #64748b;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   7. Tab 5: User Comments List
   ========================================================================== */
.user-comments-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.user-comment-card {
    background: #141d2c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.user-comment-card:hover {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .user-comment-card {
        flex-direction: column;
    }
}

.comment-anime-thumb {
    width: 64px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.comment-anime-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comment-content-box {
    flex: 1;
    min-width: 0;
}

.comment-anime-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
    gap: 8px;
}

.comment-anime-title {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.15s ease;
}

.comment-anime-title:hover {
    color: var(--accent);
}

.comment-time-stamp {
    font-size: 11px;
    color: #64748b;
    white-space: nowrap;
}

.comment-quote-text {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 12px;
}

.comment-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 8px;
}

.comment-likes-counter {
    font-size: 12px;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.view-discussion-link {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.15s ease;
}

.view-discussion-link:hover {
    transform: translateX(3px);
}

.spoiler-tag {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin-right: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   8. Tab 6: Requested Anime Grid
   ========================================================================== */
.requested-anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.requested-card {
    background: #141d2c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    gap: 14px;
    align-items: center;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.requested-card:hover {
    transform: translateY(-3px);
    border-color: rgba(53, 213, 191, 0.35);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.requested-card-poster {
    width: 64px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   9. Profile Empty State & View All Links
   ========================================================================== */
.profile-empty-state {
    text-align: center;
    padding: 70px 20px;
    background: #141d2c;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    margin: 10px 0;
}

.profile-empty-state i {
    font-size: 48px;
    color: #475569;
    margin-bottom: 14px;
    display: block;
}

.profile-empty-state p {
    color: #94a3b8;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.view-all-link {
    font-size: 13px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: transform 0.15s ease;
}

.view-all-link:hover {
    transform: translateX(3px);
}

/* Profile Privacy Selector in Modal */
.profile-privacy-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 6px;
}

.privacy-option-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    user-select: none;
}

.privacy-option-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.privacy-option-card.is-selected {
    background: rgba(53, 213, 191, 0.08);
    border-color: var(--accent);
    box-shadow: 0 0 16px var(--accent-glow);
}

.privacy-option-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.privacy-option-card:hover .privacy-option-icon {
    transform: scale(1.1);
}

.privacy-option-icon.public {
    background: rgba(53, 213, 191, 0.15);
    color: var(--accent);
    border: 1px solid rgba(53, 213, 191, 0.3);
}

.privacy-option-icon.private {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.privacy-option-text {
    flex: 1;
    min-width: 0;
}

.privacy-option-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.privacy-option-desc {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.3;
}

.privacy-option-check {
    font-size: 17px;
    color: #475569;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-option-card.is-selected .privacy-option-check {
    color: var(--accent);
    transform: scale(1.1);
}
