        /* ── Profile Custom Properties (overridden by user customization) ── */

        /* Light mode defaults — boosted contrast (Apr 2026)
           Card backgrounds are now near-opaque so they actually stand out from
           the cream page background. Borders are stronger gold. Text stays
           readable when wrapped in .profile-bio, .profile-stat-label, etc. */
        :root {
            --profile-bg: #f5f0e8;
            --profile-accent: #8a6f1a;       /* darker gold for AA contrast on cream */
            --profile-text: #0f1622;          /* deeper navy for maximum text contrast */
            --profile-card-bg: rgba(255, 255, 255, 0.95);
            --profile-card-border: rgba(138, 111, 26, 0.45);
            --profile-overlay-bg: rgba(255, 255, 255, 0.7);
            --profile-muted-strong: 0.85;    /* used to override too-faint opacity in light mode */
            --profile-muted-mid: 0.75;
        }

        /* Dark mode defaults — unchanged, was already readable */
        [data-theme="dark"] {
            --profile-bg: #0a1628;
            --profile-accent: #D4AF37;
            --profile-text: #F5E6D3;
            --profile-card-bg: rgba(0, 0, 0, 0.35);
            --profile-card-border: rgba(212, 175, 55, 0.15);
            --profile-overlay-bg: rgba(0, 0, 0, 0.4);
            --profile-muted-strong: 0.65;    /* darker bg tolerates more dimming */
            --profile-muted-mid: 0.55;
        }

        /* Light mode contrast fix for muted text elements that previously used
           hardcoded low opacity (0.55–0.65) and became unreadable on cream. */
        :root .profile-stat-label,
        :root .profile-join-date,
        :root .replay-card-meta,
        :root .music-artist,
        :root .music-time,
        :root .video-thumb-meta {
            opacity: var(--profile-muted-strong) !important;
        }
        [data-theme="dark"] .profile-stat-label,
        [data-theme="dark"] .profile-join-date,
        [data-theme="dark"] .replay-card-meta,
        [data-theme="dark"] .music-artist,
        [data-theme="dark"] .music-time,
        [data-theme="dark"] .video-thumb-meta {
            opacity: var(--profile-muted-mid) !important;
        }

        /* Remove dark text-shadow from username in light mode — halos on cream */
        :root .profile-username {
            text-shadow: none;
        }

        /* Soften replay/video card placeholder background in light mode —
           rgba(0,0,0,0.5) renders as a harsh dark block inside white cards */
        :root .replay-card-thumb {
            background: rgba(0, 0, 0, 0.06);
        }

        /* Replay play icon: designed for dark placeholder, now near-white on
           near-white. Switch to dark icon in light mode. */
        :root .replay-card-thumb .replay-play-icon {
            color: rgba(0, 0, 0, 0.4);
            text-shadow: none;
        }

        /* Badges: white text on rgba gold gradient blends to pale yellow on
           white cards (~1.2:1 contrast). Use dark text + subtle tinted bg. */
        :root .profile-badge {
            color: #3d2e05;
            background: linear-gradient(135deg, rgba(138, 111, 26, 0.22), rgba(212, 175, 55, 0.38));
            border: 1px solid rgba(138, 111, 26, 0.35);
        }

        /* Empty state placeholder text: inline opacity:0.5 across JS strings
           gives #878787 on white — fails WCAG AA. Boost to 0.65 site-wide. */
        :root .content-block-body p[style*="opacity"],
        :root .profile-bio span[style*="opacity"] {
            opacity: 0.65 !important;
        }

        /* ── Page Background ── */
        .profile-page-bg {
            min-height: 100vh;
            background-color: var(--profile-bg);
            background-size: cover;
            background-attachment: fixed;
            color: var(--profile-text);
        }

        /* ── Header Banner ── */
        .profile-banner {
            width: 100%;
            height: 160px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

        .profile-banner--default {
            background: linear-gradient(
                135deg,
                rgba(184, 148, 46, 0.15) 0%,
                rgba(245, 240, 232, 0.95) 50%,
                rgba(184, 148, 46, 0.15) 100%
            ),
            repeating-linear-gradient(
                45deg,
                transparent,
                transparent 20px,
                rgba(184, 148, 46, 0.04) 20px,
                rgba(184, 148, 46, 0.04) 40px
            ),
            repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 20px,
                rgba(184, 148, 46, 0.04) 20px,
                rgba(184, 148, 46, 0.04) 40px
            );
        }

        [data-theme="dark"] .profile-banner--default {
            background: linear-gradient(
                135deg,
                rgba(26, 35, 50, 0.95) 0%,
                rgba(10, 22, 40, 0.95) 50%,
                rgba(26, 35, 50, 0.95) 100%
            ),
            repeating-linear-gradient(
                45deg,
                transparent,
                transparent 20px,
                rgba(212, 175, 55, 0.03) 20px,
                rgba(212, 175, 55, 0.03) 40px
            ),
            repeating-linear-gradient(
                -45deg,
                transparent,
                transparent 20px,
                rgba(212, 175, 55, 0.03) 20px,
                rgba(212, 175, 55, 0.03) 40px
            );
        }

        .profile-banner-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--profile-bg), transparent);
        }

        /* ── Card Text Color Override ──
           --profile-text is user-customisable (set via JS inline style on :root)
           so creators can pick light text for dark page backgrounds.
           But the card surfaces are always near-white, so we pin text to a
           reliable dark value here. Elements that need the accent color
           (headings, stat values) override this explicitly with var(--profile-accent). */
        :root .profile-card-inner,
        :root .content-block-body,
        :root .music-player-inner,
        :root .video-thumb-info,
        :root .replay-card-info {
            color: #1a2332;
        }

        [data-theme="dark"] .profile-card-inner,
        [data-theme="dark"] .content-block-body,
        [data-theme="dark"] .music-player-inner,
        [data-theme="dark"] .video-thumb-info,
        [data-theme="dark"] .replay-card-info {
            color: var(--profile-text);
        }

        /* ── Profile Card ── */
        .profile-card {
            max-width: 800px;
            margin: -70px auto 0;
            padding: 0 1.5rem;
            position: relative;
            z-index: 2;
        }

        .profile-card-inner {
            background: var(--profile-card-bg);
            backdrop-filter: blur(12px);
            border: 1px solid var(--profile-card-border);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
        }

        .profile-avatar {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            border: 4px solid var(--profile-accent);
            object-fit: cover;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
            margin-top: -90px;
        }

        .profile-username {
            font-family: 'Playfair Display', serif;
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--profile-accent);
            margin-top: 0.75rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .profile-badges {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 0.75rem;
            flex-wrap: wrap;
        }

        .profile-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.2rem 0.65rem;
            background: linear-gradient(135deg, var(--profile-accent), rgba(212, 175, 55, 0.6));
            color: #fff;
            border-radius: 20px;
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.03em;
        }

        .profile-bio {
            max-width: 600px;
            margin: 1rem auto 0;
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            line-height: 1.7;
            color: inherit;
            opacity: 0.9;
        }

        .profile-stats {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            margin-top: 1.5rem;
        }

        .profile-stat {
            text-align: center;
        }

        .profile-stat-value {
            font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--profile-accent);
        }

        .profile-stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            opacity: 0.65;
            margin-top: 0.15rem;
        }

        .profile-join-date {
            margin-top: 1rem;
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            opacity: 0.55;
        }

        .profile-actions {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .profile-actions .btn-follow {
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            border: 2px solid var(--profile-accent);
            background: transparent;
            color: var(--profile-accent);
            transition: all 0.2s ease;
        }

        .profile-actions .btn-follow:hover {
            background: var(--profile-accent);
            color: var(--profile-bg);
        }

        .profile-actions .btn-follow.following {
            background: var(--profile-accent);
            color: var(--profile-bg);
        }

        .profile-actions .btn-follow.following:hover {
            background: transparent;
            color: var(--profile-accent);
        }

        .profile-actions .btn-tip {
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            background: linear-gradient(135deg, var(--profile-accent), #cd7f32);
            color: var(--navy);
            transition: all 0.2s ease;
        }

        .profile-actions .btn-tip:hover {
            filter: brightness(1.1);
            transform: translateY(-1px);
        }

        .profile-actions .btn-message {
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            border: 2px solid var(--indigo, #5B6EAE);
            background: transparent;
            color: var(--indigo, #5B6EAE);
            transition: all 0.2s ease;
        }

        .profile-actions .btn-message:hover {
            background: var(--indigo, #5B6EAE);
            color: #fff;
            transform: translateY(-1px);
        }

        .profile-actions .btn-edit,
        .profile-actions .btn-login {
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            border: 2px solid var(--profile-accent);
            background: var(--profile-accent);
            color: var(--profile-bg);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .profile-actions .btn-edit:hover,
        .profile-actions .btn-login:hover {
            filter: brightness(1.1);
        }

        /* ── Music Player ── */
        .music-player {
            max-width: 800px;
            margin: 1rem auto 0;
            padding: 0 1.5rem;
        }

        .music-player-inner {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background: var(--profile-overlay-bg);
            backdrop-filter: blur(8px);
            border: 1px solid var(--profile-card-border);
            border-radius: 10px;
            padding: 0.6rem 1rem;
        }

        .music-play-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid var(--profile-accent);
            background: transparent;
            color: var(--profile-accent);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.2s ease;
            font-size: 0.85rem;
        }

        .music-play-btn:hover {
            background: var(--profile-accent);
            color: var(--profile-bg);
        }

        .music-info {
            flex: 1;
            min-width: 0;
            font-family: 'Inter', sans-serif;
        }

        .music-title {
            font-size: 0.85rem;
            font-weight: 600;
            color: inherit;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .music-artist {
            font-size: 0.72rem;
            opacity: 0.6;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .music-progress-wrap {
            flex: 1;
            min-width: 60px;
            max-width: 200px;
            height: 4px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
        }

        [data-theme="dark"] .music-progress-wrap {
            background: rgba(255, 255, 255, 0.12);
        }

        .music-progress-bar {
            height: 100%;
            background: var(--profile-accent);
            border-radius: 2px;
            width: 0%;
            transition: width 0.1s linear;
        }

        .music-time {
            font-family: 'Inter', sans-serif;
            font-size: 0.7rem;
            opacity: 0.5;
            flex-shrink: 0;
            min-width: 35px;
            text-align: right;
        }

        /* ── Content Blocks Container ── */
        .content-blocks {
            max-width: 1200px;
            margin: 2rem auto 0;
            padding: 0 1.5rem 3rem;
        }

        /* Layout: Classic (two-column) */
        .content-blocks.layout-classic {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .content-blocks.layout-classic .block-left {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .content-blocks.layout-classic .block-right {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        /* Layout: Wide (single column, full width) */
        .content-blocks.layout-wide {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        /* Layout: Centered (single column, narrow) */
        .content-blocks.layout-centered {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 800px;
        }

        /* ── Content Block Card ── */
        .content-block {
            background: var(--profile-card-bg);
            backdrop-filter: blur(8px);
            border: 1px solid var(--profile-card-border);
            border-radius: 12px;
            padding: 1.5rem;
            font-family: 'Inter', sans-serif;
        }

        .content-block h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--profile-accent);
            margin: 0 0 1rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--profile-card-border);
        }

        .content-block-body {
            color: inherit;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .content-block-body a {
            color: var(--profile-accent);
        }

        .content-block-body img {
            max-width: 100%;
            border-radius: 8px;
        }

        /* ── Video Grid ── */
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }

        .video-thumb-card {
            border-radius: 10px;
            overflow: hidden;
            background: var(--profile-overlay-bg);
            border: 1px solid var(--profile-card-border);
            transition: all 0.25s ease;
        }

        .video-thumb-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            border-color: var(--profile-accent);
        }

        .video-thumb-card a {
            text-decoration: none;
            color: inherit;
        }

        .video-thumb-card img {
            width: 100%;
            height: 130px;
            object-fit: cover;
            display: block;
        }

        .video-thumb-info {
            padding: 0.6rem 0.75rem;
        }

        .video-thumb-info h4 {
            margin: 0 0 0.35rem 0;
            font-size: 0.82rem;
            font-weight: 500;
            line-height: 1.3;
            color: inherit;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .video-thumb-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.7rem;
            opacity: 0.55;
        }

        /* ── Friends Grid ── */
        .friends-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
            gap: 0.75rem;
        }

        .friend-card {
            text-align: center;
            text-decoration: none;
            color: inherit;
            padding: 0.75rem 0.5rem;
            border-radius: 10px;
            background: var(--profile-overlay-bg);
            border: 1px solid var(--profile-card-border);
            transition: all 0.2s ease;
        }

        .friend-card:hover {
            background: rgba(212, 175, 55, 0.08);
            border-color: var(--profile-accent);
            transform: translateY(-2px);
        }

        .friend-card img {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--profile-card-border);
            display: block;
            margin: 0 auto 0.4rem;
        }

        .friend-card span {
            font-size: 0.75rem;
            font-weight: 500;
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* ── Replay Grid (VOD Livestream Replays) ── */
        .replay-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 1rem;
        }

        .replay-card {
            border-radius: 10px;
            overflow: hidden;
            background: var(--profile-overlay-bg);
            border: 1px solid var(--profile-card-border);
            transition: all 0.25s ease;
        }

        .replay-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            border-color: var(--profile-accent);
        }

        .replay-card a {
            text-decoration: none;
            color: inherit;
        }

        .replay-card-thumb {
            position: relative;
            width: 100%;
            height: 130px;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .replay-card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .replay-card-thumb .replay-play-icon {
            position: absolute;
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.8);
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
            pointer-events: none;
        }

        .replay-card-thumb .replay-duration {
            position: absolute;
            bottom: 4px;
            right: 6px;
            background: rgba(0, 0, 0, 0.75);
            color: #fff;
            font-size: 0.65rem;
            padding: 1px 5px;
            border-radius: 3px;
        }

        .replay-card-info {
            padding: 0.6rem 0.75rem;
        }

        .replay-card-info h4 {
            margin: 0 0 0.35rem 0;
            font-size: 0.82rem;
            font-weight: 500;
            line-height: 1.3;
            color: inherit;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .replay-card-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.7rem;
            opacity: 0.55;
        }

        .replay-view-all {
            display: block;
            text-align: center;
            margin-top: 0.75rem;
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            color: var(--profile-accent);
            border: 1px solid var(--profile-card-border);
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .replay-view-all:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: var(--profile-accent);
        }

        /* ── Loading / Error States ── */
        .profile-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 60vh;
            text-align: center;
            padding: 2rem;
            font-family: 'Inter', sans-serif;
        }

        .profile-state .spinner {
            font-size: 3rem;
            color: var(--profile-accent);
        }

        .profile-state h3 {
            font-family: 'Playfair Display', serif;
            margin-top: 1rem;
            color: var(--profile-accent);
        }

        .profile-state p {
            margin-top: 0.5rem;
            color: var(--profile-text);
            opacity: var(--profile-muted-strong);
        }

        .profile-state .btn-back {
            margin-top: 1.5rem;
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            background: var(--profile-accent);
            color: #ffffff;
            transition: all 0.2s ease;
        }

        .profile-state .btn-back:hover {
            filter: brightness(1.1);
        }

        /* ── Tip Modal Overrides ── */
        .tip-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .tip-modal {
            background: var(--surface);
            border: 1px solid var(--profile-card-border);
            border-radius: 16px;
            max-width: 420px;
            width: 90%;
            overflow: hidden;
            color: var(--text-primary);
        }

        .tip-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid var(--profile-card-border);
        }

        .tip-modal-header h3 {
            margin: 0;
            color: var(--profile-accent);
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
        }

        .tip-modal-close {
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0;
            line-height: 1;
            opacity: 0.7;
        }

        .tip-modal-close:hover {
            opacity: 1;
        }

        .tip-modal-body {
            padding: 1.5rem;
        }

        .tip-modal-body label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .tip-modal-body input[type="range"] {
            width: 100%;
            accent-color: var(--profile-accent);
        }

        .tip-range-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            color: var(--text-secondary);
            opacity: 0.7;
            margin-bottom: 1rem;
        }

        .tip-breakdown {
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid var(--profile-accent);
            border-radius: 8px;
            padding: 0.75rem;
            margin-bottom: 1rem;
            font-size: 0.85rem;
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
        }

        .tip-modal-body input[type="text"] {
            width: 100%;
            padding: 0.5rem;
            border-radius: 8px;
            border: 1px solid var(--profile-card-border);
            background: var(--surface-alt);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            box-sizing: border-box;
        }

        .tip-modal-footer {
            padding: 1rem 1.5rem;
            display: flex;
            gap: 0.75rem;
            justify-content: flex-end;
            border-top: 1px solid var(--profile-card-border);
        }

        .tip-modal-footer .btn-cancel {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.85rem;
            cursor: pointer;
            border: 1px solid var(--profile-card-border);
            background: transparent;
            color: var(--text-primary);
            transition: all 0.2s ease;
        }

        .tip-modal-footer .btn-cancel:hover {
            background: var(--surface-alt);
        }

        .tip-modal-footer .btn-send {
            padding: 0.5rem 1.25rem;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            cursor: pointer;
            border: none;
            background: linear-gradient(135deg, var(--profile-accent), #cd7f32);
            color: var(--navy);
            transition: all 0.2s ease;
        }

        .tip-modal-footer .btn-send:hover {
            filter: brightness(1.1);
        }

        /* ── Notification Toast ── */
        @keyframes slideInRight {
            from { transform: translateX(400px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            .profile-banner {
                height: 120px;
            }

            .profile-avatar {
                width: 110px;
                height: 110px;
                margin-top: -70px;
            }

            .profile-username {
                font-size: 1.65rem;
            }

            .profile-stats {
                gap: 1.25rem;
            }

            .profile-stat-value {
                font-size: 1.3rem;
            }

            .content-blocks.layout-classic {
                grid-template-columns: 1fr;
            }

            .content-blocks.layout-classic .block-left,
            .content-blocks.layout-classic .block-right {
                display: contents;
            }

            .video-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }

            .friends-grid {
                grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
            }

            .music-progress-wrap {
                display: none;
            }

            .music-time {
                display: none;
            }
        }
