/* ===== PORTFOLIO CUSTOM STYLES ===== */
:root {
    --blue-color: #101EC5;
    --neon-color: #CCFF00;
    --white-color: #FFFFFF;
    --black-color-50: #646464;
    --black-color-70: #313131;
    --black-color-80: #252525;
}

/* General Portfolio Styles */
.portfolio-section {
    padding: 40px 0;
}

.portfolio-section:last-child {
    padding-bottom: 80px;
}

.portfolio-section-title {
    color: var(--black-color-80);
    position: relative;
}

.portfolio-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--blue-color);
}

.portfolio-section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===== PROFILE HEADER ===== */
.portfolio-profile-header {
    background: var(--blue-color);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.portfolio-profile-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.portfolio-avatar-wrapper {
    flex-shrink: 0;
}

.portfolio-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid var(--neon-color);
    overflow: hidden;
    background: var(--white-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-profile-info {
    flex: 1;
    padding-top: 10px;
}

.portfolio-verified-badge {
    background: var(--neon-color);
    color: var(--blue-color);
    padding: 2px 6px 2px 6px;
    border-radius: 20px;
}

.portfolio-verified-badge svg {
    width: 18px;
    height: 18px;
}

.portfolio-profile-location {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.portfolio-profile-location svg {
    width: 18px;
    height: 18px;
    fill: var(--neon-color);
}

.portfolio-profile-bio {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.portfolio-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.portfolio-category-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-website-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--neon-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-website-link:hover {
    color: var(--white-color);
    text-decoration: underline;
}

.portfolio-website-link svg {
    width: 20px;
    height: 20px;
}

/* ===== SOCIAL ACCOUNTS ===== */
.portfolio-social-section {
    padding: 20px 0;
}

.portfolio-social-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px 60px;
}

.portfolio-social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.portfolio-social-item:hover {
    background: rgba(16, 30, 197, 0.05);
    border-color: var(--blue-color);
    transform: translateY(-2px);
}

.portfolio-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.portfolio-social-icon.youtube {
    background: #FF0000;
}
.portfolio-social-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.portfolio-social-icon.tiktok {
    background: #000000;
}

.portfolio-social-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.portfolio-social-info {
    display: flex;
    flex-direction: column;
}

.portfolio-social-platform {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--black-color-80);
    text-transform: capitalize;
}

.portfolio-social-count {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: var(--black-color-50);
}

/* Social Icon Circles */
.social-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent !important;
}

.social-icon-circle.youtube i {
    color: #FF0000 !important;
}

.social-icon-circle.instagram i {
    color: #E4405F !important;
}

.social-icon-circle.tiktok i {
    color: #000000 !important;
}

/* Hover effect for cards */
.hover-card {
    transition: all 0.2s ease;
}

.hover-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08) !important;
}

.hover-card:hover .bi-chevron-right {
    transform: translateX(3px);
    transition: transform 0.2s ease;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .social-icon-circle {
        width: 40px;
        height: 40px;
    }
    
    .social-icon-circle img {
        width: 18px !important;
        height: 18px !important;
    }
}

/* ===== STATISTICS CARDS ===== */
.portfolio-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.portfolio-stat-card {
    background: var(--white-color);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.portfolio-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(16, 30, 197, 0.1);
    border-color: var(--blue-color);
}

.portfolio-stat-number {
    font-family: 'Anton', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--blue-color);
    line-height: 1.2;
}

.portfolio-stat-number .percentage-symbol {
    font-size: 24px;
    color: var(--neon-color);
}

.portfolio-stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--black-color-50);
    margin-top: 4px;
}

.portfolio-stat-card .completion-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin-top: 12px;
    overflow: hidden;
}

.portfolio-stat-card .completion-bar .completion-fill {
    height: 100%;
    background: var(--blue-color);
    border-radius: 3px;
    transition: width 1s ease;
}

/* ===== RATING DISPLAY ===== */
.portfolio-rating-display {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.portfolio-rating-big {
    display: flex;
    align-items: center;
    gap: 16px;
}

.portfolio-rating-number {
    font-family: 'Anton', sans-serif;
    font-size: 48px;
    color: var(--black-color-80);
    line-height: 1;
}

.portfolio-rating-stars {
    display: flex;
    gap: 4px;
}

.portfolio-rating-stars .star {
    font-size: 24px;
    color: #fff;
}

.portfolio-rating-stars .star.filled {
    color: #FCC153;
}

.portfolio-rating-total {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--black-color-50);
}

/* ===== REVIEWS ===== */
.portfolio-reviews-container {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.portfolio-reviews-container::-webkit-scrollbar {
    width: 6px;
}

.portfolio-reviews-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.portfolio-reviews-container::-webkit-scrollbar-thumb {
    background: var(--blue-color);
    border-radius: 3px;
}

.portfolio-review-item {
    background: var(--white-color);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.portfolio-review-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.portfolio-review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.portfolio-reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.portfolio-reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-reviewer-name {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--black-color-80);
}

.portfolio-review-stars {
    display: flex;
    gap: 2px;
}

.portfolio-review-stars .star {
    font-size: 16px;
    color: #e9ecef;
}

.portfolio-review-stars .star.filled {
    color: #FCC153;
}

.portfolio-review-date {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--black-color-50);
}

.portfolio-review-comment {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--black-color-70);
    margin-top: 6px;
}

/* ===== UPCOMING VIDEOS ===== */
.portfolio-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.portfolio-video-card {
    background: var(--white-color);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.portfolio-video-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-video-thumbnail {
    position: relative;
    padding-top: 56.25%;
    background: var(--black-color-70);
    cursor: pointer;
    overflow: hidden;
}

.portfolio-video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-video-thumbnail .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.portfolio-video-thumbnail:hover .play-overlay {
    opacity: 1;
}

.portfolio-video-thumbnail .play-overlay svg {
    width: 60px;
    height: 60px;
    fill: var(--white-color);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.portfolio-video-release-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--blue-color);
    color: var(--white-color);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 3;
}

.portfolio-video-body {
    padding: 16px 20px 20px;
}

.portfolio-video-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color-80);
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.portfolio-video-description-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.portfolio-video-description {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--black-color-50);
    line-height: 1.6;
    max-height: 80px;
    overflow-y: auto;
    padding-right: 6px;
    margin-bottom: 0;
    scroll-behavior: smooth;
}

.portfolio-video-description::-webkit-scrollbar {
    width: 4px;
}

.portfolio-video-description::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.portfolio-video-description::-webkit-scrollbar-thumb {
    background: var(--blue-color);
    border-radius: 2px;
}

.portfolio-video-description::-webkit-scrollbar-thumb:hover {
    background: #0c17a1;
}

.portfolio-video-description {
    scrollbar-width: thin;
    scrollbar-color: var(--blue-color) #f1f1f1;
}

.portfolio-video-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--black-color-50);
}

.portfolio-video-meta svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--black-color-50);
}

.portfolio-video-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== VIDEO PLAYER IN THUMBNAIL ===== */
.portfolio-video-thumbnail .video-player-inline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    z-index: 5;
}

.portfolio-video-thumbnail .video-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 15;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.portfolio-video-thumbnail .video-close-btn:hover {
    background: rgba(220, 53, 69, 0.9);
    transform: scale(1.1);
}

/* ===== PORTFOLIO TABS ===== */
.portfolio-tabs-wrapper {
    background: var(--white-color);
    border-radius: 12px;
    padding: 24px 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.portfolio-tabs-wrapper .nav-pills {
    gap: 8px;
    flex-wrap: wrap;
    border-bottom: 2px solid #f1f3f5;
    padding-bottom: 16px;
    margin-bottom: 20px;
}

.portfolio-tabs-wrapper .nav-pills .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 8px;
    color: var(--black-color-70);
    background: transparent;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 8px;
}

.portfolio-tabs-wrapper .nav-pills .nav-link:hover {
    background: rgba(16, 30, 197, 0.05);
    color: var(--blue-color);
}

.portfolio-tabs-wrapper .nav-pills .nav-link.active {
    background: var(--blue-color);
    color: var(--white-color);
    border-color: var(--blue-color);
    box-shadow: 0 4px 12px rgba(16, 30, 197, 0.2);
}

.portfolio-tabs-wrapper .nav-pills .nav-link .tab-icon {
    font-size: 18px;
}

.portfolio-tabs-wrapper .nav-pills .nav-link .tab-badge {
    background: rgba(16, 30, 197, 0.1);
    color: var(--blue-color);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 4px;
}

.portfolio-tabs-wrapper .nav-pills .nav-link.active .tab-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
}

/* Account Cards inside Tabs */
.portfolio-account-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.portfolio-account-card {
    background: var(--white-color);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
}

.portfolio-account-card:hover {
    border-color: var(--blue-color);
}

.portfolio-account-card .account-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
}

.portfolio-account-card .account-icon.youtube {
    background: #FF0000;
    color: white;
}

.portfolio-account-card .account-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
}

.portfolio-account-card .account-icon.tiktok {
    background: #000000;
    color: white;
}

.portfolio-account-card .account-info {
    flex: 1;
}

.portfolio-account-card .account-name {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--black-color-80);
    margin-bottom: 2px;
}

.portfolio-account-card .account-platform {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: var(--black-color-50);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-account-card .account-stats {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--black-color-70);
    margin-top: 4px;
}

.portfolio-account-card .account-stats strong {
    color: var(--blue-color);
}

.portfolio-empty-tab {
    text-align: center;
    padding: 40px 20px;
    background: var(--white-color);
    border: 2px dashed #e9ecef;
    border-radius: 12px;
}

.portfolio-empty-tab svg {
    width: 60px;
    height: 60px;
    fill: none;
    stroke: #d1d5db;
    margin-bottom: 12px;
}

.portfolio-empty-tab h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color-80);
}

.portfolio-empty-tab p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--black-color-50);
    margin-bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .portfolio-profile-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .portfolio-profile-info {
        text-align: center;
    }

    .portfolio-profile-bio {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .portfolio-category-tags {
        justify-content: center;
    }

    .portfolio-profile-location {
        justify-content: center;
    }

    .portfolio-website-link {
        justify-content: center;
    }

    .portfolio-social-wrapper {
        gap: 16px 30px;
    }

    .portfolio-tabs-wrapper .nav-pills {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .portfolio-profile-header {
        padding: 40px 0 30px;
    }

    .portfolio-avatar {
        width: 140px;
        height: 140px;
    }

    .portfolio-section-title {
        font-size: 26px;
    }

    .portfolio-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-videos-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-rating-display {
        justify-content: center;
    }

    .portfolio-review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-account-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-tabs-wrapper .nav-pills .nav-link {
        font-size: 13px;
        padding: 6px 14px;
    }
}

@media (max-width: 575px) {
    .portfolio-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .portfolio-stat-card {
        padding: 16px 12px;
    }

    .portfolio-stat-number {
        font-size: 28px;
    }

    .portfolio-review-item {
        padding: 16px;
    }

    .portfolio-video-body {
        padding: 12px 16px 16px;
    }

    .portfolio-video-description {
        max-height: 60px;
        font-size: 13px;
    }

    .portfolio-tabs-wrapper .nav-pills {
        gap: 4px;
    }

    .portfolio-tabs-wrapper .nav-pills .nav-link {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ===== EMPTY STATE ===== */
.portfolio-empty-state {
    text-align: center;
    padding: 40px 20px;
    background: var(--white-color);
    border: 2px dashed #e9ecef;
    border-radius: 12px;
}

.portfolio-empty-state svg {
    width: 60px;
    height: 60px;
    fill: none;
    stroke: #d1d5db;
    margin-bottom: 12px;
}

.portfolio-empty-state h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--black-color-80);
}

.portfolio-empty-state p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--black-color-50);
    margin-bottom: 0;
}

/* ===== PAGINATION ===== */
.portfolio-pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
    margin-top: 10px;
}

.portfolio-pagination-wrapper .page-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: var(--white-color);
    color: var(--black-color-70);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
}

.portfolio-pagination-wrapper .page-btn:hover {
    background: var(--blue-color);
    color: var(--white-color);
    border-color: var(--blue-color);
}

.portfolio-pagination-wrapper .page-btn.active {
    background: var(--blue-color);
    color: var(--white-color);
    border-color: var(--blue-color);
}

.portfolio-pagination-wrapper .page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.portfolio-pagination-wrapper .page-btn.disabled:hover {
    background: transparent;
    color: var(--black-color-70);
    border-color: #e9ecef;
}

/* Reviews wrapper */
#reviewsWrapper {
    display: flex;
    flex-direction: column;
}

#reviewsPagination {
    margin-top: 10px;
}

/* ===== GROWTH CHART ===== */
.portfolio-chart-container {
    background: var(--white-color);
    border-radius: 12px;
    padding: 24px 20px 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.portfolio-chart-container .chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.portfolio-chart-container .chart-stats-grid {
    display: flex;
    gap: 24px 40px;
    flex-wrap: wrap;
}

.portfolio-chart-container .chart-stat-item {
    text-align: left;
}

.portfolio-chart-container .chart-stat-item .stat-value {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: var(--black-color-80);
    line-height: 1.2;
}

.portfolio-chart-container .chart-stat-item .stat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--black-color-50);
}

.portfolio-chart-container .chart-stat-item .stat-value.green {
    color: #22c55e;
}

.portfolio-chart-container .chart-stat-item .stat-value.blue {
    color: var(--blue-color);
}

.portfolio-chart-container .chart-stat-item .stat-value.orange {
    color: #f59e0b;
}

.portfolio-chart-container .chart-stat-item .stat-value.purple {
    color: #8b5cf6;
}

.chart-wrapper {
    position: relative;
    height: 280px;
    width: 100%;
}

@media (max-width: 767px) {
    .portfolio-chart-container .chart-stats-grid {
        gap: 12px 20px;
    }
    
    .portfolio-chart-container .chart-stat-item .stat-value {
        font-size: 20px;
    }
    
    .chart-wrapper {
        height: 220px;
    }
}

/* Chart Legend */
.chart-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    justify-content: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f3f5;
}

.chart-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--black-color-70);
}

.chart-legend-item .legend-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}

.chart-legend-item .legend-color.received {
    background: var(--blue-color);
}

.chart-legend-item .legend-color.completed {
    background: #CCFF00;
}

.chart-legend-item .legend-color.active {
    background: #FFEA00;
}

.chart-legend-item .legend-color.pending {
    background: #000000;
}

/* ===== LAZY LOADING ===== */
#reviewsLoader .spinner-border {
    width: 2rem;
    height: 2rem;
    border-width: 0.2rem;
}

#reviewsEndMessage {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reviews container smooth scrolling */
.portfolio-reviews-container {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
    scroll-behavior: smooth;
}

/* Remove pagination styles if they exist */
.portfolio-pagination-wrapper {
    display: none !important;
}

/* ===== PERIOD FILTER BUTTONS ===== */
.portfolio-period-filter {
    gap: 4px;
}

.portfolio-period-filter .btn {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    color: var(--black-color-50);
    background: var(--white-color);
    transition: all 0.3s ease;
}

.portfolio-period-filter .btn:hover {
    background: rgba(16, 30, 197, 0.05);
    border-color: var(--blue-color);
    color: var(--blue-color);
}

.portfolio-period-filter .btn.active {
    background: var(--blue-color);
    border-color: var(--blue-color);
    color: var(--white-color);
    box-shadow: 0 4px 12px rgba(16, 30, 197, 0.25);
}

.portfolio-period-filter .btn.active:hover {
    background: var(--blue-color);
    color: var(--white-color);
}

@media (max-width: 576px) {
    .portfolio-period-filter .btn {
        font-size: 12px;
        padding: 4px 12px;
    }
}

/* Chart loading/empty/error states */
.chart-loading,
.chart-empty,
.chart-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    border-radius: 12px;
    z-index: 10;
}

.chart-wrapper {
    position: relative;
}

/* ===== SOCIAL MEDIA NOT CONNECTED ===== */
.portfolio-social-not-connected {
    text-align: center;
    padding: 50px 20px 40px;
}

.social-not-connected-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 30, 197, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.social-not-connected-icon i {
    font-size: 36px;
    color: var(--blue-color);
}

.social-not-connected-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--black-color-80);
    margin-bottom: 8px;
}

.social-not-connected-text {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--black-color-50);
    max-width: 500px;
    margin: 0 auto 30px;
}

/* Social Placeholders Grid */
.social-placeholders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.social-placeholder-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white-color);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-placeholder-item:hover {
    border-color: var(--blue-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.social-placeholder-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.social-placeholder-icon.youtube {
    background: #FF0000;
}

.social-placeholder-icon.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-placeholder-icon.tiktok {
    background: #000000;
}

.social-placeholder-platform {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--black-color-80);
    display: block;
}

.social-placeholder-status {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #ef4444;
    display: block;
    margin-top: 2px;
}

.social-placeholder-status i {
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .social-not-connected-title {
        font-size: 20px;
    }

    .social-not-connected-text {
        font-size: 14px;
    }

    .social-placeholder-item {
        padding: 12px 16px;
    }

    .social-placeholder-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .social-placeholder-platform {
        font-size: 14px;
    }

    .social-placeholder-status {
        font-size: 12px;
    }
}


/* ===== NO CAMPAIGN DATA ===== */
.portfolio-no-campaign-data {
    text-align: center;
    padding: 30px 20px 20px;
}

.no-campaign-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 30, 197, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.no-campaign-icon i {
    font-size: 36px;
    color: var(--blue-color);
}

.no-campaign-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--black-color-80);
    margin-bottom: 8px;
}

.no-campaign-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--black-color-50);
    max-width: 500px;
    margin: 0 auto 30px;
}

/* Campaign Placeholders Grid */
.campaign-placeholders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.campaign-placeholder-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white-color);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
}

.campaign-placeholder-item:hover {
    border-color: var(--blue-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.campaign-placeholder-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.campaign-placeholder-icon.total {
    background: var(--blue-color);
}

.campaign-placeholder-icon.completed {
    background: #22c55e;
}

.campaign-placeholder-icon.rate {
    background: #f59e0b;
}

.campaign-placeholder-icon.growth {
    background: #8b5cf6;
}

.campaign-placeholder-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: var(--black-color-50);
    display: block;
}

/* Hide chart canvas when no data */
.portfolio-no-campaign-data .chart-wrapper {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .no-campaign-title {
        font-size: 18px;
    }

    .no-campaign-text {
        font-size: 14px;
    }

    .campaign-placeholders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .campaign-placeholder-item {
        padding: 12px 14px;
        flex-direction: column;
        text-align: center;
    }

    .campaign-placeholder-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .campaign-placeholder-label {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .campaign-placeholders-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== PROFILE HEADER FALLBACKS ===== */
/* Avatar Placeholder */
.portfolio-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Default Bio */
.portfolio-profile-bio-default {
    opacity: 0.85;
    font-style: italic;
}

/* Default Category Tag */
.portfolio-category-tag-default {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
}

/* Default Website Link */
.portfolio-website-link-default {
    opacity: 0.6;
    cursor: default;
    text-decoration: none;
}

.portfolio-website-link-default:hover {
    color: var(--neon-color);
    text-decoration: none;
}

/* Profile Location when missing */
.portfolio-profile-location {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.portfolio-profile-location svg {
    width: 18px;
    height: 18px;
    fill: var(--neon-color);
    flex-shrink: 0;
}

/* Responsive adjustments for fallback text */
@media (max-width: 991px) {
    .portfolio-profile-bio-default {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .portfolio-avatar-placeholder {
        font-size: 36px;
    }
}