body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #05050a 0%, #0a0a0f 20%, #0a0a0f 80%, #05050a 100%);
    background-attachment: fixed;
    color: #fff;
    overflow-x: hidden;
    margin: 0;
}

.glass-card {
    background: rgba(17, 17, 26, 0.7);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
    background: #00ff88;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00cc6a;
}

.footera:hover {
    color: #00ff88;
    transition: ease-out 1.5s;
}

.navbar-transition {
    transition: all 0.4s ease;
}

.hero-gradient {
    background: linear-gradient(135deg, #05050a 0%, #0a0a1a 50%, #11112a 100%);
}

.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.6s;
    opacity: 0;
}

.shine-effect:hover::after {
    opacity: 1;
    left: 100%;
}

#navbar {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

#navbar.navbar-glass {
    background: rgba(17, 17, 26, 0.75) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
    #navbar {
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }
    
    #navbar.navbar-glass {
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
    }
}

@supports not ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    #navbar {
        background: rgba(10, 10, 15, 0.95);
    }
    
    #navbar.navbar-glass {
        background: rgba(17, 17, 26, 0.95);
    }
}

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

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes slide-in {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes fade-in {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-float-navbar {
    animation: float 3.5s ease-in-out;
}

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

.animate-slide-in {
    animation: slide-in 0.5s ease-out;
}

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

#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

#mobile-menu.active {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

#hamburger {
    padding: 12px;
    margin: -12px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.animation-delay-300 {
    animation-delay: 300ms;
}

.animation-delay-500 {
    animation-delay: 500ms;
}

.hover\:bg-card-hover:hover {
    background: rgba(17, 17, 26, 0.9) !important;
}

#admin-login-modal, #admin-panel {
    transition: opacity 0.3s ease;
}

#admin-login-modal.hidden, #admin-panel.hidden {
    display: none !important;
}

#admin-login-modal.flex {
    display: flex !important;
}