        /* Original Scrollbar & Animations */
        ::-webkit-scrollbar {
            width: 6px;
        }

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

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #f97316, #ea580c);
            border-radius: 3px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(45deg, #ea580c, #f97316);
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            0% {
                opacity: 0;
                transform: translateX(-50px);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            0% {
                opacity: 0;
                transform: translateX(50px);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes subtleFloat {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.8s ease-out;
        }

        .animate-slideInLeft {
            animation: slideInLeft 0.6s ease-out;
        }

        .animate-slideInRight {
            animation: slideInRight 0.6s ease-out;
        }

        .animate-subtle-float {
            animation: subtleFloat 4s ease-in-out infinite;
        }

        .gradient-bg {
            background: linear-gradient(-45deg, #0f0f0f, #1a1a1a, #0f0f0f, #262626);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
        }

        .font-poppins {
            font-family: 'Poppins', sans-serif;
        }

        .font-inter {
            font-family: 'Inter', sans-serif;
        }

        .font-roboto {
            font-family: 'Roboto', Arial, sans-serif;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #f97316;
            border-radius: 50%;
            opacity: 0.6;
            animation: subtleFloat 6s ease-in-out infinite;
        }

        /* New Styles from provided code */
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0a0a0a;
            color: #e5e7eb;
            /* gray-200 */
        }

        [x-cloak] {
            display: none !important;
        }

        .glow-on-hover:hover {
            box-shadow: 0 0 20px 5px rgba(249, 115, 22, 0.3);
            /* orange-400 */
        }

        .animated-section {
            opacity: 0;
            transform: translateY(2rem);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }

        .animated-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slider-arrow {
            background-color: rgba(255, 255, 255, 0.8);
            border: 1px solid #e5e7eb;
        }

        .slider-arrow:hover {
            background-color: white;
        }
        /* Toggle Switch Styles */
        .toggle-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 34px;
        }

        .toggle-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #555;
            transition: .4s;
            border-radius: 34px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked+.slider {
            background-color: #8b5cf6;
        }

        input:checked+.slider:before {
            transform: translateX(26px);
        }
        /* Smooth reveal animation */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }
        /* Category filter buttons */
        .filter-btn.active {
            background: linear-gradient(45deg, #dc2626, #b91c1c);
            color: white;
        }
        /* Red Theme Colors */
        .red-text {
            color: #dc2626;
        }

        .red-gradient {
            background: linear-gradient(45deg, #dc2626, #b91c1c);
        }

        .download-item {
            transition: all 0.3s ease;
        }
        
        .download-item:hover {
            transform: translateY(-2px);
        }
        
        .custom-select {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 0.5rem center;
            background-repeat: no-repeat;
            background-size: 1.5em 1.5em;
            padding-right: 2.5rem;
        }
        /* Article card hover effects */
        .article-card {
            transition: all 0.3s ease;
        }
        .article-card:hover {
            transform: translateY(-5px);
        }