﻿.this-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.profile-card {
    width: 100%;
    max-width: 32rem;
    background: var(--bg-secondary);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.profile-card:hover {
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.4);
}

.profile-header {
    position: relative;
}

.header-gradient {
    position: absolute;
    inset: 0;
    height: 8rem;
    background: linear-gradient(to right, var(--accent), var(--accent-active));
}

.profile-content {
    position: relative;
    padding: 4rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-picture-container {
    position: relative;
}

.profile-picture {
    width: 8rem;
    height: 8rem;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--bg-secondary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.profile-picture:hover {
    transform: scale(1.05);
}

.status-indicator {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: #34d399;
    border-radius: 50%;
    border: 2px solid var(--bg-secondary);
}

.profile-name {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.profile-username {
    color: var(--text-secondary);
}

.stats-section {
    padding: 1rem 1.5rem;
}

.stats-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--bg-input);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.stat-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.profile-actions {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.75rem;
}

.btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn.primary {
    background: var(--accent);
    color: var(--text-primary);
}

.btn.primary:hover {
    background: var(--accent-hover);
}

.btn.secondary {
    background: var(--bg-input);
    color: var(--text-secondary);
}

.btn.secondary:hover {
    background: var(--border);
}