/* Metin2 Server Styles - Full CSS with Tailwind utilities */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Tailwind Base Styles */
*, ::before, ::after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

::before, ::after {
    --tw-content: '';
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-feature-settings: normal;
    font-variation-settings: normal;
}

body {
    margin: 0;
    line-height: inherit;
}

/* Custom Properties */
:root {
    --color-metin-green: #00ff88;
    --color-metin-green-dark: #00cc66;
    --color-metin-gold: #d4af37;
    --color-metin-gold-dark: #b8941f;
    --color-metin-black: #0a0a0a;
    --color-metin-dark: #1a1a1a;
    --color-metin-gray: #2a2a2a;
}

/* Base Styles */
body {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    background: var(--color-metin-black);
    color: #fff;
    line-height: 1.6;
}

/* ============================================
   FOOTER - MODERN DESIGN
   ============================================ */

footer {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 136, 0.05);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
    opacity: 0.6;
    z-index: 1;
}

footer .border-b {
    border-color: rgba(212, 175, 55, 0.1) !important;
}

footer a:hover {
    color: #00ff88 !important;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

footer .w-10.h-10 {
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

footer .w-10.h-10:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(184, 148, 31, 0.9) 100%) !important;
    border-color: rgba(212, 175, 55, 0.6) !important;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 16px rgba(212, 175, 55, 0.4),
        0 0 20px rgba(212, 175, 55, 0.2);
}

footer h3 {
    text-shadow: 
        0 0 20px rgba(0, 255, 136, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.6);
}

footer img {
    transition: all 0.3s ease;
}

footer img:hover {
    transform: scale(1.05);
}

/* Utility Classes */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container { max-width: 640px; }
}

@media (min-width: 768px) {
    .container { max-width: 768px; }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:text-left { text-align: left; }
    .md\:text-right { text-align: right; }
    .md\:block { display: block; }
}

@media (min-width: 1024px) {
    .container { max-width: 1024px; }
}

@media (min-width: 1280px) {
    .container { max-width: 1280px; }
}

/* Flexbox Utilities */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.flex-col { flex-direction: column; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-1 { gap: 0.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

@media (min-width: 768px) {
    .md\:flex { display: flex !important; }
    .hidden.md\:flex { display: flex !important; }
    .md\:hidden { display: none !important; }
    .md\:text-left { text-align: left; }
    .md\:text-right { text-align: right; }
    .md\:block { display: block; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:flex-row { flex-direction: row; }
    .md\:space-y-0 > * + * { margin-top: 0; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

/* Positioning */
.fixed { position: fixed; }
.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.bottom-6 { bottom: 1.5rem; }
.z-10 { z-index: 10; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Sizing */
.w-full { width: 100%; }
.w-4 { width: 1rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-2 { height: 0.5rem; }
.h-12 { height: 3rem; }
.h-48 { height: 12rem; }
.h-px { height: 1px; }
.h-\[1px\] { height: 1px; }
.h-\[2px\] { height: 2px; }
.w-2 { width: 0.5rem; }
.w-1\.5 { width: 0.375rem; }
.h-1\.5 { height: 0.375rem; }
.max-w-7xl { max-width: 80rem; }
.min-h-screen { min-height: 100vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Padding */
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-8 { padding-top: 2rem; }
.pt-20 { padding-top: 5rem; }
.pt-32 { padding-top: 8rem; }
.pb-20 { padding-bottom: 5rem; }
.pb-32 { padding-bottom: 8rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-20 { margin-top: 5rem; }
.-top-12 { top: -3rem; }
.-bottom-12 { bottom: -3rem; }
.pointer-events-none { pointer-events: none; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-relaxed { line-height: 1.625; }

@media (min-width: 768px) {
    .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

/* Colors */
.text-white { color: #fff; }
.text-black { color: #000; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-no-repeat { background-repeat: no-repeat; }
.bg-\[\#1a1a1a\] { background-color: #1a1a1a; }
.bg-\[\#2a2a2a\] { background-color: #2a2a2a; }
.text-\[\#00ff88\] { color: #00ff88; }
.text-\[\#00cc66\] { color: #00cc66; }
.text-\[\#d4af37\] { color: #d4af37; }
.text-\[\#b8941f\] { color: #b8941f; }
.bg-\[\#00ff88\] { background-color: #00ff88; }
.bg-\[\#00cc66\] { background-color: #00cc66; }
.bg-\[\#d4af37\] { background-color: #d4af37; }
.border-\[\#d4af37\] { border-color: #d4af37; }
.border-\[\#d4af37\]\/60 { border-color: rgba(212, 175, 55, 0.6); }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }

/* Backgrounds with opacity */
.bg-\[\#0a0a0a\]\/95 { background-color: rgba(10, 10, 10, 0.95); }
.bg-\[\#1a1a1a\]\/50 { background-color: rgba(26, 26, 26, 0.5); }
.border-\[\#d4af37\]\/20 { border-color: rgba(212, 175, 55, 0.2); }
.border-\[\#d4af37\]\/30 { border-color: rgba(212, 175, 55, 0.3); }
.border-\[\#00ff88\]\/50 { border-color: rgba(0, 255, 136, 0.5); }
.bg-\[\#00ff88\]\/10 { background-color: rgba(0, 255, 136, 0.1); }
.bg-\[\#d4af37\]\/10 { background-color: rgba(212, 175, 55, 0.1); }
.from-\[\#00ff88\]\/10 { --tw-gradient-from: rgba(0, 255, 136, 0.1); }
.to-transparent { --tw-gradient-to: transparent; }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-\[\#00ff88\] { --tw-gradient-from: #00ff88; }
.to-\[\#00cc66\] { --tw-gradient-to: #00cc66; }
.to-\[\#d4af37\] { --tw-gradient-to: #d4af37; }
.from-\[\#00cc66\] { --tw-gradient-from: #00cc66; }
.via-\[\#d4af37\]\/40 { --tw-gradient-via: rgba(212, 175, 55, 0.4); }
.via-\[\#d4af37\]\/60 { --tw-gradient-via: rgba(212, 175, 55, 0.6); }
.via-\[\#00ff88\]\/30 { --tw-gradient-via: rgba(0, 255, 136, 0.3); }
.via-\[\#00ff88\]\/40 { --tw-gradient-via: rgba(0, 255, 136, 0.4); }
.via-\[\#0a0a0a\]\/50 { --tw-gradient-via: rgba(10, 10, 10, 0.5); }

/* Effects */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.rotate-45 { transform: rotate(45deg); }
.from-transparent { --tw-gradient-from: transparent; }
.via-\[\#d4af37\]\/40 { --tw-gradient-via: rgba(212, 175, 55, 0.4); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.w-48 { width: 12rem; }
.w-80 { width: 20rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.mt-2 { margin-top: 0.5rem; }
.max-w-\[90vw\] { max-width: 90vw; }
.right-0 { right: 0; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-hidden { overflow-y: hidden; }

/* Transitions */
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }

/* Hover States */
.hover\:text-\[\#00ff88\]:hover { color: #00ff88; }
.hover\:text-\[\#00cc66\]:hover { color: #00cc66; }
.hover\:text-\[\#b8941f\]:hover { color: #b8941f; }
.hover\:bg-\[\#b8941f\]:hover { background-color: #b8941f; }
.hover\:bg-\[\#d4af37\]\/10:hover { background-color: rgba(212, 175, 55, 0.1); }
.hover\:border-\[\#00ff88\]\/50:hover { border-color: rgba(0, 255, 136, 0.5); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.hover\:shadow-\[\#00ff88\]\/50:hover { box-shadow: 0 10px 15px -3px rgba(0, 255, 136, 0.5); }

/* Transform */
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.hover\:scale-105:hover { --tw-scale-x: 1.05; --tw-scale-y: 1.05; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }

/* Text Effects */
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.text-transparent { color: transparent; }

/* Display */
.hidden { display: none; }
.inline-block { display: inline-block; }
.block { display: block; }

/* Object Fit */
.object-cover { object-fit: cover; }

/* Line Clamp */
.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-metin-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-metin-gold-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-metin-gold);
}

/* Focus States */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:border-\[\#00ff88\]:focus { border-color: #00ff88; }

/* Additional Utilities */
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-wide { letter-spacing: 0.025em; }
.blur-3xl { filter: blur(64px); }
.w-px { width: 1px; }
.min-h-\[90vh\] { min-height: 90vh; }
.text-8xl { font-size: 6rem; line-height: 1; }
.text-5xl { font-size: 3rem; line-height: 1; }
.leading-tight { line-height: 1.25; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.hover\:scale-110:hover { --tw-scale-x: 1.1; --tw-scale-y: 1.1; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))); }
.hover\:translate-x-1:hover { --tw-translate-x: 0.25rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))); }
.translate-x-1 { --tw-translate-x: 0.25rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))); }

@media (min-width: 768px) {
    .md\:text-8xl { font-size: 6rem; line-height: 1; }
    .md\:text-5xl { font-size: 3rem; line-height: 1; }
    .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
}

@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}

/* Gap utilities */
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Placeholder */
.placeholder-gray-500::placeholder { color: #6b7280; }

/* Character Selection */
.cursor-pointer { cursor: pointer; }
.opacity-20 { opacity: 0.2; }
.opacity-40 { opacity: 0.4; }
.text-8xl { font-size: 6rem; line-height: 1; }

/* Carousel */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.-translate-y-1\/2 { --tw-translate-y: -50%; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))); }
.flex-shrink-0 { flex-shrink: 0; }
.min-h-\[80vh\] { min-height: 80vh; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.opacity-0 { opacity: 0; }
.opacity-1 { opacity: 1; }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/70 { background-color: rgba(0, 0, 0, 0.7); }
.from-black\/80 { --tw-gradient-from: rgba(0, 0, 0, 0.8); }
.duration-700 { transition-duration: 700ms; }

/* Transforms */
.translate-y-5 { --tw-translate-y: 1.25rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))); }
.hover\:translate-y-\[-5px\]:hover { --tw-translate-y: -1.25rem; transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))); }

/* Gradients for classes */
.from-\[\#8b4513\]\/30 { --tw-gradient-from: rgba(139, 69, 19, 0.3); }
.to-\[\#654321\]\/30 { --tw-gradient-to: rgba(101, 67, 33, 0.3); }
.from-\[\#4a0080\]\/30 { --tw-gradient-from: rgba(74, 0, 128, 0.3); }
.to-\[\#6a1b9a\]\/30 { --tw-gradient-to: rgba(106, 27, 154, 0.3); }
.from-\[\#2d5016\]\/30 { --tw-gradient-from: rgba(45, 80, 22, 0.3); }
.to-\[\#4a7c2a\]\/30 { --tw-gradient-to: rgba(74, 124, 42, 0.3); }
.from-\[\#8b6914\]\/30 { --tw-gradient-from: rgba(139, 105, 20, 0.3); }
.to-\[\#d4af37\]\/30 { --tw-gradient-to: rgba(212, 175, 55, 0.3); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-\[\#2a2a2a\] { --tw-gradient-from: #2a2a2a; }
.to-transparent { --tw-gradient-to: transparent; }

/* ============================================
   MODERN NAVIGATION MENU STYLES
   ============================================ */

/* Header Modern Design */
header.fixed {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.70) 100%) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 136, 0.05);
    transition: all 0.3s ease;
}

header.fixed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.5), transparent);
    opacity: 0.6;
    z-index: 1;
}

/* Logo Container */
header.fixed nav > div > div:first-child {
    position: relative;
    transition: transform 0.3s ease;
}

header.fixed nav > div > div:first-child:hover {
    transform: translateY(-2px);
}

/* Logo Scroll Effect */
.logo-container-scroll {
    min-height: 48px;
    height: 48px;
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    border: none !important;
    outline: none !important;
}

.logo-container-scroll:hover,
.logo-container-scroll:link,
.logo-container-scroll:visited,
.logo-container-scroll:active {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    border: none !important;
    outline: none !important;
}

.logo-image-scroll {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, 
                visibility 0.8s ease-in-out;
    pointer-events: none;
}

.logo-image-scroll img {
    max-height: 48px;
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text-container {
    transition: opacity 0.8s ease-in-out, 
                visibility 0.8s ease-in-out;
    opacity: 1;
    visibility: visible;
    line-height: 1.2;
    height: 48px;
    display: flex;
    align-items: center;
}

body.scrolled .logo-image-scroll {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.scrolled .logo-text-container {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.logo-image-scroll.hidden {
    display: none !important;
}



/* Logo Title Gradient */
header.fixed nav h1 {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    border: none !important;
    outline: none !important;
}

header.fixed nav > div > div:first-child:hover h1,
header.fixed nav a.logo-container-scroll:hover h1 {
    background: linear-gradient(135deg, #00ff88 0%, #00ffaa 50%, #00cc66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    border: none !important;
    outline: none !important;
}

/* Navigation Links Modern Style - ELIMIN-é UNDERLINE ALB */
header.fixed nav .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    border: none !important;
    outline: none !important;
    border-radius: 6px;
    /* Elimin-â complet orice underline default */
    text-underline-offset: 0 !important;
    text-underline-position: auto !important;
    -webkit-text-decoration: none !important;
    -moz-text-decoration: none !important;
    -ms-text-decoration: none !important;
    -o-text-decoration: none !important;
}

header.fixed nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0 !important;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #00cc66);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.6);
    opacity: 0;
    pointer-events: none;
}

header.fixed nav .nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08), transparent);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

header.fixed nav .nav-link:hover {
    color: #00ff88 !important;
    transform: translateY(-1px);
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    border: none !important;
    outline: none !important;
}

header.fixed nav .nav-link:hover::before {
    width: calc(100% - 32px) !important;
    opacity: 1 !important;
}

header.fixed nav .nav-link:hover::after {
    opacity: 1;
}

/* Logout Button Modern */
header.fixed nav a[href*="logout"] {
    padding: 8px 20px !important;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%) !important;
    color: #0a0a0a !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    border-radius: 8px !important;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

header.fixed nav a[href*="logout"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #b8941f 0%, #d4af37 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

header.fixed nav a[href*="logout"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

header.fixed nav a[href*="logout"]:hover::before {
    opacity: 1;
}

/* User Name Badge */
header.fixed nav span.text-sm {
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    font-weight: 600;
}

/* Mobile Menu Button */
header.fixed nav button#mobile-menu-btn {
    color: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

header.fixed nav button#mobile-menu-btn:hover {
    color: #00ff88 !important;
    background: rgba(0, 255, 136, 0.1);
    transform: scale(1.1);
}

/* Mobile Menu */
header.fixed nav #mobile-menu {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header.fixed nav #mobile-menu a {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    display: block;
    position: relative;
    padding-left: 24px;
    border-bottom: none !important;
    border: none !important;
    outline: none !important;
}

/* Elimin-â linia pentru link-ul +ÿtiri & Evenimente +«n meniul mobil */
header.fixed nav #mobile-menu .nav-link[href*="#news"]::before {
    display: none !important;
    content: none !important;
}

header.fixed nav #mobile-menu a::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #00ff88, #00cc66);
    border-radius: 2px;
    transition: height 0.3s ease;
}

header.fixed nav #mobile-menu a:hover {
    color: #00ff88 !important;
    background: rgba(0, 255, 136, 0.08);
    padding-left: 28px;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    border: none !important;
    outline: none !important;
}

header.fixed nav #mobile-menu a:hover::before {
    height: 60%;
}

/* Scroll Effect */
@media (min-width: 768px) {
    body.scrolled header.fixed {
        backdrop-filter: blur(30px) saturate(200%);
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 255, 136, 0.03);
    }
}

/* Active Link - STILURI +ÄMBUN-éT-é+ÜITE */
header.fixed nav .nav-link.active {
    color: #00ff88 !important;
    font-weight: 600 !important;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    position: relative;
}

header.fixed nav .nav-link.active::before {
    content: '' !important;
    position: absolute !important;
    bottom: 4px !important;
    left: 50% !important;
    width: calc(100% - 32px) !important;
    height: 2px !important;
    background: linear-gradient(90deg, #00ff88, #00cc66) !important;
    border-radius: 2px !important;
    transform: translateX(-50%) !important;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.8) !important;
    opacity: 1 !important;
    pointer-events: none !important;
}

header.fixed nav .nav-link.active::after {
    opacity: 1 !important;
}

/* ============================================
   HERO SECTION BUTTONS MODERN DESIGN
   ============================================ */

/* Primary Button - Joac-â Acum */
.hero-btn-primary {
    position: relative;
    z-index: 0;
    padding: 16px 40px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(55, 212, 85, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(10, 30, 20, 0.95) 0%, 
            rgba(5, 20, 15, 0.98) 50%,
            rgba(10, 30, 20, 0.95) 100%);
    background-size: 200% 200%, 200% 200%, 100% 100%;
    background-position: 0% 0%, 100% 100%, 0% 0%;
    color: #00ff88;
    font-weight: 800;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 136, 0.3);
    box-shadow: 
        0 6px 20px rgba(0, 255, 136, 0.4), 
        0 2px 8px rgba(0, 255, 136, 0.3),
        0 0 30px rgba(55, 212, 85, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    animation: buttonBgMove 8s ease-in-out infinite;
}

/* Bobite Pattern - Dots Texture */
.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 255, 136, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 30% 40%, rgba(55, 212, 85, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 50% 60%, rgba(0, 255, 136, 0.35) 1px, transparent 1px),
        radial-gradient(circle at 70% 30%, rgba(55, 212, 85, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 90% 70%, rgba(0, 255, 136, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 15% 80%, rgba(55, 212, 85, 0.35) 1px, transparent 1px),
        radial-gradient(circle at 85% 15%, rgba(0, 255, 136, 0.3) 1px, transparent 1px);
    background-size: 
        25px 25px,
        30px 30px,
        20px 20px,
        28px 28px,
        22px 22px,
        26px 26px,
        24px 24px;
    background-position: 
        0 0, 5px 5px, 10px 10px, 15px 15px, 20px 20px, 25px 25px, 30px 30px;
    opacity: 0.6;
    mix-blend-mode: screen;
    -webkit-mix-blend-mode: screen;
    animation: bobitePulse 3s ease-in-out infinite;
    -webkit-animation: bobitePulse 3s ease-in-out infinite;
    z-index: 1;
}

/* Linii Luminoase - Glowing Lines */
.hero-btn-primary::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    inset: -2px;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.4) 45%, rgba(55, 212, 85, 0.5) 50%, rgba(0, 255, 136, 0.4) 55%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(55, 212, 85, 0.3) 48%, rgba(0, 255, 136, 0.4) 50%, rgba(55, 212, 85, 0.3) 52%, transparent 100%),
        linear-gradient(45deg, transparent 0%, rgba(0, 255, 136, 0.2) 49%, rgba(55, 212, 85, 0.3) 50%, rgba(0, 255, 136, 0.2) 51%, transparent 100%);
    background-size: 200% 100%, 100% 200%, 150% 150%;
    background-position: -100% 0%, 0% -100%, 0% 0%;
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    animation: glowingLines 4s ease-in-out infinite;
    filter: blur(1px);
}

@keyframes buttonBgMove {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 0% 0%;
    }
    50% { 
        background-position: 100% 100%, 0% 0%, 0% 0%;
    }
}

@keyframes bobitePulse {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes glowingLines {
    0%, 100% { 
        opacity: 0;
        background-position: -100% 0%, 0% -100%, 0% 0%;
    }
    25% {
        opacity: 0.6;
        background-position: 0% 0%, 0% 0%, 25% 25%;
    }
    50% {
        opacity: 1;
        background-position: 100% 0%, 0% 100%, 50% 50%;
    }
    75% {
        opacity: 0.6;
        background-position: 0% 0%, 0% 0%, 75% 75%;
    }
}

.hero-btn-primary > * {
    position: relative;
    z-index: 2;
}

.hero-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    color: #0a0a0a !important;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(55, 212, 85, 0.4) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(0, 255, 136, 0.3) 0%, 
            rgba(55, 212, 85, 0.25) 50%,
            rgba(0, 255, 136, 0.3) 100%);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 
        0 10px 30px rgba(0, 255, 136, 0.5), 
        0 4px 12px rgba(0, 255, 136, 0.4),
        0 0 50px rgba(55, 212, 85, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    animation: buttonBgMove 4s ease-in-out infinite;
}

.hero-btn-primary:hover::before {
    opacity: 0.9;
    animation: bobitePulse 1.5s ease-in-out infinite;
}

.hero-btn-primary:hover::after {
    opacity: 1;
    animation: glowingLines 2s ease-in-out infinite;
}

/* Hero Logo - Fixed Size - Banner Style */
.hero-logo-fixed {
    width: 800px;
    height: 300px;
    object-fit: contain;
    display: block;
}

@media (max-width: 1024px) {
    .hero-logo-fixed {
        width: 650px;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .hero-logo-fixed {
        width: 500px;
        height: 180px;
    }
}

@media (max-width: 640px) {
    .hero-logo-fixed {
        width: 400px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-logo-fixed {
        width: 300px;
        height: 120px;
    }
}

/* ============================================
   SERVER STATS MODERN CARDS - ULTRA DESIGN
   ============================================ */

.server-stat-card {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(0, 0, 0, 0.9) 50%,
        rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 24px 32px;
    min-width: 160px;
    text-align: center;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.server-stat-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.5) 0%, 
        rgba(0, 255, 136, 0.4) 25%,
        rgba(212, 175, 55, 0.5) 50%,
        rgba(0, 255, 136, 0.4) 75%,
        rgba(212, 175, 55, 0.5) 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderShimmer 3s linear infinite;
}

@keyframes borderShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.server-stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.server-stat-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.7),
        0 0 0 2px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(0, 255, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.98) 0%, 
        rgba(0, 0, 0, 0.95) 50%,
        rgba(10, 10, 10, 0.98) 100%);
}

.server-stat-card:hover::before {
    opacity: 1;
}

.server-stat-card:hover::after {
    opacity: 1;
}

.server-stat-card span.text-xs {
    letter-spacing: 0.15em;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.server-stat-card p {
    text-shadow: 
        0 0 30px rgba(0, 255, 136, 0.5),
        0 0 60px rgba(0, 255, 136, 0.3),
        0 4px 12px rgba(0, 255, 136, 0.4);
    filter: drop-shadow(0 2px 4px rgba(0, 255, 136, 0.3));
}

.server-stat-card span.w-3 {
    box-shadow: 
        0 0 10px rgba(0, 255, 136, 0.6),
        0 0 20px rgba(0, 255, 136, 0.4),
        0 0 30px rgba(0, 255, 136, 0.2);
}

/* Anima+¢ie pentru actualizare statistici */
.server-stat-card.stat-updated {
    animation: statUpdatePulse 0.4s ease-out;
}

@keyframes statUpdatePulse {
    0% {
        transform: scale(1);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(212, 175, 55, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.7),
            0 0 0 2px rgba(0, 255, 136, 0.4),
            0 0 40px rgba(0, 255, 136, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            inset 0 -1px 0 rgba(0, 0, 0, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(212, 175, 55, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    }
}

/* Anima+¢ie smooth pentru text-ul care se schimb-â */
#players-online {
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

@media (max-width: 768px) {
    .server-stat-card {
        min-width: 130px;
        padding: 18px 24px;
    }
    
    .server-stat-card p {
        font-size: 1.75rem;
    }
}

/* ============================================
   NEWS & EVENTS SECTION - MODERN DESIGN
   ============================================ */

.news-section-title {
    text-shadow: 
        0 0 30px rgba(0, 255, 136, 0.5),
        0 0 60px rgba(0, 255, 136, 0.3),
        0 4px 12px rgba(0, 255, 136, 0.4);
    filter: drop-shadow(0 2px 4px rgba(0, 255, 136, 0.3));
    letter-spacing: -0.02em;
}

.news-section-subtitle {
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    letter-spacing: 0.05em;
}

.news-card {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(0, 0, 0, 0.9) 50%,
        rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.5) 0%, 
        rgba(0, 255, 136, 0.4) 25%,
        rgba(212, 175, 55, 0.5) 50%,
        rgba(0, 255, 136, 0.4) 75%,
        rgba(212, 175, 55, 0.5) 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    animation: borderShimmer 3s linear infinite;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.7),
        0 0 0 2px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(0, 255, 136, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card-type {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

.news-card-link {
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.news-read-btn {
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    border: none !important;
}

.news-read-btn span {
    text-decoration: none !important;
    border-bottom: none !important;
}

.news-read-btn:hover span {
    text-decoration: none !important;
    border-bottom: none !important;
}

.news-read-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.news-read-btn:hover::before {
    left: 100%;
}

.news-read-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(0, 255, 136, 0.3),
        0 0 40px rgba(0, 255, 136, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.news-empty-state {
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.7) 0%, 
        rgba(0, 0, 0, 0.6) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    padding: 40px 20px;
}

.news-view-all-btn {
    position: relative;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    overflow: hidden;
}

.news-view-all-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(0, 255, 136, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 8px;
}

.news-view-all-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.news-view-all-btn:hover::before {
    opacity: 1;
}

/* ============================================
   CAROUSEL SECTION - MODERN DESIGN
   ============================================ */

#carousel-bg-image {
    transition: opacity 0.7s ease-in-out;
}

.carousel-title {
    text-shadow: 
        0 0 40px rgba(0, 255, 136, 0.6),
        0 0 80px rgba(0, 255, 136, 0.4),
        0 6px 16px rgba(0, 255, 136, 0.5);
    filter: drop-shadow(0 4px 8px rgba(0, 255, 136, 0.4));
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.carousel-text {
    text-shadow: 0 2px 10px rgb(237 221 0 / 50%);
    line-height: 1.7;
}

.text-gray-300 {
    color: #fff000;
}

.carousel-thumbnails-container {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 4rem;
    padding-right: 4rem;
}

@media (min-width: 640px) {
    .carousel-thumbnails-container {
        padding-left: 4.5rem;
        padding-right: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .carousel-thumbnails-container {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

.carousel-nav-btn {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(10, 10, 10, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
}

#carousel-prev {
    left: -1.5rem;
}

#carousel-next {
    right: -1.5rem;
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.7),
        0 0 0 2px rgba(0, 255, 136, 0.4),
        0 0 30px rgba(0, 255, 136, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: all 0.3s ease;
}

.carousel-nav-btn:hover svg {
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
}

.carousel-thumbnail-image {
    width: 192px;
    height: 144px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.2) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(10, 10, 10, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .carousel-thumbnail-image {
        width: 224px;
        height: 160px;
    }
}

.carousel-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-thumbnail:hover .carousel-thumbnail-image {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.7),
        0 0 0 2px rgba(0, 255, 136, 0.5),
        0 0 30px rgba(0, 255, 136, 0.3);
}

.carousel-thumbnail-img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-thumbnail:hover .carousel-thumbnail-img {
    transform: scale(1.1);
}

.carousel-thumbnail span {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.carousel-thumbnail:hover span {
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

/* Secondary Button - Descarc-â Jocul */
.hero-btn-secondary {
    position: relative;
    padding: 16px 40px;
    background: 
        radial-gradient(circle at 15% 25%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(184, 148, 31, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(30, 25, 15, 0.85) 0%, 
            rgba(20, 18, 10, 0.9) 50%,
            rgba(30, 25, 15, 0.85) 100%);
    background-size: 200% 200%, 200% 200%, 100% 100%;
    background-position: 0% 0%, 100% 100%, 0% 0%;
    color: rgba(212, 175, 55, 0.9);
    font-weight: 800;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(212, 175, 55, 0.2),
        0 0 20px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    animation: buttonBgMoveSecondary 10s ease-in-out infinite;
}

/* Bobite Pattern - Subtle Dots Texture */
.hero-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0;
    background-image: 
        radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.2) 0.8px, transparent 0.8px),
        radial-gradient(circle at 35% 45%, rgba(184, 148, 31, 0.15) 0.8px, transparent 0.8px),
        radial-gradient(circle at 55% 65%, rgba(212, 175, 55, 0.18) 0.8px, transparent 0.8px),
        radial-gradient(circle at 75% 28%, rgba(184, 148, 31, 0.2) 0.8px, transparent 0.8px),
        radial-gradient(circle at 88% 72%, rgba(212, 175, 55, 0.15) 0.8px, transparent 0.8px);
    background-size: 
        28px 28px,
        32px 32px,
        24px 24px,
        30px 30px,
        26px 26px;
    background-position: 
        0 0, 6px 6px, 12px 12px, 18px 18px, 24px 24px;
    opacity: 0.35;
    mix-blend-mode: screen;
    animation: bobitePulseSecondary 4s ease-in-out infinite;
    z-index: 1;
}

/* Linii Luminoase - Subtle Glowing Lines */
.hero-btn-secondary::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    inset: -2px;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.2) 47%, rgba(184, 148, 31, 0.25) 50%, rgba(212, 175, 55, 0.2) 53%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(184, 148, 31, 0.15) 48%, rgba(212, 175, 55, 0.2) 50%, rgba(184, 148, 31, 0.15) 52%, transparent 100%);
    background-size: 200% 100%, 100% 200%;
    background-position: -100% 0%, 0% -100%;
    border-radius: 12px;
    opacity: 0;
    z-index: -1;
    animation: glowingLinesSecondary 6s ease-in-out infinite;
    filter: blur(0.5px);
}

@keyframes buttonBgMoveSecondary {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 0% 0%;
    }
    50% { 
        background-position: 100% 100%, 0% 0%, 0% 0%;
    }
}

@keyframes bobitePulseSecondary {
    0%, 100% { 
        opacity: 0.25;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.02);
    }
}

@keyframes glowingLinesSecondary {
    0%, 100% { 
        opacity: 0;
        background-position: -100% 0%, 0% -100%;
    }
    30% {
        opacity: 0.3;
        background-position: 0% 0%, 0% 0%;
    }
    50% {
        opacity: 0.5;
        background-position: 100% 0%, 0% 100%;
    }
    70% {
        opacity: 0.3;
        background-position: 0% 0%, 0% 0%;
    }
}

.hero-btn-secondary > * {
    position: relative;
    z-index: 2;
}

.hero-btn-secondary:hover {
    transform: translateY(-3px) scale(1.01);
    color: #d4af37;
    background: 
        radial-gradient(circle at 15% 25%, rgba(212, 175, 55, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(184, 148, 31, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(212, 175, 55, 0.15) 0%, 
            rgba(184, 148, 31, 0.12) 50%,
            rgba(212, 175, 55, 0.15) 100%);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 6px 20px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    animation: buttonBgMoveSecondary 6s ease-in-out infinite;
}

.hero-btn-secondary:hover::before {
    opacity: 0.6;
    animation: bobitePulseSecondary 2.5s ease-in-out infinite;
}

.hero-btn-secondary:hover::after {
    opacity: 0.6;
    animation: glowingLinesSecondary 4s ease-in-out infinite;
}

/* Action Button - pentru dashboard +Öi alte pagini */
.action-button {
    padding: 1rem 1.5rem !important;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%) !important;
    border: 1px solid rgba(0, 255, 136, 0.3) !important;
    border-radius: 8px !important;
    color: #00ff88 !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
    position: relative !important;
    overflow: hidden !important;
}

.action-button:hover {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 255, 136, 0.1) 100%) !important;
    border-color: rgba(0, 255, 136, 0.5) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2) !important;
}

.action-button:active {
    transform: translateY(0) !important;
}

.action-button:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

/* ============================================
   CHARACTER SELECTION SECTION - MODERN DESIGN
   ============================================ */

/* Section Title */
.character-section h2 {
    text-shadow: 
        0 0 40px rgba(0, 255, 136, 0.6),
        0 0 80px rgba(0, 255, 136, 0.4),
        0 6px 16px rgba(0, 255, 136, 0.5);
    filter: drop-shadow(0 4px 8px rgba(0, 255, 136, 0.4));
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

.character-section p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.02em;
}

.text-gray-400 {
    color: #fff000;
}

/* Character Cards */
.character-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.character-image-container > div:first-child {
    position: relative;
    width: 256px;
    height: 320px;
    background: transparent;
    border: 2px solid transparent;
    backdrop-filter: none;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    flex-shrink: 0;
}

.character-image-container > div:first-child img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    z-index: 0;
    border-radius: 8px;
}


.character-image-container > div:first-child > div:last-child {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .character-image-container > div:first-child {
        width: 320px;
        height: 400px;
    }
}

.character-image-container > div:first-child > div:last-child {
    position: absolute;
    z-index: 1;
}

.character-image-container > div:first-child::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.5) 0%, 
        rgba(0, 255, 136, 0.4) 25%,
        rgba(212, 175, 55, 0.5) 50%,
        rgba(0, 255, 136, 0.4) 75%,
        rgba(212, 175, 55, 0.5) 100%);
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: characterBorderShimmer 3s linear infinite;
}

@keyframes characterBorderShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.character-card:hover .character-image-container > div:first-child {
    transform: translateY(-8px);
}

.character-card:hover .character-image-container > div:first-child::before {
    opacity: 0;
}

/* Character Buttons */
.character-btn {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(10, 10, 10, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 24px;
    overflow: hidden;
    cursor: pointer;
    outline: none;
    text-decoration: none !important;
}

.character-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(0, 255, 136, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.character-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.character-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.7),
        0 0 0 2px rgba(212, 175, 55, 0.4),
        0 0 25px rgba(0, 255, 136, 0.3);
    color: #00ff88;
    text-shadow: 
        0 0 15px rgba(0, 255, 136, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.6);
}

.character-btn:hover::before {
    opacity: 1;
}

.character-btn:hover::after {
    width: 300px;
    height: 300px;
}

.character-btn.active,
.character-btn.border-\[#00ff88\] {
    border-color: rgba(0, 255, 136, 0.6) !important;
    color: #00ff88;
    text-shadow: 
        0 0 20px rgba(0, 255, 136, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.6);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.7),
        0 0 0 2px rgba(0, 255, 136, 0.4),
        0 0 30px rgba(0, 255, 136, 0.4);
}

.character-btn.active::before,
.character-btn.border-\[#00ff88\]::before {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.2) 0%, 
        rgba(0, 255, 136, 0.1) 100%);
    opacity: 1;
}

/* Character Image Container */
.character-image-container {
    position: relative;
}

.character-image-container > div:first-child {
    position: relative;
    z-index: 1;
}

/* Character Description */
.character-description {
    position: absolute;
    width: 100%;
    max-width: 256px;
    background: transparent;
    border: none;
    backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    pointer-events: none;
    padding: 12px 16px;
    left: 0;
    right: 0;
    bottom: 0;
}

@media (min-width: 768px) {
    .character-description {
        max-width: 320px;
    }
}

.character-description:not(.hidden) {
    animation: descriptionFadeIn 0.5s ease-out;
    pointer-events: auto;
}

.character-description.hidden {
    display: none !important;
}

@keyframes descriptionFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes descriptionBorderShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.character-description p {
    text-shadow: 
        0 0 20px rgba(0, 255, 136, 0.5),
        0 0 40px rgba(0, 255, 136, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.01em;
    line-height: 1.7;
    color: #ffffff;
}

.character-btn {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .character-section h2 {
        font-size: 2rem;
    }
    
    .character-card {
        min-height: 550px;
    }
    
    .character-card > div:first-child {
        width: 180px;
        height: 240px;
    }
    
    .character-description {
        width: 280px;
    }
}

/* ========================================
   MODERN FOOTER STYLES
   ======================================== */

.footer-modern {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 -4px 24px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 255, 136, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 136, 0.5), 
        rgba(212, 175, 55, 0.5), 
        rgba(0, 255, 136, 0.5), 
        transparent);
    opacity: 0.8;
    z-index: 1;
    animation: footerTopGlow 3s ease-in-out infinite;
}

@keyframes footerTopGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.footer-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 136, 0.3), 
        transparent);
    z-index: 1;
}

/* Top Section */
.footer-top-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.footer-top-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(55, 212, 63, 0.4), 
        rgba(0, 255, 136, 0.4), 
        rgba(55, 212, 65, 0.4), 
        transparent);
}

@media (min-width: 768px) {
    .footer-top-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* Logo Container */
.footer-logo-container {
    flex-shrink: 0;
}

.footer-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    height: 3rem;
    width: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.footer-logo-wrapper:hover .footer-logo {
    transform: scale(1.05);
}

.footer-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: transparent;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.footer-logo-wrapper:hover .footer-logo-glow {
    opacity: 1;
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.5; }
}

/* Social Media Container */
.footer-social-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-social-container {
        justify-content: flex-end;
    }
}

.footer-social-icon {
    width: 3.25rem;
    height: 3.25rem;
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.95) 0%, 
        rgba(10, 10, 10, 0.95) 50%,
        rgba(20, 20, 20, 0.95) 100%);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212, 175, 55, 0.8);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
}

.footer-social-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.3) 0%, 
        rgba(212, 175, 55, 0.3) 50%,
        rgba(0, 255, 136, 0.3) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.footer-social-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 8px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.footer-social-icon:hover::before {
    opacity: 1;
    animation: socialBorderGlow 2s ease-in-out infinite;
}

.footer-social-icon:hover::after {
    transform: translate(-50%, -50%) scale(1.5);
}

.footer-social-icon:hover {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(0, 255, 136, 0.1) 50%,
        rgba(212, 175, 55, 0.15) 100%);
    border-color: rgba(212, 175, 55, 0.6);
    color: #d4af37;
    transform: translateY(-4px);
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

@keyframes socialBorderGlow {
    0%, 100% { 
        opacity: 0.6;
        filter: blur(1px);
    }
    50% { 
        opacity: 1;
        filter: blur(2px);
    }
}

.footer-social-icon svg {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-social-icon:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
    color: #d4af37;
}

/* Navigation Section */
.footer-nav-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.footer-nav-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(55, 212, 81, 0.3), transparent);
}

.footer-nav-link {
    color: rgba(156, 163, 175, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-size: 0.75rem;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.8), rgba(55, 212, 71, 0.8));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0, 255, 136, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-nav-link:hover {
    color: #00ff88;
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.5),
        0 0 20px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.footer-nav-link:hover::before {
    width: 100%;
}

.footer-nav-link:hover::after {
    opacity: 1;
}

/* Bottom Section */
.footer-bottom-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.footer-copyright {
    flex: 1;
}

.footer-copyright-right {
    flex: 1;
    text-align: right;
}

@media (max-width: 767px) {
    .footer-copyright-right {
        text-align: left;
    }
}

.footer-copyright-main {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-copyright-sub {
    color: rgba(156, 163, 175, 0.7);
    font-size: 0.75rem;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

@media (max-width: 767px) {
    .footer-modern {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .footer-top-section {
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-nav-section {
        gap: 1rem 1.5rem;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-social-icon {
        width: 2.75rem;
        height: 2.75rem;
    }
    
    .footer-logo {
        height: 2.5rem;
    }
}

/* ========================================
   PREMIUM ACCOUNT PANEL & TOGGLE BUTTON
   ======================================== */

/* Toggle Button Wrapper */
.account-toggle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.25s ease;
    opacity: 1;
}

.account-toggle-wrapper.hidden {
    display: none;
}

.account-toggle-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(212, 175, 55, 0.8);
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.account-toggle-btn:hover + .account-toggle-label,
.account-toggle-wrapper:hover .account-toggle-label {
    color: #d4af37;
    text-shadow: 
        0 0 15px rgba(212, 175, 55, 0.6),
        0 0 25px rgba(212, 175, 55, 0.4);
}

/* Premium Icon Button */
.premium-icon-btn {
    width: 4.5rem;
    height: 4.5rem;
    position: relative;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(10, 30, 20, 0.98) 0%, 
            rgba(5, 20, 15, 1) 50%,
            rgba(10, 30, 20, 0.98) 100%);
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    overflow: visible;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.2),
        0 0 40px rgba(212, 175, 55, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: premiumBtnBgMove 8s ease-in-out infinite;
}

.premium-player-btn {
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(55, 212, 85, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(10, 30, 20, 0.98) 0%, 
            rgba(5, 20, 15, 1) 50%,
            rgba(10, 30, 20, 0.98) 100%);
    border-color: rgba(0, 255, 136, 0.4);
}

@keyframes premiumBtnBgMove {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 0% 0%;
    }
    50% { 
        background-position: 100% 100%, 0% 0%, 0% 0%;
    }
}

.premium-icon-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.premium-icon-svg {
    width: 2rem;
    height: 2rem;
    color: rgba(212, 175, 55, 0.9);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.premium-player-btn .premium-icon-svg {
    color: rgba(0, 255, 136, 0.9);
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.4));
}

.premium-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    animation: premiumIconPulse 3s ease-in-out infinite;
}

.premium-player-btn .premium-icon-glow {
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
}

@keyframes premiumIconPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.premium-icon-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.4) 0%, 
        rgba(0, 255, 136, 0.3) 50%,
        rgba(212, 175, 55, 0.4) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.premium-player-btn::before {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.4) 0%, 
        rgba(55, 212, 85, 0.3) 50%,
        rgba(0, 255, 136, 0.4) 100%);
}

.premium-icon-btn:hover {
    transform: scale(1.1);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(212, 175, 55, 0.4),
        0 0 60px rgba(212, 175, 55, 0.3),
        inset 0 2px 6px rgba(255, 255, 255, 0.15),
        inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    animation: premiumBtnBgMove 4s ease-in-out infinite;
}

.premium-player-btn:hover {
    border-color: rgba(0, 255, 136, 0.7);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(0, 255, 136, 0.4),
        0 0 60px rgba(0, 255, 136, 0.3),
        inset 0 2px 6px rgba(255, 255, 255, 0.15),
        inset 0 -2px 6px rgba(0, 0, 0, 0.4);
}

.premium-icon-btn:hover::before {
    opacity: 0.8;
    animation: premiumBtnBorderGlow 2s ease-in-out infinite;
}

.premium-icon-btn:hover .premium-icon-svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.7));
    color: #d4af37;
}

.premium-player-btn:hover .premium-icon-svg {
    filter: drop-shadow(0 0 15px rgba(0, 255, 136, 0.7));
    color: #00ff88;
}

.premium-icon-btn:hover .premium-icon-glow {
    opacity: 1;
    animation: premiumIconPulse 1.5s ease-in-out infinite;
}

@keyframes premiumBtnBorderGlow {
    0%, 100% { 
        opacity: 0.6;
        filter: blur(8px);
    }
    50% { 
        opacity: 1;
        filter: blur(12px);
    }
}

/* Premium Account Panel */
.premium-account-panel {
    width: 320px;
    max-width: 90vw;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(10, 10, 10, 0.98) 0%, 
            rgba(5, 5, 5, 0.99) 50%,
            rgba(10, 10, 10, 0.98) 100%);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(212, 175, 55, 0.15),
        0 0 40px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.6);
    overflow: hidden;
    transition: opacity 0.25s ease;
    opacity: 0;
}

.premium-player-panel {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(0, 255, 136, 0.15),
        0 0 40px rgba(0, 255, 136, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(0, 0, 0, 0.6);
}

/* Animation removed - using smooth fade transition instead */

.premium-account-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(55, 212, 73, 0.5), 
        rgba(0, 255, 136, 0.5), 
        rgba(55, 212, 63, 0.5), 
        transparent);
    z-index: 1;
}

.premium-player-panel::before {
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 136, 0.5), 
        rgba(55, 212, 85, 0.5), 
        rgba(0, 255, 136, 0.5), 
        transparent);
}

/* Panel Header */
.premium-panel-header {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.12) 0%, 
        rgba(0, 255, 136, 0.1) 50%,
        rgba(212, 175, 55, 0.12) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1rem 1.25rem;
    position: relative;
}

.premium-player-header {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.12) 0%, 
        rgba(55, 212, 85, 0.1) 50%,
        rgba(0, 255, 136, 0.12) 100%);
    border-bottom-color: rgba(0, 255, 136, 0.2);
}

.premium-header-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.2) 0%, 
        rgba(184, 148, 31, 0.15) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.premium-player-icon {
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.2) 0%, 
        rgba(55, 212, 85, 0.15) 100%);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.premium-panel-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.10em;
    margin-left: 10px;
}

.premium-player-name {
    color: #00ff88;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    text-shadow: 
        0 0 10px rgba(0, 255, 136, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.5);
        margin-left: 10px;    
}

.premium-panel-subtitle {
    font-size: 0.75rem;
    color: rgba(212, 175, 55, 0.9);
    margin: 0.125rem 0 0 0;
    padding: 0;
    line-height: 1.4;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 10px;
}

.premium-close-btn {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(156, 163, 175, 0.7);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.premium-close-btn:hover {
    color: #ffffff;
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    transform: rotate(90deg);
}

/* Panel Content */
.premium-panel-content {
    padding: 1.5rem;
}

/* Premium Form */
.premium-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.premium-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.premium-form-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(212, 175, 55, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.premium-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: 
        linear-gradient(135deg, 
            rgba(10, 10, 10, 0.95) 0%, 
            rgba(5, 5, 5, 0.98) 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 0 0 rgba(212, 175, 55, 0);
}

.premium-form-input::placeholder {
    color: rgba(156, 163, 175, 0.5);
}

.premium-form-input:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 0 3px rgba(212, 175, 55, 0.2),
        0 0 20px rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.98) 0%, 
        rgba(10, 10, 10, 0.99) 100%);
}

.premium-form-submit {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.9) 0%, 
        rgba(184, 148, 31, 0.9) 100%);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 10px;
    color: #000000;
    font-weight: 800;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.premium-form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.premium-form-submit:hover::before {
    left: 100%;
}

.premium-form-submit:hover {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 1) 0%, 
        rgba(184, 148, 31, 1) 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 24px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.premium-form-submit span {
    position: relative;
    z-index: 1;
}

/* Panel Divider */
.premium-panel-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.3), 
        transparent);
    margin: 1.25rem 0;
}

/* Panel Links */
.premium-panel-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.premium-link-primary,
.premium-link-secondary {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.premium-link-primary {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.premium-link-primary:hover {
    color: #ffffff;
    background: rgba(0, 255, 136, 0.25);
    border-color: rgba(0, 255, 136, 0.4);
    text-shadow: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.2);
}

.premium-link-secondary {
    color: rgba(212, 175, 55, 0.9);
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.premium-link-secondary:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

/* Premium Menu List */
.premium-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.premium-menu-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.95) 0%, 
        rgba(5, 5, 5, 0.98) 100%);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.premium-menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(0, 255, 136, 0.2), transparent);
    transition: width 0.3s ease;
}

.premium-menu-item:hover::before {
    width: 100%;
}

.premium-menu-item:hover {
    border-color: rgba(0, 255, 136, 0.5);
    background: linear-gradient(135deg, 
        rgba(15, 25, 15, 0.98) 0%, 
        rgba(10, 20, 10, 0.99) 100%);
    color: #00ff88;
    transform: translateX(4px);
    box-shadow: 
        0 4px 16px rgba(0, 255, 136, 0.2),
        0 0 20px rgba(0, 255, 136, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.premium-menu-icon {
    font-size: 1.25rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.premium-menu-item:hover .premium-menu-icon {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.4);
    transform: scale(1.1) rotate(5deg);
}

.premium-menu-item span {
    flex: 1;
    position: relative;
    z-index: 1;
}

.premium-menu-arrow {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.premium-menu-item:hover .premium-menu-arrow {
    color: #00ff88;
    transform: translateX(4px);
}

.premium-menu-logout {
    margin-top: 0.5rem;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(184, 148, 31, 0.12) 100%);
    border-color: rgba(212, 175, 55, 0.3);
    justify-content: center;
}

.premium-menu-logout:hover {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.25) 0%, 
        rgba(184, 148, 31, 0.2) 100%);
    border-color: rgba(212, 175, 55, 0.5);
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.15);
}

.premium-menu-logout::before {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.2), transparent);
}

@media (max-width: 640px) {
    .premium-icon-btn {
        width: 3.75rem;
        height: 3.75rem;
    }
    
    .premium-icon-svg {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .premium-account-panel {
        width: calc(100vw - 3rem);
        max-width: 320px;
    }
}

/* Language Switcher Container */
.language-switcher-container {
    position: fixed !important;
    left: 1.5rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 50;
}

.language-switcher-container .flex {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
}

/* Language Switcher Button - Simple with Flag Image */
.language-btn {
    position: relative;
    width: 60px;
    height: 60px;
    padding: 8px;
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #d4af37;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.language-btn .language-flag {
    width: 28px;
    height: 20px;
    display: block;
    border-radius: 3px;
    overflow: hidden;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.language-btn span {
    position: relative;
    z-index: 1;
    font-size: 0.6875rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.language-btn:hover {
    border-color: rgba(212, 175, 55, 0.6);
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.language-btn:hover .language-flag {
    opacity: 1;
    transform: scale(1.05);
}

.language-btn.active {
    border-color: rgba(0, 255, 136, 0.6);
    background: rgba(0, 255, 136, 0.08);
    color: #00ff88;
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.language-btn.active .language-flag {
    opacity: 1;
    box-shadow: 0 0 8px rgba(0, 255, 136, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-switcher-container {
        left: 0.75rem !important;
    }
    
    .language-btn {
        width: 50px;
        height: 50px;
        font-size: 0.75rem;
    }
    
    .language-btn:hover {
        transform: translateX(4px) scale(1.06);
    }
    
    .language-btn.active {
        transform: translateX(4px) scale(1.04);
    }
}

/* Empire Flags in Tables - Bigger and Centered */
.empire-flag {
    width: 32px !important;
    height: 32px !important;
    
    
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.empire-flag:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.empire-unknown {
    color: #888;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    display: block;
}

/* Players Table Styles */
.players-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.players-table th {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #d4af37;
    font-weight: 600;
    padding: 16px 12px;
    text-align: center;
    border-bottom: 2px solid #d4af37;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.players-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid rgba(42, 42, 42, 0.6);
    color: #fff;
    font-size: 0.875rem;
}

.players-table .rank {
    font-weight: 600;
    color: #00ff88;
    font-size: 0.9rem;
}

.players-table .name {
    font-weight: 500;
    color: #fff;
    text-align: left;
    padding-left: 16px;
}

.players-table .empire {
    width: 80px;
    padding: 8px 12px;
    text-align: center;
}

.players-table tbody tr:hover {
    background: rgba(0, 255, 136, 0.05);
    transition: background 0.2s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .empire-flag {
        width: 28px !important;
        height: 28px !important;
    }
    
    .players-table .empire {
        width: 60px;
        padding: 6px 8px;
    }
}
. e m p i r e - f l a g   {   b o r d e r :   n o n e   ! i m p o r t a n t ;   b o x - s h a d o w :   n o n e   ! i m p o r t a n t ;   o u t l i n e :   n o n e   ! i m p o r t a n t ;   }  
 
 . e m p i r e - f l a g : h o v e r , 
 . e m p i r e - f l a g : f o c u s , 
 . e m p i r e - f l a g : a c t i v e   { 
         b o r d e r :   n o n e   ! i m p o r t a n t ; 
         b o x - s h a d o w :   n o n e   ! i m p o r t a n t ; 
         o u t l i n e :   n o n e   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   0   ! i m p o r t a n t ; 
         b a c k g r o u n d :   n o n e   ! i m p o r t a n t ; 
         p a d d i n g :   0   ! i m p o r t a n t ; 
         m a r g i n :   0   ! i m p o r t a n t ; 
 } 
 
 . e m p i r e   i m g , 
 . e m p i r e - c e l l   i m g , 
 t d . e m p i r e   i m g   { 
         b o r d e r :   n o n e   ! i m p o r t a n t ; 
         b o x - s h a d o w :   n o n e   ! i m p o r t a n t ; 
         o u t l i n e :   n o n e   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   0   ! i m p o r t a n t ; 
 }  
 