/* ===== DARK THEME ENHANCEMENT ===== */
        :root {
            --bg-primary: #0a0a12;
            --bg-secondary: #121220;
            --bg-tertiary: #1a1a2e;
            --bg-card: rgba(18, 18, 32, 0.8);
            --text-primary: #f0f0ff;
            --text-secondary: #a3a3c7;
            --text-accent: #7c3aed;
            --accent-primary: #8b5cf6;
            --accent-secondary: #a855f7;
            --accent-hover: #c4b5fd;
            --border-primary: #2d2d42;
            --border-secondary: #3f3f62;
            --shadow-primary: 0 10px 25px rgba(0, 0, 0, 0.5);
            --shadow-secondary: 0 5px 15px rgba(0, 0, 0, 0.3);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
            color: var(--text-primary);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* ===== FIXED NAVBAR ===== */
        .navbar {
            background: rgba(10, 10, 18, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-primary);
            box-shadow: var(--shadow-primary);
            transition: var(--transition);
            padding: 0.5rem 1rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .navbar:hover {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            z-index: 1002;
        }

        .logo-image {
            transition: var(--transition);
            max-width: 200px;
            height: auto;
        }

        .logo-image:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            transition: var(--transition);
        }

        .nav-links li {
            margin: 0 5px;
        }

        .nav-links li a {
            color: var(--text-primary);
            text-decoration: none;
            padding: 15px 20px;
            border-radius: 6px;
            position: relative;
            transition: var(--transition);
            display: block;
            font-weight: 500;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--accent-primary);
            transition: var(--transition);
        }

        .nav-links li a:hover {
            color: var(--accent-hover);
            background: rgba(139, 92, 246, 0.1);
        }

        .nav-links li a:hover::after {
            width: 70%;
        }

        .nav-links li a.active {
            color: var(--accent-hover);
            background: rgba(139, 92, 246, 0.15);
        }

        .nav-links li a.active::after {
            width: 70%;
            background: var(--accent-hover);
        }

        /* Hamburger menu - hidden by default */
        .hamburger {
            display: none;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger .bar {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--text-primary);
            margin: 5px auto;
            border-radius: 2px;
            transition: var(--transition);
        }

        /* Mobile menu styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(10, 10, 18, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
            z-index: 999;
            transition: right 0.4s ease-in-out;
            padding-top: 80px;
            overflow-y: auto;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-links {
            list-style: none;
            padding: 20px;
            margin: 0;
        }

        .mobile-links li {
            margin-bottom: 15px;
        }

        .mobile-links li a {
            display: block;
            color: var(--text-primary);
            text-decoration: none;
            padding: 15px;
            border-radius: 6px;
            transition: var(--transition);
            font-size: 1.1rem;
            border-left: 3px solid transparent;
        }

        .mobile-links li a:hover, 
        .mobile-links li a.active {
            background: rgba(139, 92, 246, 0.15);
            color: var(--accent-hover);
            border-left: 3px solid var(--accent-primary);
            padding-left: 20px;
        }

        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* ===== HERO SECTIONS ===== */
        .hero, .uptime, .morehero, .projects-showcase, .news-section {
            position: relative;
            overflow: hidden;
            padding: 200px 20px;
            text-align: center;
        }

        .hero-background, .uptime-background, .morehero-background, .projects-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            opacity: 0.8;
            filter: blur(8px);
            z-index: -1;
        }

        .hero-title, .uptime-title, .morehero-title {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--text-primary), var(--accent-hover));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 25px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .hero-text, .uptime-text, .morehero-text {
            font-size: 1.25rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--text-secondary);
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: var(--shadow-secondary);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }


         /* Modern rounded horizontal line for dark theme */
         hr.rounded {
         border: none;
         height: 2px;
         background: linear-gradient(to right, #444, #999, #444); /* subtle metallic gradient */
         border-radius: 999px; /* fully rounded */
         margin: 2rem 0;
         opacity: 0.6;
         }


        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-secondary), var(--accent-hover));
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
        }

        .btn:hover::before {
            opacity: 1;
        }

        /* ===== PROJECTS SECTION ===== */
        .projects-showcase {
            background: var(--bg-tertiary);
            padding: 100px 20px;
        }

        .projects-content {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-primary);
            border: 1px solid var(--border-primary);
            text-align: center;
        }

        .projects-embed iframe {
            border-radius: 12px;
            border: 1px solid var(--border-secondary);
            box-shadow: var(--shadow-secondary);
            width: 100%;
            height: 500px;
        }

        .feature-btn {
            background: transparent;
            border: 2px solid var(--accent-primary);
            color: var(--accent-primary);
            margin-top: 30px;
        }

        .feature-btn:hover {
            background: var(--accent-primary);
            color: white;
        }

        .feature-instructions {
            background: var(--bg-tertiary);
            border-radius: 12px;
            padding: 25px;
            margin-top: 20px;
            border: 1px solid var(--border-secondary);
        }

        .feature-instructions ol {
            text-align: left;
            max-width: 600px;
            margin: 20px auto;
        }

        .feature-instructions a {
            color: var(--accent-hover);
            text-decoration: none;
            transition: var(--transition);
        }

        .feature-instructions a:hover {
            text-decoration: underline;
        }


        .hero-p {
        color: var(--text-primary);
        text-decoration: none;
        transition: var(--transition);
        display: inline-block;
        }

        hero-p:hover {
        color: var(--accent-hover);
        transform: translateX(5px);
        }

        .no-bullets p.a.hero-a {
        color: var(--text-primary);
        text-decoration: none;
        transition: var(--transition);
        display: inline-block;
        }

        .no-bullets a.hero-a:hover {
        color: var(--accent-hover);
        transform: translateX(5px);
        }


        .no-bullets {
        list-style-type: none;
        };


        /* ===== NEWS SECTION ===== */
        .news-section {
            background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
            padding: 100px 20px;
        }

        #news-content {
            background: var(--bg-card);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-primary);
            border: 1px solid var(--border-primary);
        }

        .post-item {
            background: var(--bg-tertiary);
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            border: 1px solid var(--border-primary);
            transition: var(--transition);
        }

        .post-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-secondary);
            border-color: var(--accent-primary);
        }

        .post-item h3 {
            color: var(--text-primary);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .post-item p {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .read-more {
            background: transparent;
            border: 2px solid var(--accent-primary);
            color: var(--accent-primary);
        }

        .read-more:hover {
            background: var(--accent-primary);
            color: white;
        }

        /* ===== DISCORD WIDGET ===== */
        .widget-container {
            border-radius: 16px;
            overflow: hidden;
            margin: 40px auto;
            max-width: 800px;
            box-shadow: var(--shadow-primary);
            border: 1px solid var(--border-primary);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--bg-tertiary);
            border-top: 1px solid var(--border-primary);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            padding: 50px 20px;
        }

        .footer-links h3 {
            color: var(--text-primary);
            font-size: 1.4rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent-primary);
            border-radius: 3px;
        }

        .footer-links-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-hover);
            transform: translateX(5px);
        }

        .footer-bottom {
            padding: 30px 20px;
            border-top: 1px solid var(--border-primary);
            text-align: center;
        }

        .footer-bottom-links a {
            color: var(--text-secondary);
            margin: 0 15px;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-bottom-links a:hover {
            color: var(--accent-primary);
        }

        .footer-info {
            margin-top: 20px;
            color: var(--text-secondary);
        }

        /* ===== ANIMATIONS ===== */
        .fade-in {
            animation: fadeIn 0.8s ease-out forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.03); }
            100% { transform: scale(1); }
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 899px) {
            .navbar {
                padding: 15px 0;
            }
            
            .nav-links {
                display: none;
            }
            
            .hamburger {
                display: block;
            }
            
            .hamburger.active .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }
            
            .hamburger.active .bar:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }
            
            .hero, .uptime, .morehero {
                padding: 150px 20px;
            }
            
            .hero-title, .uptime-title, .morehero-title {
                font-size: 2.5rem;
            }
            
            .projects-content, #news-content {
                padding: 25px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 900px) {
            .mobile-menu {
                display: none;
            }
        }

        /* ===== UTILITY CLASSES ===== */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

        .mb-30 {
            margin-bottom: 30px;
        }

        .mt-50 {
            margin-top: 50px;
        }