/* Profile Overview Styles */

.profile-overview-container {
    width: 100%;
    position: relative;
}

/* Flying Hearts Container */
.respect-hearts-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 99999;
}

.respect-heart-animation {
    position: absolute;
    pointer-events: none;
    animation: respectHeartFly 3s ease-out forwards;
}

@keyframes respectHeartFly {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0) rotateZ(0deg);
    }
    20% {
        transform: translate(-50%, -50%) scale(1.8) rotateZ(180deg);
    }
    40% {
        transform: translate(-50%, -50%) scale(1.5) rotateZ(360deg);
    }
    100% {
        opacity: 0;
        transform: translate(calc(-50% + var(--random-x, 0vw)), calc(-50% + var(--random-y, -3.453vw))) scale(0) rotateZ(360deg);
    }
}

.respect-heart-animation i {
    font-size: 2.5vw;
    color: #ec4899;
    filter: drop-shadow(0 0 0.8vw rgba(236, 72, 153, 0.8));
}

/* Grid Layout */
.profile-overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1vw;
    margin-bottom: 1vw;
    align-items: stretch;
}

.profile-overview-left {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.profile-overview-right {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

/* Cards */
.profile-overview-card {
    background: rgba(255, 255, 255, 0.8);
    border: 0.08vw solid rgba(139, 92, 246, 0.1);
    border-radius: 0.4vw;
    overflow: hidden;
    animation: fadeInUp 0.3s ease-out;
    display: flex;
    flex-direction: column;
}

/* Description and Respect - fixed height 9.7vw */
.profile-overview-left .profile-overview-card:first-child,
.profile-overview-right .profile-overview-card:first-child {
    height: 9.7vw;
}

/* Status Levels and Account - fixed height 17.5vw */
.profile-overview-left .profile-overview-card:last-child,
.profile-overview-right .profile-overview-card:last-child {
    height: 17.5vw;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(0.691vw);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-overview-card-header {
    padding: 0.7vw 1vw;
    border-bottom: 0.08vw solid rgba(139, 92, 246, 0.1);
    background: rgba(139, 92, 246, 0.03);
    display: flex;
    align-items: center;
    gap: 0.4vw;
}

.profile-overview-card-header i {
    width: 0.75vw;
    height: 0.75vw;
    font-size: 0.75vw;
    color: #8b5cf6;
}

.profile-overview-card-header span {
    font-size: 0.75vw;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05vw;
}

.profile-overview-card-body {
    padding: 1vw;
    display: flex;
    flex-direction: column;
}

/* Description body - no flex grow to keep it small */
.profile-overview-left .profile-overview-card:first-child .profile-overview-card-body {
    flex: 0 0 auto;
}

/* Description */
.profile-overview-bio {
    font-size: 0.8vw;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
    margin: 0;
}

/* Status Levels */
.status-level-item {
    margin-bottom: 1.5vw;
}

.status-level-item:last-child {
    margin-bottom: 0;
}

.status-level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5vw;
}

.status-level-info {
    display: flex;
    align-items: center;
    gap: 0.5vw;
}

.status-level-info i {
    width: 0.9vw;
    height: 0.9vw;
    font-size: 0.9vw;
    color: #8b5cf6;
}

.status-level-label {
    font-size: 0.75vw;
    color: rgba(0, 0, 0, 0.6);
}

.status-level-separator {
    font-size: 0.75vw;
    color: rgba(0, 0, 0, 0.4);
}

.status-level-text {
    font-size: 0.75vw;
    color: rgba(0, 0, 0, 0.5);
}

.status-level-name {
    font-size: 0.75vw;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
}

.status-level-fraction {
    font-size: 0.7vw;
    color: rgba(0, 0, 0, 0.4);
}

.status-level-progress {
    height: 0.35vw;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 0.2vw;
    overflow: hidden;
}

.status-level-progress-bar {
    height: 100%;
    background: #8b5cf6;
    border-radius: 0.2vw;
    transition: width 0.3s ease;
}

/* Respect Section */
.profile-overview-respect {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8vw;
    justify-content: center;
}

.respect-count {
    font-size: 1.8vw;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.9);
}

.respect-btn {
    padding: 0.5vw 1.2vw;
    font-size: 0.75vw;
    font-weight: 600;
    background: rgba(139, 92, 246, 0.1);
    border: 0.08vw solid rgba(139, 92, 246, 0.2);
    border-radius: 0.3vw;
    color: #7c3aed;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4vw;
    width: 100%;
    justify-content: center;
    transition: all 0.2s ease;
    font-family: inherit;
}

.respect-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    transform: scale(1.05);
}

.respect-btn:active {
    transform: scale(0.95);
}

.respect-btn i {
    width: 0.8vw;
    height: 0.8vw;
    font-size: 0.8vw;
}

.respect-btn.respected {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: #16a34a;
}

.respect-btn.respected:hover {
    background: rgba(34, 197, 94, 0.15);
}

.respect-btn-text {
    display: inline-block;
}

/* Account Info */
.account-info-item {
    margin-bottom: 0.8vw;
}

.account-info-item:last-child {
    margin-bottom: 0;
}

.account-info-label {
    font-size: 0.65vw;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 0.3vw;
    text-transform: uppercase;
    letter-spacing: 0.05vw;
}

.account-info-value {
    display: flex;
    align-items: center;
    gap: 0.4vw;
}

.account-info-value i {
    width: 0.85vw;
    height: 0.85vw;
    font-size: 0.85vw;
    color: #8b5cf6;
}

.account-info-value span {
    font-size: 0.75vw;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
}

.account-info-item:nth-child(2) .account-info-value span {
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
}

/* Activity Statistics */
.profile-overview-stats {
    margin-top: 1vw;
}

.activity-stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2vw;
}

.activity-stat-item {
    text-align: center;
}

.activity-stat-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 0.4vw;
}

.activity-stat-icon i {
    width: 1vw;
    height: 1vw;
    font-size: 1vw;
    color: #8b5cf6;
}

.activity-stat-value {
    font-size: 0.9vw;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.85);
    margin-bottom: 0.2vw;
}

.activity-stat-label {
    font-size: 0.65vw;
    color: rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 96.685vw) {
    .activity-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 70.718vw) {
    .profile-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 53.039vw) {
    .activity-stats-grid {
        grid-template-columns: 1fr;
    }
}

