/* Reset și Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom colors for donation theme */
:root {
    --color-dark-red: #8B0000;
    --color-deep-red: #B22222;
    --color-crimson: #DC143C;
    --color-dark-gray: #1a1a1a;
    --color-darker-gray: #0d0d0d;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.static { position: static; }

.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.bottom-8 { bottom: 2rem; }

.left-1\/2 { left: 50%; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.transform { transform: translateX(-50%); }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.w-4 { width: 1rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-20 { width: 5rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }

.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }

.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-8 { padding-top: 2rem; }
.pb-8 { padding-bottom: 2rem; }
.p-8 { padding: 2rem; }

.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.gap-3 { gap: 0.75rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.flex-col { flex-direction: column; }
.flex-col-reverse { flex-direction: column-reverse; }

.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }

.overflow-hidden { overflow: hidden; }

.min-h-screen { min-height: 100vh; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-no-repeat { background-repeat: no-repeat; }

.object-cover { object-fit: cover; }

.text-white { color: #ffffff; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-red-600 { color: #dc2626; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-8xl { font-size: 6rem; }

.font-light { font-weight: 300; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-relaxed { line-height: 1.625; }

.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.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; }
.duration-300 { transition-duration: 300ms; }

.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:from-red-700:hover { --tw-gradient-from: #b91c1c; }
.hover\:to-red-900:hover { --tw-gradient-to: #7f1d1d; }

.group:hover .group-hover\:scale-110 { transform: scale(1.1); }

.animate-bounce { animation: bounce 1s infinite; }

@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8, 0, 1, 1); }
    50% { transform: none; animation-timing-function: cubic-bezier(0, 0, 0.2, 1); }
}

/* Background Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }

.from-red-600 { --tw-gradient-from: #dc2626; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); }
.from-red-700 { --tw-gradient-from: #b91c1c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(185, 28, 28, 0)); }
.from-red-800 { --tw-gradient-from: #991b1b; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(153, 27, 27, 0)); }
.to-red-800 { --tw-gradient-to: #991b1b; }
.to-red-900 { --tw-gradient-to: #7f1d1d; }
.to-transparent { --tw-gradient-to: transparent; }

.from-gray-900 { --tw-gradient-from: #111827; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(17, 24, 39, 0)); }
.to-black { --tw-gradient-to: #000000; }

/* Custom Tailwind colors */
.bg-crimson { background-color: var(--color-crimson); }
.bg-deep-red { background-color: var(--color-deep-red); }
.bg-dark-gray { background-color: var(--color-dark-gray); }
.bg-darker-gray { background-color: var(--color-darker-gray); }
.bg-black { background-color: #000000; }

.text-crimson { color: var(--color-crimson); }
.text-deep-red { color: var(--color-deep-red); }

.border-crimson { border-color: var(--color-crimson); }
.border-gray-800 { border-color: #1f2937; }

.from-crimson { --tw-gradient-from: var(--color-crimson); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 20, 60, 0)); }
.to-deep-red { --tw-gradient-to: var(--color-deep-red); }
.from-deep-red { --tw-gradient-from: var(--color-deep-red); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(178, 34, 34, 0)); }
.to-crimson { --tw-gradient-to: var(--color-crimson); }

/* Custom styles for donation page */
.glass-effect {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(220, 20, 60, 0.2);
}

.glow-red {
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
}

.text-glow-red {
    text-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
}

.transition-smooth {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced effects */
.glow-red:hover {
    box-shadow: 0 0 30px rgba(220, 20, 60, 0.5);
}

.glass-effect:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(220, 20, 60, 0.4);
}

.text-glow-red:hover {
    text-shadow: 0 0 15px rgba(220, 20, 60, 0.7);
}

/* Additional utility classes */
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }
.bg-black\/95 { background-color: rgba(0, 0, 0, 0.95); }
.bg-red-600\/20 { background-color: rgba(220, 38, 38, 0.2); }
.bg-red-600\/30 { background-color: rgba(220, 38, 38, 0.3); }
.bg-red-600\/50 { background-color: rgba(220, 38, 38, 0.5); }

.border-red-800\/30 { border-color: rgba(153, 27, 27, 0.3); }
.border-red-600\/50 { border-color: rgba(220, 38, 38, 0.5); }
.border-red-500 { border-color: #ef4444; }
.border-red-400 { border-color: #f87171; }

.hover\:text-white:hover { color: #ffffff; }
.hover\:text-crimson:hover { color: var(--color-crimson); }
.hover\:border-red-600\/50:hover { border-color: rgba(220, 38, 38, 0.5); }
.hover\:border-red-500:hover { border-color: #ef4444; }
.hover\:border-red-400:hover { border-color: #f87171; }

.from-red-600\/20 { --tw-gradient-from: rgba(220, 38, 38, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220, 38, 38, 0)); }

.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* Mobile menu specific */
#mobile-menu { display: none; }
#mobile-menu.hidden { display: none !important; }

/* Navbar scroll effect */
#navbar.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }
#navbar.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* Additional positioning */
.-top-4 { top: -1rem; }
.-translate-x-1\/2 { transform: translateX(-50%); }

/* Additional sizing */
.w-0 { width: 0; }
.h-0\.5 { height: 0.125rem; }

/* Additional responsive */
@media (min-width: 768px) {
    .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 { display: flex; }
    .md\:hidden { display: none; }
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-5xl { font-size: 3rem; }
    .md\:text-6xl { font-size: 3.75rem; }
    .md\:text-8xl { font-size: 6rem; }
    .md\:w-96 { width: 24rem; }
    .md\:h-96 { height: 24rem; }
    .md\:flex-row { flex-direction: row; }
    .md\:mb-0 { margin-bottom: 0; }
    .md\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
    .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .md\:space-x-8 > * + * { margin-left: 2rem; }
    .md\:space-y-4 > * + * { margin-top: 1rem; }
    .md\:gap-8 { gap: 2rem; }
    .md\:mb-4 { margin-bottom: 1rem; }
    .md\:mb-6 { margin-bottom: 1.5rem; }
    .md\:mb-8 { margin-bottom: 2rem; }
    .md\:mb-12 { margin-bottom: 3rem; }
    .md\:mb-16 { margin-bottom: 4rem; }
    .md\:mb-20 { margin-bottom: 5rem; }
    .md\:text-left { text-align: left; }
    .md\:text-center { text-align: center; }
    .md\:justify-between { justify-content: space-between; }
    .md\:items-center { align-items: center; }
    .md\:max-w-2xl { max-width: 42rem; }
    .md\:max-w-4xl { max-width: 56rem; }
    .md\:max-w-5xl { max-width: 64rem; }
    .md\:max-w-6xl { max-width: 72rem; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:block { display: block; }
    .md\:inline-block { display: inline-block; }
    .md\:inline-flex { display: inline-flex; }
}

@media (min-width: 640px) {
    .sm\:block { display: block; }
    .sm\:hidden { display: none; }
    .sm\:flex { display: flex; }
    .sm\:grid { display: grid; }
    .sm\:inline-block { display: inline-block; }
    .sm\:inline-flex { display: inline-flex; }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #DC143C;
    border-radius: 4px;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional effects */
.drop-shadow-2xl {
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

/* Group hover effects */
.group:hover .group-hover\:w-full { width: 100%; }

/* Additional positioning classes */
.absolute.-top-4 { top: -1rem; }
.absolute.-bottom-1 { bottom: -0.25rem; }
.absolute.left-0 { left: 0; }

/* Subtle Footer Styles */
.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-darker-gray {
    --tw-gradient-from: var(--color-darker-gray);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(13, 13, 13, 0));
}

.to-transparent {
    --tw-gradient-to: transparent;
}

/* Additional sizing for footer */
.w-8 { width: 2rem; }
.h-8 { height: 2rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }

/* Additional text sizes */
.text-xs { font-size: 0.75rem; }

/* Additional spacing */
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.mb-8 { margin-bottom: 2rem; }

/* Additional colors */
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }

/* Additional flex utilities */
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.gap-8 { gap: 2rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }

/* Additional responsive for footer */
@media (min-width: 768px) {
    .md\:flex-row { flex-direction: row; }
    .md\:justify-between { justify-content: space-between; }
    .md\:items-center { align-items: center; }
    .md\:mb-0 { margin-bottom: 0; }
}

/* Elegant Footer Styles */
.elegant-bottom {
    position: relative;
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(13, 13, 13, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(220, 20, 60, 0.1);
}

.elegant-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-crimson), transparent);
    opacity: 0.6;
}

.elegant-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.elegant-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.elegant-dot {
    width: 8px;
    height: 8px;
    background: var(--color-crimson);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
    animation: elegant-pulse 2s ease-in-out infinite;
}

.elegant-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.elegant-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.elegant-link {
    font-size: 0.8rem;
    color: #9ca3af;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s ease;
}

.elegant-link:hover {
    color: var(--color-crimson);
    transform: translateY(-1px);
}

.elegant-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-crimson);
    transition: width 0.3s ease;
}

.elegant-link:hover::after {
    width: 100%;
}

@keyframes elegant-pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
        transform: scale(1.1);
    }
}

/* Mobile responsive for elegant footer */
@media (max-width: 768px) {
    .elegant-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .elegant-links {
        gap: 1.5rem;
    }
    
    .elegant-link {
        font-size: 0.85rem;
    }
}

/* Ultra Elegant Footer - Premium Level */
.ultra-elegant-bottom {
    position: relative;
    padding: 3rem 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(13, 13, 13, 0.98) 50%, 
        rgba(0, 0, 0, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(220, 20, 60, 0.2);
    overflow: hidden;
}

/* Sophisticated Top Line */
.sophisticated-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    z-index: 10;
}

.line-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(220, 20, 60, 0.3) 20%, 
        rgba(220, 20, 60, 0.8) 50%, 
        rgba(220, 20, 60, 0.3) 80%, 
        transparent 100%);
    filter: blur(2px);
    animation: line-glow-pulse 3s ease-in-out infinite;
}

.line-center {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        var(--color-crimson), 
        transparent);
    animation: line-center-pulse 2s ease-in-out infinite;
}

.line-particles {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 7px;
    background: radial-gradient(circle at 20% 50%, rgba(220, 20, 60, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(220, 20, 60, 0.4) 0%, transparent 50%);
    animation: particles-float 4s ease-in-out infinite;
}

/* Premium Content */
.premium-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 5;
}

/* Luxury Brand */
.luxury-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-orb {
    position: relative;
    width: 16px;
    height: 16px;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--color-crimson);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(220, 20, 60, 0.8);
    animation: orb-core-pulse 2s ease-in-out infinite;
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 1px solid rgba(220, 20, 60, 0.4);
    border-radius: 50%;
    animation: orb-ring-rotate 4s linear infinite;
}

.orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: orb-glow-pulse 3s ease-in-out infinite;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.8px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 300;
    color: #9ca3af;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* Sophisticated Navigation */
.sophisticated-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem;
}

.nav-icon {
    font-size: 1.2rem;
    color: #9ca3af;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(220, 20, 60, 0.3));
}

.nav-text {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-crimson), transparent);
    transition: width 0.4s ease;
}

.nav-item:hover {
    transform: translateY(-2px);
}

.nav-item:hover .nav-icon {
    color: var(--color-crimson);
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.6));
}

.nav-item:hover .nav-text {
    color: var(--color-crimson);
}

.nav-item:hover .nav-underline {
    width: 100%;
}

/* Elegant Status */
.elegant-status {
    display: flex;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: status-pulse 2s ease-in-out infinite;
}

.status-text {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(220, 20, 60, 0.3);
    border-radius: 50%;
    animation: floating-dot-float 6s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.dot-3 {
    top: 40%;
    left: 80%;
    animation-delay: 4s;
}

/* Advanced Animations */
@keyframes line-glow-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes line-center-pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
}

@keyframes particles-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes orb-core-pulse {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(220, 20, 60, 0.8);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        box-shadow: 0 0 25px rgba(220, 20, 60, 1);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes orb-ring-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orb-glow-pulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes status-pulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
        opacity: 0.8;
    }
}

@keyframes floating-dot-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-10px) scale(1.2);
        opacity: 0.6;
    }
}

/* Mobile Responsive for Ultra Elegant */
@media (max-width: 768px) {
    .premium-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .sophisticated-nav {
        gap: 2rem;
    }
    
    .nav-item {
        padding: 0.3rem;
    }
    
    .brand-text {
        text-align: center;
    }
    
    .floating-dot {
        display: none;
    }
}

/* Ultra Premium Contact Section */
.premium-contact-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.98) 0%, 
        rgba(13, 13, 13, 0.95) 50%, 
        rgba(0, 0, 0, 0.98) 100%);
    overflow: hidden;
}

/* Sophisticated Background Layers */
.contact-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(220, 20, 60, 0.05) 0%, 
        transparent 70%);
}

.contact-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(220, 20, 60, 0.05) 0%, transparent 50%);
    animation: contact-particles-float 8s ease-in-out infinite;
}

.contact-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(220, 20, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 20, 60, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: contact-grid-move 20s linear infinite;
}

/* Premium Content */
.premium-contact-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Elegant Header */
.contact-header {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.contact-title-orb {
    position: relative;
    width: 24px;
    height: 24px;
}

.title-orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--color-crimson);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
    animation: title-orb-pulse 2.5s ease-in-out infinite;
}

.title-orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid rgba(220, 20, 60, 0.4);
    border-radius: 50%;
    animation: title-orb-rotate 5s linear infinite;
}

.title-orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: title-orb-glow-pulse 3.5s ease-in-out infinite;
}

.contact-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-main {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: title-main-glow 4s ease-in-out infinite;
}

.title-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #9ca3af;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Sophisticated Description */
.contact-description {
    margin-bottom: 4rem;
    position: relative;
}

.description-text {
    font-size: 1.1rem;
    color: #d1d5db;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
}

.description-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--color-crimson), 
        transparent);
    margin: 0 auto;
    animation: description-line-pulse 3s ease-in-out infinite;
}

/* Premium Contact Cards */
.premium-contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(13, 13, 13, 0.6) 100%);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.05) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 20, 60, 0.4);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.1);
}

.contact-card:hover::before {
    opacity: 1;
}

.card-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.icon-orb {
    position: relative;
    width: 20px;
    height: 20px;
}

.icon-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: var(--color-crimson);
    animation: icon-core-pulse 2s ease-in-out infinite;
}

.icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 50%;
    animation: icon-ring-rotate 4s linear infinite;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: icon-glow-pulse 3s ease-in-out infinite;
}

.card-content {
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.card-subtitle {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    font-weight: 300;
}

.card-link {
    margin-top: 1rem;
}

.contact-link {
    position: relative;
    text-decoration: none;
    color: var(--color-crimson);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
}

.link-underline {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-crimson);
    transition: width 0.3s ease;
}

.contact-link:hover .link-underline {
    width: 100%;
}

.card-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: status-dot-pulse 2s ease-in-out infinite;
}

.status-dot.online {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-text {
    font-size: 0.7rem;
    color: #9ca3af;
    font-weight: 400;
}

/* Floating Elements */
.contact-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(220, 20, 60, 0.3);
    animation: floating-icon-float 6s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.icon-3 {
    top: 60%;
    left: 8%;
    animation-delay: 3s;
}

.icon-4 {
    top: 70%;
    right: 12%;
    animation-delay: 4.5s;
}

/* Advanced Contact Animations */
@keyframes contact-particles-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes contact-grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes title-orb-pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(220, 20, 60, 1);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes title-orb-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes title-orb-glow-pulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes title-main-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.1); }
    50% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.2); }
}

@keyframes description-line-pulse {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

@keyframes icon-core-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes icon-ring-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes icon-glow-pulse {
    0%, 100% { opacity: 0.15; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes status-dot-pulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
        opacity: 0.8;
    }
}

@keyframes floating-icon-float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Unified Premium Container */
.unified-premium-container {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/dracula2-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: 
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.85) 0%, 
            rgba(13, 13, 13, 0.80) 50%, 
            rgba(0, 0, 0, 0.85) 100%),
        url('../images/dracula2-bg.jpg');
    background-size: cover, cover;
    background-position: center, top;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    overflow: hidden;
}

/* Single Sophisticated Background */
.unified-bg-layers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.unified-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(220, 20, 60, 0.05) 0%, 
        transparent 70%);
}

.unified-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(220, 20, 60, 0.05) 0%, transparent 50%);
    animation: unified-particles-float 8s ease-in-out infinite;
}

.unified-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(220, 20, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 20, 60, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: unified-grid-move 20s linear infinite;
}

/* Background Image Layer */
.unified-image-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 2;
}

.unified-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* All Content */
.unified-content {
    position: relative;
    z-index: 10;
}

/* Ultra Premium Hero Section */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

/* Hero Background Effects */
.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: hero-orb-float 8s ease-in-out infinite;
}

.hero-glow-orb.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.3) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-glow-orb.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: 2.5s;
}

.hero-glow-orb.orb-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.25) 0%, transparent 70%);
    top: 40%;
    left: 70%;
    animation-delay: 5s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Premium Title Container */
.premium-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.title-orb-container {
    display: flex;
    justify-content: center;
}

.title-orb {
    position: relative;
    width: 30px;
    height: 30px;
}

.title-orb .orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: var(--color-crimson);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
    animation: title-orb-core-pulse 2.5s ease-in-out infinite;
}

.title-orb .orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid rgba(220, 20, 60, 0.4);
    border-radius: 50%;
    animation: title-orb-ring-rotate 4s linear infinite;
}

.title-orb .orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: title-orb-glow-pulse 3.5s ease-in-out infinite;
}

/* Elegant Title */
.elegant-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.main-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
}

.title-word {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    animation: title-word-glow 4s ease-in-out infinite;
}

.title-word.word-1 {
    animation-delay: 0s;
}

.title-word.word-2 {
    font-size: 4rem;
    color: var(--color-crimson);
    text-shadow: 0 0 40px rgba(220, 20, 60, 0.6);
    animation-delay: 0.5s;
}

.title-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--color-crimson), 
        transparent);
    margin: 1rem auto;
    animation: title-divider-pulse 3s ease-in-out infinite;
}

.subtitle-text {
    font-size: 1.2rem;
    font-weight: 300;
    color: #9ca3af;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Premium Image Container */
.premium-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
}

.frame-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, 
        rgba(220, 20, 60, 0.3), 
        rgba(220, 20, 60, 0.1), 
        rgba(220, 20, 60, 0.3));
    border-radius: 35px;
    filter: blur(10px);
    animation: frame-glow-pulse 3s ease-in-out infinite;
}

.frame-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(220, 20, 60, 0.4);
    border-radius: 30px;
    animation: frame-border-pulse 2s ease-in-out infinite;
}

.premium-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 0.4s ease;
}

.premium-image:hover {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.1) 0%, 
        transparent 50%);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

/* Floating Elements Around Image */
.image-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(220, 20, 60, 0.6);
    animation: image-floating-element-float 6s ease-in-out infinite;
}

.floating-element.elem-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-element.elem-2 {
    top: 20%;
    right: -15%;
    animation-delay: 1.5s;
}

.floating-element.elem-3 {
    bottom: 20%;
    left: -10%;
    animation-delay: 3s;
}

.floating-element.elem-4 {
    bottom: 10%;
    right: -15%;
    animation-delay: 4.5s;
}

/* Ultra Premium CTA */
.ultra-premium-cta-container {
    display: flex;
    justify-content: center;
}

.ultra-premium-cta-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.9) 0%, 
        rgba(178, 34, 34, 0.95) 100%);
    border: 2px solid rgba(220, 20, 60, 0.4);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(15px);
    cursor: pointer;
    min-width: 220px;
}

.ultra-premium-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.4);
    border-color: rgba(220, 20, 60, 0.6);
}

.btn-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ultra-premium-cta-btn:hover .btn-glow {
    opacity: 1;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: btn-particles-float 3s ease-in-out infinite;
}

.btn-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-icon {
    font-size: 1.2rem;
    animation: btn-icon-pulse 2s ease-in-out infinite;
}

.btn-text {
    font-weight: 600;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.ultra-premium-cta-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Premium Scroll Indicator */
.premium-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    z-index: 10;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, 
        var(--color-crimson), 
        transparent);
    animation: scroll-line-pulse 2s ease-in-out infinite;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--color-crimson);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.5);
    animation: scroll-dot-bounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.8rem;
    color: #9ca3af;
    letter-spacing: 0.3px;
}

/* Hero Animations */
@keyframes hero-orb-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes title-orb-core-pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(220, 20, 60, 0.8);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(220, 20, 60, 1);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes title-orb-ring-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes title-orb-glow-pulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes title-word-glow {
    0%, 100% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.2); }
    50% { text-shadow: 0 0 40px rgba(255, 255, 255, 0.4); }
}

@keyframes title-divider-pulse {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.2); }
}

@keyframes frame-glow-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes frame-border-pulse {
    0%, 100% { border-color: rgba(220, 20, 60, 0.4); }
    50% { border-color: rgba(220, 20, 60, 0.8); }
}

@keyframes image-floating-element-float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes btn-particles-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

@keyframes btn-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes scroll-line-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes scroll-dot-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* User Info & Actions */
.user-md-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 20, 60, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.md-icon {
    font-size: 1.2rem;
    animation: md-icon-pulse 2s ease-in-out infinite;
}

.md-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.md-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.md-label {
    font-size: 0.7rem;
    color: #9ca3af;
    font-weight: 500;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.user-login {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.admin-badge {
    font-size: 0.6rem;
    font-weight: 700;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.2);
    padding: 0.1rem 0.4rem;
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.logout-form {
    display: flex;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 20px;
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-1px);
}

/* Mobile User Info */
.mobile-user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.mobile-md-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 20, 60, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(220, 20, 60, 0.3);
}

.mobile-md-icon {
    font-size: 1.5rem;
    animation: md-icon-pulse 2s ease-in-out infinite;
}

.mobile-md-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-md-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.mobile-md-label {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 500;
}

.mobile-user-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.mobile-user-login {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.mobile-admin-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.mobile-logout-form {
    width: 100%;
}

.mobile-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 25px;
    color: #ef4444;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-logout-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-1px);
}

/* Animations */
@keyframes md-icon-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Ultra Premium Login Page */
.login-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.login-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.login-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/dracula2-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(0 0 0 / 90%) 50%, rgba(0, 0, 0, 0.85) 100%), url(../images/dracula2-bg.jpg);
    background-size: cover, cover;
    background-position: center, top;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
}

.login-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(220, 20, 60, 0.05) 0%, transparent 50%);
    animation: login-particles-float 8s ease-in-out infinite;
}

.login-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(220, 20, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 20, 60, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: login-grid-move 20s linear infinite;
}

/* Login Container - Pe lung în lățime */
.login-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(220, 20, 60, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 7rem;
}

/* Login Form Section */
.login-form-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Login Info Section */
.login-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

/* Login Header - Compact pentru layout orizontal */
.login-header {
    text-align: center;
    margin-bottom: 1rem;
}

.login-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 0.8rem;
}

.login-icon-orb {
    position: relative;
    width: 80px;
    height: 80px;
}

.login-icon-orb .icon-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    z-index: 3;
    animation: login-icon-pulse 2s ease-in-out infinite;
}

.login-icon-orb .icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(220, 20, 60, 0.4);
    border-radius: 50%;
    animation: login-icon-ring-rotate 4s linear infinite;
}

.login-icon-orb .icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: login-icon-glow-pulse 3s ease-in-out infinite;
}

.login-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.login-subtitle {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 300;
}

/* Login Form - Compact pentru fără scroll */
.login-form-container {
    margin-bottom: 1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.label-icon {
    font-size: 1rem;
}

.input-container {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 15px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: rgba(220, 20, 60, 0.6);
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.3);
    background: rgba(0, 0, 0, 0.8);
}

.form-input::placeholder {
    color: #6b7280;
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.1) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.form-input:focus + .input-glow {
    opacity: 1;
}

.input-error {
    border-color: rgba(239, 68, 68, 0.6) !important;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3) !important;
}

.error-message {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #ef4444;
    font-weight: 500;
}

/* Messages */
.message-success,
.message-error {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.message-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.message-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.message-icon {
    font-size: 1.2rem;
}

.message-text {
    font-size: 0.9rem;
}

/* Submit Button */
.login-submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, 
        rgba(220, 20, 60, 0.9) 0%, 
        rgba(178, 34, 34, 0.95) 100%);
    border: 2px solid rgba(220, 20, 60, 0.4);
    border-radius: 25px;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(15px);
    cursor: pointer;
    margin-top: 1rem;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(220, 20, 60, 0.4);
    border-color: rgba(220, 20, 60, 0.6);
}

.btn-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-submit-btn:hover .btn-glow {
    opacity: 1;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: btn-particles-float 3s ease-in-out infinite;
}

.btn-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-icon {
    font-size: 1.2rem;
    animation: btn-icon-pulse 2s ease-in-out infinite;
}

.btn-text {
    font-weight: 600;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.login-submit-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Info Box */
.login-info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.info-icon {
    font-size: 1.2rem;
}

.info-title {
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-bullet {
    color: #3b82f6;
    font-weight: 700;
}

.info-text {
    font-size: 0.9rem;
    color: #d1d5db;
    line-height: 1.4;
}

/* Support */
.login-support {
    text-align: center;
}

.support-text {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.5;
}

.support-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #60a5fa;
}

/* Login Animations */
@keyframes login-particles-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-10px) scale(1.1);
        opacity: 0.2;
    }
}

@keyframes login-grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes login-icon-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes login-icon-ring-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes login-icon-glow-pulse {
    0%, 100% { 
        opacity: 0.2; 
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        opacity: 0.4; 
        transform: translate(-50%, -50%) scale(1.2); 
    }
}

@keyframes btn-particles-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

@keyframes btn-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Payment Page Premium Styles */
.payment-background {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/dracula2-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background: linear-gradient(135deg, rgb(0 0 0) 0%, rgb(0 0 0 / 90%) 50%, rgba(0, 0, 0, 0.85) 100%), url(../images/dracula2-bg.jpg);
    background-size: cover, cover;
    background-position: center, top;
    background-repeat: no-repeat, no-repeat;
    background-attachment: fixed, fixed;
    overflow: hidden;
}

.payment-container {
    position: relative;
    z-index: 10;
    max-width: 6xl;
    margin: 0 auto;
    padding: 2rem 1rem;
    margin-top: 7rem;
}

.payment-header {
    text-align: center;
    margin-bottom: 3rem;
}

.payment-title {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

.payment-subtitle {
    color: #9ca3af;
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .payment-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.payment-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(220, 20, 60, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.payment-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-detail-label {
    color: #9ca3af;
}

.payment-detail-value {
    color: #ffffff;
    font-weight: 600;
}

.payment-detail-value.md {
    color: #dc143c;
    font-weight: bold;
    font-size: 1.125rem;
}

.payment-detail-value.price {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.125rem;
}

.payment-description {
    padding-top: 1rem;
    border-top: 1px solid #374151;
}

.payment-description-label {
    color: #9ca3af;
}

.payment-description-text {
    color: #ffffff;
    margin-top: 0.5rem;
}

.payment-form {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(220, 20, 60, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.payment-form-group {
    margin-bottom: 1.5rem;
}

.payment-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.payment-form-input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.payment-form-input:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.payment-form-input::placeholder {
    color: #9ca3af;
}

.payment-form-error {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #f87171;
}

.payment-form-help {
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.payment-info-display {
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
}

.payment-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.payment-info-row:last-child {
    margin-bottom: 0;
}

.payment-info-label {
    color: #9ca3af;
    font-weight: 500;
}

.payment-info-value {
    color: #ffffff;
    font-weight: 600;
}

.payment-checkbox-group {
    margin-bottom: 1.5rem;
}

.payment-checkbox-item {
    display: flex;
    align-items: flex-start;
}

.payment-checkbox {
    margin-top: 0.25rem;
    height: 1rem;
    width: 1rem;
    color: #3b82f6;
    background: rgba(55, 65, 81, 0.8);
    border: 1px solid #4b5563;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.payment-checkbox:focus {
    outline: none;
    border-color: #dc143c;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.payment-checkbox-label {
    margin-left: 0.5rem;
    font-size: 0.875rem;
    color: #d1d5db;
}

.payment-checkbox-link {
    color: #60a5fa;
    transition: color 0.3s ease;
}

.payment-checkbox-link:hover {
    color: #93c5fd;
}

.payment-summary {
    background: rgba(55, 65, 81, 0.8);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.payment-summary-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.payment-summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-summary-row {
    display: flex;
    justify-content: space-between;
}

.payment-summary-label {
    color: #9ca3af;
}

.payment-summary-value {
    color: #ffffff;
}

.payment-summary-value.md {
    color: #dc143c;
}

.payment-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.125rem;
    font-weight: 600;
    border-top: 1px solid #4b5563;
    padding-top: 0.5rem;
}

.payment-summary-total-label {
    color: #ffffff;
}

.payment-summary-total-value {
    color: #ffffff;
}

.payment-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #dc143c, #8b0000);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.payment-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
}

.payment-submit-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.payment-security-notice {
    margin-top: 2rem;
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid #3b82f6;
    border-radius: 0.5rem;
    padding: 1rem;
}

.payment-security-content {
    display: flex;
    align-items: flex-start;
}

.payment-security-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #60a5fa;
    margin-top: 0.125rem;
    margin-right: 0.75rem;
}

.payment-security-title {
    color: #60a5fa;
    font-weight: 600;
}

.payment-security-text {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.payment-back-link {
    margin-top: 2rem;
    text-align: center;
}

.payment-back-link a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.payment-back-link a:hover {
    color: #ffffff;
}

/* Mobile Responsive for Payment */
@media (max-width: 768px) {
    .payment-container {
        padding: 1rem;
    }
    
    .payment-title {
        font-size: 2rem;
    }
    
    .payment-subtitle {
        font-size: 1rem;
    }
    
    .payment-card,
    .payment-form {
        padding: 1rem;
    }
}

/* Mobile Responsive for Login */
@media (max-width: 768px) {
    .login-container {
        padding: 2rem;
        margin: 1rem;
    }
    
    .login-title {
        font-size: 2rem;
    }
    
    .login-subtitle {
        font-size: 1rem;
    }
    
    .login-icon-orb {
        width: 60px;
        height: 60px;
    }
    
    .login-icon-orb .icon-core {
        font-size: 1.5rem;
    }
    
    .login-icon-orb .icon-ring {
        width: 60px;
        height: 60px;
    }
    
    .login-icon-orb .icon-glow {
        width: 80px;
        height: 80px;
    }
    
    .form-input {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .login-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .login-particles,
    .login-grid {
        display: none;
    }
}

/* Admin Panel Button */
.admin-panel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 15px;
    padding: 0.8rem 1.5rem;
    color: #a855f7;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-right: 1rem;
}

.admin-panel-btn:hover {
    background: rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

.admin-panel-btn .btn-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.admin-panel-btn .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.admin-panel-btn:hover .btn-glow {
    width: 200px;
    height: 200px;
}

.admin-panel-btn .btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.admin-panel-btn .btn-particles::before,
.admin-panel-btn .btn-particles::after {
    content: '✨';
    position: absolute;
    font-size: 0.8rem;
    opacity: 0;
    animation: btn-particles-float 2s ease-in-out infinite;
}

.admin-panel-btn .btn-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.admin-panel-btn .btn-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.admin-panel-btn:hover .btn-particles::before,
.admin-panel-btn:hover .btn-particles::after {
    opacity: 1;
}

.admin-panel-btn .btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.admin-panel-btn .btn-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.admin-panel-btn:hover .btn-icon {
    transform: scale(1.1);
}

.admin-panel-btn .btn-text {
    font-weight: 600;
}

.admin-panel-btn .btn-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.admin-panel-btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* Mobile Admin Panel Button */
.mobile-admin-panel-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    color: #a855f7;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.mobile-admin-panel-btn:hover {
    background: rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

.mobile-admin-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mobile-admin-panel-btn:hover .mobile-admin-icon {
    transform: scale(1.1);
}

.mobile-admin-text {
    font-weight: 600;
}

.register-link-btn:hover {
    background: rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.register-link-btn .btn-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.register-link-btn .btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.register-link-btn:hover .btn-glow {
    width: 200px;
    height: 200px;
}

.register-link-btn .btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.register-link-btn .btn-particles::before,
.register-link-btn .btn-particles::after {
    content: '✨';
    position: absolute;
    font-size: 0.8rem;
    opacity: 0;
    animation: btn-particles-float 2s ease-in-out infinite;
}

.register-link-btn .btn-particles::before {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.register-link-btn .btn-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.register-link-btn:hover .btn-particles::before,
.register-link-btn:hover .btn-particles::after {
    opacity: 1;
}

.register-link-btn .btn-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.register-link-btn .btn-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.register-link-btn:hover .btn-icon {
    transform: scale(1.1);
}

.register-link-btn .btn-text {
    font-weight: 600;
}

.register-link-btn .btn-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.register-link-btn:hover .btn-arrow {
    transform: translateX(3px);
}

/* Mobile Register Link */
.mobile-register-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.mobile-register-link:hover {
    background: rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.mobile-register-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mobile-register-link:hover .mobile-register-icon {
    transform: scale(1.1);
}

.mobile-register-text {
    font-weight: 600;
}

.register-container {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.register-container:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateY(-2px);
}

.register-icon {
    font-size: 2rem;
    animation: register-icon-pulse 2s ease-in-out infinite;
}

.register-content {
    flex: 1;
}

.register-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 0.3rem;
}

.register-text {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.register-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 15px;
    padding: 0.8rem 1.5rem;
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.register-link:hover {
    background: rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

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

.register-link:hover::before {
    left: 100%;
}

.link-text {
    position: relative;
    z-index: 2;
}

.link-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.register-link:hover .link-arrow {
    transform: translateX(3px);
}

/* Register Icon Animation */
@keyframes register-icon-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Mobile Responsive for Register */
@media (max-width: 768px) {
    .register-container {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .register-icon {
        font-size: 1.5rem;
    }
    
    .register-title {
        font-size: 1rem;
    }
    
    .register-text {
        font-size: 0.8rem;
    }
    
    .register-link {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

.packages-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    margin-top: 30px;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    position: relative;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Unified Floating Elements */
.unified-floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.unified-floating-elements .floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(220, 20, 60, 0.3);
    animation: unified-floating-icon-float 6s ease-in-out infinite;
}

.unified-floating-elements .icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.unified-floating-elements .icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.unified-floating-elements .icon-3 {
    top: 60%;
    left: 8%;
    animation-delay: 3s;
}

.unified-floating-elements .icon-4 {
    top: 70%;
    right: 12%;
    animation-delay: 4.5s;
}

/* Unified Animations */
@keyframes unified-particles-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes unified-grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes unified-floating-icon-float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Mobile Responsive for Unified Container */
@media (max-width: 768px) {
    .unified-premium-container {
        min-height: auto;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .packages-section,
    .contact-section {
        padding: 4rem 0;
    }
    
    .unified-floating-elements .floating-icon {
        display: none;
    }
    
    .unified-image-layer {
        background-attachment: scroll;
    }
}

/* Ultra Premium Navigation */
.premium-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.premium-navbar.scrolled {
    padding: 0.5rem 0;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

/* Sophisticated Background Layers */
.navbar-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.navbar-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(13, 13, 13, 0.8) 50%, 
        rgba(0, 0, 0, 0.9) 100%);
    backdrop-filter: blur(10px);
}

.navbar-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(220, 20, 60, 0.1) 0%, transparent 50%);
    animation: navbar-particles-float 6s ease-in-out infinite;
}

.navbar-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(220, 20, 60, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 20, 60, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: navbar-grid-move 15s linear infinite;
}

/* Premium Content */
.premium-navbar-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Luxury Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-orb {
    position: relative;
    width: 14px;
    height: 14px;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    background: var(--color-crimson);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(220, 20, 60, 0.8);
    animation: navbar-orb-pulse 2.5s ease-in-out infinite;
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border: 1px solid rgba(220, 20, 60, 0.4);
    border-radius: 50%;
    animation: navbar-orb-rotate 4s linear infinite;
}

.orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: navbar-orb-glow-pulse 3s ease-in-out infinite;
}

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

.brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.brand-tagline {
    font-size: 0.6rem;
    font-weight: 300;
    color: #9ca3af;
    letter-spacing: 0.3px;
    opacity: 0.8;
}

/* Sophisticated Navigation */
.sophisticated-navbar-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-right: -60px;
}

.navbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem;
}

.nav-icon {
    font-size: 1rem;
    color: #9ca3af;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 4px rgba(220, 20, 60, 0.3));
}

.nav-text {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-crimson), transparent);
    transition: width 0.3s ease;
}

.navbar-item:hover {
    transform: translateY(-1px);
}

.navbar-item:hover .nav-icon {
    color: var(--color-crimson);
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(220, 20, 60, 0.6));
}

.navbar-item:hover .nav-text {
    color: var(--color-crimson);
}

.navbar-item:hover .nav-underline {
    width: 100%;
}

/* Ultra Premium CTA */
.premium-cta {
    display: flex;
    align-items: center;
}

.ultra-premium-cta-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(13, 13, 13, 0.8) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(15px);
    cursor: pointer;
    min-width: 180px;
}

.ultra-premium-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.4);
    border-color: rgba(220, 20, 60, 0.6);
}

/* Sophisticated Background Layers */
.cta-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(220, 20, 60, 0.1) 0%, 
        transparent 70%);
}

.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.15) 0%, transparent 50%);
    animation: cta-particles-float 4s ease-in-out infinite;
}

.cta-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(220, 20, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 20, 60, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: cta-grid-move 12s linear infinite;
}

/* Premium Content */
.cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
}

/* Luxury Icon */
.cta-icon-container {
    display: flex;
    align-items: center;
}

.cta-icon-orb {
    position: relative;
    width: 18px;
    height: 18px;
}

.cta-icon-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    color: var(--color-crimson);
    animation: cta-icon-core-pulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(220, 20, 60, 0.6));
}

.cta-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    border: 1px solid rgba(220, 20, 60, 0.4);
    border-radius: 50%;
    animation: cta-icon-ring-rotate 3s linear infinite;
}

.cta-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: cta-icon-glow-pulse 3.5s ease-in-out infinite;
}

/* Elegant Text */
.cta-text-container {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
}

.cta-main-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.4px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.cta-sub-text {
    font-size: 0.6rem;
    font-weight: 300;
    color: #9ca3af;
    letter-spacing: 0.3px;
    opacity: 0.8;
}

/* Status Indicator */
.cta-status {
    display: flex;
    align-items: center;
}

.cta-status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: cta-status-pulse 2s ease-in-out infinite;
}

/* Floating Elements */
.cta-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.cta-floating-elements .floating-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(220, 20, 60, 0.4);
    border-radius: 50%;
    animation: cta-floating-dot-float 5s ease-in-out infinite;
}

.cta-floating-elements .dot-1 {
    top: 25%;
    left: 10%;
    animation-delay: 0s;
}

.cta-floating-elements .dot-2 {
    top: 75%;
    right: 15%;
    animation-delay: 2.5s;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #9ca3af;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover .hamburger-line {
    background: var(--color-crimson);
}

.mobile-menu-btn.active .line-1 {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .line-2 {
    opacity: 0;
}

.mobile-menu-btn.active .line-3 {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Premium Mobile Menu */
.premium-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.98) 0%, 
        rgba(13, 13, 13, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(220, 20, 60, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
}

.premium-mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(220, 20, 60, 0.05) 0%, 
        transparent 70%);
}

.mobile-menu-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
}

.mobile-brand-orb {
    position: relative;
    width: 12px;
    height: 12px;
}

.mobile-orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--color-crimson);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(220, 20, 60, 0.8);
    animation: mobile-orb-pulse 2s ease-in-out infinite;
}

.mobile-orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border: 1px solid rgba(220, 20, 60, 0.4);
    border-radius: 50%;
    animation: mobile-orb-rotate 3s linear infinite;
}

.mobile-brand-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.mobile-nav-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-nav-item:hover {
    background: rgba(220, 20, 60, 0.1);
    border-color: rgba(220, 20, 60, 0.4);
    transform: translateX(5px);
}

.mobile-nav-icon {
    font-size: 1.2rem;
    color: var(--color-crimson);
}

.mobile-nav-text {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.mobile-cta {
    display: flex;
    justify-content: center;
}

/* Ultra Premium Mobile CTA */
.ultra-premium-mobile-cta-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(13, 13, 13, 0.8) 50%, 
        rgba(0, 0, 0, 0.6) 100%);
    border: 1px solid rgba(220, 20, 60, 0.3);
    border-radius: 30px;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(15px);
    cursor: pointer;
    width: 100%;
    max-width: 300px;
}

.ultra-premium-mobile-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.4);
    border-color: rgba(220, 20, 60, 0.6);
}

/* Mobile Sophisticated Background Layers */
.mobile-cta-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mobile-cta-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(220, 20, 60, 0.1) 0%, 
        transparent 70%);
}

.mobile-cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 20, 60, 0.15) 0%, transparent 50%);
    animation: mobile-cta-particles-float 4s ease-in-out infinite;
}

/* Mobile Premium Content */
.mobile-cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

/* Mobile Luxury Icon */
.mobile-cta-icon-container {
    display: flex;
    align-items: center;
}

.mobile-cta-icon-orb {
    position: relative;
    width: 20px;
    height: 20px;
}

.mobile-cta-icon-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: var(--color-crimson);
    animation: mobile-cta-icon-core-pulse 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(220, 20, 60, 0.6));
}

.mobile-cta-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 1px solid rgba(220, 20, 60, 0.4);
    border-radius: 50%;
    animation: mobile-cta-icon-ring-rotate 3s linear infinite;
}

.mobile-cta-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: mobile-cta-icon-glow-pulse 3.5s ease-in-out infinite;
}

/* Mobile Elegant Text */
.mobile-cta-text-container {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.mobile-cta-main-text {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.4px;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

.mobile-cta-sub-text {
    font-size: 0.7rem;
    font-weight: 300;
    color: #9ca3af;
    letter-spacing: 0.3px;
    opacity: 0.8;
}

/* Mobile Status Indicator */
.mobile-cta-status {
    display: flex;
    align-items: center;
}

.mobile-cta-status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    animation: mobile-cta-status-pulse 2s ease-in-out infinite;
}

/* Mobile Floating Elements */
.mobile-cta-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.mobile-cta-floating-elements .floating-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(220, 20, 60, 0.4);
    border-radius: 50%;
    animation: mobile-cta-floating-dot-float 5s ease-in-out infinite;
}

.mobile-cta-floating-elements .dot-1 {
    top: 25%;
    left: 10%;
    animation-delay: 0s;
}

.mobile-cta-floating-elements .dot-2 {
    top: 75%;
    right: 15%;
    animation-delay: 2.5s;
}

/* Floating Elements */
.navbar-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.navbar-floating-elements .floating-dot {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(220, 20, 60, 0.3);
    border-radius: 50%;
    animation: navbar-floating-dot-float 8s ease-in-out infinite;
}

.navbar-floating-elements .dot-1 {
    top: 30%;
    left: 15%;
    animation-delay: 0s;
}

.navbar-floating-elements .dot-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2.5s;
}

.navbar-floating-elements .dot-3 {
    top: 40%;
    left: 80%;
    animation-delay: 5s;
}

/* Advanced Navbar Animations */
@keyframes navbar-particles-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

@keyframes navbar-grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

@keyframes navbar-orb-pulse {
    0%, 100% { 
        box-shadow: 0 0 12px rgba(220, 20, 60, 0.8);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        box-shadow: 0 0 20px rgba(220, 20, 60, 1);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes navbar-orb-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes navbar-orb-glow-pulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes cta-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes mobile-orb-pulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(220, 20, 60, 0.8);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        box-shadow: 0 0 15px rgba(220, 20, 60, 1);
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes mobile-orb-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes mobile-cta-icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes navbar-floating-dot-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-8px) scale(1.2);
        opacity: 0.6;
    }
}

/* Ultra Premium CTA Animations */
@keyframes cta-particles-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

@keyframes cta-grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

@keyframes cta-icon-core-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes cta-icon-ring-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes cta-icon-glow-pulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes cta-status-pulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
        opacity: 0.8;
    }
}

@keyframes cta-floating-dot-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-6px) scale(1.2);
        opacity: 0.7;
    }
}

/* Ultra Premium Mobile CTA Animations */
@keyframes mobile-cta-particles-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

@keyframes mobile-cta-icon-core-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes mobile-cta-icon-ring-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes mobile-cta-icon-glow-pulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes mobile-cta-status-pulse {
    0%, 100% { 
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
        opacity: 1;
    }
    50% { 
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
        opacity: 0.8;
    }
}

@keyframes mobile-cta-floating-dot-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-6px) scale(1.2);
        opacity: 0.7;
    }
}

/* Mobile Responsive for Premium Navbar */
@media (max-width: 768px) {
    .premium-navbar-content {
        padding: 0 1rem;
    }
    
    .sophisticated-navbar-nav {
        display: none;
    }
    
    .premium-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .navbar-floating-elements .floating-dot {
        display: none;
    }
}

/* User Welcome Menu Section */
.user-welcome-menu {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 38, 127, 0.2);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
    margin-top: 6rem;
}

.welcome-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Welcome Message */
.welcome-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.welcome-icon {
    font-size: 2.5rem;
    animation: welcome-icon-wave 2s ease-in-out infinite;
}

.welcome-content {
    flex: 1;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(220, 38, 127, 0.5);
}

.welcome-subtitle {
    font-size: 0.9rem;
    color: #d1d5db;
    line-height: 1.4;
}

/* MD Balance Display */
.md-balance-display {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(220, 38, 127, 0.1);
    border: 1px solid rgba(220, 38, 127, 0.3);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.md-balance-display:hover {
    background: rgba(220, 38, 127, 0.15);
    border-color: rgba(220, 38, 127, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 127, 0.3);
}

.md-icon-container {
    position: relative;
}

.md-icon {
    font-size: 2rem;
    animation: md-icon-pulse 2s ease-in-out infinite;
}

.md-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(220, 38, 127, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.md-balance-display:hover .md-glow {
    width: 60px;
    height: 60px;
}

.md-info {
    text-align: center;
}

.md-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #dc267f;
    margin-bottom: 0.2rem;
    text-shadow: 0 0 10px rgba(220, 38, 127, 0.5);
}

.md-label {
    font-size: 0.8rem;
    color: #d1d5db;
    font-weight: 500;
}

/* Quick Actions - Butoane egale */
.quick-actions {
    display: flex;
    gap: 1rem;
    align-items: stretch; /* Pentru înălțime egală */
}

.quick-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 60px; /* Înălțime minimă egală */
    flex: 1; /* Lățime egală */
}

.admin-btn {
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #a855f7;
}

.admin-btn:hover {
    background: rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.6);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.3);
    color: #a855f7;
}

.logout-btn {
    background: rgba(239, 68, 68, 0.2) !important;
    border: 1px solid rgba(239, 68, 68, 0.4) !important;
    color: #ef4444 !important;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.3) !important;
    border-color: rgba(239, 68, 68, 0.6) !important;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3) !important;
    color: #ef4444 !important;
}

.action-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.quick-action-btn:hover .action-icon {
    transform: scale(1.1);
}

.action-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Logout Form Inline */
.logout-form-inline {
    display: flex;
    flex: 1;
}

.logout-form-inline button {
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
}

/* ADMIN PANEL PREMIUM STYLES */
.admin-background {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.98) 50%, rgba(0, 0, 0, 0.95) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.admin-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 60%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: admin-bg-pulse 8s ease-in-out infinite;
}

@keyframes admin-bg-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.admin-container {
    position: relative;
    z-index: 10;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.admin-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc143c, #a855f7, #22c55e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
    animation: admin-title-glow 3s ease-in-out infinite;
}

@keyframes admin-title-glow {
    0%, 100% { text-shadow: 0 0 30px rgba(220, 20, 60, 0.3); }
    50% { text-shadow: 0 0 50px rgba(168, 85, 247, 0.5); }
}

.admin-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.admin-stat-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 20, 60, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(220, 20, 60, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.admin-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.admin-stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.admin-stat-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.admin-stat-icon.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.admin-stat-icon.purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

.admin-stat-icon.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.admin-stat-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.admin-stat-content {
    position: relative;
    z-index: 2;
}

.admin-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-stat-value {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.admin-table-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.admin-table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.admin-table-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    z-index: 2;
}

.admin-table th {
    background: rgba(220, 20, 60, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid rgba(220, 20, 60, 0.3);
}

.admin-table td {
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.admin-table tr:hover td {
    background: rgba(220, 20, 60, 0.05);
    color: white;
}

.admin-status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.admin-status-badge.completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.admin-status-badge.pending {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.admin-status-badge.failed {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.admin-status-badge.cancelled {
    background: rgba(107, 114, 128, 0.2);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.admin-btn {
    background: linear-gradient(135deg, #dc143c, #b91c3c);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-btn::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;
}

.admin-btn:hover::before {
    left: 100%;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.3), 0 0 0 1px rgba(220, 20, 60, 0.2);
}

.admin-btn.secondary {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.admin-btn.secondary:hover {
    box-shadow: 0 10px 20px rgba(107, 114, 128, 0.3), 0 0 0 1px rgba(107, 114, 128, 0.2);
}

.admin-btn.success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.admin-btn.success:hover {
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3), 0 0 0 1px rgba(34, 197, 94, 0.2);
}

.admin-form-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.admin-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.admin-form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.admin-form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.admin-form-input:focus {
    outline: none;
    border-color: rgba(220, 20, 60, 0.5);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.admin-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.admin-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.admin-nav-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transition: left 0.3s ease;
}

.admin-nav-item:hover::before {
    left: 100%;
}

.admin-nav-item:hover {
    border-color: rgba(220, 20, 60, 0.3);
    color: white;
    transform: translateY(-2px);
}

.admin-nav-item.active {
    background: rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.4);
    color: #dc143c;
}

@media (max-width: 768px) {
    .admin-container {
        padding: 1rem;
    }
    
    .admin-title {
        font-size: 2rem;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .admin-table-container {
        padding: 1rem;
        overflow-x: auto;
    }
    
    .admin-table {
        min-width: 600px;
    }
    
    .admin-nav {
        flex-direction: column;
    }
}

/* Animations */
@keyframes welcome-icon-wave {
    0%, 100% { 
        transform: rotate(0deg);
    }
    25% { 
        transform: rotate(-10deg);
    }
    75% { 
        transform: rotate(10deg);
    }
}

@keyframes md-icon-pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .welcome-menu-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .welcome-message {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .welcome-icon {
        font-size: 2rem;
    }
    
    .welcome-title {
        font-size: 1.3rem;
    }
    
    .welcome-subtitle {
        font-size: 0.8rem;
    }
    
    .md-balance-display {
        padding: 0.8rem 1.2rem;
    }
    
    .md-icon {
        font-size: 1.5rem;
    }
    
    .md-amount {
        font-size: 1.5rem;
    }
    
    .quick-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    
    .quick-action-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
}

/* Logout Button */
.logout-form-inline {
    display: inline-block;
}

.logout-btn {
    background: rgba(239, 68, 68, 0.2) !important;
    border: 1px solid rgba(239, 68, 68, 0.4) !important;
    color: #ef4444 !important;
}

/* Quick Actions cu design navbar */
.quick-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}


.logout-form-inline {
    display: inline-block;
}

.logout-form-inline button {
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
}

/* ADMIN PANEL PREMIUM STYLES */
.admin-background {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.98) 50%, rgba(0, 0, 0, 0.95) 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.admin-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(220, 20, 60, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 60%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: admin-bg-pulse 8s ease-in-out infinite;
}

@keyframes admin-bg-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.admin-container {
    position: relative;
    z-index: 10;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.admin-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #dc143c, #a855f7, #22c55e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
    animation: admin-title-glow 3s ease-in-out infinite;
}

@keyframes admin-title-glow {
    0%, 100% { text-shadow: 0 0 30px rgba(220, 20, 60, 0.3); }
    50% { text-shadow: 0 0 50px rgba(168, 85, 247, 0.5); }
}

.admin-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.admin-stat-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.admin-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.admin-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 20, 60, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(220, 20, 60, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.admin-stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.admin-stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.admin-stat-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.admin-stat-icon.green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.admin-stat-icon.purple {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

.admin-stat-icon.orange {
    background: linear-gradient(135deg, #f97316, #ea580c);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.admin-stat-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.admin-stat-content {
    position: relative;
    z-index: 2;
}

.admin-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-stat-value {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.admin-table-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.admin-table-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.admin-table-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    z-index: 2;
}

.admin-table th {
    background: rgba(220, 20, 60, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid rgba(220, 20, 60, 0.3);
}

.admin-table td {
    color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.admin-table tr:hover td {
    background: rgba(220, 20, 60, 0.05);
    color: white;
}

.admin-status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.admin-status-badge.completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.admin-status-badge.pending {
    background: rgba(249, 115, 22, 0.2);
    color: #f97316;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.admin-status-badge.failed {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.admin-status-badge.cancelled {
    background: rgba(107, 114, 128, 0.2);
    color: #6b7280;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.admin-btn {
    background: linear-gradient(135deg, #dc143c, #b91c3c);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-btn::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;
}

.admin-btn:hover::before {
    left: 100%;
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.3), 0 0 0 1px rgba(220, 20, 60, 0.2);
}

.admin-btn.secondary {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.admin-btn.secondary:hover {
    box-shadow: 0 10px 20px rgba(107, 114, 128, 0.3), 0 0 0 1px rgba(107, 114, 128, 0.2);
}

.admin-btn.success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.admin-btn.success:hover {
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3), 0 0 0 1px rgba(34, 197, 94, 0.2);
}

.admin-form-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.admin-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.admin-form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.admin-form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-form-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.admin-form-input:focus {
    outline: none;
    border-color: rgba(220, 20, 60, 0.5);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.admin-form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.admin-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.admin-nav-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admin-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transition: left 0.3s ease;
}

.admin-nav-item:hover::before {
    left: 100%;
}

.admin-nav-item:hover {
    border-color: rgba(220, 20, 60, 0.3);
    color: white;
    transform: translateY(-2px);
}

.admin-nav-item.active {
    background: rgba(220, 20, 60, 0.2);
    border-color: rgba(220, 20, 60, 0.4);
    color: #dc143c;
}

@media (max-width: 768px) {
    .admin-container {
        padding: 1rem;
    }
    
    .admin-title {
        font-size: 2rem;
    }
    
    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .admin-table-container {
        padding: 1rem;
        overflow-x: auto;
    }
    
    .admin-table {
        min-width: 600px;
    }
    
    .admin-nav {
        flex-direction: column;
    }
}