/* Profile Specific Styles */
#profile-result {
    animation: fadeIn 0.5s ease-out;
}
.profile-header-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--glass-border);
    margin-bottom: 2rem;
}
.profile-main-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}
.profile-pic-container {
    position: relative;
    width: 120px;
    height: 120px;
}
#profile-pic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
}
.verified-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: white;
    color: #20d5ec;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.profile-text h2 {
    font-size: 2rem;
    margin-bottom: 0.2rem;
}
#unique-id {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}
.profile-bio {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 500px;
}
.profile-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.profile-stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
}
.stat-count {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.latest-posts-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.post-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
    cursor: pointer;
    border: 1px solid var(--glass-border);
}
.post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.post-card:hover img {
    transform: scale(1.05);
}
.post-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    gap: 1rem;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}
.post-overlay i { margin-right: 4px; }

@media (max-width: 768px) {
    .profile-main-info {
        flex-direction: column;
        text-align: center;
    }
    .profile-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

.ad-wrapper {
    margin-top: 4rem;
}
