        /* Các biến CSS gốc từ draw (1).html */
        :root {
            --primary-color: #4F46E5;
            --primary-light: #6366F1;
            --primary-dark: #4338CA;
            --secondary-color: #8B5CF6;
            --light-bg: #F8FAFC;
            --border-color: #E2E8F0;
            --text-color: #1E293B;
            --text-light: #64748B;
            --success-color: #10B981;
            --error-color: #EF4444;
            --border-radius: 10px;
            --box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --gradient-primary: linear-gradient(135deg, #4F46E5, #7C3AED);
            --gradient-secondary: linear-gradient(135deg, #8B5CF6, #C084FC);
            --card-bg: #ffffff;
        }

        /* Reset CSS cơ bản và font-family nhất quán */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        body {
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.5;
            padding: 0;
            margin: 0;
            padding-top: 1.5rem;
            padding-bottom: 1.5rem;
            background-image: radial-gradient(circle at 80% 10%, rgba(124, 58, 237, 0.03) 0%, transparent 600px), radial-gradient(circle at 20% 90%, rgba(79, 70, 229, 0.03) 0%, transparent 600px);
            min-height: 100vh; /* Đảm bảo footer luôn ở dưới */
            display: flex;
            flex-direction: column;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 1.5rem;
            flex-grow: 1; /* Cho phép main content mở rộng để đẩy footer xuống */
        }

        /* CSS cho Header (nhất quán với draw (1).html) */
        header {
            padding: 1.5rem 0 2rem;
            text-align: center;
            position: relative;
            background-color: var(--card-bg); /* Hoặc màu nền phù hợp */
            border-bottom: 1px solid var(--border-color);
            box-shadow: var(--box-shadow);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        h1.main-header {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.8em;
            text-align: center;
            margin: 0; /* Loại bỏ margin-top/bottom để phù hợp với flex */
            color: transparent;
            background: linear-gradient(45deg, #00f3ff 30%, #a855f7 70%);
            -webkit-background-clip: text;
            background-clip: text;
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
            position: relative;
            padding: 0; /* Loại bỏ padding */
            letter-spacing: 2px;
            flex-shrink: 0; /* Không co lại */
        }

        h1.main-header::before,
        h1.main-header::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, #3d3dff);
            animation: borderExpand 1.5s ease-out forwards;
        }

        h1.main-header::before {
            top: 0;
            left: 0;
        }

        h1.main-header::after {
            bottom: 0;
            right: 0;
            animation-delay: 0.5s;
        }

        @keyframes borderExpand {
            to {
                width: 100%;
            }
        }

        .description {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto 1rem; /* Giảm margin-bottom cho phù hợp với nav */
            line-height: 1.6;
            text-align: center;
        }

        .sci-fi-btn {
            position: relative;
            padding: 8px 16px; /* Tăng padding một chút cho nút */
            font-family: 'Arial', sans-serif;
            font-size: 1em;
            letter-spacing: 1px; /* Giảm letter-spacing cho dễ đọc */
            text-transform: uppercase;
            color: #00f3ff;
            background: #0a0a2e;
            border: 2px solid #3d3dff;
            border-radius: 8px;
            cursor: pointer;
            overflow: hidden;
            transition: 0.5s;
            text-shadow: 0 0 10px #00f3ff;
            box-shadow: 0 0 20px rgba(61, 61, 255, 0.3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none; /* Đảm bảo không có gạch chân cho thẻ a */
            z-index: 10; /* Đảm bảo nút nằm trên các hiệu ứng */
        }

        .sci-fi-btn:hover {
            background: #13134e;
            box-shadow: 0 0 30px rgba(61, 61, 255, 0.6);
            transform: scale(1.05);
            color: #ffffff;
        }

        /* Hiệu ứng viền phát sáng cho nút */
        .sci-fi-btn .glowing-border {
            position: absolute;
            background: linear-gradient(90deg, transparent, #3d3dff);
        }
        .sci-fi-btn .glowing-border:nth-child(1) { top: 0; left: -100%; width: 100%; height: 2px; animation: glow-border-top 1.5s linear forwards infinite; }
        .sci-fi-btn .glowing-border:nth-child(2) { right: 0; top: -100%; width: 2px; height: 100%; animation: glow-border-right 1.5s linear forwards infinite 0.3s; }
        .sci-fi-btn .glowing-border:nth-child(3) { bottom: 0; right: -100%; width: 100%; height: 2px; animation: glow-border-bottom 1.5s linear forwards infinite 0.6s; }
        .sci-fi-btn .glowing-border:nth-child(4) { left: 0; bottom: -100%; width: 2px; height: 100%; animation: glow-border-left 1.5s linear forwards infinite 0.9s; }

        @keyframes glow-border-top { 0% {left: -100%;} 100% {left: 100%;} }
        @keyframes glow-border-right { 0% {top: -100%;} 100% {top: 100%;} }
        @keyframes glow-border-bottom { 0% {right: -100%;} 100% {right: 100%;} }
        @keyframes glow-border-left { 0% {bottom: -100%;} 100% {bottom: 100%;} }

        .sci-fi-btn:active {
            transform: scale(0.95);
            transition: 0.1s;
        }

        /* CSS cho Navigation Bar (mới) */
        .navbar {
            width: 100%;
            background-color: var(--card-bg);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            padding: 0.5rem 1.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap; /* Cho phép các mục xuống dòng trên màn hình nhỏ */
            gap: 1rem;
            margin-top: 1rem;
            border: 1px solid var(--border-color);
            z-index: 5; /* Đảm bảo navbar nằm dưới header nhưng trên nội dung */
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 1.5rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            padding: 0.5rem 0.8rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: all 0.3s ease-out;
            z-index: -1;
            border-radius: var(--border-radius);
        }

        .nav-links a:hover {
            color: white;
            transform: translateY(-2px);
        }

        .nav-links a:hover::before {
            left: 0;
            opacity: 1;
        }

        .nav-links a i {
            color: var(--text-light); /* Màu icon mặc định */
            transition: color 0.3s ease-out;
        }
        .nav-links a:hover i {
            color: white; /* Màu icon khi hover */
        }

        .hamburger-menu {
            display: none; /* Ẩn theo mặc định trên desktop */
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-color);
            background: none;
            border: none;
            padding: 0.5rem;
            transition: var(--transition);
        }
        .hamburger-menu:hover {
            color: var(--primary-color);
        }

        /* Responsive cho Navigation Bar */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: center;
            }
            h1.main-header {
                font-size: 2.2em;
            }
            .description {
                font-size: 1rem;
            }
            .navbar {
                flex-direction: column;
                padding: 1rem;
            }
            .nav-links {
                flex-direction: column;
                width: 100%;
                gap: 0.5rem;
                display: none; /* Ẩn menu links trên mobile theo mặc định */
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex; /* Hiện menu links khi active */
            }
            .nav-links a {
                width: 100%;
                text-align: center;
                padding: 0.75rem 1rem;
                justify-content: center;
            }
            .hamburger-menu {
                display: block; /* Hiện hamburger trên mobile */
            }
        }
        @media (max-width: 480px) {
            h1.main-header {
                font-size: 1.8em;
            }
            .description {
                font-size: 0.9rem;
            }
        }

        /* CSS cho Footer (nhất quán với draw (1).html) */
        footer {
            text-align: center;
            padding: 2rem 0 1.5rem;
            color: var(--text-light);
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: auto; /* Đẩy footer xuống cuối trang */
            background-color: var(--card-bg); /* Hoặc màu nền phù hợp */
            border-top: 1px solid var(--border-color);
            box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.04), 0 0 1px rgba(0, 0, 0, 0.1);
        }
        footer i {
            color: var(--primary-light);
        }

            /* CSS cho menu thả xuống */
            .dropdown {
                position: relative;
            }

            .dropdown-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                cursor: pointer;
                padding: 0.5rem 0.8rem;
                border-radius: var(--border-radius);
                transition: var(--transition);
                position: relative;
                overflow: hidden;
                text-decoration: none;
                color: var(--text-color);
                font-weight: 500;
            }

            .dropdown-toggle::before {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 100%;
                height: 100%;
                background: var(--gradient-primary);
                opacity: 0;
                transition: all 0.3s ease-out;
                z-index: -1;
                border-radius: var(--border-radius);
            }

            .dropdown-toggle:hover {
                color: white;
                transform: translateY(-2px);
            }

            .dropdown-toggle:hover::before {
                left: 0;
                opacity: 1;
            }

            .dropdown-toggle .dropdown-arrow {
                margin-left: 5px;
                transition: transform 0.3s ease;
                font-size: 0.8em; /* Kích thước nhỏ hơn cho mũi tên */
            }

            .dropdown:hover .dropdown-toggle .dropdown-arrow {
                transform: rotate(180deg);
            }

            .dropdown-menu {
                display: none;
                position: absolute;
                background-color: var(--card-bg);
                min-width: 180px;
                box-shadow: var(--box-shadow);
                border-radius: var(--border-radius);
                z-index: 100; /* Đảm bảo nằm trên các phần tử khác */
                list-style: none;
                padding: 0.5rem 0;
                border: 1px solid var(--border-color);
                top: calc(100% + 5px); /* Khoảng cách từ toggle */
                left: 0;
                opacity: 0;
                transform: translateY(10px);
                transition: opacity 0.3s ease, transform 0.3s ease;
            }

            .dropdown:hover .dropdown-menu {
                display: block;
                opacity: 1;
                transform: translateY(0);
            }

            .dropdown-menu li a {
                color: var(--text-color);
                padding: 0.75rem 1.5rem;
                text-decoration: none;
                display: block;
                white-space: nowrap; /* Ngăn văn bản xuống dòng */
                transition: background-color 0.2s ease, color 0.2s ease;
                border-radius: var(--border-radius); /* Để có hiệu ứng nền tròn đẹp mắt */
            }

            .dropdown-menu li a:hover {
                background-color: var(--light-bg); /* Nền nhẹ khi hover */
                color: var(--primary-color);
            }

            /* Responsive cho Navigation Bar với Dropdown */
            @media (max-width: 768px) {
                .nav-links {
                    align-items: flex-start; /* Để các mục con không bị căn giữa */
                }
                .nav-links.active {
                    /* Khi menu mobile active, các dropdown nên hiển thị dưới dạng danh sách */
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start; /* Để các mục con không bị căn giữa */
                }

                .dropdown-toggle {
                    width: 100%; /* Đảm bảo nút toggle chiếm hết chiều rộng trên mobile */
                    justify-content: flex-start; /* Căn trái văn bản */
                }
                .dropdown-toggle .dropdown-arrow {
                    margin-left: auto; /* Đẩy mũi tên sang phải */
                }

                .dropdown-menu {
                    position: static; /* Trên mobile, menu thả xuống không cần absolute positioning */
                    width: 100%;
                    box-shadow: none;
                    border: none;
                    padding: 0;
                    background-color: transparent; /* Nền trong suốt trên mobile */
                    border-radius: 0;
                    opacity: 1; /* Luôn hiển thị trên mobile khi cha hover */
                    transform: translateY(0);
                }

                .dropdown-menu li a {
                    padding-left: 2.5rem; /* Thụt lề các mục con */
                    border-left: 3px solid transparent; /* Tạo đường viền nhỏ cho mục con */
                }
                .dropdown-menu li a:hover {
                    background-color: rgba(99, 102, 241, 0.05); /* Hiệu ứng hover nhẹ hơn */
                    border-left-color: var(--primary-light);
                }
            }
