* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 12px;
}

body * {
	font-size: inherit;
}

/* Global Heading Styles */
h2 {
	text-align: center;
	color: #00d4ff;
	margin: 25px 0 30px;
	font-size: 28px;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
	font-weight: 800;
}

/* Custom Cursors */
a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
select,
[role="button"],
.clickable,
.homepage-button,
.menu-item,
.card,
.image-container-overlay,
.download-button,
.search-box .clear-search,
.stat-item,
.stats-section-header,
.player-rank-item,
.guild-rank-item,
.event-timer-item,
.champion-item,
label,
.overlay,
.section-title,
[onclick],
[data-toggle],
[data-dismiss],
summary,
details,
.accordion,
::-webkit-scrollbar-thumb,
.login-btn,
.logout-btn,
.tab-btn,
.admin-panel button,
.admin-panel a,
.admin-panel input[type="button"],
.admin-panel input[type="submit"],
.admin-panel select,
.admin-panel .clickable,
.admin-panel .form-group,
.admin-panel .header-bar,
.gaming-news-card,
.news-item,
.news-link {
	cursor: url('images/pointer.cur'), pointer !important;
}

html,
body {
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

body {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%) fixed;
	background-attachment: fixed;
	display: flex;
	flex-direction: column;
	font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 12px;
	color: #fff;
	min-height: 100vh;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	cursor: url('images/normal.cur'), auto;
}

body::-webkit-scrollbar {
	width: 12px;
}

body::-webkit-scrollbar-track {
	background: rgba(10, 25, 47, 0.8);
	border-left: 1px solid rgba(0, 212, 255, 0.2);
}

body::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, rgba(0, 212, 255, 0.4) 0%, rgba(0, 150, 200, 0.6) 100%);
	border-radius: 6px;
	border: 2px solid rgba(10, 25, 47, 0.8);
	box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

body::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, rgba(0, 212, 255, 0.6) 0%, rgba(0, 150, 200, 0.8) 100%);
	box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* Site Header */
.site-header {
	width: 100%;
	height: 110px;
	background:
		linear-gradient(135deg, rgba(10, 25, 47, 0.75) 0%, rgba(17, 34, 64, 0.75) 50%, rgba(10, 25, 47, 0.75) 100%),
		url('images/header-bg.png') center center no-repeat;
	background-size: 200% 200%, 100% auto;
	animation: headerGradient 8s ease infinite;
	border-bottom: 2px solid rgba(0, 212, 255, 0.5);
	border-top: 2px solid rgba(0, 212, 255, 0.5);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 30px;
	margin-bottom: 0;
	box-shadow:
		0 4px 20px rgba(0, 0, 0, 0.4),
		0 2px 40px rgba(0, 212, 255, 0.2);
	position: sticky;
	top: 0;
	z-index: 1000;
	overflow: hidden;
	flex-shrink: 0;
}

.site-header::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 200px;
	height: 3px;
	background: linear-gradient(90deg,
			transparent 0%,
			rgba(0, 212, 255, 0.3) 25%,
			rgba(0, 212, 255, 0.8) 45%,
			#00d4ff 50%,
			rgba(0, 212, 255, 0.8) 55%,
			rgba(0, 212, 255, 0.3) 75%,
			transparent 100%);
	box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
	animation: borderTravel 10s linear infinite;
	pointer-events: none;
	z-index: 10;
}

.site-header::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: rgba(0, 212, 255, 0.2);
	pointer-events: none;
}

@keyframes borderTravel {
	0% {
		left: -220px;
	}

	100% {
		left: 100%;
	}
}

@keyframes headerGradient {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

@keyframes borderGlow {

	0%,
	100% {
		opacity: 0.5;
		box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
	}

	50% {
		opacity: 1;
		box-shadow: 0 0 20px rgba(0, 212, 255, 1);
	}
}

.header-left {
	display: flex;
	align-items: center;
}

.site-logo {
	height: 120px;
	width: auto;
	transition: all 0.3s ease;
	position: relative;
	z-index: 1;
}

.site-logo:hover {
	transform: scale(1.05);
}

@keyframes blue-glow {

	0%,
	100% {
		filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 1)) drop-shadow(0 0 20px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 40px rgba(0, 136, 255, 0.6));
	}

	50% {
		filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 1)) drop-shadow(0 0 30px rgba(0, 212, 255, 1)) drop-shadow(0 0 60px rgba(0, 136, 255, 0.9));
	}
}

.header-right {
	display: flex;
	align-items: center;
	gap: 15px;
}

.header-button {
	padding: 12px 20px;
	min-width: 180px;
	height: 42px;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.65) 0%, rgba(123, 47, 247, 0.65) 100%);
	border: 2px solid rgba(0, 212, 255, 0.8);
	border-radius: 8px;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease;
	cursor: url('images/pointer.cur'), pointer !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-button:hover {
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.85) 0%, rgba(123, 47, 247, 0.85) 100%);
	border-color: rgba(0, 212, 255, 1);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.header-button i {
	font-size: 13px;
}

.header-button.discord-button {
	background: linear-gradient(135deg, rgba(88, 101, 242, 0.85) 0%, rgba(114, 137, 218, 0.85) 100%);
	border: 2px solid rgba(88, 101, 242, 0.9);
	border-radius: 8px;
	text-decoration: none;
	padding: 10px 20px;
	font-size: 16px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-button.discord-button:hover {
	background: linear-gradient(135deg, rgba(88, 101, 242, 0.95) 0%, rgba(114, 137, 218, 0.95) 100%);
	border-color: rgba(88, 101, 242, 1);
	box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
	transform: translateY(-2px);
}

.header-button.home-button {
	border-color: rgba(0, 212, 255, 0.4);
}

.header-button.home-button:hover {
	border-color: rgba(0, 212, 255, 0.7);
	box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

/* Main Layout Container */
.main-container {
	display: flex;
	width: 100%;
	gap: 0;
	flex: 1;
	min-height: auto;
	justify-content: space-between;
}

/* Sidebar Menu */
.sidebar-wrapper {
	width: 100%;
	max-width: 240px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	background: rgba(0, 0, 0, 0.3);
	border-right: 1px solid rgba(0, 212, 255, 0.2);
}

.menu-container {
	width: 100%;
	background: transparent;
	padding: 0;
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
}

/* Homepage Button */
.homepage-button-container {
	padding: 20px;
}

.homepage-button {
	width: 100%;
	padding: 12px 18px;
	background: linear-gradient(135deg, rgba(0, 100, 100, 0.3), rgba(0, 150, 150, 0.3));
	border: 2px solid rgba(0, 255, 255, 0.3);
	border-radius: 8px;
	color: #00ffff;
	font-family: 'Arial', sans-serif;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

.homepage-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.homepage-button:hover::before {
	left: 100%;
}

.homepage-button:hover {
	background: linear-gradient(135deg, rgba(0, 150, 150, 0.5), rgba(0, 200, 200, 0.5));
	border-color: rgba(0, 255, 255, 0.6);
	box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
	transform: translateY(-2px);
}

.homepage-button:active {
	transform: translateY(0);
	box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.homepage-button i {
	font-size: 16px;
}

.homepage-button span {
	font-family: 'Arial', sans-serif;
}

/* Download Client Button */
.download-button-container {
	padding: 0 20px 20px 20px;
	border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.download-button {
	width: 100%;
	padding: 12px 18px;
	background: linear-gradient(135deg, rgba(100, 50, 0, 0.3), rgba(150, 80, 0, 0.3));
	border: 2px solid rgba(255, 140, 0, 0.3);
	border-radius: 8px;
	color: #ff8c00;
	font-family: 'Arial', sans-serif;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	position: relative;
	overflow: hidden;
}

.download-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.2), transparent);
	transition: left 0.5s ease;
}

.download-button:hover::before {
	left: 100%;
}

.download-button:hover {
	background: linear-gradient(135deg, rgba(150, 80, 0, 0.5), rgba(200, 120, 0, 0.5));
	border-color: rgba(255, 140, 0, 0.6);
	box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
	transform: translateY(-2px);
}

.download-button:active {
	transform: translateY(0);
	box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.download-button i {
	font-size: 16px;
}

.download-button span {
	font-family: 'Arial', sans-serif;
}

/* Search Box */
.search-box {
	position: relative;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(26, 26, 46, 0.6));
	margin: 0;
	padding: 15px 12px;
	border-bottom: 2px solid rgba(0, 212, 255, 0.3);
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
	flex-shrink: 0;
	z-index: 10;
}

.search-box input {
	width: 100%;
	padding: 8px 35px 8px 10px;
	background: rgba(30, 30, 50, 0.6);
	border: 2px solid rgba(0, 212, 255, 0.2);
	border-radius: 6px;
	color: #fff;
	font-size: 12px;
	transition: all 0.3s ease;
}

.search-box input:focus {
	outline: none;
	border-color: #00d4ff;
	background: rgba(30, 30, 50, 0.8);
}

.search-box input::placeholder {
	color: #888;
}

.search-box .search-icon {
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	color: #00d4ff;
	font-size: 12px;
	pointer-events: none;
}

.search-box .clear-search {
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	color: #888;
	font-size: 14px;
	cursor: pointer;
	pointer-events: all;
	transition: color 0.2s;
	display: none;
}

.search-box .clear-search:hover {
	color: #ff4444;
}

.search-box .clear-search.show {
	display: block;
}

/* Main Menu */
.main-menu {
	width: 100%;
}

/* Server Statistics Container */
.server-stats-container {
	margin: 0;
	background: linear-gradient(135deg, rgba(30, 30, 50, 0.95) 0%, rgba(20, 20, 35, 0.95) 100%);
	border: none;
	border-top: 2px solid rgba(0, 212, 255, 0.3);
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
	backdrop-filter: blur(10px);
}

.stats-header {
	background: linear-gradient(135deg, rgba(0, 102, 204, 0.3) 0%, rgba(0, 82, 163, 0.3) 100%);
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.stats-header i {
	color: #00d4ff;
	font-size: 16px;
}

.stats-header span {
	flex: 1;
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.server-status-indicator {
	display: flex;
	align-items: center;
	gap: 6px;
}

.status-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #666;
	box-shadow: 0 0 10px rgba(102, 102, 102, 0.5);
	animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.online {
	background: #00ff88;
	box-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
}

.status-dot.offline {
	background: #ff4444;
	box-shadow: 0 0 15px rgba(255, 68, 68, 0.8);
}

@keyframes statusPulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.7;
		transform: scale(1.1);
	}
}

/* Quick Stats Grid */
.quick-stats {
	padding: 15px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.stat-item {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(0, 212, 255, 0.2);
	border-radius: 6px;
	padding: 8px 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
}

.stat-item:hover {
	border-color: #00d4ff;
	background: rgba(0, 102, 204, 0.15);
	transform: translateX(3px);
}

.stat-item.stat-highlight {
	border-color: #00ff88;
	background: rgba(0, 255, 136, 0.08);
}

.stat-item.stat-highlight:hover {
	border-color: #00ff88;
	background: rgba(0, 255, 136, 0.15);
}

.stat-icon {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 212, 255, 0.15);
	border-radius: 6px;
	color: #00d4ff;
	font-size: 14px;
	flex-shrink: 0;
}

.stat-highlight .stat-icon {
	background: rgba(0, 255, 136, 0.15);
	color: #00ff88;
}

.stat-info {
	flex: 1;
}

.stat-label {
	font-size: 10px;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 3px;
}

.stat-value {
	font-size: 16px;
	font-weight: 700;
	color: #00d4ff;
	line-height: 1;
}

.stat-highlight .stat-value {
	color: #00ff88;
}

/* Stats Sections */
.stats-section {
	border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.stats-section-header {
	padding: 12px 16px;
	background: rgba(0, 0, 0, 0.2);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
	user-select: none;
}

.stats-section-header:hover {
	background: rgba(0, 102, 204, 0.15);
}

.stats-section-header span {
	color: #00d4ff;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.stats-section-header i.fa-chevron-down {
	color: #00d4ff;
	font-size: 10px;
	transition: transform 0.3s ease;
}

.stats-section-header.collapsed i.fa-chevron-down {
	transform: rotate(-90deg);
}

.stats-section-content {
	overflow-x: hidden;
	transition: max-height 0.3s ease;
}

.stats-section-content.collapsed {
	max-height: 0;
	overflow: hidden;
}

/* Top Players List */
.top-players-list,
.top-guilds-list {
	padding: 10px;
}

.player-rank-item,
.guild-rank-item {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(0, 212, 255, 0.15);
	border-radius: 6px;
	padding: 10px 12px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
}

.player-rank-item:hover,
.guild-rank-item:hover {
	border-color: #00d4ff;
	background: rgba(0, 102, 204, 0.15);
	transform: translateX(3px);
}

.rank-number {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 212, 255, 0.2);
	border-radius: 50%;
	color: #00d4ff;
	font-size: 11px;
	font-weight: 700;
	flex-shrink: 0;
}

.rank-number.top3 {
	background: linear-gradient(135deg, #ffaa00, #ff8800);
	color: #000;
}

.rank-info {
	flex: 1;
	min-width: 0;
}

.rank-name {
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.rank-details {
	font-size: 10px;
	color: #888;
	margin-top: 2px;
}

.rank-value {
	font-size: 13px;
	font-weight: 700;
	color: #00d4ff;
	flex-shrink: 0;
}

/* Loading State */
.loading-stats {
	padding: 20px;
	text-align: center;
	color: #888;
	font-size: 11px;
}

/* Stats Footer */
.stats-footer {
	padding: 10px 16px;
	background: rgba(0, 0, 0, 0.3);
	border-top: 1px solid rgba(0, 212, 255, 0.1);
	text-align: center;
	font-size: 10px;
	color: #666;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.stats-footer i {
	animation: rotate 2s linear infinite;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

/* Discord Button */
.discord-widget-container {
	display: block;
	text-decoration: none;
	margin: 20px 10px 10px 10px;
	background: linear-gradient(135deg, rgba(88, 101, 242, 0.15) 0%, rgba(114, 137, 218, 0.1) 100%);
	border: 2px solid rgba(88, 101, 242, 0.4);
	border-radius: 12px;
	overflow: hidden;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.4),
		0 0 20px rgba(88, 101, 242, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	cursor: url('images/pointer.cur'), pointer !important;
}

.discord-widget-container:hover {
	border-color: rgba(88, 101, 242, 0.7);
	background: linear-gradient(135deg, rgba(88, 101, 242, 0.25) 0%, rgba(114, 137, 218, 0.2) 100%);
	box-shadow:
		0 12px 40px rgba(0, 0, 0, 0.5),
		0 0 40px rgba(88, 101, 242, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
	transform: translateY(-3px) scale(1.02);
}

.discord-widget-header {
	background: linear-gradient(135deg, rgba(88, 101, 242, 0.4) 0%, rgba(114, 137, 218, 0.3) 100%);
	padding: 16px 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease;
}

.discord-widget-container:hover .discord-widget-header {
	background: linear-gradient(135deg, rgba(88, 101, 242, 0.5) 0%, rgba(114, 137, 218, 0.4) 100%);
	letter-spacing: 2px;
}

.discord-widget-header i {
	font-size: 14px;
	color: #5865f2;
	filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.6));
	animation: pulse-discord 2s ease-in-out infinite;
}

@keyframes pulse-discord {

	0%,
	100% {
		transform: scale(1);
		filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.6));
	}

	50% {
		transform: scale(1.1);
		filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.9));
	}
}

/* ==================== RIGHT SIDEBAR ==================== */
.right-sidebar-wrapper {
	width: 100%;
	max-width: 240px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	background: rgba(0, 0, 0, 0.3);
	border-left: 1px solid rgba(0, 212, 255, 0.2);
}

.right-sidebar-container {
	width: 100%;
	background: transparent;
	padding: 0;
	flex: 1;
	position: relative;
	display: flex;
	flex-direction: column;
}

.right-sidebar-wrapper .server-stats-container {
	margin: 0;
	border-radius: 0;
	border: none;
	border-bottom: 2px solid rgba(0, 212, 255, 0.15);
	flex-shrink: 0;
}

.right-sidebar-wrapper .discord-widget-container {
	margin: 0;
	border-radius: 0;
	border: none;
	border-top: 2px solid rgba(88, 101, 242, 0.2);
	margin-top: 0;
	flex-shrink: 0;
}

.right-sidebar-wrapper .discord-widget-header {
	border-radius: 0;
}

/* ==================== END RIGHT SIDEBAR ==================== */

/* Event Timers */
.event-timers-list {
	padding: 10px;
}

.event-timer-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 12px;
	margin-bottom: 8px;
	background: linear-gradient(135deg, rgba(0, 82, 163, 0.15) 0%, rgba(0, 102, 204, 0.1) 100%);
	border: 1px solid rgba(0, 212, 255, 0.2);
	border-radius: 6px;
	transition: all 0.3s ease;
}

.event-timer-item:last-child {
	margin-bottom: 0;
}

.event-timer-item:hover {
	background: linear-gradient(135deg, rgba(0, 82, 163, 0.25) 0%, rgba(0, 102, 204, 0.2) 100%);
	border-color: rgba(0, 212, 255, 0.4);
	transform: translateX(3px);
}

.event-name {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
}

.event-name i {
	color: #00d4ff;
	font-size: 14px;
}

.event-countdown {
	font-size: 13px;
	font-weight: 700;
	color: #00d4ff;
	font-family: 'Courier New', monospace;
	background: rgba(0, 212, 255, 0.1);
	padding: 4px 10px;
	border-radius: 4px;
	border: 1px solid rgba(0, 212, 255, 0.3);
}

.event-countdown.starting {
	animation: pulse 1s ease-in-out infinite;
	color: #00ff88;
	border-color: #00ff88;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

/* Event Champions */
.event-champions-container {
	padding: 10px;
}

.champion-category {
	margin-bottom: 16px;
}

.champion-category:last-child {
	margin-bottom: 0;
}

.champion-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	color: #00d4ff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.champion-title i {
	font-size: 12px;
}

.champion-list {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.champion-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 6px 10px;
	background: rgba(0, 82, 163, 0.1);
	border-radius: 4px;
	border-left: 2px solid rgba(0, 212, 255, 0.3);
	transition: all 0.2s ease;
}

.champion-item:hover {
	background: rgba(0, 82, 163, 0.2);
	border-left-color: #00d4ff;
	transform: translateX(3px);
}

.champion-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.champion-name {
	font-size: 11px;
	font-weight: 600;
	color: #fff;
}

.champion-details {
	font-size: 9px;
	color: #888;
}

.champion-wins {
	font-size: 11px;
	font-weight: 700;
	color: #00d4ff;
}

.champion-wins i {
	font-size: 9px;
	margin-right: 3px;
}

/* Content Wrapper */
.content-wrapper {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	overflow-x: hidden;
	min-width: 0;
	max-width: calc(100% - 500px);
	margin: 0 0 0 20px;
	/* padding: 20px; */
	/* background: rgba(26, 26, 46, 0.5); */
	position: relative;
	transition: all 0.3s ease;
	opacity: 0;
	transform: translateY(20px);
}

.content-wrapper::before {
	content: '';
	position: fixed;
	top: 0;
	left: 240px;
	right: 240px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
	pointer-events: none;
}

.content-body {
	padding: 10px 20px 30px 0px;
	/* background: linear-gradient(135deg, rgba(30, 30, 50, 0.85) 0%, rgba(22, 33, 62, 0.85) 100%); */
	/* border: 1px solid rgba(0, 212, 255, 0.25); */
	/* box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(0, 212, 255, 0.15),
		0 0 30px rgba(0, 212, 255, 0.08); */
	position: relative;
	transition: all 0.3s ease;
}

.content-body::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
}

.content-body p {
	font-size: 13px;
	color: #d0d0e0;
	line-height: 1.8;
	margin: 0 0 16px 0;
	padding: 0 5px;
	transition: color 0.2s ease;
}

.content-wrapper p:hover {
	color: #e0e0f0;
}

.content-wrapper h2 {
	font-size: 16px;
	color: #fff;
	margin: 0 0 20px 0;
	padding: 18px 30px;
	background:
		linear-gradient(135deg,
			rgba(0, 0, 0, 0.8) 0%,
			rgba(10, 10, 30, 0.85) 50%,
			rgba(0, 0, 0, 0.9) 100%),
		url('./images/bg1.jpg') center/cover;
	border: 3px solid transparent;
	border-image: linear-gradient(135deg, #00d4ff 0%, #0066ff 50%, #00d4ff 100%) 1;
	border-left: 6px solid #00d4ff;
	clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 0 100%);
	position: relative;
	font-weight: 800;
	letter-spacing: 2px;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000,
		2px 2px 4px rgba(0, 0, 0, 0.8),
		3px 3px 8px rgba(0, 0, 0, 0.6);
	display: inline-block;
	min-width: 400px;
	max-width: 75%;
	box-shadow:
		8px 8px 20px rgba(0, 0, 0, 0.9),
		12px 12px 35px rgba(0, 0, 0, 0.7),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	overflow: visible;
}

.content-wrapper h2::before {
	content: '';
	position: absolute;
	top: -3px;
	right: -3px;
	width: 28px;
	height: 28px;
	background: linear-gradient(135deg, #00f0ff 0%, #00d4ff 50%, #0088ff 100%);
	clip-path: polygon(100% 0, 100% 100%, 0 0);
	box-shadow: inset -3px 3px 6px rgba(255, 255, 255, 0.4);
}

.content-wrapper h2::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: -3px;
	right: -3px;
	height: 3px;
	background: linear-gradient(90deg,
			#00f0ff 0%,
			#00d4ff 30%,
			rgba(0, 212, 255, 0.5) 70%,
			transparent 100%);
	z-index: 2;
}

.content-wrapper h3 {
	font-size: 14px;
	color: #00d4ff;
	margin: 20px 0 12px 0;
	padding-left: 10px;
	text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

.content-wrapper h4 {
	font-size: 13px;
	color: #f0c040;
	margin: 15px 0 12px 0;
	padding: 10px 18px;
	background:
		linear-gradient(135deg,
			rgba(0, 0, 0, 0.5) 0%,
			rgba(20, 15, 0, 0.6) 50%,
			rgba(0, 0, 0, 0.6) 100%);
	border: 1px solid rgba(240, 192, 64, 0.4);
	border-left: 3px solid rgba(240, 192, 64, 0.7);
	border-radius: 6px;
	position: relative;
	font-weight: 600;
	letter-spacing: 0.8px;
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.8),
		0 0 8px rgba(240, 192, 64, 0.3);
	display: inline-block;
	min-width: 200px;
	max-width: 50%;
	box-shadow:
		0 3px 12px rgba(0, 0, 0, 0.6),
		0 0 15px rgba(240, 192, 64, 0.1);
	overflow: visible;
}

.content-wrapper h4::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg,
			rgba(240, 192, 64, 0.6) 0%,
			rgba(240, 192, 64, 0.3) 70%,
			transparent 100%);
	z-index: 2;
}

.content-wrapper ul,
.content-wrapper ol {
	margin-left: 25px;
	margin-bottom: 20px;
	padding-left: 10px;
}

.content-wrapper li {
	color: #d0d0e0;
	margin-bottom: 8px;
	line-height: 1.5;
	padding: 8px 12px;
	font-size: 12px;
	background: linear-gradient(135deg,
			rgba(0, 0, 0, 0.4) 0%,
			rgba(10, 10, 25, 0.6) 100%);
	border: 1px solid rgba(0, 212, 255, 0.2);
	border-left: 3px solid rgba(0, 212, 255, 0.4);
	border-radius: 6px;
	position: relative;
	display: block;
	max-width: 400px;
	min-width: 180px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.content-wrapper li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	background: linear-gradient(180deg,
			rgba(0, 212, 255, 0.8) 0%,
			rgba(0, 212, 255, 0.4) 100%);
	opacity: 0.6;
}

.content-wrapper li strong {
	color: #00d4ff;
	font-weight: 600;
}

/* Table Styling */
.content-wrapper table {
	width: 100%;
	border-collapse: collapse;
	margin: 25px 0;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(20, 20, 35, 0.6) 100%);
	border: 1px solid rgba(0, 212, 255, 0.3);
	border-radius: 12px;
	overflow: hidden;
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.7),
		inset 0 1px 0 rgba(0, 212, 255, 0.2),
		0 0 20px rgba(0, 212, 255, 0.1);
	position: relative;
}

.content-wrapper table::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg,
			transparent 0%,
			rgba(0, 212, 255, 0.6) 20%,
			rgba(0, 212, 255, 0.8) 50%,
			rgba(0, 212, 255, 0.6) 80%,
			transparent 100%);
	z-index: 1;
}

.content-wrapper table th,
.content-wrapper table td {
	padding: 12px 16px;
	text-align: left;
	position: relative;
	transition: all 0.3s ease;
	vertical-align: middle;
	line-height: 1.2;
}

.content-wrapper table th {
	background: linear-gradient(135deg,
			rgba(0, 212, 255, 0.15) 0%,
			rgba(0, 150, 200, 0.15) 50%,
			rgba(0, 212, 255, 0.15) 100%);
	color: #00d4ff;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-bottom: 2px solid rgba(0, 212, 255, 0.4);
	text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
	text-align: center;
	padding: 12px 8px;
}

.content-wrapper table th:first-child {
	text-align: left;
	padding: 12px 16px;
}

.content-wrapper table th::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg,
			transparent 0%,
			rgba(0, 255, 255, 0.8) 50%,
			transparent 100%);
}

.content-wrapper table td {
	border-bottom: 1px solid rgba(0, 212, 255, 0.1);
	color: #d0d0e0;
	font-size: 13px;
	line-height: 1.3;
	text-align: center;
	padding: 12px 8px;
}

.content-wrapper table td:first-child {
	text-align: left;
	font-weight: 600;
	color: #fff;
	padding: 12px 16px;
}

.content-wrapper table tbody tr {
	transition: all 0.3s ease;
	position: relative;
}

.content-wrapper table tbody tr:hover {
	background: linear-gradient(135deg,
			rgba(0, 212, 255, 0.1) 0%,
			rgba(0, 150, 200, 0.1) 100%);
	transform: translateX(3px);
	box-shadow: 0 3px 20px rgba(0, 212, 255, 0.25);
}

.content-wrapper table tbody tr:hover td {
	color: #fff;
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
	position: relative;
	z-index: 2;
}

.content-wrapper table tbody tr:hover td:first-child {
	color: #00d4ff;
	border-left-color: rgba(0, 212, 255, 0.8);
}

.content-wrapper table tbody tr:nth-child(even) {
	background: rgba(0, 212, 255, 0.03);
}

.content-wrapper table tbody tr:nth-child(even):hover {
	background: linear-gradient(135deg,
			rgba(0, 212, 255, 0.15) 0%,
			rgba(0, 150, 200, 0.15) 100%);
}

/* Table wrapper for responsive design */
.table-wrapper {
	overflow-x: auto;
	margin: 25px 0;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.table-wrapper::-webkit-scrollbar {
	height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
	background: rgba(0, 212, 255, 0.1);
	border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
	background: linear-gradient(135deg,
			rgba(0, 212, 255, 0.6) 0%,
			rgba(0, 150, 200, 0.8) 100%);
	border-radius: 4px;
	cursor: url('images/pointer.cur'), pointer !important;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(135deg,
			rgba(0, 212, 255, 0.8) 0%,
			rgba(0, 255, 255, 1) 100%);
}

.content-wrapper img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	border: 1px solid rgba(0, 212, 255, 0.25);
	transition: all 0.3s ease;
	display: block;
}

.content-wrapper img:hover {
	border-color: rgba(0, 212, 255, 0.5);
	transform: translateY(-2px);
}

/* Scrollbar Styling */
.sidebar-wrapper::-webkit-scrollbar,
.content-wrapper::-webkit-scrollbar,
.card-body::-webkit-scrollbar {
	width: 6px;
}

.sidebar-wrapper::-webkit-scrollbar-track,
.content-wrapper::-webkit-scrollbar-track,
.card-body::-webkit-scrollbar-track {
	background: rgba(0, 212, 255, 0.05);
}

.sidebar-wrapper::-webkit-scrollbar-thumb,
.content-wrapper::-webkit-scrollbar-thumb,
.card-body::-webkit-scrollbar-thumb {
	background: rgba(0, 212, 255, 0.3);
	border-radius: 3px;
	cursor: url('images/pointer.cur'), pointer !important;
}

.sidebar-wrapper::-webkit-scrollbar-thumb:hover,
.content-wrapper::-webkit-scrollbar-thumb:hover,
.card-body::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 212, 255, 0.6);
	cursor: url('images/pointer.cur'), pointer !important;
}

/* Firefox Scrollbar */
.sidebar-wrapper,
.content-wrapper,
.card-body {
	scrollbar-color: rgba(0, 212, 255, 0.3) rgba(0, 212, 255, 0.05);
	scrollbar-width: thin;
}

/* Menu Styling */
.main-menu {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.menu-section {
	border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.menu-section:last-child {
	border-bottom: none;
}

.menu-section-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	color: #00d4ff;
	font-weight: 700;
	font-size: 11px;
	cursor: pointer;
	transition: all 0.3s ease;
	user-select: none;
	background: linear-gradient(90deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.menu-section-title:hover {
	background: linear-gradient(90deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
	padding-left: 20px;
}

.menu-section-title span {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
}

.menu-section-title span i {
	font-size: 11px;
	flex-shrink: 0;
}

.menu-section-title>i:last-child {
	font-size: 11px;
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.menu-section-title.active>i:last-child {
	transform: rotate(180deg);
}

/* NEW Badge для GM Events */
.menu-section-title.new-section {
	position: relative;
	background: linear-gradient(90deg, rgba(255, 170, 0, 0.08) 0%, rgba(0, 0, 0, 0) 100%);
	border-left: 3px solid #ffaa00;
	animation: pulseGlow 2.5s ease-in-out infinite;
}

.menu-section-title.new-section::after {
	content: 'NEW';
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(135deg, #ff9900, #ffcc00);
	color: #000;
	font-size: 9px;
	font-weight: 800;
	padding: 3px 7px;
	border-radius: 10px;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(255, 170, 0, 0.5);
	animation: pulseBadge 2.5s ease-in-out infinite;
}

.menu-section-title.new-section:hover {
	background: linear-gradient(90deg, rgba(255, 170, 0, 0.12) 0%, rgba(0, 0, 0, 0) 100%);
}

@keyframes pulseGlow {

	0%,
	100% {
		border-left-color: #ffaa00;
		box-shadow: 0 0 8px rgba(255, 170, 0, 0.15);
	}

	50% {
		border-left-color: #ffcc00;
		box-shadow: 0 0 18px rgba(255, 170, 0, 0.35);
	}
}

@keyframes pulseBadge {

	0%,
	100% {
		transform: translateY(-50%) scale(1);
		box-shadow: 0 2px 10px rgba(255, 170, 0, 0.6);
	}

	50% {
		transform: translateY(-50%) scale(1.04);
		box-shadow: 0 3px 15px rgba(255, 170, 0, 0.8);
	}
}

/* NEW Badge for submenu items */
.menu-submenu li.new-item {
	position: relative;
	border-left: 3px solid #ffaa00;
	animation: pulseGlow 2.5s ease-in-out infinite;
}

.menu-submenu li.new-item a {
	position: relative;
	padding-right: 45px;
}

.menu-submenu li.new-item a::after {
	content: 'NEW';
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	background: linear-gradient(135deg, #ff9900, #ffcc00);
	color: #000;
	font-size: 8px;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: 8px;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(255, 170, 0, 0.5);
	animation: pulseBadge 2.5s ease-in-out infinite;
}

.menu-submenu {
	list-style: none;
	display: flex;
	flex-direction: column;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	background: rgba(0, 0, 0, 0.2);
}

.menu-submenu.open {
	max-height: 1000px;
}

.menu-submenu li {
	border-left: 3px solid transparent;
	transition: all 0.2s ease;
}

.menu-submenu li:hover {
	border-left-color: #00d4ff;
	background: rgba(0, 212, 255, 0.08);
}

.menu-submenu li a {
	display: block;
	padding: 10px 20px;
	color: #c0c0d0;
	text-decoration: none;
	font-size: 11px;
	transition: all 0.2s ease;
}

.menu-submenu li a::before {
	content: '\f105';
	font-family: 'Font Awesome 7 Free';
	font-weight: 900;
	margin-right: 8px;
	color: #ffaa00;
	font-size: 11px;
	transition: all 0.2s ease;
	display: inline-block;
}

.menu-submenu li:hover a {
	color: #00d4ff;
	padding-left: 26px;
}

.menu-submenu li:hover a::before {
	color: #ffcc00;
}

/* Info Sections */
.info-container {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
}

.info-section {
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-section:last-child {
	border-bottom: none;
}

.info-section:hover {
	background: none;
	box-shadow: none;
}

.info-section h3 {
	color: #fff;
	font-size: 14px;
	margin-bottom: 8px;
	display: block;
	font-weight: 600;
}

.info-grid {
	display: block;
}

.info-item {
	display: block;
	padding: 8px 0;
	margin: 0;
	background: none;
	border: none;
	transition: none;
}

.info-item:hover {
	background: none;
	border-color: transparent;
}

.info-label {
	color: #c0c0d0;
	font-size: 12px;
	font-weight: 400;
	display: inline;
}

.info-label::after {
	content: ": ";
}

.info-value {
	color: #fff;
	font-weight: 400;
	font-size: 12px;
	text-shadow: none;
	white-space: normal;
	display: inline;
}

/* Content Blocks (Text + Images) */
.content-blocks {
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.content-text {
	font-size: 13px;
	color: #fff;
	line-height: 1.6;
	margin: 0;
}

.section-title {
	display: inline-block;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	font-style: normal;
	text-transform: uppercase;
	letter-spacing: 3px;
	padding: 12px 30px;
	margin: 10px 0;
	background: linear-gradient(135deg,
			rgba(0, 100, 200, 0.3) 0%,
			rgba(0, 150, 255, 0.4) 50%,
			rgba(0, 100, 200, 0.3) 100%);
	border: 2px solid rgba(0, 212, 255, 0.5);
	border-radius: 8px;
	box-shadow:
		0 0 20px rgba(0, 212, 255, 0.4),
		0 0 40px rgba(0, 150, 255, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -1px 0 rgba(0, 0, 0, 0.3);
	text-shadow:
		0 0 10px rgba(0, 212, 255, 0.8),
		0 0 20px rgba(0, 150, 255, 0.6),
		2px 2px 4px rgba(0, 0, 0, 0.8);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.section-title::before {
	content: '◆';
	position: absolute;
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	color: rgba(0, 212, 255, 0.8);
	animation: pulse-gem 2s ease-in-out infinite;
}

.section-title::after {
	content: '◆';
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 14px;
	color: rgba(0, 212, 255, 0.8);
	animation: pulse-gem 2s ease-in-out infinite;
	animation-delay: 1s;
}

@keyframes pulse-gem {

	0%,
	100% {
		opacity: 0.5;
		transform: translateY(-50%) scale(1);
	}

	50% {
		opacity: 1;
		transform: translateY(-50%) scale(1.2);
	}
}

.section-title:hover {
	border-color: rgba(0, 212, 255, 0.8);
	box-shadow:
		0 0 30px rgba(0, 212, 255, 0.6),
		0 0 60px rgba(0, 150, 255, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.3),
		inset 0 -1px 0 rgba(0, 0, 0, 0.3);
	transform: translateY(-2px);
}

.content-image {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin: 10px 0;
}

.info-table {
	width: 100%;
	border-collapse: collapse;
	background: transparent;
}

.info-table tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: none;
}

.info-table tr:hover {
	background: none;
}

.info-table tr:last-child {
	border-bottom: none;
}

.info-table td {
	padding: 8px 10px;
	color: #fff;
	font-size: 12px;
}

.info-table .label {
	color: #c0c0d0;
	font-weight: 400;
	min-width: auto;
}

.info-table .value {
	color: #fff;
	font-weight: 400;
}

.news-header {
	padding: 25px;
	background: linear-gradient(90deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
	border-bottom: 1px solid rgba(0, 212, 255, 0.2);
	position: relative;
}

.news-header::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(180deg, #00d4ff, rgba(0, 212, 255, 0.5));
}

.news-header h2 {
	font-size: 18px;
	color: #00d4ff;
	display: flex;
	align-items: center;
	gap: 12px;
	text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
	margin: 0;
}

.news-header i {
	font-size: 20px;
}

.news-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* News Item */
.news-item {
	display: flex;
	gap: 15px;
	padding: 25px 20px;
	border-bottom: 1px solid rgba(0, 212, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

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

.news-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 3px;
	background: linear-gradient(180deg, #00d4ff, rgba(0, 212, 255, 0));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.news-item:hover {
	background: rgba(0, 212, 255, 0.08);
	padding-left: 35px;
}

.news-item:hover::before {
	opacity: 1;
}

/* News Date */
.news-date {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 70px;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.05));
	border: 2px solid rgba(0, 212, 255, 0.3);
	border-radius: 8px;
	padding: 10px;
	flex-shrink: 0;
}

.news-day {
	font-size: 20px;
	font-weight: bold;
	color: #00d4ff;
	line-height: 1;
}

.news-month {
	font-size: 11px;
	color: #a0a0b0;
	margin-top: 4px;
	letter-spacing: 1px;
	font-weight: 600;
}

/* News Content */
.news-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.news-content h3 {
	font-size: 18px;
	color: #ffffff;
	margin: 0;
	transition: color 0.3s ease;
}

.news-item:hover .news-content h3 {
	color: #00d4ff;
}

.news-content p {
	font-size: 14px;
	color: #c0c0d0;
	margin: 0;
	line-height: 1.5;
}

.news-link {
	align-self: flex-start;
	color: #00d4ff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	margin-top: 5px;
}

.news-link:hover {
	gap: 12px;
	text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.news-link i {
	font-size: 11px;
	transition: transform 0.3s ease;
}

/* Gaming Style News Section */
.gaming-news-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
	padding: 20px;
}

.gaming-news-header .header-line {
	flex: 1;
	height: 2px;
	background: linear-gradient(90deg, transparent, #00d4ff, transparent);
	box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.gaming-news-header h2 {
	font-size: 20px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000,
		2px 2px 6px rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 0;
}

.gaming-news-header h2 i {
	color: #ffaa00;
	font-size: 18px;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}

	50% {
		transform: scale(1.2);
		opacity: 0.8;
	}
}

.gaming-news-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	padding: 0;
}

.gaming-news-card {
	position: relative;
	background: linear-gradient(135deg, rgba(10, 10, 20, 0.95) 0%, rgba(20, 20, 40, 0.95) 100%);
	border: 2px solid rgba(0, 212, 255, 0.3);
	border-radius: 8px;
	padding: 0;
	overflow: hidden;
	transition: all 0.4s ease;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	height: 450px;
	min-height: 450px;
}

.gaming-news-card:hover::before {
	left: 100%;
}

.gaming-news-card:hover {
	transform: translateY(-3px);
	border-color: rgba(0, 212, 255, 0.6);
	box-shadow:
		0 8px 25px rgba(0, 212, 255, 0.2),
		0 0 15px rgba(0, 212, 255, 0.15);
}

.card-glow {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(45deg, #00d4ff, #ffaa00, #00d4ff);
	opacity: 0;
	filter: blur(10px);
	z-index: -1;
	transition: opacity 0.4s ease;
}

.gaming-news-card:hover .card-glow {
	opacity: 0.15;
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background: linear-gradient(90deg, rgba(0, 212, 255, 0.15), rgba(0, 212, 255, 0.05));
	border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.news-badge {
	font-size: 10px;
	font-weight: 900;
	padding: 4px 10px;
	border-radius: 4px;
	letter-spacing: 1px;
	text-transform: uppercase;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.news-badge.new {
	background: linear-gradient(135deg, #ff9900, #ffcc00);
	color: #000;
}

.news-badge.event {
	background: linear-gradient(135deg, #ff00ff, #ff66ff);
	color: #fff;
}

.news-badge.pvp {
	background: linear-gradient(135deg, #ff0000, #ff6666);
	color: #fff;
}

.news-badge.update {
	background: linear-gradient(135deg, #00ff00, #66ff66);
	color: #000;
}

.news-date {
	font-size: 11px;
	color: #00d4ff;
	font-weight: 700;
	letter-spacing: 1px;
}

.card-body {
	padding: 20px 20px 25px 20px;
	flex: 1;
	overflow-y: auto;
	overflow-x: hidden;
	max-height: calc(480px - 50px - 45px);
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 12px 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.3;
}

.gaming-news-card:hover .card-body h3 {
	color: #00d4ff;
	text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.card-body p {
	font-size: 13px;
	color: #b0b0c0;
	line-height: 1.6;
	margin: 0 0 15px 0;
}

.card-body p:last-child {
	margin-bottom: 0;
}

.card-footer {
	padding: 12px 20px;
	background: rgba(0, 0, 0, 0.3);
	border-top: 1px solid rgba(0, 212, 255, 0.2);
	font-size: 11px;
	color: #00d4ff;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

.card-footer i {
	font-size: 12px;
}

/* Footer */
footer,
.footer,
.footer-container {
	position: relative;
	width: 100%;
	padding: 20px 20px;
	text-align: center;
	color: #00d4ff;
	font-size: 11px;
	font-weight: 500;
	border-top: 2px solid rgba(0, 212, 255, 0.4);
	background: linear-gradient(180deg, rgba(10, 10, 20, 0.98) 0%, rgba(5, 5, 15, 1) 100%);
	backdrop-filter: blur(10px);
	z-index: 100;
	box-shadow: 0 -2px 20px rgba(0, 212, 255, 0.1);
}

footer p,
.footer p,
.footer-container p {
	margin: 0;
	letter-spacing: 0.5px;
	text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.footer-motto {
	font-size: 12px;
	font-weight: 700;
	color: #00d4ff;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
	margin-top: 8px !important;
}

/* ==================== BACK TO TOP BUTTON ==================== */
#backToTop {
	position: fixed;
	bottom: 40px;
	right: 280px;
	width: 55px;
	height: 55px;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.85) 0%, rgba(0, 150, 200, 0.9) 100%);
	border: 3px solid #00d4ff;
	border-radius: 50%;
	cursor: url('images/pointer.cur'), pointer !important;
	display: none;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 1001;
	box-shadow: 0 0 30px rgba(0, 212, 255, 0.6), 0 4px 15px rgba(0, 0, 0, 0.5);
}

#backToTop:hover {
	background: linear-gradient(135deg, #00d4ff 0%, rgba(0, 180, 220, 1) 100%);
	border-color: #fff;
	box-shadow: 0 0 40px rgba(0, 212, 255, 0.9), 0 6px 20px rgba(0, 0, 0, 0.6);
	transform: translateY(-5px) scale(1.05);
	cursor: url('images/pointer.cur'), pointer !important;
}

#backToTop i {
	color: #fff;
	font-size: 22px;
	text-shadow: 0 0 15px rgba(0, 212, 255, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
	font-weight: 900;
}

#backToTop.show {
	display: flex;
	animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

footer a,
.footer a,
.footer-container a {
	color: #00d4ff;
	text-decoration: none;
	transition: all 0.3s ease;
}

footer a:hover,
.footer a:hover,
.footer-container a:hover {
	color: #fff;
	text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive inline text styles */
@media (max-width: 1024px) {
	.content-wrapper span[style*="font-size: 20px"] {
		font-size: 17px !important;
	}

	.content-wrapper span[style*="font-size: 15px"] {
		font-size: 13px !important;
	}
}

@media (max-width: 768px) {
	.content-wrapper span[style*="font-size: 20px"] {
		font-size: 15px !important;
	}

	.content-wrapper span[style*="font-size: 15px"] {
		font-size: 12px !important;
	}
}

@media (max-width: 480px) {
	.content-wrapper span[style*="font-size: 20px"] {
		font-size: 13px !important;
	}

	.content-wrapper span[style*="font-size: 15px"] {
		font-size: 11px !important;
	}
}

@media (max-width: 360px) {
	.content-wrapper span[style*="font-size: 20px"] {
		font-size: 12px !important;
	}

	.content-wrapper span[style*="font-size: 15px"] {
		font-size: 10px !important;
	}
}

/* Responsive Design */

/* Tablets and smaller desktops */
@media (max-width: 1024px) {

	/* Header adjustments */
	.site-header {
		height: 90px;
		padding: 0 20px;
	}

	.logo {
		max-height: 70px;
	}

	.header-buttons {
		gap: 10px;
	}

	.header-button {
		min-width: 140px;
		padding: 10px 16px;
		font-size: 10px;
	}

	.header-button i {
		font-size: 11px;
	}

	/* Sidebar adjustments */
	.sidebar-wrapper {
		max-width: 250px;
	}

	.content-wrapper p {
		font-size: 12px;
		line-height: 1.7;
	}

	.content-wrapper h2 {
		font-size: 18px;
		padding: 12px 18px;
		letter-spacing: 0.7px;
		margin: 0 0 16px 0;
	}

	.content-wrapper h3 {
		font-size: 16px;
	}

	.menu-section-title {
		padding: 12px 14px;
		font-size: 12px;
	}

	.menu-submenu li a {
		padding: 9px 18px;
		font-size: 11px;
	}

	.info-grid {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	}
}

/* Tablets */
@media (max-width: 768px) {

	/* Header for tablets */
	.site-header {
		height: 80px;
		padding: 0 15px;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px;
	}

	.logo {
		max-height: 60px;
	}

	.header-buttons {
		gap: 8px;
		width: 100%;
		justify-content: center;
	}

	.header-button {
		min-width: 120px;
		height: 36px;
		padding: 8px 14px;
		font-size: 9px;
	}

	.header-button i {
		font-size: 10px;
	}

	/* Main layout */
	.main-container {
		flex-direction: column;
	}

	.sidebar-wrapper {
		width: 100%;
		max-width: 100%;
		border-right: none;
		border-bottom: 1px solid rgba(0, 212, 255, 0.2);
		max-height: 45vh;
	}

	.right-sidebar-wrapper {
		width: 100%;
		max-width: 100%;
		border-left: none;
		border-top: 1px solid rgba(0, 212, 255, 0.2);
	}

	/* Server Stats Responsive */
	.server-stats-container {
		margin: 15px;
	}

	.stats-section-content {
		max-height: 200px;
		overflow-y: auto;
	}

	.content-wrapper {
		flex: 1;
	}

	.content-wrapper {
		padding: 20px;
	}

	.content-wrapper p {
		font-size: 11px;
		line-height: 1.6;
	}

	.content-wrapper h2 {
		font-size: 16px;
		padding: 10px 16px;
		margin: 0 0 14px 0;
		letter-spacing: 0.6px;
	}

	.content-wrapper h3 {
		font-size: 16px;
	}

	.content-wrapper li {
		line-height: 1.5;
	}

	.content-wrapper table td {
		font-size: 11px;
		padding: 9px 10px;
	}

	.menu-section-title {
		padding: 11px 12px;
		font-size: 12px;
	}

	.menu-submenu li a {
		padding: 8px 16px;
		font-size: 11px;
	}

	.info-container {
		padding: 15px;
		gap: 12px;
	}

	.info-section {
		padding: 12px;
	}

	.info-section h3 {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.info-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 10px;
	}

	.info-item {
		padding: 8px;
		flex-direction: column;
		align-items: flex-start;
	}

	.info-label {
		font-size: 11px;
	}

	.info-value {
		font-size: 12px;
	}

	.gaming-news-header h2 {
		font-size: 18px;
		letter-spacing: 1.5px;
	}

	.gaming-news-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.card-body h3 {
		font-size: 15px;
	}

	.card-body p {
		font-size: 12px;
	}

	.section-title {
		font-size: 13px !important;
	}
}

/* Mobile */
@media (max-width: 480px) {

	/* Header for mobile */
	.site-header {
		height: auto;
		min-height: 70px;
		padding: 10px;
		flex-direction: column;
		gap: 8px;
	}

	.logo {
		max-height: 50px;
	}

	.header-buttons {
		width: 100%;
		gap: 6px;
	}

	.header-button {
		flex: 1;
		min-width: 100px;
		height: 32px;
		padding: 6px 10px;
		font-size: 8px;
	}

	.header-button i {
		font-size: 9px;
	}

	/* Main layout */
	.main-container {
		flex-direction: column-reverse;
		gap: 0;
	}

	.sidebar-wrapper {
		max-height: 50vh;
		border-bottom: 1px solid rgba(0, 212, 255, 0.2);
		border-right: none;
	}

	.right-sidebar-wrapper {
		order: -1;
	}

	.content-wrapper {
		flex: 1;
		overflow: hidden;
	}

	.content-area {
		overflow-y: auto;
	}

	.content-wrapper {
		padding: 15px;
	}

	.content-wrapper p {
		font-size: 11px;
		line-height: 1.5;
		margin-bottom: 12px;
	}

	.content-wrapper h2 {
		font-size: 14px;
		padding: 8px 14px;
		margin: 0 0 12px 0;
		letter-spacing: 0.5px;
	}

	.content-wrapper h3 {
		font-size: 14px;
		margin-top: 16px;
	}

	.content-wrapper li {
		line-height: 1.5;
		margin-bottom: 8px;
		padding: 8px 12px;
	}

	.content-wrapper table td {
		font-size: 11px;
		padding: 8px 10px;
	}

	.menu-section-title {
		padding: 10px 10px;
		font-size: 11px;
	}

	.menu-section-title span {
		gap: 6px;
	}

	.menu-section-title>i:last-child {
		font-size: 10px;
		margin-left: 6px;
	}

	.menu-submenu li a {
		padding: 8px 14px;
		font-size: 10px;
	}

	.menu-submenu li:hover a {
		padding-left: 20px;
	}

	.info-container {
		padding: 12px;
		gap: 10px;
	}

	.info-section {
		padding: 10px;
		border-left-width: 3px;
	}

	.info-section h3 {
		font-size: 13px;
		margin-bottom: 8px;
		gap: 6px;
	}

	.info-section h3 i {
		font-size: 13px;
	}

	.info-grid {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.info-item {
		padding: 8px;
	}

	.info-label {
		font-size: 10px;
	}

	.info-value {
		font-size: 11px;
	}

	.info-table {
		font-size: 11px;
	}

	.info-table td {
		padding: 8px;
	}

	.info-table .label {
		min-width: 80px;
		font-size: 10px;
	}

	.info-table .value {
		font-size: 11px;
	}

	.footer-container {
		padding: 12px;
		font-size: 11px;
	}

	.gaming-news-header {
		padding: 12px;
		gap: 10px;
		margin-bottom: 15px;
	}

	.gaming-news-header h2 {
		font-size: 14px;
		letter-spacing: 1px;
	}

	.gaming-news-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.gaming-news-card {
		margin-bottom: 0;
	}

	.card-header {
		padding: 10px 12px;
	}

	.news-badge {
		font-size: 8px;
		padding: 3px 8px;
	}

	.news-date {
		font-size: 9px;
	}

	.card-body {
		padding: 12px;
	}

	.card-body h3 {
		font-size: 13px;
		margin-bottom: 8px;
	}

	.card-body p {
		font-size: 11px;
		line-height: 1.5;
	}

	.card-footer {
		padding: 8px 12px;
		font-size: 9px;
	}

	.card-footer i {
		font-size: 10px;
	}

	.section-title {
		font-size: 12px !important;
	}

	/* Back to top button */
	#backToTop {
		width: 45px;
		height: 45px;
		right: 15px;
		bottom: 15px;
	}
}

/* Extra small phones */
@media (max-width: 360px) {

	/* Header for very small phones */
	.site-header {
		padding: 8px;
		min-height: 65px;
	}

	.logo {
		max-height: 45px;
	}

	.header-button {
		min-width: 90px;
		height: 28px;
		padding: 5px 8px;
		font-size: 7px;
		gap: 4px;
	}

	.header-button i {
		font-size: 8px;
	}

	.content-wrapper {
		padding: 12px;
	}

	.content-wrapper p {
		font-size: 10px;
		line-height: 1.4;
	}

	.content-wrapper h2 {
		font-size: 13px;
		padding: 7px 12px;
		margin: 0 0 10px 0;
		letter-spacing: 0.4px;
	}

	.content-wrapper h3 {
		font-size: 13px;
	}

	.content-wrapper li {
		line-height: 1.5;
	}

	.content-wrapper table td {
		font-size: 10px;
		padding: 6px 8px;
	}

	.menu-section-title {
		padding: 9px 8px;
		font-size: 10px;
	}

	.menu-submenu li a {
		padding: 7px 12px;
		font-size: 9px;
	}

	.info-section h3 {
		font-size: 12px;
	}

	.info-label {
		font-size: 9px;
	}

	.info-value {
		font-size: 10px;
	}

	.gaming-news-header {
		padding: 10px;
		gap: 8px;
		margin-bottom: 12px;
	}

	.gaming-news-header h2 {
		font-size: 12px;
		letter-spacing: 0.8px;
	}

	.gaming-news-grid {
		gap: 10px;
	}

	.card-header {
		padding: 8px 10px;
	}

	.news-badge {
		font-size: 7px;
		padding: 2px 6px;
	}

	.news-date {
		font-size: 8px;
	}

	.card-body {
		padding: 10px;
	}

	.card-body h3 {
		font-size: 11px;
		margin-bottom: 6px;
	}

	.card-body p {
		font-size: 10px;
		line-height: 1.4;
	}

	.card-footer {
		padding: 6px 10px;
		font-size: 8px;
	}

	.card-footer i {
		font-size: 9px;
	}

	.section-title {
		font-size: 11px !important;
	}
}

.kundun-box-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	margin: 0;
}

.kundun-box-misc-image {
	height: 4em;
}

.upgrade-image {
	display: block;
	max-width: 100%;
}

img .align-right {
	display: block;
	float: right;
	max-width: 100%;
}

img .align-left {
	display: block;
	float: left;
	max-width: 100%;
}

/* Premium Item Hover Effect */
.image-container-overlay {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 10px;
	padding: 10px;
	width: 140px;
	height: 140px;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: linear-gradient(135deg, rgba(20, 20, 40, 0.95), rgba(30, 30, 50, 0.95));
	border: 2px solid rgba(0, 212, 255, 0.15);
	vertical-align: top;
}

/* Larger containers for set items */
.image-container-overlay.set-item {
	width: 22%;
	height: 240px;
	padding: 20px;
	margin: 10px 1%;
}

.image-container-overlay img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	transition: transform 0.3s ease, opacity 0.3s ease;
	image-rendering: pixelated;
	image-rendering: -moz-crisp-edges;
	image-rendering: crisp-edges;
	object-fit: contain;
}

.image-container-overlay:hover {
	box-shadow: 0 8px 24px rgba(0, 150, 255, 0.5), 0 0 30px rgba(0, 212, 255, 0.3);
	transform: translateY(-4px);
	background: linear-gradient(135deg, rgba(0, 102, 204, 0.4), rgba(0, 150, 255, 0.3));
	border-color: rgba(0, 212, 255, 0.5);
}

.image-container-overlay:hover img {
	transform: scale(1.05);
	opacity: 0.95;
}

.overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	min-height: 32px;
	background: linear-gradient(to top,
			rgba(0, 102, 204, 0.96) 0%,
			rgba(0, 150, 255, 0.88) 60%,
			rgba(0, 150, 255, 0) 100%);
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	text-align: center;
	padding: 8px 4px 6px 4px;
	margin: 0;
	opacity: 0;
	transform: translateY(100%);
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	text-shadow:
		0 0 6px rgba(0, 180, 255, 0.8),
		0 2px 4px rgba(0, 0, 0, 1),
		1px 1px 0 rgba(0, 0, 0, 0.9);
	letter-spacing: 0.5px;
	text-transform: uppercase;
	pointer-events: none;
	line-height: 1.2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-container-overlay:hover .overlay {
	opacity: 1;
	transform: translateY(0);
}

.overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 10%;
	right: 10%;
	height: 1px;
	background: linear-gradient(to right,
			transparent,
			rgba(255, 255, 255, 0.6),
			transparent);
}

.overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
	transition: left 0.6s ease;
}

.overlay::after {
	content: '✦';
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 10px;
	color: rgba(255, 255, 255, 0.6);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 0.4;
		transform: translateX(-50%) scale(1);
	}

	50% {
		opacity: 1;
		transform: translateX(-50%) scale(1.2);
	}
}

.image-container-overlay:hover .overlay {
	opacity: 1;
	transform: translateY(0);
}

.image-container-overlay:hover .overlay::before {
	left: 100%;
}

/* Countdown Timer */
.countdown-container {
	margin: 0 0 35px 0;
	padding: 30px 10px 30px 10px;
	background: linear-gradient(135deg,
			rgba(0, 0, 0, 0.85) 0%,
			rgba(10, 10, 30, 0.9) 50%,
			rgba(0, 0, 0, 0.85) 100%);
	border: 3px solid transparent;
	border-image: linear-gradient(135deg, #00d4ff 0%, #ffaa00 50%, #00d4ff 100%) 1;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.8),
		0 0 50px rgba(0, 212, 255, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.countdown-container::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
	animation: rotateGlow 10s linear infinite;
}



@keyframes rotateGlow {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.countdown-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 15px;
	position: relative;
	z-index: 10;
}

.countdown-header i {
	font-size: 24px;
	color: #ffaa00;
	animation: rocketPulse 2s ease-in-out infinite;
}

@keyframes rocketPulse {

	0%,
	100% {
		transform: translateY(0) scale(1);
		filter: drop-shadow(0 0 10px rgba(255, 170, 0, 0.6));
	}

	50% {
		transform: translateY(-5px) scale(1.1);
		filter: drop-shadow(0 0 20px rgba(255, 170, 0, 0.9));
	}
}

.countdown-header h3 {
	font-size: 26px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 3px;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000,
		0 0 20px rgba(0, 212, 255, 0.5);
	margin: 0;
}

.countdown-date {
	text-align: center;
	font-size: 16px;
	color: #00d4ff;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 25px;
	text-transform: uppercase;
	text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
	position: relative;
	z-index: 10;
}

.countdown-timer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	position: relative;
	z-index: 10;
}

.countdown-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 102, 204, 0.15) 100%);
	border: 2px solid rgba(0, 212, 255, 0.4);
	border-radius: 10px;
	padding: 20px 25px;
	min-width: 120px;
	box-shadow:
		0 5px 20px rgba(0, 0, 0, 0.5),
		inset 0 1px 0 rgba(255, 255, 255, 0.1),
		0 0 30px rgba(0, 212, 255, 0.2);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.countdown-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.countdown-block:hover {
	transform: translateY(-5px);
	border-color: #00d4ff;
	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.7),
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		0 0 40px rgba(0, 212, 255, 0.4);
}

.countdown-block:hover::before {
	left: 100%;
}

.countdown-number {
	font-size: 48px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000,
		2px 2px 4px rgba(0, 0, 0, 0.8);
	font-family: 'Arial', sans-serif;
	letter-spacing: 2px;
}

.countdown-label {
	font-size: 12px;
	font-weight: 700;
	color: #00d4ff;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow:
		-1px -1px 0 #000,
		1px -1px 0 #000,
		-1px 1px 0 #000,
		1px 1px 0 #000;
}

.countdown-separator {
	font-size: 42px;
	font-weight: 900;
	color: #ffaa00;
	text-shadow:
		0 0 10px rgba(255, 170, 0, 0.8),
		0 0 20px rgba(255, 170, 0, 0.5);
	animation: blinkSeparator 1s ease-in-out infinite;
}

@keyframes blinkSeparator {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}
}

.countdown-launched {
	font-size: 36px;
	font-weight: 900;
	color: #00ff00;
	text-transform: uppercase;
	letter-spacing: 4px;
	text-shadow:
		0 0 20px rgba(0, 255, 0, 0.8),
		0 0 40px rgba(0, 255, 0, 0.5);
	animation: launchPulse 1s ease-in-out infinite;
}

@keyframes launchPulse {

	0%,
	100% {
		transform: scale(1);
		filter: drop-shadow(0 0 20px rgba(0, 255, 0, 0.8));
	}

	50% {
		transform: scale(1.05);
		filter: drop-shadow(0 0 40px rgba(0, 255, 0, 1));
	}
}

/* Custom HR Divider */
.custom-hr {
	width: 100%;
	height: 2px;
	margin: 25px 0;
	position: relative;
	background: linear-gradient(90deg,
			transparent 0%,
			rgba(0, 212, 255, 0.3) 15%,
			rgba(0, 212, 255, 0.8) 50%,
			rgba(0, 212, 255, 0.3) 85%,
			transparent 100%);
	border: none;
	border-radius: 1px;
	box-shadow:
		0 0 10px rgba(0, 212, 255, 0.4),
		0 0 20px rgba(0, 212, 255, 0.2);
	overflow: hidden;
}

.custom-hr::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg,
			transparent 0%,
			rgba(0, 240, 255, 0.6) 30%,
			rgba(0, 255, 255, 0.8) 50%,
			rgba(0, 240, 255, 0.6) 70%,
			transparent 100%);
	filter: blur(1px);
	opacity: 0.7;
}

.custom-hr::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: radial-gradient(circle,
			rgba(0, 212, 255, 0.3) 0%,
			rgba(0, 212, 255, 0.1) 40%,
			transparent 70%);
	border-radius: 50%;
	animation: hrPulse 3s ease-in-out infinite;
}

@keyframes hrPulse {

	0%,
	100% {
		transform: translate(-50%, -50%) scale(1);
		opacity: 0.6;
	}

	50% {
		transform: translate(-50%, -50%) scale(1.2);
		opacity: 0.9;
	}
}

/* ==================== EVENT PAGE STYLES ==================== */

/* Event Page Link Button */
.event-link-box {
	text-align: center;
	margin: 35px 0 10px;
}

.event-link-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: linear-gradient(135deg, #00acc1, #00d4ff);
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	border-radius: 8px;
	border: 1px solid #0097a7;
	transition: all 0.3s ease;
	box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.event-link-btn:hover {
	background: linear-gradient(135deg, #00d4ff, #26c6da);
	box-shadow: 0 0 30px rgba(0, 212, 255, 0.7), 0 4px 15px rgba(0, 0, 0, 0.3);
	transform: translateY(-3px);
}

.event-link-btn i {
	font-size: 18px;
	animation: gavel-swing 1.5s ease-in-out infinite;
}

@keyframes gavel-swing {

	0%,
	100% {
		transform: rotate(0deg);
	}

	25% {
		transform: rotate(-15deg);
	}

	75% {
		transform: rotate(15deg);
	}
}

/* Event Page Wrapper */
.event-page-wrapper {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0;
	background: none;
	border: none;
	color: #dcdcdc;
	font-family: 'Exo 2', sans-serif;
}

/* Event Sections */
.event-section {
	background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
	border: 1px solid #1a2530;
	border-left: 4px solid #00d4ff;
	border-radius: 8px;
	padding: 22px 28px;
	margin-bottom: 20px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.event-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

.event-section:hover {
	box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
}

.event-section h3 {
	margin-top: 0;
	margin-bottom: 15px;
	color: #00d4ff;
	font-size: 19px;
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.event-section p {
	line-height: 1.7;
	color: #d0d0d0;
	position: relative;
	z-index: 1;
}

.event-section ul {
	padding-left: 18px;
	margin: 0;
	position: relative;
	z-index: 1;
}

.event-section li {
	margin-bottom: 12px;
	line-height: 1.6;
	color: #d0d0d0;
}

.event-section i {
	color: #00d4ff;
	min-width: 18px;
}

.event-section li i {
	margin-right: 8px;
}

/* Event Warning Box */

.event-warning {
	background: linear-gradient(135deg, #0f1419 0%, #1a1a1a 100%);
	border: 2px dashed #00acc1;
	color: #80deea;
	padding: 18px 24px;
	border-radius: 8px;
	margin: 30px 0 0;
	font-size: 15px;
	position: relative;
	overflow: hidden;
}

.event-warning::before {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
	animation: warning-glow 3s linear infinite;
	z-index: 0;
}

.event-warning i {
	margin-right: 8px;
}

@keyframes warning-glow {
	0% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(100%);
	}
}

/* Event Schedule Box */
.event-schedule {
	margin-top: 30px;
	text-align: center;
	font-size: 16px;
	color: #00d4ff;
	letter-spacing: 1px;
	padding: 15px;
	background: rgba(0, 212, 255, 0.05);
	border-radius: 8px;
	border: 1px solid rgba(0, 212, 255, 0.2);
	font-weight: 600;
}

.event-schedule i {
	margin-right: 10px;
	animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.6;
	}
}

/* ===== INVASION MONSTERS STYLES ===== */
.invasion-info-box {
	background: linear-gradient(135deg, #0a0e12 0%, #1a1f26 100%);
	border: 2px solid #00d4ff;
	border-radius: 12px;
	padding: 20px 30px;
	margin-bottom: 40px;
	text-align: center;
	box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.invasion-info-box p {
	margin: 8px 0;
	font-size: 18px;
	color: #fff;
}

.invasion-info-box strong {
	color: #00d4ff;
	font-weight: 700;
	text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.invasion-info-box i {
	color: #00d4ff;
	font-size: 16px;
}

.invasion-monsters-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 20px;
	margin-top: 30px;
}

.invasion-monster-card {
	background: linear-gradient(135deg, #0f1419 0%, #1a1f26 100%);
	border: 2px solid rgba(0, 212, 255, 0.3);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}



.invasion-monster-header {
	background: linear-gradient(180deg, #1a1f26 0%, #0f1419 100%);
	padding: 20px;
	text-align: center;
	border-bottom: 2px solid rgba(0, 212, 255, 0.2);
	position: relative;
}



.invasion-monster-image-container {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
	padding: 10px;
	width: 140px;
	height: 140px;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	background: linear-gradient(135deg, rgba(20, 20, 40, 0.95), rgba(30, 30, 50, 0.95));
	border: 2px solid rgba(0, 212, 255, 0.15);
}

.invasion-monster-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease, opacity 0.3s ease;
	image-rendering: pixelated;
	image-rendering: -moz-crisp-edges;
	image-rendering: crisp-edges;
}



.invasion-monster-header h3 {
	margin: 0;
	font-size: 18px;
	color: #00d4ff;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* Remove ::before from h3 in golden monsters */
.invasion-monster-header h3::before,
.invasion-monster-header h3::after {
	display: none !important;
	content: none !important;
}

.invasion-monster-details {
	padding: 4px;
	display: flex;
	flex-direction: column;
}

.invasion-detail-section {
	margin-bottom: 12px;
	position: relative;
	flex: 1;
}

.invasion-detail-section:last-child {
	margin-bottom: 0;
}

.invasion-detail-section h4,
.invasion-info-text {
	margin: 0;
	padding: 10px 8px;
	background: rgba(0, 212, 255, 0.03);
	border-radius: 4px;
	font-size: 12.5px;
	color: #80deea;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	display: flex;
	align-items: center;
	gap: 6px;
	width: 100%;
	min-height: 45px;
	box-sizing: border-box;
}

.invasion-detail-section h4 i {
	color: #00d4ff;
	font-size: 14px;
}

.invasion-detail-section p {
	margin: 0;
	font-size: 14px;
	color: #fff;
	line-height: 1.4;
}

.invasion-location {
	color: #ffb74d;
	font-weight: 600;
}

.invasion-reward {
	color: #81c784;
	font-weight: 600;
}

.invasion-count {
	color: #ba68c8;
	font-weight: 600;
}

.invasion-bonus {
	color: #ba68c8;
	font-weight: 600;
}

/* Mobile responsive for invasion cards */
@media (max-width: 768px) {
	.invasion-monsters-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.invasion-monster-card:hover {
		transform: translate3d(0, -4px, 0) scale(1.01);
	}

	.invasion-info-box {
		padding: 15px 20px;
	}

	.invasion-info-box p {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.invasion-monster-image-container {
		width: 120px;
		height: 120px;
	}

	.invasion-monster-header h3 {
		font-size: 16px;
	}

	.invasion-detail-section h4 {
		font-size: 12px;
	}

	.invasion-detail-section p {
		font-size: 13px;
	}
}