/*  phpBB3 Style Sheet
    --------------------------------------------------------------
	Style name:			prosilver Special Edition
	Based on style:		prosilver (the default phpBB 3.3.x style)
	Original author:	Tom Beddard ( http://www.subblue.com/ )
	Modified by:		phpBB Limited ( https://www.phpbb.com/ )
    --------------------------------------------------------------
*/

/* colours.css changes */
html, body {
  background-color: #ACA8A1;
}

body.simple {
	min-height: 100%;
	padding: 0 5px;
}

.wrap {
	border: 2px solid #FFF;
	border-radius: 15px;
	box-shadow: 0 0 5px 2px #9D9A93, inset 0 3px 18px rgba(100, 100, 100, .25);
	margin: 0 auto;
	max-width: 1152px;
	padding: 13px 23px;
}

.search-header {
	box-shadow: 0 0 10px #505C65;
}

.headerbar {
	background-color: #7C8891;
	background-image: -webkit-linear-gradient(top, #6E777F 0%, #505C65 1%, #56626B 20%, #737F88 75%, #7C8891 100%);
	background-image: linear-gradient(to bottom, #6E777F 0%, #505C65 1%, #56626B 20%, #737F88 75%, #7C8891 100%);
	background-repeat: repeat-x;
}

.navbar {
	background-color: #DCDEE2;
}

.forabg, .forumbg {
	background-color: #505C65;
	background-image: -moz-linear-gradient(top, #7C8891 0%, #7C8790 4%, #76828B 10%, #5B666F 29%, #505C65 38%, #505C65 100%);
	background-image: linear-gradient(to bottom, #7C8891 0%, #7C8790 4%, #76828B 10%, #5B666F 29%, #505C65 38%,#505C65 100%);
	background-repeat: repeat-x;
}

.copyright a {
	color: #000000 !important;
}

li.row {
	background-color: #E8ECEE;
}

li.row:hover {
	background-color: #EBEFF1;
}

li.row.bg3 {
	background-color: #F0F4F6;
}

li.row.bg3:hover {
	background-color: #F4F8FA;
}

.site_logo {
	background-image: url("./images/site_logo.svg");
}

.jumpbox-cat-link {
	background-color: #505C65;
	background-image: -moz-linear-gradient(top, #7C8891 0%, #7C8790 4%, #76828B 10%, #5B666F 29%, #505C65 38%, #505C65 100%);
	background-image: linear-gradient(to bottom, #7C8891 0%, #7C8790 4%, #76828B 10%, #5B666F 29%, #505C65 38%,#505C65 100%);
	background-repeat: repeat-x;
	color: #FFFFFF;
}

.jumpbox-sub-link {
	background-color: #E8ECEE;
}

/* responsive.css changes */
@media only screen and (max-width: 920px), only screen and (max-device-width: 920px) {
	html, body {
		background-color: #FFF;
	}

	body {
		padding-left: 5px;
		padding-right: 5px;
	}

	#wrap {
		width: 850px;
		padding: 0;
		border-width: 0;
		border-radius: 0;
		box-shadow: none;
	}
}

@media only screen and (max-width: 860px), only screen and (max-device-width: 860px) {
	#wrap {
		width: auto;
	}
}


/* =========================================
   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: 22px;
    font-weight: 700;
}

/* 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;
    }
}