﻿/* ========================================
   OynaTR Tema - LeaderOS Template
   Ana Stil Dosyası v2.5.1
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ========================================
   ROOT VARIABLES
   ======================================== */
:root {
	--tblr-font-sans-serif: 'Inter', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
	--tblr-success: #10B981;
	--tblr-success-rgb: 16, 185, 129;

	/* OynaTR Özel Renk Paleti */
	--oy-primary: var(--theme-primary);
	--oy-primary-rgb: var(--theme-primary-rgb);
	--oy-primary-hover: var(--theme-primary-dark);
	--oy-primary-light: rgba(var(--theme-primary-rgb), 0.1);
	--oy-primary-glow: rgba(var(--theme-primary-rgb), 0.4);

	--oy-bg-dark: var(--theme-bg-dark);
	--oy-surface-dark: #121212;
	--oy-card-dark: #18181B;
	--oy-border-dark: #27272A;

	--oy-text-primary: #FFFFFF;
	--oy-text-secondary: #9CA3AF;
	--oy-text-muted: rgba(255, 255, 255, 0.5);

	/* Durum Renkleri */
	--oy-success: #10B981;
	--oy-danger: #EF4444;
	--oy-warning: #F59E0B;
	--oy-info: #3B82F6;

	/* Rank Renkleri */
	--oy-owner: #EF4444;
	--oy-admin: #F87171;
	--oy-moderator: #10B981;
	--oy-guide: #60A5FA;
	--oy-helper: var(--theme-primary-light);

	/* Efekt Değerleri */
	--oy-border-radius: 1rem;
	--oy-border-radius-sm: 0.5rem;
	--oy-border-radius-lg: 1.5rem;
	--oy-transition: 300ms ease;
	--oy-blur: 12px;
	--tblr-card-border-radius: 0.75rem;

	/* Unified Theme Variables */
	--primary-color: var(--theme-primary);
	--primary-rgb: var(--theme-primary-rgb);
	--primary-glow: rgba(var(--theme-primary-rgb), 0.5);
	--accent-color: var(--theme-accent);

	--glass-bg: rgba(20, 20, 25, 0.6);
	--glass-border: rgba(255, 255, 255, 0.08);
	--glass-blur: 20px;

	--text-main: #ffffff;
	--text-muted: #a1a1aa;
}

/* Dark Mode Overrides */
[data-bs-theme=dark] {
	--tblr-body-bg: var(--oy-bg-dark);
	--tblr-bg-surface: var(--oy-surface-dark);
	--tblr-border-color: var(--oy-border-dark);
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
body {
	font-feature-settings: "cv03", "cv04", "cv11";
	background-color: var(--oy-bg-dark);
	color: var(--oy-text-primary);
	overflow-x: hidden;
	transition: background-color var(--oy-transition);
}

/* Selection */
::selection {
	background-color: var(--oy-primary);
	color: #000;
}

::-moz-selection {
	background-color: var(--oy-primary);
	color: #000;
}

/* Scrollbar Stilleri */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background: var(--oy-bg-dark);
}

::-webkit-scrollbar-thumb {
	background: var(--theme-primary);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--theme-primary-dark);
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/* Links */
a {
	color: var(--oy-primary);
	text-decoration: none;
	transition: all var(--oy-transition);
}

a:hover {
	color: var(--oy-primary-hover);
}

a.card:hover {
	box-shadow: none !important;
}

/* Lists */
ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* Cloak */
[x-cloak] {
	display: none !important;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes float {
	0% {
		transform: translateY(0px) rotate(0deg);
	}

	50% {
		transform: translateY(-10px) rotate(5deg);
	}

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

.float {
	animation: float 6s ease-in-out infinite;
	will-change: transform;
}

@keyframes pulse-glow {

	0%,
	100% {
		box-shadow: 0 0 20px var(--oy-primary-glow);
	}

	50% {
		box-shadow: 0 0 40px var(--oy-primary-glow);
	}
}

@keyframes slide-in-up {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

@keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.animate-float {
	animation: float 6s ease-in-out infinite;
	will-change: transform;
}

.animate-pulse-glow {
	animation: pulse-glow 2s ease-in-out infinite;
	will-change: box-shadow;
}

.animate-slide-in {
	animation: slide-in-up 0.6s ease-out forwards;
	will-change: transform, opacity;
}

.animate-fade-in {
	animation: fade-in 0.4s ease-out forwards;
}

/* ========================================
   BACKGROUND EFFECTS
   ======================================== */
.oy-background-effects {
	position: fixed;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
	z-index: 0;
}

.oy-glow-effect {
	position: absolute;
	top: -10%;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--oy-primary-light) 0%, transparent 70%);
	border-radius: 50%;
	filter: blur(100px);
	opacity: 0.6;
}

.confetti {
	position: absolute;
	width: 12px;
	height: 12px;
	z-index: 0;
	opacity: 0.8;
	border-radius: 2px;
}

/* ========================================
   CARDS
   ======================================== */
.card {
	--tblr-card-border-radius: var(--oy-border-radius);
	margin-bottom: 1rem;
	background-color: var(--oy-card-dark);
	border: 1px solid var(--oy-border-dark);
	transition: all var(--oy-transition);
}

.card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.card-header {
	padding-top: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--oy-border-dark);
}

.card-body {
	padding: 1.5rem;
}

.bg-surface {
	background-color: var(--tblr-bg-surface);
}

/* ========================================
   NAVIGATION (NAVBAR)
   ======================================== */
.navbar {
	background-color: rgba(18, 18, 18, 0.8);
	backdrop-filter: blur(var(--oy-blur));
	border-bottom: 1px solid var(--oy-border-dark);
	position: sticky;
	top: 0;
	z-index: 1000;
	transition: all var(--oy-transition);
}

@media (min-width: 768px) {
	.navbar-expand-md .nav-item:hover {
		position: relative;
	}

	.navbar-expand-md .nav-item:hover:not(.no-hover-border)::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: -.25rem;
		border: 0 var(--tblr-border-style) var(--oy-primary);
		border-bottom-width: 2px;
	}
}

.navbar-brand-image {
	height: 32px;
}

[data-bs-theme=dark] .navbar-brand-autodark .navbar-brand-image {
	filter: none !important;
}

/* Nav Links */
.nav-link {
	color: var(--oy-text-secondary);
	transition: all var(--oy-transition);
}

.nav-link:hover,
.nav-link.active {
	color: var(--oy-primary);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
	border-radius: var(--oy-border-radius-sm);
	font-weight: 600;
	transition: all var(--oy-transition);
}

.btn-primary {
	background-color: var(--oy-primary);
	border-color: var(--oy-primary);
	color: #000;
	box-shadow: 0 4px 14px var(--oy-primary-glow);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
	background-color: var(--oy-primary-hover) !important;
	border-color: var(--oy-primary-hover) !important;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px var(--oy-primary-glow);
}

.btn-transparent {
	background-color: transparent;
	border-color: transparent !important;
	box-shadow: none;
	color: inherit;
}

.btn-link {
	color: rgba(var(--tblr-link-color-rgb), var(--tblr-link-opacity, 1));
}

.btn-link:hover {
	color: rgba(var(--tblr-link-hover-color-rgb), var(--tblr-link-opacity, 1));
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
	--tblr-btn-disabled-border-color: var(--tblr-btn-disabled-bg);
}

.btn-icon .ti {
	font-size: 1rem;
}

.btn-group-sm>.btn,
.btn-sm {
	--tblr-btn-line-height: 1.625;
	--tblr-btn-icon-size: 0.813rem;
}

/* ========================================
   ALERTS
   ======================================== */
.bg-success {
	background-color: #10B981 !important;
}

.alert-success {
	color: #fff;
	background-color: var(--tblr-success) !important;
}

.alert-danger {
	color: #fff;
	background-color: var(--tblr-danger) !important;
}

.alert-warning {
	color: #fff;
	background-color: var(--tblr-warning) !important;
}

.alert-info {
	color: #fff;
	background-color: var(--tblr-info) !important;
}

/* ========================================
   SECTIONS & SPACING
   ======================================== */
.section {
	margin: 3rem 0;
}

.page-wrapper section:last-of-type {
	margin-bottom: 0 !important;
	padding-bottom: 2rem !important;
}

.oy-section {
	margin: 4rem 0;
}

.oy-section-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.oy-section-icon {
	font-size: 1.5rem;
	color: var(--oy-primary);
}

.oy-section-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--oy-text-primary);
	white-space: nowrap;
}

.oy-section-divider {
	flex: 1;
	height: 1px;
	background-color: var(--oy-border-dark);
}

/* ========================================
   HEADER BANNER
   ======================================== */
.header-banner {
	position: relative;
	/* overflow: hidden; */
	/* Dropdown görünümü için kaldırıldı */
}

.header-image {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: 255px;
}

.header-image img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}

.header-banner-content {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1.5rem;
	color: #fff;
	font-weight: 600;
}

.header-banner-logo {
	max-height: 150px;
	animation: float 6s ease-in-out infinite;
}

.header-side-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: var(--oy-border-radius-sm);
	color: #fff;
	transition: all var(--oy-transition);
}

.header-side-icon:hover {
	background-color: var(--oy-primary);
	transform: scale(1.1);
}

.header-side-icon svg {
	fill: white;
	width: 30px;
	height: 30px;
}

/* ========================================
   HERO SECTION (OynaTR Özel)
   ======================================== */
.oy-hero {
	position: relative;
	z-index: 10;
	padding: 3rem 1rem 4rem;
	text-align: center;
}

.oy-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
	border: 1px solid rgba(234, 179, 8, 0.3);
	background-color: var(--oy-primary-light);
	color: var(--oy-primary);
	margin-bottom: 2rem;
	animation: float 6s ease-in-out infinite;
}

.oy-hero-badge span {
	font-size: 0.875rem;
	font-weight: 600;
}

.oy-hero-title {
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 900;
	color: var(--oy-text-primary);
	margin-bottom: 0.5rem;
	letter-spacing: -0.02em;
	line-height: 1;
	text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.oy-hero-subtitle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 1.25rem;
	color: var(--oy-text-secondary);
	margin-bottom: 2.5rem;
}

.oy-hero-subtitle i {
	color: var(--oy-primary);
}

/* ========================================
   IP ADDRESS CARD
   ======================================== */
.oy-ip-card {
	display: inline-flex;
	align-items: center;
	background-color: var(--oy-card-dark);
	border: 1px solid var(--oy-border-dark);
	border-radius: var(--oy-border-radius);
	padding: 0.5rem;
	padding-right: 1.5rem;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all var(--oy-transition);
	cursor: pointer;
	margin-bottom: 1.5rem;
}

.oy-ip-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.oy-ip-label {
	background-color: var(--oy-surface-dark);
	padding: 0.5rem 0.75rem;
	border-radius: var(--oy-border-radius-sm);
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--oy-text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-right: 0.75rem;
	border: 1px solid var(--oy-border-dark);
}

.oy-ip-address {
	font-size: 1.125rem;
	font-family: 'JetBrains Mono', 'Courier New', monospace;
	font-weight: 700;
	color: var(--oy-text-primary);
	margin-right: 1rem;
}

.oy-ip-copy-icon {
	color: var(--oy-text-secondary);
	transition: color var(--oy-transition);
}

.oy-ip-card:hover .oy-ip-copy-icon {
	color: var(--oy-primary);
}

/* ========================================
   COUNTDOWN TIMERS
   ======================================== */
.oy-countdown-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	margin: 2rem 0;
}

.oy-countdown-card {
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(var(--oy-blur));
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--oy-border-radius);
	padding: 1rem;
	min-width: 280px;
	text-align: center;
}

.oy-countdown-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--oy-text-secondary);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.oy-countdown-time {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 0.5rem;
	font-family: 'JetBrains Mono', monospace;
	color: var(--oy-text-primary);
}

.oy-countdown-time span:first-child {
	font-size: 1.5rem;
	font-weight: 700;
}

.oy-countdown-time span:last-child {
	font-size: 0.75rem;
	color: var(--oy-text-secondary);
	margin-bottom: 0.25rem;
}

.oy-countdown-time .highlight {
	color: var(--oy-primary);
}

/* ========================================
   ONLINE STATUS BADGE
   ======================================== */
.oy-status-badge {
	display: inline-flex;
	align-items: center;
	background-color: rgba(16, 185, 129, 0.1);
	border: 1px solid rgba(16, 185, 129, 0.2);
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
}

.oy-status-dot {
	width: 8px;
	height: 8px;
	background-color: var(--oy-success);
	border-radius: 50%;
	margin-right: 0.5rem;
	animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

.oy-status-text {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--oy-success);
	letter-spacing: 0.05em;
}

/* ========================================
   GAME MODE CARDS
   ======================================== */
.oy-gamemode-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
}

.oy-gamemode-card {
	position: relative;
	height: 256px;
	border-radius: var(--oy-border-radius-lg);
	overflow: hidden;
	cursor: pointer;
	border: 1px solid var(--oy-border-dark);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all var(--oy-transition);
}

.oy-gamemode-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.oy-gamemode-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #1F2937 0%, #000 100%);
	transition: transform 0.7s ease;
}

.oy-gamemode-card:hover .oy-gamemode-bg {
	transform: scale(1.05);
}

.oy-gamemode-image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.4;
	transition: opacity var(--oy-transition);
}

.oy-gamemode-card:hover .oy-gamemode-image {
	opacity: 0.6;
}

.oy-gamemode-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
}

.oy-gamemode-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background-color: rgba(16, 185, 129, 0.9);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	border: 1px solid rgba(16, 185, 129, 0.3);
	backdrop-filter: blur(var(--oy-blur));
	box-shadow: 0 4px 14px rgba(16, 185, 129, 0.5);
}

.oy-gamemode-content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 1.5rem;
	width: 100%;
}

.oy-gamemode-category {
	font-size: 0.75rem;
	color: var(--oy-success);
	font-family: 'JetBrains Mono', monospace;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.oy-gamemode-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--oy-text-primary);
	margin-bottom: 0.5rem;
	transition: color var(--oy-transition);
}

.oy-gamemode-card:hover .oy-gamemode-title {
	color: var(--oy-primary);
}

.oy-gamemode-description {
	font-size: 0.875rem;
	color: #D1D5DB;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color var(--oy-transition);
}

.oy-gamemode-card:hover .oy-gamemode-description {
	color: var(--oy-text-primary);
}

/* ========================================
   STAFF GRID
   ======================================== */
.oy-staff-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 1rem;
}

.oy-staff-card {
	background-color: var(--oy-card-dark);
	border: 1px solid var(--oy-border-dark);
	border-radius: var(--oy-border-radius);
	padding: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: all var(--oy-transition);
}

.oy-staff-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.oy-staff-avatar-wrapper {
	position: relative;
	width: 80px;
	height: 80px;
	margin-bottom: 0.75rem;
}

.oy-staff-avatar {
	width: 100%;
	height: 100%;
	border-radius: var(--oy-border-radius);
	object-fit: cover;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.oy-staff-verified {
	position: absolute;
	bottom: -4px;
	right: -4px;
	background-color: var(--oy-info);
	border-radius: 50%;
	padding: 0.25rem;
	border: 2px solid var(--oy-card-dark);
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.625rem;
	color: #fff;
}

.oy-staff-name {
	font-weight: 700;
	color: var(--oy-text-primary);
	font-size: 0.875rem;
	margin-bottom: 0.25rem;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.oy-staff-rank {
	font-size: 0.625rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.25rem 0.5rem;
	border-radius: 0.25rem;
	margin-top: 0.25rem;
}

.oy-staff-rank.owner {
	color: var(--oy-owner);
	background-color: rgba(239, 68, 68, 0.1);
}

.oy-staff-rank.admin {
	color: var(--oy-admin);
	background-color: rgba(248, 113, 113, 0.1);
}

.oy-staff-rank.moderator {
	color: var(--oy-moderator);
	background-color: rgba(16, 185, 129, 0.1);
}

.oy-staff-rank.guide {
	color: var(--oy-guide);
	background-color: rgba(96, 165, 250, 0.1);
}

/* Role Badge (LeaderOS Uyumlu) */
.role__default {
	display: inline-block;
	justify-content: center;
	align-items: center;
	background: var(--tblr-bg-surface-secondary);
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	min-width: 1.35714285em;
	font-size: 85%;
	font-weight: var(--tblr-font-weight-bold);
	letter-spacing: .04em;
	vertical-align: bottom;
	line-height: 1;
	padding: 0.25rem 0.5rem;
	text-align: center;
	white-space: nowrap;
	border-radius: 0.25rem;
}

/* ========================================
   WIDGETS
   ======================================== */
.widget-title {
	color: inherit;
	margin-bottom: 0.5rem;
	font-weight: 700;
}

.widget-link {
	--tblr-text-opacity: 1;
	color: rgba(var(--tblr-muted-rgb), var(--tblr-text-opacity)) !important;
}

[data-bs-theme=dark] .widget-link {
	color: rgba(255, 255, 255, 0.5) !important;
}

.widget-link:hover {
	text-decoration: none;
	color: inherit !important;
}

/* ========================================
   STORE PRODUCT CARDS
   ======================================== */
.card-product {
	height: 100%;
	position: relative;
}

.card-product .card-img-top {
	height: auto;
	border-radius: var(--oy-border-radius) var(--oy-border-radius) 0 0;
}

.card-product .card-body {
	display: flex;
	flex-direction: column;
	position: initial;
}

.card-product .stock {
	position: absolute;
	top: -.75rem;
	left: -0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	width: auto;
	height: auto;
	padding: .325rem .625rem;
	font-size: 90%;
	color: #ffffff;
	border-radius: .375rem;
	z-index: 2;
}

.card-product .stock.stock-sm {
	top: -0.5rem;
	left: -0.5rem;
	font-size: 85%;
	padding: .25rem .5rem;
}

.card-product .stock.have-stock {
	background-color: #fb6340;
}

.card-product .stock.stock-out {
	background-color: #f5365c;
}

.card-product .discount {
	position: absolute;
	top: -1.25rem;
	right: -0.75rem;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3rem;
	height: 3rem;
	font-weight: 600;
	color: #ffffff;
	background-color: var(--oy-primary);
	border-radius: 50%;
	z-index: 2;
}

.card-product .discount.discount-sm {
	width: 2.5rem;
	height: 2.5rem;
	font-size: 90%;
	font-weight: 600;
	top: -0.75rem;
	right: -0.5rem;
}

.card-product .price {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--oy-primary);
}

.card-product .old-price {
	font-size: 80%;
	font-weight: 700;
	color: #f5365c;
	text-decoration: line-through;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
	color: inherit;
	background-color: var(--tblr-bg-surface);
	border-top: 1px solid var(--oy-border-dark);
	padding: 3rem 0 2rem;
	position: relative;
	z-index: 10;
	margin-top: 5rem;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcrumb {
	background-color: var(--tblr-bg-surface);
	padding: 1rem 1.5rem;
	border-radius: var(--oy-border-radius-sm);
	border: 1px solid var(--tblr-border-color) !important;
	margin-bottom: 0.75rem;
}

.breadcrumb-item a {
	color: inherit;
}

.breadcrumb-item.active {
	--tblr-text-opacity: 1;
	font-weight: normal;
	color: rgba(var(--tblr-muted-rgb), var(--tblr-text-opacity)) !important;
}

[data-bs-theme=dark] .breadcrumb-item.active {
	color: rgba(255, 255, 255, 0.5) !important;
}

/* ========================================
   DROPDOWNS
   ======================================== */
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
	color: var(--tblr-dropdown-link-active-color) !important;
	text-decoration: none;
	background-color: var(--tblr-dropdown-link-active-bg);
}

[data-bs-theme=dark] .dropdown-item.active,
.dropdown-item:active,
[data-bs-theme=dark] .dropdown-item:hover {
	color: #fff !important;
}

/* ========================================
   TEXT & TYPOGRAPHY
   ======================================== */
[data-bs-theme=dark] .text-muted {
	color: var(--oy-text-muted) !important;
}

.fs-100 {
	font-size: 100%;
}

.no-underline:hover {
	text-decoration: none;
}

/* ========================================
   NAV TABS
   ======================================== */
.nav-tabs {
	margin-bottom: 0;
	border-bottom: 2px solid var(--oy-border-dark);
}

.nav-tabs .nav-link {
	display: block;
	text-align: center;
	padding: 1rem;
	font-weight: 500;
	color: var(--tblr-body-color);
	border: 0;
	border-radius: 0;
	border-bottom: 2px solid transparent;
	transition: all var(--oy-transition);
}

.nav-tabs .nav-link:hover {
	color: var(--oy-primary);
	border-color: var(--oy-primary);
}

.nav-tabs .nav-link:first-child {
	border-top-left-radius: 10px;
}

.nav-tabs .nav-link:last-child {
	border-top-right-radius: 10px;
}

.nav-tabs .nav-link.active {
	border: 0;
	border-bottom: 2px solid var(--oy-primary);
	color: var(--oy-primary);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	background-color: transparent;
}

/* ========================================
   TABLES
   ======================================== */
.table a:not(.btn) {
	color: inherit;
}

.table a:hover {
	text-decoration: none;
}

tbody td {
	vertical-align: middle;
}

/* ========================================
   FORMS & INPUTS
   ======================================== */
.border-input {
	border-color: #dadfe5 !important;
}

.input-group.input-icon {
	margin-left: 1px;
}

.input-group.input-icon .input-icon-addon {
	z-index: 6;
}

.input-group.input-icon .form-control {
	height: calc(2.25rem + 2px);
}

/* Select2 */
.select2-container--bootstrap4 .select2-selection--single {
	height: calc(1.875em + .75rem + 2px) !important;
}

.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
	line-height: calc(1.875em + .75rem);
}

.select2-container .select2-selection--single .select2-selection__rendered {
	padding-left: 12px;
}

.select2-container--bootstrap4 .select2-selection {
	background-color: var(--tblr-bg-forms);
	border-color: var(--tblr-border-color);
}

.select2-results__option {
	background-color: var(--tblr-bg-forms);
}

.select2-container--bootstrap4 .select2-dropdown {
	border-color: var(--tblr-border-color);
}

/* ========================================
   CKEDITOR
   ======================================== */
.ck-editor__editable {
	min-height: 150px !important;
}

[data-bs-theme=dark] .ck-editor .ck-content {
	background: var(--tblr-bg-surface) !important;
	border-color: var(--tblr-border-color-translucent) !important;
}

[data-bs-theme=dark] .card .ck-editor .ck-content {
	background: var(--tblr-bg-forms) !important;
	border-color: var(--tblr-bg-forms) !important;
}

[data-bs-theme=dark] .ck-editor .ck-toolbar {
	background: var(--theme-bg-dark) !important;
	border-color: var(--glass-border) !important;
}

[data-bs-theme=dark] .ck-editor .ck-toolbar__items * {
	color: #FFF !important;
}

[data-bs-theme=dark] .ck-editor .ck-button:hover,
[data-bs-theme=dark] .ck-editor .ck-button:focus {
	background: rgba(var(--theme-primary-rgb), 0.1) !important;
}

[data-bs-theme=dark] .ck-editor .ck-list__item {
	background: var(--theme-bg-dark) !important;
	border-color: var(--glass-border) !important;
}

.ck-editor.ck-toolbar {
	border: 1px solid #efefef !important;
}

.card-header .ck-content p:last-child,
.card-body .ck-content p:last-child {
	margin-bottom: 0;
}

/* ========================================
   ICONS
   ======================================== */
.ti {
	font-size: 20px;
}

.icon-sm {
	font-size: 1rem !important;
}

/* ========================================
   BROADCAST
   ======================================== */
.broadcast {
	width: 100%;
	height: 44px;
	background-color: var(--tblr-bg-surface);
	overflow: hidden;
	border-bottom: var(--tblr-border-width) var(--tblr-border-style) var(--tblr-border-color);
}

.broadcast-item {
	display: inline-block;
	padding: 10px 600px 10px 0;
}

.broadcast-link {
	color: var(--tblr-body-color);
}

/* ========================================
   SHOPPING CART
   ======================================== */
.shopping-cart-count-circle {
	width: 18px;
	height: 18px;
	text-align: center;
	justify-content: center;
	display: flex;
	align-items: center;
	border-radius: 50%;
	font-size: 80%;
	background-color: var(--oy-primary);
	color: #000;
	font-weight: 700;
}

/* ========================================
   UTILITIES
   ======================================== */
.border-bottom-separator>* {
	padding-top: .875rem;
	padding-bottom: .875rem;
	border-bottom: 1px solid var(--tblr-border-color) !important;
}

.border-bottom-separator>*:last-child {
	border-bottom: 0 !important;
}

.zoom-hover {
	transition: transform .3s;
	transform: scale(1.0);
}

.zoom-hover:hover {
	transform: scale(1.1);
}

.card-img-right {
	border-radius: var(--tblr-card-border-radius) var(--tblr-card-border-radius) 0 0;
	object-fit: cover;
	object-position: center;
}

.page-center {
	justify-content: center;
}

/* ========================================
   AUTH LAYOUT
   ======================================== */
.auth-logo {
	max-height: 100px;
}

.auth-layout #powered_by_leaderos {
	opacity: 0.75;
}

[data-bs-theme=dark] .auth-layout #powered_by_leaderos {
	opacity: 0.5;
}

.toggle-password {
	line-height: 1;
}

/* ========================================
   USER PROFILE
   ======================================== */
.user-data {
	display: flex;
	align-items: center;
	padding: 8px;
}

.user-data:nth-child(2n) {
	border-right: none !important;
}

.user-data:last-child {
	border-bottom: none;
}

.sidebar-profile-card .sidebar-link {
	display: flex;
	align-items: center;
	padding: 0.5rem 1.5rem;
	color: var(--body-color);
	text-decoration: none !important;
	transition: all var(--oy-transition);
}

.sidebar-profile-card .sidebar-link:hover,
.sidebar-profile-card .sidebar-link.active {
	background-color: rgb(var(--tblr-body-bg-rgb));
}

.avatar-150px {
	width: 150px;
	height: 150px;
}

/* ========================================
   FORUM
   ======================================== */
.forum-online-users a:hover {
	text-decoration: none;
}

.forum-online-users a:not(:last-child)::after {
	margin-left: -3px;
	content: ",";
	font-size: 90%;
	color: rgb(var(--tblr-body-color-rgb)) !important;
}

/* ========================================
   SUPERWHEEL
   ======================================== */
.superWheel .sWheel-inner {
	background-color: var(--theme-primary);
	border-radius: 100%;
}

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cc-nb-okagree,
.cc-cp-foot-save {
	color: #fff !important;
	background-color: var(--oy-primary) !important;
}

.cc-cp-foot-byline {
	visibility: hidden;
}

.cc-pc-head-close:focus {
	border: none !important;
}

.termsfeed-com---palette-dark *:focus {
	box-shadow: none !important;
}

/* ========================================
   HOME SLIDER
   ======================================== */
@media (min-width: 992px) {

	.home-slider .carousel-inner,
	.home-slider .carousel-item {
		height: 400px;
		overflow: hidden;
	}

	.home-slider .carousel-item img {
		height: 400px;
		object-fit: cover;
		overflow: hidden;
	}
}

/* ========================================
   POWERED BY LEADEROS
   ======================================== */
#powered_by_leaderos {
	color: var(--body-color);
}

/* ========================================
   REUSABLE BACKGROUND EFFECTS
   ======================================== */
.profile-bg-glow {
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	filter: blur(120px);
	z-index: 0;
	pointer-events: none;
	opacity: 0.15;
}

.bg-glow-top-right {
	top: -10%;
	right: -5%;
	background: radial-gradient(circle, var(--primary-color), transparent);
}

.bg-glow-bottom-left {
	bottom: -10%;
	left: -5%;
	background: radial-gradient(circle, var(--accent-color), transparent);
}


/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
	.user-data {
		border-right: none !important;
	}

	.header-banner-content {
		width: 100%;
		justify-content: center;
	}

	.broadcast-item {
		padding-right: 400px;
	}

	.oy-hero-title {
		font-size: 3rem;
	}

	.oy-staff-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	}

	.oy-gamemode-grid {
		grid-template-columns: 1fr;
	}

	.termsfeed-com---nb .cc-nb-main-container {
		padding: 2rem !important;
	}

	.termsfeed-com---nb-simple {
		bottom: 20px !important;
		right: 20px !important;
		border-radius: 0.625rem !important;
	}
}

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

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

/* ========================================
   UNIFIED GLASSMORPHISM SYSTEM
   ======================================== */
.glass-card {
	background: var(--glass-bg);
	backdrop-filter: blur(var(--glass-blur));
	-webkit-backdrop-filter: blur(var(--glass-blur));
	border: 1px solid var(--glass-border);
	border-radius: 24px;
	padding: 1.5rem;
	transition: all 0.3s ease;
	overflow: hidden;
	position: relative;
}

.glass-card:hover {
	border-color: var(--primary-color);
	box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.15);
	transform: translateY(-5px);
}

.glass-header {
	background: rgba(255, 255, 255, 0.02);
	border-bottom: 1px solid var(--glass-border);
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* ========================================
   BUTTONS (Unified)
   ======================================== */
.btn-ultra {
	background: var(--primary-color);
	color: #fff;
	padding: 0.8rem 2rem;
	border-radius: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	position: relative;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.4);
	text-decoration: none;
}

.btn-ultra:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.6);
	color: #fff;
	filter: brightness(1.1);
}

.btn-outline-ultra {
	background: transparent;
	border: 2px solid var(--primary-color);
	color: #fff;
	padding: 0.7rem 1.8rem;
	border-radius: 12px;
	font-weight: 700;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-outline-ultra:hover {
	background: var(--primary-color);
	box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.3);
	color: #fff;
}

/* ========================================
   PAGE TITLE & HERO (Unified)
   ======================================== */
.hero-title-large {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #fff 30%, var(--primary-color));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: -1px;
}

.hero-subtitle-large {
	font-size: clamp(1rem, 2vw, 1.25rem);
	color: var(--text-muted);
	max-width: 800px;
	margin: 0 auto 2.5rem;
	line-height: 1.6;
}

/* ========================================
   MOBILE FOOTER ACCORDION
   ======================================== */
@media (max-width: 768px) {
	.footer-col {
		margin-bottom: 1rem;
		border-bottom: 1px solid var(--glass-border);
	}

	.footer-title {
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 1rem 0;
		margin: 0;
	}

	.footer-title::after {
		content: '+';
		font-weight: bold;
		transition: transform 0.3s;
	}

	.footer-col.active .footer-title::after {
		transform: rotate(45deg);
	}

	.f-link-list {
		display: none;
		padding-bottom: 1rem;
		animation: slideDown 0.3s ease-out;
	}

	.footer-col.active .f-link-list {
		display: block;
	}

	@keyframes slideDown {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}

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

	/* Star Button Component */
}

/* ========================================
   GAMING FOOTER — COMPLETE STYLING
   ======================================== */
.gaming-footer {
	background: #08080a;
	color: #a1a1aa;
	padding: 0;
	position: relative;
}

.f-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(var(--theme-primary-rgb), 0.25), transparent);
	margin-bottom: 30px;
}

.f-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Logo Area */
.f-logo-wrapper {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	margin-bottom: 20px;
}

.f-logo-wrapper:hover {
	text-decoration: none;
}

.f-vector-icon img {
	filter: drop-shadow(0 0 12px rgba(var(--theme-primary-rgb), 0.2));
	transition: transform 0.3s;
}

.f-logo-wrapper:hover .f-vector-icon img {
	transform: scale(1.05);
}

.f-logo-text {
	font-size: 1.5rem;
	font-weight: 800;
	color: #fafafa;
	letter-spacing: -0.5px;
}

.f-desc {
	font-size: 0.92rem;
	line-height: 1.8;
	color: #71717a;
	max-width: 340px;
	margin-bottom: 24px;
}

/* IP Copy Badge */
.f-ip-copy {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	cursor: pointer;
	transition: all 0.3s;
	margin-bottom: 20px;
}

.f-ip-copy:hover {
	background: rgba(var(--theme-primary-rgb), 0.08);
	border-color: rgba(var(--theme-primary-rgb), 0.3);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.f-ip-copy svg {
	color: var(--theme-primary);
	flex-shrink: 0;
}

.f-ip-text {
	color: #fafafa;
	font-weight: 700;
	font-size: 0.95rem;
	font-family: 'Fira Code', 'Courier New', monospace;
}

.f-ip-badge {
	background: rgba(var(--theme-primary-rgb), 0.12);
	color: var(--theme-primary);
	padding: 4px 12px;
	border-radius: 8px;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: 1px solid rgba(var(--theme-primary-rgb), 0.2);
}

/* Announcement */
.f-announcement {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 18px;
	background: rgba(var(--theme-primary-rgb), 0.05);
	border: 1px solid rgba(var(--theme-primary-rgb), 0.12);
	border-radius: 12px;
	font-size: 0.85rem;
	color: #a1a1aa;
	margin-bottom: 20px;
	line-height: 1.6;
}

.f-announcement svg {
	color: var(--theme-primary);
	flex-shrink: 0;
	margin-top: 2px;
}

/* Language Dropdown */
.f-dropdown {
	position: relative;
	display: inline-block;
}

.f-dropdown-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	color: #a1a1aa;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
}

.f-dropdown-btn:hover {
	background: rgba(var(--theme-primary-rgb), 0.08);
	border-color: rgba(var(--theme-primary-rgb), 0.2);
	color: #fafafa;
}

.f-dropdown-btn svg {
	flex-shrink: 0;
}

.f-dropdown-menu {
	display: none;
	position: absolute;
	bottom: 100%;
	left: 0;
	min-width: 180px;
	background: rgba(15, 15, 20, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(var(--theme-primary-rgb), 0.15);
	border-radius: 14px;
	padding: 8px;
	margin-bottom: 8px;
	box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.5);
	z-index: 100;
	animation: dropUp 0.25s ease;
}

.f-dropdown:hover .f-dropdown-menu {
	display: block;
}

@keyframes dropUp {
	from {
		opacity: 0;
		transform: translateY(8px);
	}

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

.f-dropdown-item {
	display: block;
	padding: 10px 14px;
	color: #a1a1aa;
	font-size: 0.85rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.2s;
}

.f-dropdown-item:hover {
	background: rgba(var(--theme-primary-rgb), 0.1);
	color: #fafafa;
	transform: translateX(4px);
}

/* Footer Navigation Links */
.footer-title {
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--theme-primary);
	margin-bottom: 24px;
}

.f-link-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.f-link-item {
	margin-bottom: 14px;
}

.f-link {
	color: #71717a;
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 500;
	transition: all 0.3s;
	display: inline-block;
}

.f-link:hover {
	color: #fafafa;
	padding-left: 6px;
}

/* Bottom Bar */
.f-bottom-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 60px;
	padding: 28px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.85rem;
	color: #52525b;
}

.f-bottom-left {
	flex: 1;
	min-width: 200px;
}

.f-bottom-center {
	text-align: center;
}

.f-bottom-right {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	min-width: 200px;
}

/* CTA Bar in Footer */
.cta-bar {
	background: linear-gradient(180deg, rgba(10, 10, 12, 0.95), #08080a);
	border-top: 1px solid rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	padding: 2.5rem 0;
	margin-top: 30px !important;
}

.cta-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}

.cta-text h3 {
	color: #fafafa;
	font-weight: 800;
	margin-bottom: 6px;
	font-size: 1.3rem;
}

.cta-text p {
	color: #52525b;
	font-size: 0.92rem;
}

.cta-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

/* Colorful CTA Buttons */
.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 12px;
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid transparent;
	letter-spacing: 0.3px;
}

.cta-btn:hover {
	transform: translateY(-3px);
}

/* Support / Register — Theme Primary */
.cta-btn-support,
.cta-btn-register {
	background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-dark, var(--theme-primary)));
	color: #fff !important;
	box-shadow: 0 6px 20px rgba(var(--theme-primary-rgb), 0.35);
}

.cta-btn-support:hover,
.cta-btn-register:hover {
	box-shadow: 0 10px 30px rgba(var(--theme-primary-rgb), 0.5);
	filter: brightness(1.15);
	color: #fff !important;
}

/* Store — Amber/Orange */
.cta-btn-store {
	background: linear-gradient(135deg, #f59e0b, #d97706);
	color: #fff !important;
	box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.cta-btn-store:hover {
	box-shadow: 0 10px 30px rgba(245, 158, 11, 0.45);
	filter: brightness(1.15);
	color: #fff !important;
}

/* Discord — Blurple */
.cta-btn-discord {
	background: linear-gradient(135deg, #5865f2, #4752c4);
	color: #fff !important;
	box-shadow: 0 6px 20px rgba(88, 101, 242, 0.3);
}

.cta-btn-discord:hover {
	box-shadow: 0 10px 30px rgba(88, 101, 242, 0.45);
	filter: brightness(1.15);
	color: #fff !important;
}

/* IP Section — Below Links */
.f-ip-section {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	justify-content: center;
}

/* GurLabs Animated Gradient Link */
.gurlabs-animated-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none !important;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	padding: 6px 14px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid rgba(255, 255, 255, 0.04);
}

.gurlabs-animated-link:hover {
	background: rgba(var(--theme-primary-rgb), 0.05);
	border-color: rgba(var(--theme-primary-rgb), 0.15);
	transform: translateY(-2px);
}

.gurlabs-prefix {
	color: #52525b;
	font-weight: 500;
}

.gurlabs-gradient {
	font-weight: 800;
	background: linear-gradient(135deg, var(--theme-primary), #3b82f6, #06b6d4, var(--theme-primary));
	background-size: 300% 300%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: gurlabsGradient 4s ease infinite;
	display: inline-block;
	transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	font-size: 1rem;
	letter-spacing: -0.3px;
}

.gurlabs-sparkle {
	color: var(--theme-primary);
	font-size: 0.65rem;
	animation: gurlabsSparkle 2s ease-in-out infinite;
	display: inline-block;
}

.gurlabs-animated-link:hover .gurlabs-gradient {
	animation: gurlabsGradient 2s ease infinite, gurlabsBounce 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

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

@keyframes gurlabsBounce {
	0% {
		transform: scale(1);
	}

	25% {
		transform: scale(1.18) rotate(-2deg);
	}

	50% {
		transform: scale(0.92) rotate(1deg);
	}

	75% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1.05);
	}
}

@keyframes gurlabsSparkle {

	0%,
	100% {
		opacity: 0.3;
		transform: scale(0.8) rotate(0deg);
	}

	50% {
		opacity: 1;
		transform: scale(1.2) rotate(180deg);
	}
}

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

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

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

@keyframes gurlabsBounce {
	0% {
		transform: scale(1);
	}

	30% {
		transform: scale(1.15);
	}

	50% {
		transform: scale(0.95);
	}

	70% {
		transform: scale(1.08);
	}

	100% {
		transform: scale(1.05);
	}
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
	.gaming-footer {
		padding: 40px 0 0;
	}

	.f-bottom-bar {
		flex-direction: column;
		text-align: center;
		gap: 12px;
		margin-top: 40px;
	}

	.f-bottom-left,
	.f-bottom-right {
		justify-content: center;
		min-width: auto;
	}

	.cta-flex {
		flex-direction: column;
		text-align: center;
	}

	.cta-btns {
		justify-content: center;
	}

	.f-desc {
		max-width: 100%;
	}

	.f-ip-section {
		margin-top: 24px;
		padding-top: 20px;
	}
}

/* ========================================
   FOOTER CREDITS STYLING
   ======================================== */
.gurlabs-link,
.leaderos-link,
.leaderos-wrapper a {
	display: inline-block;
	opacity: 0.6;
	transition: opacity 0.3s ease, transform 0.3s ease;
	text-decoration: none !important;
	color: var(--oy-text-secondary);
	font-size: 0.875rem;
}

.gurlabs-link:hover,
.leaderos-link:hover,
.leaderos-wrapper a:hover {
	opacity: 1;
	transform: translateY(-1px);
	color: var(--oy-text-primary);
}

.gurlabs-link strong,
.leaderos-link strong,
.leaderos-wrapper a strong {
	font-weight: 700;
}

.text-blue {
	color: #3b82f6;
}

.text-purple {
	color: #8b5cf6;
}

/* ========================================
   PREMIUM CTA & FOOTER SYSTEM
   ======================================== */
:root {
	--premium-bg: #050507;
	--premium-glass: rgba(15, 15, 20, 0.7);
	--premium-border: rgba(255, 255, 255, 0.08);
	--footer-text: #a1a1aa;
	--footer-heading: #fafafa;
}

/* CTA Section Styles */
.cta-premium-section {
	padding: 80px 0;
	background: var(--premium-bg);
	position: relative;
	z-index: 20;
}

.cta-premium-card {
	background: var(--premium-glass);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	border: 1px solid var(--premium-border);
	border-radius: 32px;
	padding: 60px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.82);
	transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.cta-premium-card:hover {
	transform: translateY(-8px);
	border-color: rgba(var(--theme-primary-rgb), 0.3);
	box-shadow: 0 50px 120px -20px rgba(0, 0, 0, 0.9);
}

.cta-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	position: relative;
	z-index: 5;
}

/* Announcement Bar */
.announcement-bar {
	background: rgba(var(--theme-primary-rgb), 0.08);
	border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.15);
	padding: 10px 0;
	position: relative;
	z-index: 1100;
	backdrop-filter: blur(12px) saturate(160%);
}

.announcement-content {
	display: flex;
	align-items: center;
	gap: 24px;
}

.announcement-label {
	display: flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-dark));
	color: #fff;
	padding: 6px 16px;
	border-radius: 10px;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	white-space: nowrap;
	box-shadow: 0 4px 15px rgba(var(--theme-primary-rgb), 0.3);
}

.announcement-label i {
	font-size: 0.9rem;
	animation: pulse 2s infinite;
}

.announcement-ticker {
	flex: 1;
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.ticker-content {
	display: flex;
	gap: 80px;
	animation: tickerLoop 40s linear infinite;
	white-space: nowrap;
	width: max-content;
}

.ticker-item {
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 12px;
	opacity: 0.9;
}

.ticker-item::after {
	content: '◆';
	color: var(--theme-primary);
	font-size: 0.6rem;
	margin-left: 80px;
}

@keyframes tickerLoop {
	0% {
		transform: translateX(0);
	}

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

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}

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

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


.cta-title {
	font-size: 2.2rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 12px;
	letter-spacing: -1px;
}

.cta-subtitle {
	font-size: 1.1rem;
	color: var(--footer-text);
	max-width: 500px;
	margin: 0;
}

.cta-actions {
	display: flex;
	gap: 20px;
}

.btn-outline-premium {
	border: 1px solid var(--premium-border);
	background: rgba(255, 255, 255, 0.03);
	color: #fff;
	padding: 14px 28px;
	border-radius: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s;
	display: flex;
	align-items: center;
}

.btn-outline-premium:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	transform: scale(1.03);
}

.cta-glow {
	position: absolute;
	top: -50%;
	right: -20%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(var(--theme-primary-rgb), 0.15), transparent 70%);
	filter: blur(100px);
	pointer-events: none;
}

/* Footer Styles */
.premium-footer {
	background: #08080a;
	border-top: 1px solid var(--premium-border);
	padding: 100px 0 0;
	color: var(--footer-text);
	position: relative;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
}

.footer-logo {
	height: 42px;
	filter: drop-shadow(0 0 15px rgba(var(--theme-primary-rgb), 0.2));
}

.footer-brand-name {
	font-size: 1.5rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.5px;
}

.footer-about {
	font-size: 0.95rem;
	line-height: 1.8;
	margin-bottom: 35px;
	max-width: 320px;
}

/* IP Badge */
.footer-ip-copy {
	display: inline-flex;
	align-items: center;
	padding: 12px 20px;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--premium-border);
	border-radius: 16px;
	cursor: pointer;
	transition: all 0.3s;
	gap: 15px;
}

.footer-ip-copy:hover {
	background: rgba(var(--theme-primary-rgb), 0.08);
	border-color: rgba(var(--theme-primary-rgb), 0.3);
	transform: translateY(-3px);
}

.ip-icon {
	color: var(--theme-primary);
	font-size: 1.2rem;
}

.ip-details {
	display: flex;
	flex-direction: column;
}

.ip-address {
	color: #fff;
	font-weight: 700;
	font-size: 0.95rem;
}

.ip-status {
	font-size: 0.75rem;
	color: #52525b;
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.dot-live {
	width: 6px;
	height: 6px;
	background: #10b981;
	border-radius: 50%;
	box-shadow: 0 0 10px #10b981;
}

.ip-copy-icon {
	color: #3f3f46;
	font-size: 0.85rem;
}

/* Links & Headings */
.footer-heading {
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--theme-primary);
	margin-bottom: 30px;
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 15px;
}

.footer-links a {
	color: var(--footer-text);
	text-decoration: none;
	font-size: 0.95rem;
	transition: all 0.3s;
}

.footer-links a:hover {
	color: #fff;
	padding-left: 5px;
}

/* Socials */
.footer-social {
	display: flex;
	gap: 12px;
	margin-bottom: 30px;
}

.social-btn {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--premium-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s;
	font-size: 1.2rem;
}

.social-btn:hover {
	background: var(--theme-primary);
	border-color: var(--theme-primary);
	transform: translateY(-3px);
}

.footer-node {
	display: flex;
	align-items: flex-start;
	padding: 15px;
	background: rgba(var(--theme-primary-rgb), 0.05);
	border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
	border-radius: 12px;
	font-size: 0.85rem;
}

/* Bottom Bar */
.footer-bottom {
	margin-top: 100px;
	padding: 40px 0;
	border-top: 1px solid var(--premium-border);
}

.copyright {
	font-size: 0.9rem;
	color: #52525b;
}

.gurlabs-signature {
	font-size: 0.9rem;
	text-decoration: none;
	color: #52525b;
}

.gurlabs-signature span {
	font-weight: 800;
	background: linear-gradient(90deg, #3b82f6, var(--theme-primary));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.leaderos-badge {
	opacity: 0.5;
	transition: 0.3s;
}

.leaderos-badge:hover {
	opacity: 1;
}

/* Redesigning for Mobile */
@media (max-width: 991px) {
	.cta-content {
		flex-direction: column;
		text-align: center;
		gap: 30px;
	}

	.cta-premium-card {
		padding: 40px 20px;
	}

	.cta-actions {
		width: 100%;
		justify-content: center;
	}

	.premium-footer {
		padding-top: 60px;
	}
}

@media (max-width: 768px) {
	.cta-title {
		font-size: 1.8rem;
	}

	.cta-actions {
		flex-direction: column;
	}
}

/* Removal of top glows as requested */
.bg-glow-top-right,
.bg-glow-top-left,
.top-shine-overlay {
	display: none !important;
}



/* ========================================
   HEADER STYLES (Moved from header.php)
   ======================================== */
:root {
	--glass-bg: rgba(255, 255, 255, 0.06);
	--glass-border: rgba(255, 255, 255, 0.12);
	--text-primary: #ffffff;
	--text-secondary: rgba(255, 255, 255, 0.65);
	--purple: var(--theme-primary);
	--blue: var(--theme-primary);
	--green: #10b981;
}

.header-banner {
	position: relative;
	z-index: 1050;
	border-top: none !important;
}

body {
	border-top: none !important;
}

.header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(10, 10, 15, 0.75) 0%, rgba(5, 5, 10, 0.95) 100%);
	z-index: 1;
}

.grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image:
		linear-gradient(rgba(var(--theme-primary-rgb), 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(var(--theme-primary-rgb), 0.03) 1px, transparent 1px);
	background-size: 40px 40px;
	animation: gridMove 20s linear infinite;
	z-index: 1;
}

@keyframes gridMove {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(40px, 40px);
	}
}

.oy-header {
	position: relative;
	z-index: 1060;
	padding: 1.25rem 0 1.5rem;
	border-top: none !important;
}

.bubbles-container {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	z-index: 1;
}

.bubble {
	position: absolute;
	bottom: -50px;
	background: radial-gradient(circle, rgba(var(--theme-primary-rgb), 0.25), rgba(var(--theme-primary-rgb), 0.15));
	border-radius: 50%;
	opacity: 0.1;
	animation: rise linear infinite;
}

@keyframes rise {
	0% {
		bottom: -50px;
		opacity: 0;
	}

	10% {
		opacity: 0.5;
	}

	90% {
		opacity: 0.5;
	}

	100% {
		bottom: 100%;
		opacity: 0;
	}
}

.glass-mini {
	background: var(--glass-bg);
	backdrop-filter: blur(15px) saturate(180%);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	transition: all 0.3s ease;
}

.glass-mini:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
	border-color: rgba(var(--theme-primary-rgb), 0.4);
}

.header-nav {
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.nav-link-mini {
	color: var(--text-secondary);
	padding: 0.5rem 1rem;
	background: var(--glass-bg);
	backdrop-filter: blur(10px);
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 0.8rem;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s;
}

.nav-link-mini:hover,
.nav-link-mini.active-link {
	color: var(--text-primary);
	border-color: var(--glass-border);
	background: rgba(var(--theme-primary-rgb), 0.15);
}

.rgb-text {
	font-size: 17px;
	font-weight: 700;
	background: linear-gradient(90deg,
			var(--theme-primary-dark),
			var(--theme-primary),
			#FFEE00,
			#00FF85,
			#00C3FF,
			var(--theme-primary));
	background-size: 400% 400%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: rgbPingPong 3.5s ease-in-out infinite alternate;
}

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

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

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

.logo-center {
	flex-shrink: 0;
	margin: 1rem 0;
}

.logo-container {
	position: relative;
	display: inline-block;
}

.header-logo {
	height: 180px;
	filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4));
	transition: transform 0.3s;
}

.header-logo:hover {
	transform: scale(1.03);
}

.logo-shine {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	width: 220px;
	height: 30px;
	background: radial-gradient(ellipse, rgba(var(--theme-primary-rgb), 0.6), transparent);
	filter: blur(25px);
}

.info-stack {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	min-width: 200px;
}

.info-mini {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 1rem;
	cursor: pointer;
	text-decoration: none;
	color: var(--text-primary);
}

.info-icon {
	width: 20px;
	height: 20px;
	color: var(--purple);
	flex-shrink: 0;
}

.info-mini:nth-child(2) .info-icon {
	color: #5865f2;
}

.info-text {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.info-value {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-primary);
}

.info-sub {
	font-size: 0.7rem;
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.dot-online {
	width: 5px;
	height: 5px;
	background: var(--green);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

.profile-box {
	padding: 0.6rem 0.8rem;
	cursor: pointer;
	text-decoration: none;
	color: var(--text-primary);
	min-width: 200px;
}

.profile-avatar {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 2px solid var(--glass-border);
	object-fit: cover;
}

.profile-content {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	flex: 1;
}

.profile-name {
	font-size: 0.85rem;
	font-weight: 600;
}

.profile-credit {
	font-size: 0.7rem;
	color: var(--text-secondary);
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.profile-credit svg {
	width: 11px;
	height: 11px;
	color: #fbbf24;
}

.dropdown-arrow {
	width: 16px;
	height: 16px;
	color: var(--text-secondary);
	transition: transform 0.3s;
}

.profile-box:hover .dropdown-arrow {
	transform: rotate(180deg);
}

.auth-btn {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 1rem;
	text-decoration: none;
	color: var(--text-primary);
	font-size: 0.8rem;
	font-weight: 600;
}

.auth-btn svg {
	width: 18px;
	height: 18px;
}

.auth-btn.register:hover {
	border-color: rgba(59, 130, 246, 0.4);
}

.dropdown {
	position: relative;
	z-index: 1100;
}

.simple-dropdown {
	background: rgba(15, 15, 20, 0.95);
	backdrop-filter: blur(25px) saturate(200%);
	border: 1px solid rgba(var(--theme-primary-rgb), 0.2);
	border-radius: 20px;
	padding: 0.8rem;
	min-width: 240px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(var(--theme-primary-rgb), 0.1);
	position: absolute;
	z-index: 99999;
	margin-top: 15px !important;
	animation: dropdownFade 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.simple-dropdown:not(.show) {
	display: none;
}

@keyframes dropdownFade {
	from {
		opacity: 0;
		transform: translateY(5px);
	}

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

.simple-dropdown::before {
	content: '';
	position: absolute;
	top: -6px;
	right: 25px;
	width: 12px;
	height: 12px;
	background: rgba(15, 15, 20, 0.95);
	border-left: 1px solid rgba(var(--theme-primary-rgb), 0.2);
	border-top: 1px solid rgba(var(--theme-primary-rgb), 0.2);
	transform: rotate(45deg);
}

.simple-dropdown .dropdown-item {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.6rem 0.8rem;
	color: var(--text-secondary);
	border-radius: 10px;
	font-size: 0.85rem;
	font-weight: 500;
	transition: all 0.25s;
}

.simple-dropdown .dropdown-item svg {
	width: 18px;
	height: 18px;
	color: var(--purple);
	transition: 0.3s;
}

.simple-dropdown .dropdown-item:hover {
	background: rgba(var(--theme-primary-rgb), 0.1);
	color: #fff;
	transform: translateX(5px);
}

.simple-dropdown .dropdown-item:hover svg {
	transform: scale(1.1);
	filter: drop-shadow(0 0 5px var(--purple));
}

.simple-dropdown .dropdown-divider {
	border-color: rgba(var(--theme-primary-rgb), 0.1);
	margin: 0.5rem 0;
}

.simple-dropdown .text-danger:hover {
	background: rgba(239, 68, 68, 0.1) !important;
	color: #ef4444 !important;
}

.simple-dropdown .text-danger svg {
	color: #ef4444 !important;
}

@media (max-width: 992px) {
	.header-center {
		flex-direction: column;
		gap: 0.5rem;
	}

	.header-nav {
		display: none !important;
		/* Main nav hidden, mobile nav visible via menu-toggle */
	}

	.info-stack,
	.profile-box {
		min-width: auto;
		width: 100%;
		max-width: 300px;
	}

	.logo-center {
		order: -1;
		margin: 0.5rem 0;
	}

	.header-logo {
		height: 120px;
	}
}

@media (max-width: 768px) {
	.header-banner {
		min-height: 320px;
	}

	.header-logo {
		height: 140px;
	}

	.nav-link-mini {
		font-size: 0.75rem;
		padding: 0.45rem 0.85rem;
	}
}

@media (max-width: 576px) {
	.header-logo {
		height: 110px;
	}

	.info-mini,
	.auth-btn {
		font-size: 0.75rem;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(15px);
	}

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

.header-nav,
.header-center {
	animation: fadeIn 0.5s ease backwards;
}

.header-center {
	animation-delay: 0.15s;
}

.announcement-bar {
	position: relative;
	width: 100%;
	height: 38px;
	background: linear-gradient(90deg, var(--theme-primary), var(--theme-primary-dark));
	overflow: hidden;
	z-index: 9999;
	display: flex;
	align-items: center;
}

.announcement-track {
	display: flex;
	gap: 60px;
	white-space: nowrap;
	animation: announcementMove 14s linear infinite alternate;
}

.announcement-track span {
	color: #fff;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.3px;
}

@keyframes announcementMove {
	0% {
		transform: translateX(0);
	}

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

/* Page Smooth Transitions */
.page-wrapper {
	animation: pageFadeIn 0.8s ease-out forwards;
}

@keyframes pageFadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

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

/* Skeleton Loading State */
.skeleton {
	background: linear-gradient(90deg,
			rgba(255, 255, 255, 0.05) 25%,
			rgba(255, 255, 255, 0.1) 50%,
			rgba(255, 255, 255, 0.05) 75%);
	background-size: 200% 100%;
	animation: skeletonPulse 1.5s infinite;
	border-radius: 8px;
	pointer-events: none;
}

@keyframes skeletonPulse {
	0% {
		background-position: 200% 0;
	}

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

/* Mobile Navigation CSS */
.mobile-nav-bar {
	z-index: 1100;
}

.mobile-logo-sm img {
	height: 38px;
	filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.mobile-menu-toggle {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	color: #fff;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: 0.3s;
	font-size: 1.2rem;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle.active {
	background: rgba(var(--theme-primary-rgb), 0.2);
	border-color: rgba(var(--theme-primary-rgb), 0.4);
	transform: scale(1.05);
}

@media (max-width: 991px) {
	.header-nav-container {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100vh;
		background: rgba(5, 5, 8, 0.98);
		backdrop-filter: blur(30px) saturate(200%);
		z-index: 1090;
		transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
		display: flex !important;
		align-items: center;
		justify-content: center;
		border-right: 1px solid rgba(var(--theme-primary-rgb), 0.1);
	}

	.header-nav-container.active {
		left: 0;
	}

	.header-nav {
		flex-direction: column !important;
		gap: 15px !important;
		width: 100%;
	}

	.nav-link-mini {
		width: 80% !important;
		max-width: 300px;
		text-align: center;
		padding: 16px !important;
		font-size: 1.1rem !important;
		background: rgba(255, 255, 255, 0.04);
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: 16px !important;
	}

	.nav-link-mini:hover {
		background: rgba(var(--theme-primary-rgb), 0.15) !important;
		border-color: rgba(var(--theme-primary-rgb), 0.3) !important;
		transform: translateY(-3px) scale(1.02);
	}
}

/* Theme Transition Logic */
html,
body,
div,
section,
footer,
header,
nav,
a,
i,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
button,
input,
select,
textarea {
	transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Theme Toggle Button */
.theme-toggle-btn {
	border: 1px solid var(--glass-border);
	background: var(--glass-bg);
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.1rem;
	padding: 0;
	overflow: hidden;
	position: relative;
}

.theme-toggle-btn:hover {
	background: rgba(var(--theme-primary-rgb), 0.2);
	border-color: rgba(var(--theme-primary-rgb), 0.4);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

[data-bs-theme="light"] .theme-toggle-btn {
	color: #1d273b;
	background: rgba(var(--theme-primary-rgb), 0.1);
	border-color: rgba(var(--theme-primary-rgb), 0.2);
}

/* Light Mode Global Adjustments */
[data-bs-theme="light"] body {
	background-color: #f4f7fb !important;
	color: #1d273b;
}

[data-bs-theme="light"] .glass-card,
[data-bs-theme="light"] .glass-mini,
[data-bs-theme="light"] .card {
	background: rgba(255, 255, 255, 0.8) !important;
	border-color: rgba(0, 0, 0, 0.08) !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
	color: #1d273b !important;
}

[data-bs-theme="light"] .text-white,
[data-bs-theme="light"] .h1,
[data-bs-theme="light"] .h2,
[data-bs-theme="light"] .h3,
[data-bs-theme="light"] .h4,
[data-bs-theme="light"] .h5,
[data-bs-theme="light"] .h6,
[data-bs-theme="light"] h1,
[data-bs-theme="light"] h2,
[data-bs-theme="light"] h3,
[data-bs-theme="light"] h4,
[data-bs-theme="light"] h5,
[data-bs-theme="light"] h6,
[data-bs-theme="light"] .card-title,
[data-bs-theme="light"] .profile-name,
[data-bs-theme="light"] .link-text {
	color: #1d273b !important;
}

[data-bs-theme="light"] .text-muted,
[data-bs-theme="light"] .text-gray,
[data-bs-theme="light"] .description,
[data-bs-theme="light"] .profile-credit {
	color: #64748b !important;
}

[data-bs-theme="light"] .header-overlay {
	background: linear-gradient(to bottom, rgba(244, 247, 251, 0.4), rgba(244, 247, 251, 1));
}

[data-bs-theme="light"] .nav-link-mini {
	color: #475569;
}

[data-bs-theme="light"] .nav-link-mini:hover,
[data-bs-theme="light"] .nav-link-mini.active-link {
	color: var(--theme-primary);
	background: rgba(var(--theme-primary-rgb), 0.05) !important;
	border-color: rgba(var(--theme-primary-rgb), 0.1) !important;
}

[data-bs-theme="light"] .sidebar-link {
	color: #475569 !important;
}

[data-bs-theme="light"] .sidebar-link:hover,
[data-bs-theme="light"] .sidebar-link.active {
	color: var(--theme-primary) !important;
	background: rgba(var(--theme-primary-rgb), 0.05) !important;
}

[data-bs-theme="light"] hr,
[data-bs-theme="light"] .dropdown-divider {
	border-color: rgba(0, 0, 0, 0.08);
}

[data-bs-theme="light"] .dropdown-menu {
	background: #ffffff !important;
	border-color: rgba(0, 0, 0, 0.1) !important;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

[data-bs-theme="light"] .dropdown-item {
	color: #475569 !important;
}

[data-bs-theme="light"] .dropdown-item:hover {
	background: rgba(var(--theme-primary-rgb), 0.05) !important;
	color: var(--theme-primary) !important;
}

.text-primary-mor {
	color: var(--theme-primary) !important;
}

.text-primary-mor i,
.text-primary-mor span {
	color: inherit !important;
}

.header-banner,
body {
	border-top: none !important;
}

/* Profile Dropdown Position Fix */
.profile-dropdown .dropdown-menu {
	transform: translate(0px, 10px) !important;
	inset: auto auto auto auto !important;
	top: 100% !important;
	margin-top: 0.5rem !important;
}

.profile-dropdown .dropdown-menu-end {
	right: 0 !important;
	left: auto !important;
}