/* ========================================
   OynaTR Tema - LeaderOS Template
   Ana Stil Dosyası v1.0.0
   ======================================== */

/* 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: #7c3aed;
	--oy-primary-rgb: 124, 58, 237;
	--oy-primary-hover: #6d28d9;
	--oy-primary-light: rgba(124, 58, 237, 0.1);
	--oy-primary-glow: rgba(124, 58, 237, 0.4);

	--oy-bg-dark: #0A0A0A;
	--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: #A78BFA;

	/* 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: #7c3aed;
	--primary-rgb: 124, 58, 237;
	--primary-glow: rgba(124, 58, 237, 0.5);
	--accent-color: #7c3aed;

	--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: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: #111;
}

::-webkit-scrollbar-thumb {
	background: #333;
	border-radius: 4px;
	transition: background var(--oy-transition);
}

::-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);
	}
}

@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;
}

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

.animate-slide-in {
	animation: slide-in-up 0.6s ease-out forwards;
}

.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;
	-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: #171a21 !important;
	border-color: #171a21 !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: #111111 !important;
}

[data-bs-theme=dark] .ck-editor .ck-list__item {
	background: #171a21 !important;
	border-color: #171a21 !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: #d2a100;
	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;
	-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 */
}

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