/* Y2K Thick Skeuomorphic Style for Profile Page */
.profile-container {
    padding: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
    min-height: 100vh;
}

.profile-panel {
    background-color: #c0c0c0;
    border-style: solid;
    border-width: 2px;
    border-color: var(--border-skeuo-light);
    box-shadow: 4px 4px 15px rgba(0,0,0,0.4);
    padding: 4px;
    margin-bottom: var(--space-xl);
}

/* Header Section */
.profile-header {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl);
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
    border-radius: 8px;
    border-style: solid;
    border-width: 2px;
    border-color: var(--border-skeuo-dark);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.5);
    position: relative;
}

.avatar-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    background-color: #c0c0c0;
    border: 3px solid #667788;
    border-radius: 6px;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.3), inset 1px 1px 0 rgba(255,255,255,0.3);
}

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

.profile-info h1 {
    font-size: 32px;
    margin: 0;
    color: var(--color-accent);
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.animal-name-tag {
    display: inline-block;
    padding: 2px 10px;
    background-color: #000080;
    color: #fff;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    margin-top: 10px;
    border: 1px solid #fff;
}

.profile-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.profile-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.profile-actions .btn {
    min-width: 100px;
    height: 32px;
}

.stat-item {
    text-decoration: none;
    color: inherit;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #000;
}

.stat-label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    font-weight: bold;
}

/* Posts Section */
.profile-posts-panel {
    margin-top: var(--space-xl);
}

.posts-header {
    background: linear-gradient(to right, #000080, #1084d0);
    padding: 4px 10px;
    color: white;
    font-weight: bold;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.posts-content {
    background-color: #ffffff;
    border: 2px solid #808080;
    padding: var(--space-lg);
    min-height: 400px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.y2k-card,
.posts-grid > div {
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.08);
    transition: background 0.2s;
}

.y2k-card:hover,
.posts-grid > div:hover {
    background: rgba(200, 215, 235, 0.35);
}

/* Follow List */
.follow-list-panel {
    max-width: 600px;
    margin: var(--space-xl) auto;
}

.follow-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-bottom: 1px solid #c0c0c0;
    border-radius: 6px;
    margin-bottom: 4px;
    background-color: #fff;
}

.follow-item:last-child {
    border-bottom: none;
}

.follow-avatar {
    width: 40px;
    height: 40px;
    border: 2px solid #808080;
}

@media (max-width: 768px) {
    .profile-header { flex-direction: column; text-align: center; padding: 12px; }
    .avatar-wrapper { width: 100px; height: 100px; }
    .profile-info h1 { font-size: 22px; }
    .profile-stats { justify-content: center; gap: 16px; }
    .profile-actions { justify-content: center; flex-wrap: wrap; gap: 8px; }
    .profile-actions .btn { min-width: 80px; height: 36px; font-size: 12px; }
    .posts-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 14px; }
}

