.character-profile {
	padding: 0;
}

.profile-hero {
	position: relative;
	min-height: 280px;
	background-size: cover;
	background-position: center top;
}

.profile-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.8) 80%, rgba(0,0,0,.95) 100%);
	display: flex;
	align-items: flex-end;
}

.profile-hero-inner {
	width: 100%;
	padding: 18px 18px 14px 18px;
}

.character-name {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,.7);
	line-height: 1.1;
}

.character-sub {
	margin-top: 6px;
	color: rgba(255,255,255,.85);
	font-size: 14px;
}

.character-profile-tabs {
	padding: 0 18px;
	background: rgba(0,0,0,.55);
	backdrop-filter: blur(2px);
}

.character-tabs .nav-link {
	cursor: pointer;
}

.profile-content {
	padding-top: 18px;
}

/* Module container */
.profile-module {
	display: none;
}
.profile-module.is-active {
	display: block;
}

/* Equipment layout */
.equip-wrap {
	position: relative;
	min-height: 520px;
	border-radius: 10px;
	overflow: hidden;
	background: rgba(0,0,0,.35);
	border: 1px solid rgba(255,255,255,.06);
}

.equip-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center top;
	opacity: .35;
	filter: blur(0px);
}

.equip-overlay {
	position: absolute;
	inset: 0;
	/*background: radial-gradient(circle at 50% 30%, rgba(255,255,255,.05) 0%, rgba(0,0,0,.75) 60%, rgba(0,0,0,.9) 100%);*/
}

.equip-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 320px 1fr;
	gap: 14px;
	padding: 16px;
}

.equip-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.equip-portrait {
    width: 320px;
    max-width: 100%;
    aspect-ratio: 3 / 4;
    background-size: 900px;
    background-position: center center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .55);
}

/* Left / right columns (exact-ish WoW slot stack) */
.equip-col {
	display: grid;
	gap: 10px;
	align-content: start;
}
.equip-right {
    right: 0%;
}
.item-slot {
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 10px;
	align-items: center;
	padding: 8px 10px;
	border-radius: 10px;
	background: rgba(0,0,0,.35);
	border: 1px solid rgba(255,255,255,.08);
}
/* Right-side equipment slots: reverse layout */
.equip-right .item-slot {
	grid-template-columns: 1fr 44px;
}

.equip-right .item-icon {
	order: 2;
}

.equip-right .item-meta {
	order: 1;
	text-align: right;
}

/* Align subtext properly */
.equip-right .item-sub {
	justify-content: flex-end;
}
.item-icon {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid rgba(255,255,255,.12);
	background: rgba(0,0,0,.35);
}
.item-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.item-meta {
	min-width: 0;
}

.item-name {
	display: block;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.item-sub {
	display: flex;
	gap: 10px;
	font-size: 12px;
	color: rgba(255,255,255,.70);
	margin-top: 2px;
}

.item-ilvl strong {
	color: rgba(255,255,255,.92);
	font-weight: 700;
}

/* Quality color (border + title) */
.q0 .item-name { color: #9d9d9d; } .q0 .item-icon { border-color: #9d9d9d; }
.q1 .item-name { color: #ffffff; } .q1 .item-icon { border-color: #ffffff; }
.q2 .item-name { color: #1eff00; } .q2 .item-icon { border-color: #1eff00; }
.q3 .item-name { color: #0070dd; } .q3 .item-icon { border-color: #0070dd; }
.q4 .item-name { color: #a335ee; } .q4 .item-icon { border-color: #a335ee; }
.q5 .item-name { color: #ff8000; } .q5 .item-icon { border-color: #ff8000; }
.q6 .item-name { color: #e6cc80; } .q6 .item-icon { border-color: #e6cc80; }
.q7 .item-name { color: #00ccff; } .q7 .item-icon { border-color: #00ccff; }

/* Gems/enchants badge */
.item-badges {
	display: flex;
	gap: 6px;
	margin-top: 4px;
	flex-wrap: wrap;
}
.badge-mini {
	font-size: 11px;
	padding: 2px 6px;
	border-radius: 999px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.10);
	color: rgba(255,255,255,.8);
}

/* Under 720px hide meta but keep icons/placement */
@media (max-width: 720px) {
	.equip-grid {
		grid-template-columns: 1fr 200px 1fr;
	}
	.item-meta {
		display: none;
	}
	.item-slot {
		grid-template-columns: 44px;
		justify-content: start;
	}
	.equip-portrait {
		width: 200px;
	}
	.profile-hero-name .character-sub {
		display: none;
	}
}



.text-a {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.text-b {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.text-c {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.btn-danger {
    padding: 5px 24px;
    height: 40px;
    border-radius: 4px;
    background: #D51616;
}

/* bannar */

.border-grey {
    border-radius: 8px;
    border: 1px solid #444;
}

.form-a {
    height: 64px;
    padding: 12px 16px;
}


.form-a input {
    border-radius: 4px;
    border: 2px solid #D51616;
    width: 100%;
    height: 40px;
    padding: 9px;
    color: #A1A1A1;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


.bg-darkgrey {
    background: #202020 !important;
}

.bg-jetgrey {
    background: #181818;
}

.bg-transparents {
    background: rgba(32, 32, 32, 0.80);
}

.bg-img {
    background-image: url(../Images/image\ \(3\).png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
}

.profie {
    height: 136px;
    padding: 18px 23px;
}

.profie span {
    color: #D51616;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-left: 8px;
}

.profie button {
    height: 40px;
    margin-left: 8px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.profie button:nth-child(2) {
    background: #8D44F7;
    border: #8D44F7;
}

.summary {
    height: 64px;
    padding: 14px 24px;
}

.summary h2 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/*  */
.boxs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.boxs p {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 4px;
}

.boxs h3 {
    color: #EA3434;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.boxs h6 {
    color: #F8B700;
    margin: 0;
}

.boxs span {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* -- */
.shuffle h2 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* --- */


/*  */
.accordion button {
    height: 64px;
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.accordion-item {
    background: none;
    border: none;
}

.accordion button.accordion-button.border-grey.bg-transparents {
    background: rgba(32, 32, 32, 0.80);
    box-shadow: none;
    color: #FFF;

}
.accordion-button:not(.collapsed)::after {
    background-image: url(../Images/Page2/arrow-down-s-line.png) !important;
    transform: rotate(180deg); /* Rotate the image 180 degrees (bottom to top) */
}
.accordion-button::after {
    background-image: url(../Images/Page2/arrow-down-s-line.png) !important;
}
.accordion-button::after {
    transition: transform 0.3s ease; /* Adjust the duration and easing as needed */
}

.boxeq span {
    color: #21DE21;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.boxeq {
    height: 56px;
    margin-top: 16px;
}

.boxeq h5 {
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}

.boxeq p {
    color: #FFF;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    margin: 0;
    line-height: normal;
}

.boxeq img {
    margin-top: -1px;
}

.profile {
    padding: 12px;
	margin-bottom: 12px;
}
.profile-image {
    width: auto;
    height: 116px;
    aspect-ratio: 1;
    object-fit: cover;
    margin: 0 10px;
    border: solid 1px;
}
.List{display:table;position:relative}
.List-item{display:table-cell;vertical-align:middle;height:100%}
.List>.List-item {
    vertical-align: middle;
    padding-right: 4px;
}
.List--gutter{padding:20px}
.List--gutterSmall{padding:10px}
.List--guttersTiny{margin:-3.33px}
.List--guttersTiny>.List-item{padding:3.33px}
.List--guttersSmall{margin:-5px}
.List--guttersSmall>.List-item{padding:5px}
.List--gutters{margin:-10px}
.List--gutters>.List-item{padding:10px}
.List--guttersMedium{margin:-20px}
.List--guttersMedium>.List-item{padding:20px!important}
.List--gutter.List--gutters{padding:10px;margin:0}
.List--alignTop .List-item{vertical-align:top}
.List--bulleted>.List-item,.List--greenChecks>.List-item,.List--numbered>.List-item,.List--vertical>.List-item{display:block;height:auto}
.List--full{width:100%}
.List--fullFixed{table-layout:fixed}
.List--left{margin-right:auto;text-align:left}
.List--center{margin-left:auto;margin-right:auto;text-align:center}
.List--right{margin-left:auto;text-align:right}

.Media--tiny .Icon-svg, .Media--tiny .Media-icon, .Media--tiny .Media-image {
    width: 16px;
    height: 16px;
}
.Icon {
    display: inline-block;
    position: relative;
    background-repeat: no-repeat;
}
.Icon-svg:not(.Icon--color) {
    fill: currentColor;
}
.Icon-svg:not(.Icon--color) {
    fill: #f8b700 !important;
}
svg:not(:root) {
    overflow: hidden;
}
.Icon-svg {
    position: relative;
    display: inline-block;
    top: -1px;
    vertical-align: middle;
    width: 64px;
    height: 64px;
}
.Media--tiny .Icon-svg, .Media--tiny .Media-icon, .Media--tiny .Media-image {
    width: 16px;
    height: 16px;
}
.CharacterHeader-media .Media-image {
    padding-right: 4px;
}
.CharacterHeader-media .Media-image {
    padding-right: 4px;
}
.Media-image {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    width: 48px;
    height: 48px;
}

