/* ================================================
   PLAY-MERCILESS SILKROAD THEME ENHANCEMENTS
   Matching the beautiful header/navbar design
   ================================================ */

/* Color Variables (extracted from header design) */
:root {
	--sr-gold-light: #f6d365;
	--sr-gold-mid: #fda085;
	--sr-gold-dark: #c99b3b;
	--sr-accent-red: #ff0818;
	--sr-bg-dark: #141619;
	--sr-bg-panel: rgba(20, 22, 25, 0.85);
	--sr-bg-translucent: rgba(0, 0, 0, 0.45);
	--sr-border-gold: rgba(201, 155, 59, 0.3);
	--sr-shadow-gold: rgba(201, 155, 59, 0.15);
	--sr-text-gold: #d4a85e;
	--sr-text-muted: #939393;
}

/* ================================================
   STYLIZED NEWS POST BOXES
   ================================================ */

.blog-post {
	background: linear-gradient(135deg, var(--sr-bg-panel) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	border-radius: 10px;
	padding: 25px 30px;
	margin-bottom: 30px;
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(201, 155, 59, 0.1),
		0 0 40px var(--sr-shadow-gold);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.blog-post::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sr-gold-light) 0%, var(--sr-gold-mid) 40%, var(--sr-gold-dark) 100%);
}

.blog-post::after {
	content: '\25C6';
	position: absolute;
	top: 15px;
	right: 20px;
	color: var(--sr-gold-dark);
	font-size: 40px;
	opacity: 0.1;
	pointer-events: none;
}

.blog-post:hover {
	border-color: var(--sr-gold-dark);
	box-shadow:
		0 12px 30px rgba(0, 0, 0, 0.6),
		inset 0 1px 0 rgba(201, 155, 59, 0.2),
		0 0 60px rgba(201, 155, 59, 0.25);
	transform: translateY(-2px);
}

.blog-post .post-content h2 {
	color: var(--sr-text-gold);
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 15px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.blog-post .post-content h2::before {
	content: '\25C6';
	display: inline-block;
	margin-right: 12px;
	color: var(--sr-gold-dark);
	font-size: 0.5em;
	vertical-align: middle;
}

.blog-post .post-meta {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.blog-post .post-meta li {
	color: var(--sr-text-muted);
	font-size: 13px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.blog-post .post-meta li i {
	color: var(--sr-gold-dark);
}

.blog-post .post-content p,
.blog-post .post-content div {
	color: #e0e0e0;
	line-height: 1.7;
	font-size: 15px;
}

/* ================================================
   STYLIZED WIDGET/SIDEBAR BOXES
   ================================================ */

.widget {
	background: linear-gradient(135deg, var(--sr-bg-panel) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	border-radius: 10px;
	padding: 0;
	margin-bottom: 30px;
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(201, 155, 59, 0.1),
		0 0 40px var(--sr-shadow-gold);
	position: relative;
	overflow: hidden;
}

.widget::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #d4a444 0%, #c99b3b 100%);
}

.widget .title {
	background: #0a0608;
	color: var(--sr-text-gold);
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
	font-size: 20px;
	font-weight: 700;
	padding: 18px 25px;
	margin: 0;
	border-bottom: 1px solid var(--sr-border-gold);
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.widget .title::before {
	content: '\25C6';
	display: inline-block;
	margin-right: 10px;
	color: #d4a444;
	font-size: 0.6em;
	vertical-align: middle;
}

.widget > hr {
	display: none; /* Hide default hr since we have border */
}

/* Add padding to widget content */
.widget > p,
.widget > ul,
.widget > form,
.widget > table,
.widget > div:not(.title) {
	padding-left: 20px;
	padding-right: 20px;
}

.widget > p:first-of-type,
.widget > ul:first-of-type,
.widget > form:first-of-type,
.widget > table:first-of-type,
.widget > div:not(.title):first-of-type {
	padding-top: 20px;
}

.widget > p:last-child,
.widget > ul:last-child,
.widget > form:last-child,
.widget > table:last-child,
.widget > div:not(.title):last-child {
	padding-bottom: 20px;
}

.widget iframe {
	padding: 0;
}

/* Widget paragraph and list styling */
.widget p {
	margin-bottom: 10px;
	line-height: 1.6;
}

.widget ul.list-unstyled {
	list-style: none;
	margin: 0;
	padding-left: 20px;
	padding-right: 20px;
}

.widget ul.list-unstyled:first-of-type {
	padding-top: 20px;
}

.widget ul.list-unstyled:last-child {
	padding-bottom: 20px;
}

.widget ul.list-unstyled li {
	padding: 10px 0;
	border-bottom: 1px solid rgba(201, 155, 59, 0.1);
}

.widget ul.list-unstyled li:first-child {
	padding-top: 0;
}

.widget ul.list-unstyled li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.widget ul.list-unstyled li i {
	margin-right: 8px;
}

/* Table wrapper styling */
.widget .table-responsive {
	padding: 0;
	margin: 0;
	overflow-x: auto;
}

.widget .table-responsive:first-of-type {
	padding-top: 20px;
}

.widget .table-responsive:last-child {
	padding-bottom: 20px;
}

.widget .table {
	margin-bottom: 0;
}

/* List group styling inside widgets */
.widget .list-group {
	padding: 0;
	border-radius: 0;
}

.widget .list-group:first-of-type {
	padding-top: 0;
}

.widget .list-group:last-child {
	padding-bottom: 0;
}

/* Discord widget specific styling */
.widget iframe[src*="discord"] {
	width: 100% !important;
	border-radius: 0 0 8px 8px;
	padding: 0;
	display: block;
}

/* ================================================
   DOWNLOAD BLOCKS
   ================================================ */

.down-block {
	background: linear-gradient(135deg, var(--sr-bg-panel) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 20px;
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(201, 155, 59, 0.1),
		0 0 40px var(--sr-shadow-gold);
	position: relative;
	overflow: hidden;
}

.down-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sr-gold-light) 0%, var(--sr-gold-mid) 40%, var(--sr-gold-dark) 100%);
}

/* ================================================
   INFO PANEL BOXES (for various content sections)
   ================================================ */

.info-panel {
	background: linear-gradient(135deg, var(--sr-bg-panel) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	border-radius: 10px;
	padding: 25px;
	margin-bottom: 25px;
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(201, 155, 59, 0.1),
		0 0 40px var(--sr-shadow-gold);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.info-panel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sr-gold-light) 0%, var(--sr-gold-mid) 40%, var(--sr-gold-dark) 100%);
}

.info-panel:hover {
	border-color: var(--sr-gold-dark);
	box-shadow:
		0 12px 30px rgba(0, 0, 0, 0.6),
		inset 0 1px 0 rgba(201, 155, 59, 0.2),
		0 0 60px rgba(201, 155, 59, 0.25);
}

.info-panel h3,
.info-panel h4,
.info-panel h5 {
	color: var(--sr-text-gold);
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
	margin-top: 0;
	margin-bottom: 15px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.info-panel h3::before,
.info-panel h4::before {
	content: '\25C6';
	display: inline-block;
	margin-right: 10px;
	color: var(--sr-gold-dark);
	font-size: 0.6em;
	vertical-align: middle;
}

/* ================================================
   SECTION BACKGROUND ENHANCEMENTS
   ================================================ */

section {
	background: transparent;
}

section .container {
	position: relative;
	z-index: 2;
}

/* ================================================
   PAGE HERO (Shared Header Blocks)
   ================================================ */

.page-hero {
	background: linear-gradient(180deg, rgba(11, 7, 16, 0.7), rgba(12, 6, 10, 0.85));
	border: 1px solid var(--sr-border-gold);
	border-radius: 12px;
	padding: 42px 32px;
	margin-bottom: 24px;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.page-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sr-gold-light) 0%, var(--sr-gold-mid) 40%, var(--sr-gold-dark) 100%);
}

.page-hero h1 {
	margin: 0;
	color: var(--sr-text-gold);
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
	font-size: 2rem;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.page-hero p {
	color: #9a8570;
	margin: 10px 0 0;
	font-size: 15px;
}

.page-hero--compact {
	padding: 28px 24px;
}

.page-hero__actions {
	margin-top: 14px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

/* Main content area styling */
.col-lg-9 {
	padding-right: 30px;
}

.col-lg-3 {
	padding-left: 15px;
}

/* ================================================
   FOOTER STYLING TO MATCH THEME
   ================================================ */

footer {
	background: linear-gradient(180deg, transparent 0%, rgba(20, 22, 25, 0.8) 100%);
	border-top: 2px solid var(--sr-border-gold);
	padding: 30px 0;
	margin-top: 50px;
	text-align: center;
	position: relative;
}

footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, var(--sr-gold-dark) 50%, transparent 100%);
}

footer p {
	color: var(--sr-text-muted);
	margin: 0;
	font-size: 14px;
}

footer b {
	color: var(--sr-text-gold);
	font-weight: 700;
}

/* Footer Sponsors Section */
.footer-sponsors-label {
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 12px;
	font-weight: 800;
	color: rgba(201, 155, 59, 0.9);
	text-align: center;
	padding: 0;
}

.footer-sponsors {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 18px 24px 22px;
	margin-bottom: 18px;
	background: linear-gradient(180deg, rgba(20, 22, 25, 0.3) 0%, transparent 100%);
	border-bottom: 2px solid rgba(201, 155, 59, 0.2);
	border-top: 1px solid rgba(201, 155, 59, 0.1);
}

.footer-sponsors-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
}

.sponsor-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 18px 28px;
	background: linear-gradient(135deg, rgba(20, 22, 25, 0.5) 0%, rgba(30, 25, 20, 0.4) 100%);
	border: 2px solid rgba(201, 155, 59, 0.25);
	border-radius: 10px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
	            inset 0 1px 0 rgba(255, 255, 255, 0.05);
	min-width: 180px;
}

.sponsor-link:hover {
	background: linear-gradient(135deg, rgba(30, 25, 20, 0.7) 0%, rgba(40, 30, 22, 0.6) 100%);
	border-color: var(--sr-gold-dark);
	box-shadow: 0 6px 20px rgba(201, 155, 59, 0.3),
	            0 0 30px rgba(201, 155, 59, 0.15),
	            inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transform: translateY(-4px);
}

.sponsor-link img {
	max-height: 75px;
	max-width: 240px;
	width: auto;
	height: auto;
	display: block;
	opacity: 0.9;
	transition: opacity 0.3s ease, transform 0.3s ease;
	filter: brightness(1.05);
}

.sponsor-link--silkroadtopservers img {
	max-height: 95px;
	max-width: 320px;
}

.sponsor-link:hover img {
	opacity: 1;
	transform: scale(1.05);
}

.footer-copyright {
	padding: 0 20px 20px;
}

.footer-copyright p {
	margin: 0;
}

/* Responsive Footer Sponsors */
@media (max-width: 768px) {
	.footer-sponsors {
		gap: 12px;
		padding: 16px 20px 20px;
	}

	.footer-sponsors-logos {
		gap: 35px;
	}

	.sponsor-link {
		padding: 14px 20px;
		min-width: 150px;
	}

	.sponsor-link img {
		max-height: 65px;
		max-width: 210px;
	}
}

@media (max-width: 480px) {
	.footer-sponsors {
		gap: 12px;
		padding: 16px 20px 20px;
	}

	.footer-sponsors-logos {
		flex-direction: column;
		gap: 18px;
	}

	.sponsor-link {
		padding: 16px 24px;
		width: 100%;
		max-width: 250px;
	}

	.sponsor-link img {
		max-height: 60px;
		max-width: 200px;
	}
}

/* ================================================
   BUTTON STYLING TO MATCH THEME
   ================================================ */

.btn {
	background: linear-gradient(135deg, #ff0818 0%, #cc0614 100%);
	border: 2px solid var(--sr-gold-dark);
	color: #fff;
	font-size: 16px;
	padding: 10px 25px;
	font-weight: 700;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(255, 8, 24, 0.3);
	transition: all 0.3s ease;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.btn:hover {
	background: linear-gradient(135deg, #cc0614 0%, #990510 100%);
	border-color: var(--sr-gold-light);
	box-shadow: 0 6px 16px rgba(255, 8, 24, 0.5);
	transform: translateY(-2px);
	color: #fff;
}

.btn.btn-muted {
	background: linear-gradient(135deg, rgba(20, 22, 25, 0.95) 0%, rgba(30, 25, 20, 0.9) 100%);
	border-color: rgba(201, 155, 59, 0.25);
	color: #e8d7c3;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn.btn-muted:hover {
	background: linear-gradient(135deg, rgba(30, 25, 20, 0.95) 0%, rgba(40, 30, 22, 0.9) 100%);
	border-color: var(--sr-gold-dark);
	color: #fff;
}

/* Vote page CTA polish (only affects buttons with .vote-btn) */
.vote-btn {
	position: relative;
	overflow: hidden;
	letter-spacing: 0.02em;
	border: 2px solid transparent;
	background:
		linear-gradient(135deg, #ff0818 0%, #cc0614 100%) padding-box,
		linear-gradient(120deg,
			rgba(255, 230, 160, 0.25) 0%,
			rgba(255, 210, 120, 0.85) 18%,
			rgba(255, 140, 60, 0.35) 40%,
			rgba(255, 230, 160, 0.30) 60%,
			rgba(120, 200, 255, 0.18) 75%,
			rgba(255, 210, 120, 0.85) 100%
		) border-box;
	background-size: 100% 100%, 220% 220%;
	background-position: 0 0, 0% 50%;
	box-shadow: 0 10px 22px rgba(255, 8, 24, 0.32), 0 0 0 1px rgba(201, 155, 59, 0.14), 0 0 18px rgba(201, 155, 59, 0.08);
}

@keyframes voteGlowPulse {
	0% { box-shadow: 0 10px 22px rgba(255, 8, 24, 0.32), 0 0 0 1px rgba(201, 155, 59, 0.14), 0 0 18px rgba(201, 155, 59, 0.08); }
	50% { box-shadow: 0 14px 30px rgba(255, 8, 24, 0.42), 0 0 0 1px rgba(255, 210, 120, 0.24), 0 0 26px rgba(201, 155, 59, 0.18); }
	100% { box-shadow: 0 10px 22px rgba(255, 8, 24, 0.32), 0 0 0 1px rgba(201, 155, 59, 0.14), 0 0 18px rgba(201, 155, 59, 0.08); }
}

/* (kept simple: avoid animated border artifacts in some browsers) */

.vote-btn {
	animation: voteGlowPulse 2.4s ease-in-out infinite;
}

.vote-btn::before {
	content: '';
	position: absolute;
	top: -40%;
	left: -35%;
	width: 55%;
	height: 180%;
	transform: rotate(18deg) translateX(-120%);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 220, 180, 0.28) 50%, rgba(255, 255, 255, 0) 100%);
	pointer-events: none;
	transition: transform 0.7s ease;
}

.vote-btn:hover {
	transform: translateY(-3px) scale(1.01);
	box-shadow: 0 14px 30px rgba(255, 8, 24, 0.45), 0 0 30px rgba(201, 155, 59, 0.24), 0 0 0 1px rgba(255, 210, 120, 0.22);
}

.vote-btn:hover::before {
	transform: rotate(18deg) translateX(250%);
}

.vote-btn:active {
	transform: translateY(-1px) scale(0.99);
}

.vote-btn:focus-visible {
	outline: none;
	box-shadow: 0 14px 30px rgba(255, 8, 24, 0.45), 0 0 30px rgba(201, 155, 59, 0.24), 0 0 0 2px rgba(255, 210, 120, 0.28);
}

.vote-btn i.fa-external-link {
	transition: transform 0.25s ease;
}

.vote-btn:hover i.fa-external-link {
	transform: translateX(2px) rotate(-6deg);
}

@media (prefers-reduced-motion: reduce) {
	.vote-btn,
	.vote-btn::before {
		animation: none !important;
		transition: none !important;
	}
}

/* ================================================
   TABLE STYLING (for rankings, etc.)
   ================================================ */

.table {
	background: linear-gradient(135deg, var(--sr-bg-panel) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	border-radius: 10px;
	overflow: hidden;
	color: #e8d7c3;
	--bs-table-bg: rgba(20, 22, 25, 0.65);
	--bs-table-striped-bg: rgba(79, 54, 55, 0.35);
	--bs-table-striped-color: #e8d7c3;
	--bs-table-color: #e8d7c3;
	--bs-table-border-color: rgba(201, 155, 59, 0.18);
}

.table > thead > tr > th,
.table > :not(caption) > * > * {
	padding: 12px 10px;
	border-color: rgba(201, 155, 59, 0.18);
	color: #e8d7c3;
	vertical-align: middle;
	background: transparent;
}

.table-striped > tbody > tr:nth-of-type(odd),
.table-striped > tbody > tr:nth-of-type(odd) > * {
	background-color: rgba(79, 54, 55, 0.3);
}

.table-striped > tbody > tr:nth-of-type(even),
.table-striped > tbody > tr:nth-of-type(even) > * {
	background-color: rgba(20, 22, 25, 0.3);
}

.table > tbody > tr > td,
.table > tbody > tr > th {
	color: #e8d7c3;
}
.table > thead > tr > th,
.table thead th {
	background: rgba(0, 0, 0, 0.3);
	color: var(--sr-text-gold);
	border-bottom: 2px solid var(--sr-border-gold);
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.table-responsive {
	border-radius: 10px;
	overflow: hidden;
}

/* ================================================
   TICKETS (USER UI)
   ================================================ */

.ticket-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid transparent;
}

.ticket-pill--open {
	background: rgba(90, 190, 90, 0.16);
	border-color: rgba(90, 190, 90, 0.45);
	color: #b7f0b7;
}

.ticket-pill--closed {
	background: rgba(201, 155, 59, 0.12);
	border-color: rgba(201, 155, 59, 0.25);
	color: var(--sr-text-gold);
}

.ticket-meta-panel {
	margin-bottom: 20px;
}

.ticket-meta-line {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	color: #e8d7c3;
}

.ticket-closed-note {
	margin-top: 12px;
	padding: 12px 14px;
	border-radius: 10px;
	border: 1px solid rgba(201, 155, 59, 0.25);
	background: rgba(0, 0, 0, 0.25);
	color: #c9b39b;
}

.ticket-message {
	padding: 12px 0;
	border-bottom: 1px solid rgba(201, 155, 59, 0.14);
}

.ticket-message:last-child {
	border-bottom: none;
}

.ticket-message__meta {
	display: flex;
	gap: 10px;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 6px;
}

.ticket-message__author {
	color: var(--sr-text-gold);
}

.ticket-message__time {
	color: #9a8570;
	font-size: 12px;
	white-space: nowrap;
}

.ticket-message__body {
	color: #e0e0e0;
}

.ticket-form-row {
	margin-bottom: 14px;
}

.ticket-form-label {
	display: block;
	margin-bottom: 6px;
	color: var(--sr-text-gold);
	font-weight: 700;
}

.ticket-form input[type="text"],
.ticket-form input[type="email"],
.ticket-form input[type="password"],
.ticket-form input[type="number"],
.ticket-form select,
.ticket-form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	font-size: 15px;
	line-height: 1.4;
}

.ticket-form textarea {
	resize: vertical;
	min-height: 140px;
}

.ticket-form-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
	margin-top: 10px;
}

.ticket-reply__closed {
	color: #c9b39b;
	margin: 0;
}

@media (max-width: 600px) {
	.ticket-message__meta {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ================================================
   PAGINATION STYLING
   ================================================ */

.pagination {
	margin: 30px 0;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.pagination li a,
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
	background: linear-gradient(135deg, var(--sr-bg-panel) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	color: var(--sr-text-gold);
	border-radius: 6px;
	padding: 8px 15px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.pagination li a:hover,
.pagination li a:focus,
.pagination li.active a,
.pagination li.active a:hover {
	background: linear-gradient(135deg, #ff0818 0%, #cc0614 100%);
	border-color: var(--sr-gold-dark);
	color: #fff;
	box-shadow: 0 4px 12px rgba(255, 8, 24, 0.3);
}

/* ================================================
   CAROUSEL/SLIDER STYLING
   ================================================ */

.carousel,
.carousel-inner,
.carousel-item {
	border-radius: 10px;
	overflow: hidden;
}

.full-carousel {
	margin-bottom: 30px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* ================================================
   GENERIC CONTENT PAGES (FAQ, Rules, Guides, Events)
   ================================================ */

/* Wrap any generic content in a themed container */
.content-page {
	background: linear-gradient(135deg, var(--sr-bg-panel) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	border-radius: 10px;
	padding: 30px 35px;
	margin-bottom: 30px;
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(201, 155, 59, 0.1),
		0 0 40px var(--sr-shadow-gold);
	position: relative;
	overflow: hidden;
}

.content-page::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sr-gold-light) 0%, var(--sr-gold-mid) 40%, var(--sr-gold-dark) 100%);
}

.content-page h1,
.content-page h2,
.content-page h3,
.content-page h4,
.content-page h5 {
	color: var(--sr-text-gold);
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
	margin-top: 25px;
	margin-bottom: 15px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.content-page h1 { font-size: 32px; }
.content-page h2 { font-size: 28px; }
.content-page h3 { font-size: 24px; }
.content-page h4 { font-size: 20px; }
.content-page h5 { font-size: 18px; }

.content-page h2::before,
.content-page h3::before {
	content: '\25C6';
	display: inline-block;
	margin-right: 10px;
	color: var(--sr-gold-dark);
	font-size: 0.6em;
	vertical-align: middle;
}

.content-page p {
	color: #e0e0e0;
	line-height: 1.8;
	font-size: 15px;
	margin-bottom: 15px;
}

.content-page ul,
.content-page ol {
	color: #e0e0e0;
	line-height: 1.8;
	font-size: 15px;
	margin-bottom: 15px;
	padding-left: 30px;
}

.content-page ul li,
.content-page ol li {
	margin-bottom: 8px;
}

.content-page a {
	color: var(--sr-gold-light);
	transition: color 0.2s ease;
}

.content-page a:hover {
	color: var(--sr-gold-mid);
	text-decoration: none;
}

.content-page hr {
	border-top: 1px solid var(--sr-border-gold);
	margin: 25px 0;
	opacity: 0.4;
}

/* ================================================
   EVENTS PAGE
   ================================================ */

.events-title {
	color: var(--sr-text-gold);
	margin: 0 0 20px;
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.events-list {
	background: linear-gradient(135deg, rgba(20, 22, 25, 0.85) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	border-radius: 10px;
	overflow: hidden;
	margin-top: 20px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.events-header {
	background: rgba(212, 168, 94, 0.08);
	display: flex;
	padding: 14px 18px;
	font-weight: 700;
	color: var(--sr-text-gold);
	border-bottom: 1px solid rgba(212, 168, 94, 0.3);
}

.event-row {
	display: flex;
	padding: 14px 18px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: background-color 0.2s ease;
}

.event-row:hover {
	background: rgba(255, 255, 255, 0.03);
}

.event-row.event-active {
	border-left: 4px solid #2ecc71;
}

.event-row.event-inactive {
	border-left: 4px solid #6c757d;
}

.event-col {
	flex: 1;
	padding: 0 10px;
	color: #e8d7c3;
}

.event-col.event-name {
	flex: 2;
}

.event-col.event-status {
	flex: 0 0 120px;
	text-align: center;
}

.event-col.event-schedule {
	flex: 2;
}

.status-badge {
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.3px;
}

.status-active {
	background: rgba(40, 167, 69, 0.2);
	color: #5dff8a;
	border: 1px solid rgba(40, 167, 69, 0.35);
}

.status-inactive {
	background: rgba(108, 117, 125, 0.2);
	color: #d1d5db;
	border: 1px solid rgba(108, 117, 125, 0.35);
}

.schedule-item {
	display: block;
	margin-bottom: 2px;
	font-size: 13px;
	color: #c9b39b;
}

.schedule-item strong {
	color: var(--sr-text-gold);
}

.no-schedule {
	color: var(--sr-text-muted);
	font-style: italic;
}

.custom-events-section {
	margin-top: 40px;
}

.custom-event-card {
	margin-bottom: 20px;
}

.custom-event-title {
	color: var(--sr-text-gold);
	margin: 0;
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
}

.custom-event-meta {
	color: var(--sr-text-muted);
	font-size: 13px;
	margin-top: 5px;
}

.custom-event-content {
	margin-top: 15px;
}

@media (max-width: 768px) {
	.events-header,
	.event-row {
		flex-direction: column;
	}

	.event-col {
		margin-bottom: 8px;
		padding: 0;
	}

	.event-col.event-status {
		text-align: left;
	}
}

/* ================================================
   DONATE PAGE
   ================================================ */

.donate-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.donate-panel {
	background: linear-gradient(135deg, rgba(20, 15, 25, 0.6) 0%, rgba(30, 25, 35, 0.7) 100%);
	padding: 30px;
	border-radius: 10px;
	border: 1px solid rgba(139, 69, 19, 0.5);
	margin-bottom: 20px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.donate-panel--center {
	text-align: center;
}

.donate-panel__title {
	color: var(--sr-text-gold);
	margin: 0 0 18px;
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
}

.donate-panel__text {
	color: #e8d7c3;
	margin-bottom: 20px;
}

.donate-packages .col-md-6,
.donate-packages .col-sm-6 {
	margin-bottom: 20px;
}

.donate-card {
	background: rgba(30, 25, 35, 0.8);
	padding: 20px;
	border-radius: 10px;
	border: 1px solid rgba(139, 69, 19, 0.5);
	text-align: center;
	height: 100%;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.donate-card__price {
	font-size: 24px;
	font-weight: 700;
	color: var(--sr-text-gold);
	margin-bottom: 10px;
}

.donate-card__silk {
	font-size: 16px;
	color: #e8d7c3;
	margin-bottom: 12px;
}

.donate-card__rate {
	font-size: 12px;
	color: var(--sr-text-muted);
	margin-bottom: 15px;
}

.btn.btn-donate {
	width: 100%;
	background: linear-gradient(135deg, var(--sr-gold-dark) 0%, #a67c52 100%);
	border: 1px solid rgba(139, 69, 19, 0.7);
	color: #1a1520;
	font-weight: 700;
}

.btn.btn-donate:hover {
	background: linear-gradient(135deg, #e5b555 0%, var(--sr-gold-dark) 100%);
	color: #1a1520;
}

.donate-notes {
	background: rgba(20, 15, 25, 0.6);
	padding: 20px;
	border-radius: 10px;
	border: 1px solid rgba(139, 69, 19, 0.5);
}

.donate-notes h3 {
	color: var(--sr-text-gold);
	margin-top: 0;
	margin-bottom: 15px;
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
}

.donate-notes ul {
	color: #e8d7c3;
	padding-left: 20px;
	margin: 0;
}

.donate-notes li {
	margin-bottom: 8px;
}

/* ================================================
   BREADCRUMBS ENHANCEMENT
   ================================================ */

.breadcrumb {
	background: linear-gradient(135deg, rgba(20, 22, 25, 0.8) 0%, rgba(30, 25, 20, 0.7) 100%);
	border: 1px solid var(--sr-border-gold);
	border-radius: 8px;
	padding: 12px 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.breadcrumb > li > a {
	color: var(--sr-text-gold);
	transition: color 0.2s ease;
}

.breadcrumb > li > a:hover {
	color: var(--sr-gold-light);
	background: rgba(201, 155, 59, 0.1);
	border-radius: 4px;
}

.breadcrumb > .active {
	color: #c0c0c0;
}

/* ================================================
   FORM ELEMENTS GLOBAL ENHANCEMENT
   ================================================ */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
	background: linear-gradient(135deg, rgba(20, 22, 25, 0.95) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	color: #e0e0e0;
	border-radius: 6px;
	transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
	border-color: var(--sr-gold-dark);
	box-shadow: 0 0 15px rgba(201, 155, 59, 0.3);
	background: rgba(30, 25, 20, 0.95);
	outline: none;
}

/* ================================================
   SEARCH BOX STYLING
   ================================================ */

.search-box {
	background: linear-gradient(135deg, var(--sr-bg-panel) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 25px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.search-box input[type="text"] {
	width: 100%;
	padding: 12px 15px;
}

/* ================================================
   ALERT/MESSAGE BOXES
   ================================================ */

.alert {
	border-radius: 8px;
	border-width: 2px;
	padding: 15px 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.alert-success {
	background: linear-gradient(135deg, rgba(39, 174, 96, 0.15) 0%, rgba(39, 174, 96, 0.1) 100%);
	border-color: #27ae60;
	color: #a8e6a8;
}

.alert-info {
	background: linear-gradient(135deg, rgba(52, 152, 219, 0.15) 0%, rgba(52, 152, 219, 0.1) 100%);
	border-color: #3498db;
	color: #a8d8f0;
}

.alert-warning {
	background: linear-gradient(135deg, rgba(243, 156, 18, 0.15) 0%, rgba(243, 156, 18, 0.1) 100%);
	border-color: #f39c12;
	color: #ffd699;
}

.alert-danger {
	background: linear-gradient(135deg, rgba(231, 76, 60, 0.15) 0%, rgba(231, 76, 60, 0.1) 100%);
	border-color: #e74c3c;
	color: #ffb3b3;
}

/* ================================================
   MODAL ENHANCEMENTS
   ================================================ */

.modal-content {
	background: linear-gradient(135deg, var(--sr-bg-panel) 0%, rgba(30, 25, 20, 0.95) 100%);
	border: 2px solid var(--sr-border-gold);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.modal-header {
	background: rgba(0, 0, 0, 0.3);
	border-bottom: 2px solid var(--sr-border-gold);
}

.modal-title {
	color: var(--sr-text-gold) !important;
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
}

.modal-body {
	color: #e0e0e0;
}

.modal-footer {
	background: rgba(0, 0, 0, 0.2);
	border-top: 1px solid var(--sr-border-gold);
}

/* ================================================
   RESPONSIVE ADJUSTMENTS
   ================================================ */

@media (max-width: 991px) {
	.col-lg-9,
	.col-lg-3 {
		padding-left: 15px;
		padding-right: 15px;
	}

	.blog-post {
		padding: 20px;
	}

	.info-panel {
		padding: 20px;
	}

	.content-page {
		padding: 25px 20px;
	}

	.page-hero {
		padding: 34px 24px;
	}

	.download-box {
		min-height: auto;
	}
}

@media (max-width: 767px) {
	.blog-post .post-content h2 {
		font-size: 22px;
	}

	.widget .title {
		font-size: 18px;
		padding: 15px 20px;
	}

	.page-hero {
		padding: 28px 18px;
	}

	.page-hero h1 {
		font-size: 1.6rem;
	}

	.content-page h1 { font-size: 26px; }
	.content-page h2 { font-size: 22px; }
	.content-page h3 { font-size: 20px; }

	.ranking-table thead tr.main-tr th {
		font-size: 14px;
		padding: 12px 8px;
	}

	.ranking-table tbody tr td {
		font-size: 13px;
		padding: 10px 8px;
	}

	.download-box {
		padding: 20px 15px;
	}

	.download-box i.fa {
		font-size: 60px;
	}

	.download-box h4 {
		font-size: 18px;
	}
}

/* ================================================
   DOWNLOAD PAGE STYLING
   ================================================ */

.download-box {
	background: linear-gradient(135deg, var(--sr-bg-panel) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	border-radius: 10px;
	padding: 30px 25px;
	margin-bottom: 30px;
	text-align: center;
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(201, 155, 59, 0.1),
		0 0 40px var(--sr-shadow-gold);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.download-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sr-gold-light) 0%, var(--sr-gold-mid) 40%, var(--sr-gold-dark) 100%);
}

.download-box:hover {
	border-color: var(--sr-gold-dark);
	box-shadow:
		0 12px 30px rgba(0, 0, 0, 0.6),
		inset 0 1px 0 rgba(201, 155, 59, 0.2),
		0 0 60px rgba(201, 155, 59, 0.25);
	transform: translateY(-4px);
}

.download-box i.fa {
	font-size: 80px;
	color: var(--sr-gold-dark);
	margin-bottom: 20px;
	display: block;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.download-box h4 {
	color: var(--sr-text-gold);
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
	font-size: 22px;
	font-weight: 700;
	margin: 15px 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.download-box hr {
	border-top: 1px solid var(--sr-border-gold);
	margin: 20px 0;
	opacity: 0.5;
}

.download-box span {
	color: #c0c0c0;
	font-size: 14px;
	line-height: 1.6;
}

.download-box .btn {
	margin-top: 15px;
	width: 100%;
	max-width: 200px;
}

/* System Requirements Title */
.classic-title {
	background: linear-gradient(135deg, var(--sr-bg-panel) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	border-radius: 10px;
	padding: 15px 25px;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
}

.classic-title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sr-gold-light) 0%, var(--sr-gold-mid) 40%, var(--sr-gold-dark) 100%);
}

.classic-title span {
	color: var(--sr-text-gold);
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
	font-size: 24px;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.classic-title span::before {
	content: '\25C6';
	display: inline-block;
	margin-right: 12px;
	color: var(--sr-gold-dark);
	font-size: 0.6em;
	vertical-align: middle;
}

/* ================================================
   PROFILE DROPDOWN STYLING
   ================================================ */

.nav-profile.dropdown {
	display: inline-block;
	position: relative;
}

.nav-profile > a.dropdown-toggle {
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
	padding: 0 12px;
	font-weight: 400;
	line-height: 55px;
	border-radius: 0 !important;
	position: relative;
	display: inline-block;
	transition: all 0.3s ease;
}

@media (max-width: 991px) {
	.nav-profile > a.dropdown-toggle {
		line-height: 40px; /* Reduce height on tablets */
		padding: 0 8px;
	}
}

@media (max-width: 767px) {
	.nav-profile > a.dropdown-toggle {
		line-height: 35px; /* Further reduce on mobile */
		font-size: 12px;
		padding: 0 6px;
	}
}

.nav-profile > a.dropdown-toggle:hover {
	color: #fff;
	background: rgba(0, 0, 0, 0.3);
	text-decoration: none;
}

.nav-profile > a.dropdown-toggle i.fa {
	font-size: 15px;
	margin-right: 5px;
	color: var(--sr-gold-dark);
}

.nav-profile .dropdown-menu {
	margin: 0;
	margin-top: 2px;
	padding: 5px 0;
	min-width: 200px;
	right: 0;
	left: auto;
	top: 100%;
	border-radius: 0;
	border: 0;
	background: linear-gradient(135deg, rgb(20, 22, 25) 0%, rgb(30, 25, 20) 100%);
	border: 2px solid var(--sr-border-gold);
	border-top: none;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
	position: absolute;
	z-index: 99999;
	display: none;
}

.nav-profile .dropdown-menu::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sr-gold-light) 0%, var(--sr-gold-mid) 40%, var(--sr-gold-dark) 100%);
	z-index: 1;
}

.nav-profile .dropdown-menu li {
	padding: 0;
	margin-right: 0;
}

.nav-profile .dropdown-menu li.divider {
	height: 1px;
	margin: 8px 0;
	overflow: hidden;
	background: var(--sr-border-gold);
	opacity: 0.3;
}

.nav-profile .dropdown-menu a {
	display: block;
	margin: 0;
	padding: 10px 20px;
	line-height: initial;
	font-size: 13px;
	color: #ffffff;
	font-family: "Open Sans", sans-serif;
	transition: all 0.2s ease;
	position: relative;
	z-index: 10;
	border-left: 3px solid transparent;
}

.nav-profile .dropdown-menu a i {
	color: var(--sr-gold-light);
	font-size: 13px;
	width: 22px;
	margin-right: 5px;
	transition: all 0.2s ease;
}

.nav-profile .dropdown-menu a:hover {
	color: var(--sr-text-gold);
	background: linear-gradient(90deg, rgba(201, 155, 59, 0.2) 0%, rgba(201, 155, 59, 0.05) 100%);
	text-decoration: none;
	border-left-color: var(--sr-gold-light);
	box-shadow: inset 0 0 15px rgba(246, 211, 101, 0.1);
}

.nav-profile .dropdown-menu a:hover i {
	color: var(--sr-gold-mid);
	transform: translateX(2px);
}

/* Make sure dropdown shows on hover and click */
.nav-profile.dropdown:hover .dropdown-menu,
.nav-profile.dropdown.open .dropdown-menu {
	display: block;
}

/* ================================================
   USER INFO DISPLAY IN NAVBAR
   ================================================ */

.nav-user-info {
	display: inline-block;
	margin-right: 15px;
	padding: 0 12px;
	line-height: 55px;
	border-right: 1px solid rgba(201, 155, 59, 0.2);
}

@media (max-width: 991px) {
	.nav-user-info {
		line-height: 40px; /* Reduce height on tablets */
		padding: 0 8px;
		margin-right: 10px;
	}
}

@media (max-width: 767px) {
	.nav-user-info {
		line-height: 35px; /* Further reduce on mobile */
		padding: 0 6px;
		margin-right: 5px;
	}
}

.nav-user-info .user-welcome {
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	margin-right: 15px;
}

.nav-user-info .user-welcome strong {
	color: var(--sr-text-gold);
	font-weight: 600;
}

.nav-user-info .user-silk {
	display: inline-flex;
	align-items: center;
	background: linear-gradient(135deg, rgba(212, 164, 68, 0.18) 0%, rgba(201, 155, 59, 0.09) 100%);
	padding: 4px 12px 4px 10px;
	border-radius: 3px;
	border: 1px solid var(--sr-border-gold);
	color: var(--sr-text-gold);
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 2px 6px rgba(0,0,0,0.18), 0 0 8px rgba(212, 164, 68, 0.13);
	transition: all 0.3s cubic-bezier(.4,0,.2,1);
	vertical-align: middle;
	margin-left: 12px;
	position: relative;
	overflow: visible;
	height: 26px;
	line-height: 1.1;
}

.nav-user-info .user-silk i {
	color: var(--sr-gold-light);
	margin-right: 5px;
	font-size: 12px;
}

.nav-user-info .user-silk:hover {
	background: linear-gradient(135deg, rgba(212, 164, 68, 0.28) 0%, rgba(201, 155, 59, 0.18) 100%);
	border-color: #f4c842;
	box-shadow: 0 4px 12px rgba(212, 164, 68, 0.22), 0 0 16px rgba(212, 164, 68, 0.18);
}

	.pixie-orbit {
		position: absolute;
		top: 50%; left: 50%;
		width: 54px; height: 28px;
		margin-left: -27px; margin-top: -14px;
		pointer-events: none;
		z-index: 20;
	}
	.pixie-dot {
		position: absolute;
		width: 4px; height: 4px;
		border-radius: 50%;
		background: radial-gradient(circle, #ffe9a0 60%, #d4a444 100%);
		box-shadow: 0 0 4px 1px #ffe9a0, 0 0 8px 2px #d4a444;
		left: 50%; top: 0;
		transform: translate(-50%, -50%);
		animation: pixieCircle 6.5s linear infinite;
		will-change: left, top, transform;
		z-index: 10;
		transition: opacity 0.2s, transform 0.2s;
		opacity: 1;
	}
.nav-user-info .user-silk:hover .pixie-firework {
	animation: none;
	opacity: 1;
}
.nav-user-info .user-silk:hover .pixie-0 { animation: pixieExplode0 1.2s cubic-bezier(.4,0,.2,1) 1 forwards; }
.nav-user-info .user-silk:hover .pixie-1 { animation: pixieExplode1 1.2s cubic-bezier(.4,0,.2,1) 1 forwards; }
.nav-user-info .user-silk:hover .pixie-2 { animation: pixieExplode2 1.2s cubic-bezier(.4,0,.2,1) 1 forwards; }
.nav-user-info .user-silk:hover .pixie-3 { animation: pixieExplode3 1.2s cubic-bezier(.4,0,.2,1) 1 forwards; }
.nav-user-info .user-silk:hover .pixie-4 { animation: pixieExplode4 1.2s cubic-bezier(.4,0,.2,1) 1 forwards; }
.nav-user-info .user-silk:hover .pixie-5 { animation: pixieExplode5 1.2s cubic-bezier(.4,0,.2,1) 1 forwards; }
.nav-user-info .user-silk:hover .pixie-6 { animation: pixieExplode6 1.2s cubic-bezier(.4,0,.2,1) 1 forwards; }
.nav-user-info .user-silk:hover .pixie-7 { animation: pixieExplode7 1.2s cubic-bezier(.4,0,.2,1) 1 forwards; }
.nav-user-info .user-silk:hover .pixie-8 { animation: pixieExplode8 1.2s cubic-bezier(.4,0,.2,1) 1 forwards; }
.nav-user-info .user-silk:hover .pixie-9 { animation: pixieExplode9 1.2s cubic-bezier(.4,0,.2,1) 1 forwards; }
.nav-user-info .user-silk:hover .pixie-10 { animation: pixieExplode10 1.2s cubic-bezier(.4,0,.2,1) 1 forwards; }
.nav-user-info .user-silk:hover .pixie-11 { animation: pixieExplode11 1.2s cubic-bezier(.4,0,.2,1) 1 forwards; }

@keyframes pixieExplode0 { 0% { opacity: 1; transform: scale(1) translate(-50%, -50%); } 100% { opacity: 0; transform: scale(1.5) translate(-50%, -1050px); } }
@keyframes pixieExplode1 { 0% { opacity: 1; transform: scale(1) translate(-50%, -50%); } 100% { opacity: 0; transform: scale(1.5) translate(500px, -900px); } }
@keyframes pixieExplode2 { 0% { opacity: 1; transform: scale(1) translate(-50%, -50%); } 100% { opacity: 0; transform: scale(1.5) translate(900px, -500px); } }
@keyframes pixieExplode3 { 0% { opacity: 1; transform: scale(1) translate(-50%, -50%); } 100% { opacity: 0; transform: scale(1.5) translate(1050px, -50%); } }
@keyframes pixieExplode4 { 0% { opacity: 1; transform: scale(1) translate(-50%, -50%); } 100% { opacity: 0; transform: scale(1.5) translate(900px, 500px); } }
@keyframes pixieExplode5 { 0% { opacity: 1; transform: scale(1) translate(-50%, -50%); } 100% { opacity: 0; transform: scale(1.5) translate(500px, 900px); } }
@keyframes pixieExplode6 { 0% { opacity: 1; transform: scale(1) translate(-50%, -50%); } 100% { opacity: 0; transform: scale(1.5) translate(-50%, 1050px); } }
@keyframes pixieExplode7 { 0% { opacity: 1; transform: scale(1) translate(-50%, -50%); } 100% { opacity: 0; transform: scale(1.5) translate(-500px, 900px); } }
@keyframes pixieExplode8 { 0% { opacity: 1; transform: scale(1) translate(-50%, -50%); } 100% { opacity: 0; transform: scale(1.5) translate(-900px, 500px); } }
@keyframes pixieExplode9 { 0% { opacity: 1; transform: scale(1) translate(-50%, -50%); } 100% { opacity: 0; transform: scale(1.5) translate(-1050px, -50%); } }
@keyframes pixieExplode10 { 0% { opacity: 1; transform: scale(1) translate(-50%, -50%); } 100% { opacity: 0; transform: scale(1.5) translate(-900px, -500px); } }
@keyframes pixieExplode11 { 0% { opacity: 1; transform: scale(1) translate(-50%, -50%); } 100% { opacity: 0; transform: scale(1.5) translate(-500px, -900px); } }

	.nav-user-info .user-silk:hover .pixie-dot {
	    animation: pixieExplode 0.5s cubic-bezier(.4,0,.2,1) 1;
	    opacity: 0;
	    transform: scale(2.5) translate(-50%, -50%);
	}

	@keyframes pixieExplode {
	    0%   { opacity: 1; transform: scale(1) translate(-50%, -50%); }
	    60%  { opacity: 1; transform: scale(2.5) translate(-50%, -50%); }
	    100% { opacity: 0; transform: scale(2.5) translate(-50%, -50%); }
	}
	@keyframes pixieCircle {
		0%   { left: 0%;   top: 0%;   transform: scale(1) translate(-50%, -50%); }
		10%  { left: 30%;  top: 5%;   transform: scale(1.2) translate(-50%, -50%); }
		18%  { left: 80%;  top: 0%;   transform: scale(0.8) translate(-50%, -50%); }
		25%  { left: 100%; top: 10%;  transform: scale(1.3) translate(-50%, -50%); }
		32%  { left: 90%;  top: 40%;  transform: scale(1) translate(-50%, -50%); }
		38%  { left: 100%; top: 80%;  transform: scale(0.7) translate(-50%, -50%); }
		45%  { left: 80%;  top: 100%; transform: scale(1.2) translate(-50%, -50%); }
		52%  { left: 50%;  top: 90%;  transform: scale(1) translate(-50%, -50%); }
		60%  { left: 10%;  top: 100%; transform: scale(1.3) translate(-50%, -50%); }
		68%  { left: 0%;   top: 80%;  transform: scale(0.8) translate(-50%, -50%); }
		75%  { left: 0%;   top: 50%;  transform: scale(1.2) translate(-50%, -50%); }
		82%  { left: 0%;   top: 20%;  transform: scale(1) translate(-50%, -50%); }
		90%  { left: 10%;  top: 0%;   transform: scale(1.3) translate(-50%, -50%); }
		100% { left: 0%;   top: 0%;   transform: scale(1) translate(-50%, -50%); }
	}

@keyframes silkGlow {
	0% { box-shadow: 0 2px 6px rgba(0,0,0,0.4), 0 0 8px rgba(212, 164, 68, 0.3); }
	100% { box-shadow: 0 2px 6px rgba(0,0,0,0.4), 0 0 12px rgba(212, 164, 68, 0.5); }
}

@keyframes circlingGlow {
	0% { 
		border-color: rgba(212, 164, 68, 0.8);
		box-shadow: inset 0 0 10px rgba(212, 164, 68, 0.3);
	}
	25% {
		border-color: rgba(244, 200, 66, 0.9);
		box-shadow: inset 0 0 15px rgba(244, 200, 66, 0.4);
	}
	50% {
		border-color: rgba(212, 164, 68, 0.8);
		box-shadow: inset 0 0 10px rgba(212, 164, 68, 0.3);
	}
	75% {
		border-color: rgba(244, 200, 66, 0.9);
		box-shadow: inset 0 0 15px rgba(244, 200, 66, 0.4);
	}
	100% {
		border-color: rgba(212, 164, 68, 0.8);
		box-shadow: inset 0 0 10px rgba(212, 164, 68, 0.3);
	}
}

/* Responsive adjustments for user info */
@media (max-width: 767px) {
	.nav-user-info {
		display: flex;
		flex-direction: column;
		line-height: 1.3;
		padding: 5px 8px;
		margin-right: 8px;
		border-right: none;
		border-bottom: 1px solid rgba(201, 155, 59, 0.2);
	}
	
	.nav-user-info .user-welcome {
		font-size: 11px;
		margin-right: 0;
		margin-bottom: 3px;
		display: block;
	}
}

/* ================================================
   RANKING TABLES STYLING
   ================================================ */

.ranking-table {
	width: 100%;
	background: linear-gradient(135deg, var(--sr-bg-panel) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	border-radius: 10px;
	overflow: hidden;
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(201, 155, 59, 0.1),
		0 0 40px var(--sr-shadow-gold);
	margin-bottom: 30px;
	position: relative;
}

.ranking-table::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sr-gold-light) 0%, var(--sr-gold-mid) 40%, var(--sr-gold-dark) 100%);
	z-index: 1;
}

.ranking-table thead {
	background: rgba(0, 0, 0, 0.4);
}

.ranking-table thead tr.main-tr th {
	background: rgba(0, 0, 0, 0.3);
	color: var(--sr-text-gold);
	border-bottom: 2px solid var(--sr-border-gold);
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	padding: 18px 15px;
	font-size: 16px;
	text-align: center;
}

.ranking-table tbody tr {
	border-bottom: 1px solid rgba(201, 155, 59, 0.1);
	transition: all 0.2s ease;
}

.ranking-table tbody tr:nth-of-type(odd) {
	background-color: rgba(79, 54, 55, 0.15);
}

.ranking-table tbody tr:nth-of-type(even) {
	background-color: rgba(20, 22, 25, 0.15);
}

.ranking-table tbody tr:hover {
	background-color: rgba(201, 155, 59, 0.15);
	transform: scale(1.01);
}

.ranking-table tbody tr td {
	padding: 15px 15px;
	color: #e0e0e0;
	font-size: 15px;
	vertical-align: middle;
}

.ranking-table tbody tr td a {
	color: var(--sr-text-gold);
	font-weight: 600;
	transition: color 0.2s ease;
}

.ranking-table tbody tr td a:hover {
	color: var(--sr-gold-light);
	text-decoration: none;
}

/* Top 3 special styling for rankings */
.ranking-table tbody tr.rank-1 td:first-child::before {
	content: '🥇 ';
	font-size: 18px;
}

.ranking-table tbody tr.rank-2 td:first-child::before {
	content: '🥈 ';
	font-size: 18px;
}

.ranking-table tbody tr.rank-3 td:first-child::before {
	content: '🥉 ';
	font-size: 18px;
}

.ranking-table tbody tr.rank-1,
.ranking-table tbody tr.rank-2,
.ranking-table tbody tr.rank-3 {
	background: linear-gradient(90deg, rgba(246, 211, 101, 0.12) 0%, rgba(201, 155, 59, 0.08) 100%);
}

/* Pagination active styling */
.pagination-link.active {
	opacity: 0.6;
	cursor: default;
}

/* ================================================
   DONATE PAGE STYLING
   ================================================ */

.donate-page .form-control,
.donate-page select {
	background: linear-gradient(135deg, rgba(20, 22, 25, 0.95) 0%, rgba(30, 25, 20, 0.9) 100%) !important;
	border: 2px solid var(--sr-border-gold) !important;
	color: var(--sr-text-gold) !important;
	border-radius: 8px !important;
	padding: 12px 20px !important;
	font-size: 15px !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
	transition: all 0.3s ease !important;
}

.donate-page .form-control:hover,
.donate-page select:hover {
	border-color: var(--sr-gold-dark) !important;
	box-shadow: 0 6px 16px rgba(201, 155, 59, 0.3) !important;
}

.donate-page .form-control option,
.donate-page select option {
	background: #1a1c20 !important;
	color: var(--sr-text-gold) !important;
	padding: 10px !important;
}

.donate-page h4 {
	color: var(--sr-text-gold);
	font-family: 'Cinzel Decorative', 'Cinzel', Georgia, serif;
	font-weight: 700;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	margin-bottom: 20px;
}

.donate-page center img {
	border-radius: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
	margin-bottom: 30px;
	max-width: 100%;
	height: auto;
}

/* Wrap donate content in themed container */
.donate-page form {
	background: linear-gradient(135deg, var(--sr-bg-panel) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	border-radius: 10px;
	padding: 40px 30px;
	margin: 20px auto;
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(201, 155, 59, 0.1),
		0 0 40px var(--sr-shadow-gold);
	position: relative;
	overflow: hidden;
}

.donate-page form::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sr-gold-light) 0%, var(--sr-gold-mid) 40%, var(--sr-gold-dark) 100%);
}

/* ================================================
   ALLIANCE/GUILD PAGES STYLING
   ================================================ */

.alliance-table,
.guild-table {
	width: 100%;
	background: linear-gradient(135deg, var(--sr-bg-panel) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	border-radius: 10px;
	overflow: hidden;
	box-shadow:
		0 8px 20px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(201, 155, 59, 0.1),
		0 0 40px var(--sr-shadow-gold);
	margin-bottom: 30px;
}

/* ================================================
   REGISTER PAGE STYLING
   ================================================ */

.register-page .form-group label {
	color: var(--sr-text-gold);
	font-weight: 600;
	margin-bottom: 8px;
}

.register-page .form-control {
	background: linear-gradient(135deg, rgba(20, 22, 25, 0.95) 0%, rgba(30, 25, 20, 0.9) 100%);
	border: 2px solid var(--sr-border-gold);
	color: #e0e0e0;
	border-radius: 6px;
	padding: 12px 15px;
}

.register-page .form-control:focus {
	border-color: var(--sr-gold-dark);
	box-shadow: 0 0 15px rgba(201, 155, 59, 0.3);
	background: rgba(30, 25, 20, 0.95);
}

/* ================================================
   UTILITY CLASSES FOR EASY BOX CREATION
   ================================================ */

/* Gold accent box - for important notices */
.gold-box {
	background: linear-gradient(135deg, rgba(246, 211, 101, 0.15) 0%, rgba(201, 155, 59, 0.1) 100%);
	border: 2px solid var(--sr-gold-dark);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(201, 155, 59, 0.2);
	position: relative;
	overflow: hidden;
}

.gold-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sr-gold-light) 0%, var(--sr-gold-mid) 40%, var(--sr-gold-dark) 100%);
}

/* Red accent box - for announcements/alerts */
.red-box {
	background: linear-gradient(135deg, rgba(255, 8, 24, 0.15) 0%, rgba(153, 5, 16, 0.1) 100%);
	border: 2px solid var(--sr-accent-red);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(255, 8, 24, 0.2);
	position: relative;
	overflow: hidden;
}

.red-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff0818 0%, #cc0614 100%);
}

/* Dark box - for secondary content */
.dark-box {
	background: linear-gradient(135deg, rgba(20, 22, 25, 0.95) 0%, rgba(10, 12, 15, 0.9) 100%);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
