/* 🔥 REVOLUTIONARY DESIGN SYSTEM - Cutting Edge 2026 🔥 */
:root {
    /* Bold New Color Palette */
    --neon-purple: #a855f7;
    --neon-blue: #3b82f6;
    --neon-cyan: #06b6d4;
    --neon-pink: #ec4899;
    --dark-bg: #0a0a0f;
    --dark-surface: #12121a;
    --dark-card: #1a1a24;
    --accent-gradient: linear-gradient(135deg, #a855f7 0%, #3b82f6 50%, #06b6d4 100%);
    --warm-gradient: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
    --cool-gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    
    /* Advanced Shadows */
    --shadow-neon: 0 0 30px rgba(168, 85, 247, 0.5);
    --shadow-glow: 0 0 50px rgba(59, 130, 246, 0.4);
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-float: 0 20px 60px rgba(0, 0, 0, 0.4);
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(20px);
}

/* 🎨 Dark Theme Base */
body {
    background: var(--dark-bg) !important;
    color: #ffffff !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

/* 🌟 Dynamic Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 40%);
    z-index: -1;
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* 🚀 Revolutionary Hero Section */
.hero-slider {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-surface) 100%) !important;
    position: relative;
    overflow: hidden;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, 
        transparent 0deg, 
        rgba(168, 85, 247, 0.1) 60deg, 
        transparent 120deg,
        rgba(59, 130, 246, 0.1) 180deg,
        transparent 240deg,
        rgba(6, 182, 212, 0.1) 300deg,
        transparent 360deg
    );
    animation: rotateGradient 30s linear infinite;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.slide {
    background: transparent !important;
}

.slide-overlay {
    background: linear-gradient(180deg, 
        rgba(10, 10, 15, 0.8) 0%, 
        rgba(10, 10, 15, 0.4) 50%,
        rgba(10, 10, 15, 0.9) 100%) !important;
}

.slide-content h1 {
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(48px, 8vw, 100px) !important;
    font-weight: 900 !important;
    letter-spacing: -3px !important;
    text-shadow: 0 0 60px rgba(168, 85, 247, 0.5);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { filter: brightness(1) drop-shadow(0 0 20px rgba(168, 85, 247, 0.5)); }
    100% { filter: brightness(1.3) drop-shadow(0 0 40px rgba(59, 130, 246, 0.8)); }
}

.slide-btn {
    background: var(--accent-gradient) !important;
    border: none !important;
    padding: 18px 40px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    border-radius: 50px !important;
    box-shadow: var(--shadow-neon) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

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

.slide-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.8) !important;
}

/* 💎 Revolutionary Product Cards */
.home-product-slide {
    background: var(--dark-card) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 24px !important;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.home-product-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.home-product-slide:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    box-shadow: var(--shadow-float), var(--shadow-neon) !important;
    border-color: rgba(168, 85, 247, 0.5) !important;
}

.home-product-slide:hover::before {
    opacity: 0.1;
}

.home-product-image {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--dark-surface), var(--dark-card));
}

.home-product-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-product-slide:hover .home-product-image img {
    transform: scale(1.15) rotate(2deg);
}

.home-product-slide-info {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent, rgba(26, 26, 36, 0.9));
}

.home-product-category {
    background: var(--accent-gradient) !important;
    color: white !important;
    border: none !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 10px !important;
}

.home-product-slide h3 {
    color: #ffffff !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
}

.home-product-price {
    background: var(--warm-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    font-weight: 900 !important;
    font-size: 20px !important;
}

/* 🎭 Advanced Feature Cards */
.feature-card, .journey-card, .news-card, .expert-card {
    background: var(--dark-card) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 24px !important;
    padding: 30px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.feature-card::before, .journey-card::before, .news-card::before, .expert-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, 
        transparent 0deg, 
        rgba(168, 85, 247, 0.1) 90deg, 
        transparent 180deg,
        rgba(59, 130, 246, 0.1) 270deg,
        transparent 360deg
    );
    opacity: 0;
    transition: opacity 0.5s;
    animation: rotateGradient 20s linear infinite;
}

.feature-card:hover::before, .journey-card:hover::before, .news-card:hover::before, .expert-card:hover::before {
    opacity: 1;
}

.feature-card:hover, .journey-card:hover, .news-card:hover, .expert-card:hover {
    transform: translateY(-12px) rotateX(3deg);
    box-shadow: var(--shadow-float), var(--shadow-glow) !important;
    border-color: rgba(59, 130, 246, 0.4) !important;
}

.feature-icon {
    font-size: 4rem;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.6));
    transition: transform 0.4s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3, .journey-card h3, .news-card h3, .expert-card h3 {
    color: #ffffff !important;
    font-weight: 800 !important;
    position: relative;
    z-index: 1;
}

.feature-card p, .journey-card p, .news-card p, .expert-card p {
    color: rgba(255, 255, 255, 0.7) !important;
    position: relative;
    z-index: 1;
}

/* 🌈 Enhanced Section Headers */
.section-header h2 {
    background: linear-gradient(135deg, #ffffff 0%, #a855f7 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
    font-weight: 900 !important;
    font-size: clamp(36px, 5vw, 64px) !important;
    letter-spacing: -2px !important;
    text-shadow: 0 0 40px rgba(168, 85, 247, 0.3);
}

.section-header p {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 1.2rem;
}

/* 🎯 Navigation Enhancements */
.slider-nav {
    background: rgba(26, 26, 36, 0.8) !important;
    border: 1px solid rgba(168, 85, 247, 0.3) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: var(--shadow-neon) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-nav:hover {
    background: var(--accent-gradient) !important;
    transform: scale(1.2) !important;
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.8) !important;
}

.hero-dot {
    background: rgba(255, 255, 255, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-dot.active {
    background: var(--accent-gradient) !important;
    box-shadow: var(--shadow-neon) !important;
}

.hero-progress span {
    background: var(--accent-gradient) !important;
    box-shadow: var(--shadow-neon) !important;
}

/* 🎪 Visitor Counter Widget */
.visitor-counter-widget {
    background: rgba(26, 26, 36, 0.9) !important;
    border: 1px solid rgba(168, 85, 247, 0.3) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: var(--shadow-neon) !important;
    border-radius: 20px !important;
}

.visitor-icon {
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.6));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.6)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 25px rgba(59, 130, 246, 0.8)); }
}

/* 🎨 Scroll Progress */
.psm-scroll-progress span {
    background: var(--accent-gradient) !important;
    box-shadow: var(--shadow-neon) !important;
    animation: progressGlow 2s ease-in-out infinite alternate;
}

@keyframes progressGlow {
    0% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.6); }
    100% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.9); }
}

/* 🚀 Back to Top Button */
.psm-back-top {
    background: var(--accent-gradient) !important;
    border: 1px solid rgba(168, 85, 247, 0.5) !important;
    box-shadow: var(--shadow-neon) !important;
    backdrop-filter: blur(20px) !important;
}

.psm-back-top:hover {
    transform: translateY(-8px) scale(1.1) !important;
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.9) !important;
}

/* 🎯 Quick Actions */
.psm-quick-actions button {
    background: rgba(26, 26, 36, 0.9) !important;
    border: 1px solid rgba(59, 130, 246, 0.3) !important;
    color: #ffffff !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.psm-quick-actions button:hover {
    background: var(--cool-gradient) !important;
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-glow) !important;
}

/* 🌟 Advanced Reveal Animations */
.psm-reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.psm-reveal.psm-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.psm-reveal-left {
    opacity: 0;
    transform: translateX(-60px) rotateY(15deg);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.psm-reveal-left.psm-visible {
    opacity: 1;
    transform: translateX(0) rotateY(0);
}

.psm-reveal-right {
    opacity: 0;
    transform: translateX(60px) rotateY(-15deg);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.psm-reveal-right.psm-visible {
    opacity: 1;
    transform: translateX(0) rotateY(0);
}

.psm-reveal-scale {
    opacity: 0;
    transform: scale(0.8) rotateX(20deg);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.psm-reveal-scale.psm-visible {
    opacity: 1;
    transform: scale(1) rotateX(0);
}

/* 📱 Mobile Responsiveness */
@media (max-width: 768px) {
    .slide-content h1 {
        font-size: clamp(32px, 10vw, 48px) !important;
        letter-spacing: -1.5px !important;
    }
    
    .slide-btn {
        padding: 14px 32px !important;
        font-size: 14px !important;
    }
    
    .home-product-slide:hover {
        transform: translateY(-10px);
    }
    
    .feature-card:hover, .journey-card:hover, .news-card:hover, .expert-card:hover {
        transform: translateY(-8px);
    }
    
    .hero-slider::before {
        animation-duration: 60s;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: clamp(28px, 12vw, 40px) !important;
    }
    
    .home-product-slide, .feature-card, .journey-card, .news-card, .expert-card {
        border-radius: 18px !important;
        padding: 20px !important;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
}

/* 🎪 Additional Premium Effects */
.glass-revolutionary {
    background: rgba(26, 26, 36, 0.6) !important;
    backdrop-filter: blur(30px) !important;
    border: 1px solid rgba(168, 85, 247, 0.2) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.neon-border {
    position: relative;
}

.neon-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--accent-gradient);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
    filter: blur(10px);
}

.neon-border:hover::before {
    opacity: 1;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

/* 🌟 Floating Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* 🎭 Glow Animation */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(168, 85, 247, 0.5); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.8), 0 0 60px rgba(6, 182, 212, 0.6); }
}

.glowing {
    animation: glow 3s ease-in-out infinite;
}

/* 🚀 Particle Effect Container */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-purple);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}