    .oak-profile-container {
        max-width: 1200px;
        margin: 10px auto;
        padding: 0 20px 60px;
    }
    .oak-profile-header {
        position: relative;
        margin-bottom: 40px;
        border-radius: 24px;
        overflow: hidden;
    }
    .oak-profile-header-bg {
        position: relative;
        width: 100%;
        min-height: 280px;
        background-size: cover;
        background-position: center;
        background-color: #1e293b;
    }
    .oak-profile-header-bg-edit {
        position: absolute;
        bottom: 16px;
        right: 16px;
        background: rgba(0,0,0,0.6);
        color: white;
        border: none;
        padding: 6px 12px;
        border-radius: 30px;
        cursor: pointer;
        font-size: 12px;
        z-index: 15;
        backdrop-filter: blur(4px);
    }
    .oak-profile-avatar-area {
        position: absolute;
        bottom: 20px;
        left: 30px;
        display: flex;
        align-items: flex-end;
        gap: 20px;
        z-index: 20;
    }
    .oak-profile-avatar {
        width: 90px;
        height: 90px;
        border-radius: 50%;
        border: 3px solid white;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        overflow: hidden;
    }
    .oak-profile-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .oak-profile-name-area {
        color: white;
        text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    }
    .oak-profile-name {
        font-size: 1.6rem;
        color:#fff;
        font-weight: 700;
        margin: 0 0 4px;
        line-height: 1.2;
    }
    .oak-profile-bio {
        font-size: 0.85rem;
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        opacity: 0.9;
    }
    .oak-profile-stats {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin-top: 16px;
        margin-bottom: 32px;
        flex-wrap: wrap;
    }
    .oak-profile-stat-card {
        flex: 1;
        background: #fff;
        border-radius: 14px;
        padding: 10px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        border: 1px solid #edf2f7;
        transition: all 0.2s;
    }
    .oak-profile-stat-card .stat-label {
        font-size: 0.9rem;
        font-weight: 500;
        color: #334155;
    }
    .oak-profile-stat-card .stat-number {
        font-size: 1.4rem;
        font-weight: 700;
        color: #0f172a;
        line-height: 1;
    }
    .oak-profile-tab-bar {
        display: flex;
        gap: 8px;
        border-bottom: 1px solid #e2e8f0;
        margin-bottom: 24px;
        padding-bottom: 0;
        flex-wrap: wrap;
    }
    .oak-profile-tab {
        font-size: 1rem;
        font-weight: 500;
        padding: 0px 24px;
        color: #64748b;
        cursor: pointer;
        border-radius: 40px 40px 0 0;
        transition: all 0.2s;
    }
    .oak-profile-tab.active {
        color: #3b82f6;
    }
    .oak-profile-content-list {
        width: 100%;
    }
    .oak-profile-content-item {
        background: #fff;
        border-radius: 16px;
        padding: 16px;
        margin-bottom: 16px;
        border: 1px solid #edf2f7;
        transition: transform 0.2s, box-shadow 0.2s;
        display: flex;
        gap: 16px;
        align-items: center;
    }
    .oak-profile-content-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .oak-profile-content-img {
        flex-shrink: 0;
        width: 90px;
        height: 90px;
        background: #f1f5f9;
        border-radius: 12px;
        overflow: hidden;
    }
    .oak-profile-content-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .oak-profile-content-body {
        flex: 1;
    }
    .oak-profile-content-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0 0 6px;
    }
    .oak-profile-content-title a {
        color: #0f172a;
        text-decoration: none;
    }
    .oak-profile-content-title a:hover {
        color: #3b82f6;
    }
    .oak-profile-content-meta {
        font-size: 0.75rem;
        color: #64748b;
        margin-bottom: 8px;
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }
    .oak-profile-content-excerpt {
        color: #475569;
        font-size: 0.85rem;
        line-height: 1.4;
    }
    .oak-profile-follow-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 16px;
    }
    .oak-profile-follow-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
        border: 1px solid rgba(0, 0, 0, 0.14);
        width: 100%;
        box-sizing: border-box;
        min-width: 0;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .oak-profile-follow-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .oak-profile-follow-logo {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        border-radius: 16px;
        overflow: hidden;
        background-color: #f1f5f9;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .oak-profile-follow-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .oak-profile-follow-info {
        flex: 1;
        min-width: 0;
    }
    .oak-profile-follow-name {
        font-size: 0.95rem;
        font-weight: 700;
        margin: 0 0 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .oak-profile-follow-name a {
        color: #0f172a;
        text-decoration: none;
    }
    .oak-profile-follow-name a:hover {
        color: #3b82f6;
    }
    .oak-profile-follow-desc {
        color: #475569;
        font-size: 0.7rem;
        line-height: 1.3;
        margin-bottom: 6px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .oak-profile-follow-stats {
        display: flex;
        gap: 8px;
        font-size: 0.65rem;
        color: #64748b;
        white-space: nowrap;
    }
    .oak-profile-follow-stats .hot {
        background: #f1f5f9;
        padding: 2px 6px;
        border-radius: 20px;
    }
    .oak-profile-follow-btn {
        flex-shrink: 0;
        background: #0070ff;
        border: none;
        padding: 0px 12px;
        border-radius: 40px;
        font-weight: 600;
        font-size: 0.7rem;
        color: #fff;
        cursor: pointer;
        transition: all 0.2s;
        white-space: nowrap;
        height: 28px;
        line-height: 28px;
    }
    .oak-profile-follow-btn.followed {
        background: #e2e8f0;
        color: #475569;
    }
    .oak-profile-follow-btn:not(.followed):hover {
        background: #0056c1;
        transform: scale(0.96);
    }
    .oak-profile-pagination {
        margin: 30px 0 20px;
        text-align: center;
    }
    .oak-profile-pagination .page-numbers {
        display: inline-block;
        padding: 6px 12px;
        margin: 0 4px;
        background: #f5f5f5;
        border: 1px solid #ddd;
        border-radius: 6px;
        text-decoration: none;
        color: #333;
        font-size: 14px;
        cursor: pointer;
    }
    .oak-profile-pagination .page-numbers.current {
        background: #0645fa;
        border-color: #0645fa;
        color: #fff;
    }
    .oak-profile-loading, .oak-profile-empty {
        text-align: center;
        padding: 60px;
        color: #64748b;
    }
    @media (max-width: 1024px) {
        .oak-profile-follow-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    @media (max-width: 900px) {
        .oak-profile-follow-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 768px) {
        .oak-profile-header-bg {
            min-height: 220px;
        }
        .oak-profile-avatar-area {
            position: static;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px 0 16px;
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(8px);
        }
        .oak-profile-avatar {
            width: 80px;
            height: 80px;
            margin-bottom: 8px;
        }
        .oak-profile-name-area {
            text-align: center;
        }
        .oak-profile-name {
            font-size: 1.4rem;
        }
        .oak-profile-bio {
            justify-content: center;
        }
        .oak-profile-header-bg-edit {
            top: 16px;
            right: 16px;
            bottom: auto;
        }
        .oak-profile-stat-card {
            min-width: calc(50% - 6px);
        }
        .oak-profile-follow-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .oak-profile-content-item {
            flex-direction: column;
            align-items: flex-start;
        }
        .oak-profile-content-img {
            width: 100%;
            height: 140px;
        }
    }
    @media (max-width: 500px) {
        .oak-profile-follow-grid {
            grid-template-columns: 1fr;
        }
        .oak-profile-stat-card .stat-number {
            font-size: 1.2rem;
        }
        .oak-profile-stat-card .stat-label {
            font-size: 0.8rem;
        }
    }