
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background: linear-gradient(45deg, #0a0a1a, #1a1a2e, #16213e, #0f3460);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
            color: white;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            min-height: 100vh;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            25% { background-position: 100% 50%; }
            50% { background-position: 100% 100%; }
            75% { background-position: 0% 100%; }
            100% { background-position: 0% 50%; }
        }
        
        .particle-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0;
            animation: fadeInParticles 2s ease-in-out 0.5s forwards;
        }
        
        .background-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -2;
            overflow: hidden;
        }
        
        .bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: float-orb 20s infinite ease-in-out;
        }
        
        .bg-orb:nth-child(1) {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, #3b82f6, transparent);
            top: 10%;
            left: 10%;
            animation: float-orb 25s ease-in-out infinite;
            animation-delay: 0s;
        }
        
        .bg-orb:nth-child(2) {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, #8b5cf6, transparent);
            top: 60%;
            right: 20%;
            animation: float-orb 30s ease-in-out infinite;
            animation-delay: -10s;
        }
        
        .bg-orb:nth-child(3) {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, #06b6d4, transparent);
            bottom: 20%;
            left: 30%;
            animation: float-orb 35s ease-in-out infinite;
            animation-delay: -20s;
        }
        
        .bg-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 49%, rgba(96, 165, 250, 0.03) 50%, transparent 51%),
                        linear-gradient(0deg, transparent 49%, rgba(139, 92, 246, 0.03) 50%, transparent 51%);
            background-size: 100px 100px;
            opacity: 0.4;
            animation: slide-grid 30s linear infinite;
        }
        
        @keyframes float-orb {
            0% { 
                transform: translateY(0px) translateX(0px) scale(1) rotate(0deg); 
                filter: blur(80px) hue-rotate(0deg);
            }
            25% { 
                transform: translateY(-40px) translateX(30px) scale(1.2) rotate(90deg); 
                filter: blur(60px) hue-rotate(90deg);
            }
            50% { 
                transform: translateY(-20px) translateX(-20px) scale(0.8) rotate(180deg); 
                filter: blur(100px) hue-rotate(180deg);
            }
            75% { 
                transform: translateY(30px) translateX(-40px) scale(1.1) rotate(270deg); 
                filter: blur(70px) hue-rotate(270deg);
            }
            100% { 
                transform: translateY(0px) translateX(0px) scale(1) rotate(360deg); 
                filter: blur(80px) hue-rotate(360deg);
            }
        }
        
        @keyframes slide-grid {
            0% { transform: translate(0, 0); }
            100% { transform: translate(100px, 100px); }
        }
        
        @keyframes fadeInParticles {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .particle {
            position: absolute;
            background: radial-gradient(circle, rgba(96, 165, 250, 0.8), rgba(139, 92, 246, 0.4), transparent);
            border-radius: 50%;
            animation: float linear infinite;
            filter: blur(0.5px);
            will-change: transform, opacity;
        }
        
        @keyframes float {
            0% { 
                transform: translateY(calc(100vh + 50px)) translateX(0) rotate(0deg) scale(0.8); 
                opacity: 0; 
            }
            5% { 
                opacity: 1; 
                transform: translateY(calc(100vh + 30px)) translateX(0) rotate(18deg) scale(1); 
            }
            50% {
                transform: translateY(50vh) translateX(var(--drift, 0px)) rotate(180deg) scale(1.1);
                opacity: 1;
            }
            95% { 
                opacity: 1; 
                transform: translateY(-50px) translateX(var(--drift, 0px)) rotate(342deg) scale(0.9);
            }
            100% { 
                transform: translateY(-100px) translateX(var(--drift, 0px)) rotate(360deg) scale(0.8); 
                opacity: 0; 
            }
        }
        
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 40px;
            backdrop-filter: blur(20px);
            background: rgba(10, 10, 26, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 15px 30px;
            border-radius: 20px;
            background: rgba(15, 15, 35, 0.6);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            height: 70px;
            position: relative;
        }
        
        .logo {
            position: absolute;
            left: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-text {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #60a5fa, #8b5cf6, #06b6d4);
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.5));
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .nav-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 600;
            padding: 12px 24px;
            border-radius: 30px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            font-size: 1rem;
            letter-spacing: 0.5px;
            will-change: transform, color;
        }
        
        .nav-links a:hover {
            color: #60a5fa;
            transform: translateY(-3px) scale(1.05);
            text-shadow: 0 5px 15px rgba(96, 165, 250, 0.5);
        }

        .contact-btn-container {
            position: absolute;
            right: 30px;
            display: flex;
            align-items: center;
        }

        .contact-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
            border: 1px solid rgba(96, 165, 250, 0.3);
        }

        .contact-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
            border-color: rgba(96, 165, 250, 0.6);
        }

        .contact-btn svg {
            transition: all 0.3s ease;
        }

        .contact-btn:hover svg {
            transform: scale(1.1);
        }
        
        .section {
            padding: 100px 20px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .scripts-section {
            padding: 140px 20px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .hero-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            min-height: 100vh;
            position: relative;
            padding-top: 0;
        }
        
        .hero-title {
            font-size: 5.5rem;
            font-weight: 900;
            background: linear-gradient(45deg, #60a5fa, #8b5cf6, #06b6d4, #10b981);
            background-size: 300% 300%;
            animation: gradientShift 6s ease infinite, titleFloat 4s ease-in-out infinite;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 40px;
            filter: drop-shadow(0 0 30px rgba(96, 165, 250, 0.6));
            opacity: 0;
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards, 
                      gradientShift 6s ease infinite, 
                      titleFloat 4s ease-in-out infinite 1.5s;
            will-change: transform, filter;
        }
        
        @keyframes titleFloat {
            0%, 100% { 
                transform: translateY(0px) scale(1);
                filter: drop-shadow(0 0 30px rgba(96, 165, 250, 0.6));
            }
            50% { 
                transform: translateY(-10px) scale(1.02);
                filter: drop-shadow(0 10px 40px rgba(139, 92, 246, 0.8));
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .code-box {
            background: #1e2230;
            color: #cbd5e1;
            padding: 16px 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            font-size: 16px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            font-family: "Fira Code", monospace;
            border: 1px solid rgba(96, 165, 250, 0.3);
            max-width: 600px;
            width: 100%;
            margin: 0 auto;
            opacity: 0;
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
            transition: all 0.3s ease;
        }

        .code-box:hover {
            box-shadow: 0 20px 50px rgba(96, 165, 250, 0.2);
            border-color: rgba(96, 165, 250, 0.5);
            transform: translateY(-2px);
        }

        .code-box code {
            white-space: pre;
            margin-right: 16px;
            font-feature-settings: "liga" 1;
            flex-grow: 1;
        }

        .copy-btn {
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            border: none;
            color: white;
            padding: 10px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .copy-btn:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
        }

        .hero-buttons {
            display: flex;
            gap: 25px;
            margin-top: 35px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
        }

        .hero-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            border: 2px solid transparent;
        }

        .discord-hero-btn {
            background: linear-gradient(45deg, #5865f2, #7289da);
            color: white;
            box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
        }

        .discord-hero-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(88, 101, 242, 0.6);
            border-color: rgba(114, 137, 218, 0.5);
        }

        .explore-hero-btn {
            background: linear-gradient(45deg, #f59e0b, #d97706);
            color: white;
            box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
        }

        .explore-hero-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
            border-color: rgba(217, 119, 6, 0.5);
        }

        .key-hero-btn {
            background: linear-gradient(45deg, #10b981, #06b6d4);
            color: white;
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
        }

        .key-hero-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
            border-color: rgba(6, 182, 212, 0.5);
        }
        
        .section-title {
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(45deg, #60a5fa, #8b5cf6, #06b6d4);
            background-size: 200% 200%;
            animation: gradientShift 5s ease infinite, sectionTitleFloat 6s ease-in-out infinite;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 25px rgba(96, 165, 250, 0.4));
            will-change: transform, filter;
        }
        
        @keyframes sectionTitleFloat {
            0%, 100% { 
                transform: translateY(0px);
                filter: drop-shadow(0 0 25px rgba(96, 165, 250, 0.4));
            }
            50% { 
                transform: translateY(-8px);
                filter: drop-shadow(0 8px 35px rgba(139, 92, 246, 0.6));
            }
        }
        
        .section-subtitle {
            font-size: 1.5rem;
            color: #cbd5e1;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .feature-card {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 30px;
            padding: 40px 30px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(15px);
            text-align: center;
            height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 30px;
            padding: 2px;
            background: linear-gradient(45deg, transparent, rgba(96, 165, 250, 0.4), transparent);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: xor;
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        
        .feature-card:hover::before {
            opacity: 1;
            animation: borderFlow 3s linear infinite;
        }
        
        @keyframes borderFlow {
            0% { background: linear-gradient(45deg, transparent, rgba(96, 165, 250, 0.4), transparent); }
            33% { background: linear-gradient(135deg, transparent, rgba(139, 92, 246, 0.4), transparent); }
            66% { background: linear-gradient(225deg, transparent, rgba(6, 182, 212, 0.4), transparent); }
            100% { background: linear-gradient(315deg, transparent, rgba(96, 165, 250, 0.4), transparent); }
        }
        
        .feature-card:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: 0 30px 80px rgba(59, 130, 246, 0.3);
            border-color: rgba(96, 165, 250, 0.4);
        }
        
        .feature-icon {
            margin-bottom: 25px;
        }
        
        .icon-circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            color: white;
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .icon-circle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(255,255,255,0.3), transparent, rgba(255,255,255,0.3));
            border-radius: 50%;
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .feature-card:hover .icon-circle {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 20px 50px rgba(59, 130, 246, 0.6);
        }
        
        .feature-card:hover .icon-circle::before {
            transform: translateX(100%);
        }
        
        .feature-title {
            font-size: 1.8rem;
            background: linear-gradient(45deg, #60a5fa, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }
        
        .feature-desc {
            color: #cbd5e1;
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 1.05rem;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }
        
        .feature-badge {
            background: linear-gradient(45deg, #10b981, #06b6d4);
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature-badge::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.5s ease;
        }
        
        .feature-card:hover .feature-badge::before {
            left: 100%;
        }
        
        .feature-card:hover .feature-badge {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
        }
        
        .discord-section {
            background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(139, 92, 246, 0.15));
            border: 2px solid rgba(88, 101, 242, 0.2);
            border-radius: 30px;
            padding: 50px;
            text-align: center;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(15px);
        }
        
        .discord-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(88, 101, 242, 0.1), transparent);
            animation: rotate 20s linear infinite;
            pointer-events: none;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .discord-btn {
            max-width: 320px;
            display: flex;
            padding: 0.75rem 1.8rem;
            font-size: 1rem;
            line-height: 1.25rem;
            font-weight: 700;
            text-align: center;
            text-transform: uppercase;
            vertical-align: middle;
            align-items: center;
            border-radius: 0.75rem;
            border: 1px solid rgba(88, 101, 242, 0.3);
            gap: 0.75rem;
            color: #ffffff;
            background-color: #5865f2;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
            margin: 0 auto;
            text-decoration: none;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
        }
        
        .discord-btn svg {
            height: 24px;
            width: 24px;
            fill: #fff;
            transition: all 0.3s ease;
        }
        
        .discord-btn:hover {
            transform: translateY(-3px) scale(1.02);
            background-color: #4752c4;
            box-shadow: 0 15px 40px rgba(88, 101, 242, 0.5);
            border-color: rgba(88, 101, 242, 0.5);
        }
        
        .discord-btn:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.4);
        }
        
        .discord-btn:active {
            transform: translateY(-1px) scale(0.98);
            opacity: 0.9;
        }
        
        .about-content {
            background: linear-gradient(135deg, rgba(30, 41, 59, 0.6), rgba(59, 130, 246, 0.08));
            border-radius: 25px;
            padding: 40px;
            margin-top: 40px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            backdrop-filter: blur(15px);
        }
        
        .about-content h3 {
            background: linear-gradient(45deg, #60a5fa, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            font-size: 1.6rem;
        }
        
        .about-content p {
            color: #cbd5e1;
            line-height: 1.9;
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        
        .contributors-section {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
            border: 2px solid rgba(59, 130, 246, 0.2);
            border-radius: 30px;
            padding: 50px;
            text-align: center;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(15px);
        }
        
        .slideshow-container {
            position: relative;
            max-width: 600px;
            margin: 30px auto;
        }
        
        .slideshow-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(15, 15, 35, 0.9);
            border: 2px solid rgba(96, 165, 250, 0.3);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(15px);
            z-index: 10;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .slideshow-nav:hover {
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            border-color: rgba(96, 165, 250, 0.8);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.6);
        }
        
        .slideshow-nav.prev {
            left: -70px;
        }
        
        .slideshow-nav.next {
            right: -70px;
        }
        
        .slideshow-nav svg {
            width: 24px;
            height: 24px;
            fill: #e2e8f0;
            transition: fill 0.3s ease;
        }
        
        .slideshow-nav:hover svg {
            fill: #ffffff;
        }
        
        .contributor-slide {
            display: none;
            background: linear-gradient(135deg, rgba(15, 15, 35, 0.8), rgba(30, 41, 59, 0.6));
            border-radius: 25px;
            padding: 40px;
            border: 1px solid rgba(96, 165, 250, 0.2);
            backdrop-filter: blur(20px);
            animation: fadeInSlide 0.6s ease-in-out;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            min-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .contributor-slide.active {
            display: flex;
        }
        
        .contributor-header {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 25px;
            text-align: left;
        }
        
        .contributor-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            font-weight: bold;
            color: white;
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
            overflow: hidden;
            position: relative;
            border: 3px solid rgba(96, 165, 250, 0.3);
            flex-shrink: 0;
        }
        
        .contributor-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .contributor-avatar-fallback {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            font-weight: bold;
            color: white;
            border: 3px solid rgba(96, 165, 250, 0.3);
        }
        
        .contributor-info {
            flex-grow: 1;
        }
        
        .contributor-name {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #60a5fa, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.3));
        }
        
        .contributor-role {
            color: #94a3b8;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }
        
        .contributor-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .badge {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .badge.founder {
            background: linear-gradient(45deg, #f59e0b, #d97706);
            color: white;
        }
        
        .badge.leader {
            background: linear-gradient(45deg, #8b5cf6, #7c3aed);
            color: white;
        }
        
        .badge.cofounder {
            background: linear-gradient(45deg, #06b6d4, #0891b2);
            color: white;
        }
        
        .badge.security {
            background: linear-gradient(45deg, #ef4444, #dc2626);
            color: white;
        }
        
        .badge.developer {
            background: linear-gradient(45deg, #10b981, #059669);
            color: white;
        }
        
        .badge.expert {
            background: linear-gradient(45deg, #3b82f6, #2563eb);
            color: white;
        }
        
        .contributor-desc {
            color: #cbd5e1;
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 1.1rem;
            text-align: left;
            flex-grow: 1;
        }
        
        .contributor-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: auto;
        }
        
        .stat {
            text-align: center;
            padding: 20px 15px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(96, 165, 250, 0.2);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .stat:hover {
            background: rgba(59, 130, 246, 0.15);
            border-color: rgba(96, 165, 250, 0.4);
            transform: translateY(-2px);
        }
        
        .stat-number {
            display: block;
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(45deg, #60a5fa, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #94a3b8;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .slideshow-nav:hover svg {
            fill: #ffffff;
        }
        
        .contributor-slide {
            display: none;
            background: linear-gradient(135deg, rgba(15, 15, 35, 0.8), rgba(30, 41, 59, 0.6));
            border-radius: 25px;
            padding: 40px;
            border: 1px solid rgba(96, 165, 250, 0.2);
            backdrop-filter: blur(20px);
            animation: fadeInSlide 0.6s ease-in-out;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            min-height: 500px;
        }
        
        .contributor-slide.active {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        @keyframes fadeInSlide {
            from { opacity: 0; transform: translateY(20px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        
        .contributor-header {
            display: flex;
            align-items: center;
            gap: 25px;
            margin-bottom: 25px;
            text-align: left;
        }
        
        .contributor-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            font-weight: bold;
            color: white;
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
            overflow: hidden;
            position: relative;
            border: 3px solid rgba(96, 165, 250, 0.3);
            flex-shrink: 0;
        }
        
        .contributor-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }
        
        .contributor-avatar-fallback {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            font-weight: bold;
            color: white;
            border: 3px solid rgba(96, 165, 250, 0.3);
        }
        
        .contributor-info {
            flex-grow: 1;
        }
        
        .contributor-name {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #60a5fa, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.3));
        }
        
        .contributor-role {
            color: #94a3b8;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }
        
        .contributor-badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .badge {
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .badge.founder {
            background: linear-gradient(45deg, #f59e0b, #d97706);
            color: white;
        }
        
        .badge.leader {
            background: linear-gradient(45deg, #8b5cf6, #7c3aed);
            color: white;
        }
        
        .badge.cofounder {
            background: linear-gradient(45deg, #06b6d4, #0891b2);
            color: white;
        }
        
        .badge.security {
            background: linear-gradient(45deg, #ef4444, #dc2626);
            color: white;
        }
        
        .badge.developer {
            background: linear-gradient(45deg, #10b981, #059669);
            color: white;
        }
        
        .badge.expert {
            background: linear-gradient(45deg, #3b82f6, #2563eb);
            color: white;
        }
        
        .contributor-desc {
            color: #cbd5e1;
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 1.1rem;
            text-align: left;
            flex-grow: 1;
        }
        
        .contributor-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: auto;
        }
        
        .stat {
            text-align: center;
            padding: 20px 15px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(96, 165, 250, 0.2);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .stat:hover {
            background: rgba(59, 130, 246, 0.15);
            border-color: rgba(96, 165, 250, 0.4);
            transform: translateY(-2px);
        }
        
        .stat-number {
            display: block;
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(45deg, #60a5fa, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #94a3b8;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .slideshow-dots {
            text-align: center;
            margin-top: 25px;
        }
        
        .dot {
            height: 14px;
            width: 14px;
            margin: 0 8px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }
        
        .dot.active, .dot:hover {
            background: linear-gradient(45deg, #60a5fa, #8b5cf6);
            transform: scale(1.3);
            box-shadow: 0 0 20px rgba(96, 165, 250, 0.7);
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3.8rem;
            }
            
            .section-title {
                font-size: 3rem;
            }
            
            .nav-links {
                gap: 20px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .feature-card {
                height: auto;
                min-height: 320px;
            }
            
            .contact-btn-container {
                right: 20px;
            }

            .contact-btn {
                padding: 8px 16px;
                font-size: 0.8rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .hero-btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .slideshow-nav.prev {
                left: -50px;
            }
            
            .slideshow-nav.next {
                right: -50px;
            }

            .contributor-header {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

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

            .contributor-desc {
                text-align: center;
            }

            .contributor-stats {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .slideshow-container {
                max-width: 90%;
            }

            .contributor-slide {
                min-height: auto;
                padding: 30px 20px;
            }
            
            .section {
                padding: 80px 15px 40px;
            }
            
            .scripts-section {
                padding: 120px 15px 40px;
            }
            
            .nav-container {
                padding: 12px 20px;
                height: 60px;
            }
            
            .logo-text {
                font-size: 1.8rem;
            }
            
            .discord-btn {
                max-width: 100%;
                padding: 0.75rem 1.5rem;
            }

            .code-box {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }

            .code-box code {
                margin-right: 0;
                margin-bottom: 0;
            }
        }
    
