@theme {
    --font-sans: 'Poppins', 'Instrument Sans', ui-sans-serif, system-ui, sans-serif;
    
    --color-dark-base: #05050a;
    --color-dark-card: #11111a;
    --color-neon-purple: #9d00ff;
    --color-neon-blue: #00f0ff;
    --color-neon-green: #00ff66;
    --color-neon-pink: #ff007f;
    --color-neon-yellow: #ffcc00;
    --color-neon-orange: #ff6600;
    --color-neon-cyan: #00ffff;
    --color-neon-fuchsia: #ff00ff;
    --color-neon-emerald: #33ff57;
    --color-neon-sky: #3498db;
    --color-neon-red: #e74c3c;
}

/* Custom Base Styles */
body {
    background-color: var(--color-dark-base);
    color: #e2e8f0;
    font-family: var(--font-sans);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #05050a;
}
::-webkit-scrollbar-thumb {
    background: #1e1e2f;
    border-radius: 4px;
    border: 2px solid #05050a;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-neon-purple);
    box-shadow: 0 0 10px var(--color-neon-purple);
}

/* Stunning Glassmorphism Styles */
.glass-panel {
    background: rgba(17, 17, 26, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: rgba(17, 17, 26, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(17, 17, 26, 0.7);
    border-color: rgba(157, 0, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 10px 30px -10px rgba(157, 0, 255, 0.2);
}

/* Neon Text and Box Shadows */
.text-glow-purple {
    text-shadow: 0 0 10px rgba(157, 0, 255, 0.5), 0 0 20px rgba(157, 0, 255, 0.2);
}

.text-glow-blue {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.2);
}

.shadow-glow-purple {
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.35);
}

.shadow-glow-blue {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.35);
}

/* Custom Interactive Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(157, 0, 255, 0.12) 0%, rgba(0, 240, 255, 0.03) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    transition: width 0.3s, height 0.3s;
}

/* Custom Page Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #05050a;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(157, 0, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--color-neon-blue);
    border-right-color: var(--color-neon-purple);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, var(--color-neon-purple), var(--color-neon-blue));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Swiper custom slider pagination */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.2) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-neon-blue) !important;
    width: 24px !important;
    border-radius: 4px !important;
    box-shadow: 0 0 8px var(--color-neon-blue);
}
