/* =========================================
   phpBB PROFILE – MODERN SKIN ONLY
   (NO LAYOUT CHANGE)
========================================= */

#viewprofile {
    max-width: 1100px;
    margin: 40px auto;
}

/* ================= PANELS ================= */

.panel {
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    border: none;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

.panel .inner {
    padding: 35px;
}

/* ================= HEADER PANEL ================= */

.panel.bg1 {
    background: linear-gradient(135deg,#f9fafc,#ffffff);
}

/* Avatar */
.profile-avatar img {
    border-radius: 14px;
    transition: transform .3s ease;
}

.profile-avatar img:hover {
    transform: scale(1.05);
}

/* Username */
.profile-details dd span { font-size: 12px }

/* Rank */
.avatar-rank-container dd {
    margin-top: 8px;
    font-weight: 600;
    opacity: .8;
}

/* ================= DETAILS ================= */

.details dt {
    font-weight: 600;
    color: #666;
}

.details dd {
    margin-bottom: 10px;
}

/* Contact links */
.details a {
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
}

.details a:hover {
    color: #3c67e7;
}

/* ================= COLUMN SECTIONS ================= */

.column1 h3,
.column2 h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* ================= SIGNATURE ================= */

.signature.standalone {
    background: #fafafa;
    padding: 20px;
    border-radius: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    body {
        background: #f3f5f9;
    }

    #viewprofile {
        margin: 20px auto;
        padding: 0 16px;
    }

    .panel .inner {
        padding: 25px;
    }

    .profile-avatar img {
        max-width: 120px;
        height: auto;
    }

}

/* ================= MICRO ANIMATION ================= */

.panel {
    animation: profileFade .35s ease;
}

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

/* ================= ACCESSIBILITY ================= */

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
