
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
            font-size: 16px;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        main {
            flex-grow: 1;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            color: #222222;
        }

        h1 {
            font-size: 28px;
            margin-bottom: 16px;
        }

        h2 {
            font-size: 24px;
            margin-bottom: 16px;
        }

        h3 {
            font-size: 20px;
            margin-bottom: 14px;
        }

        h4 {
            font-size: 18px;
            margin-bottom: 12px;
        }

        h5 {
            font-size: 16px;
            margin-bottom: 10px;
        }

        p {
            margin-bottom: 14px;
            color: #444444;
        }

        a {
            text-decoration: none;
            color: #333333;
            transition: color 0.2s ease;
        }

        a:hover {
            color: #ff9800;
        }

        strong {
            font-weight: 700;
        }

        /* Logo Font */
        .logo-font {
            font-family: 'Orbitron', sans-serif;
        }

        /* Text Colors */
        .text-white { color: #ffffff; }
        .text-gray-300 { color: #d1d5db; }
        .text-gray-400 { color: #9ca3af; }
        .text-gray-600 { color: #4b5563; }
        .text-gray-700 { color: #374151; }
        .text-gray-800 { color: #1f2937; }
        .text-orange-500 { color: #ff9800; }
        .text-orange-600 { color: #f57c00; }
        .text-blue-500 { color: #3b82f6; }
        .text-blue-600 { color: #2563eb; }
        .text-green-500 { color: #4caf50; }
        .text-green-600 { color: #43a047; }
        .text-red-600 { color: #e53935; }
        .text-yellow-500 { color: #ffc107; }
        .text-purple-600 { color: #7b1fa2; }

        /* Background Colors */
        .bg-white { background-color: #ffffff; }
        .bg-gray-50 { background-color: #fafafa; }
        .bg-gray-100 { background-color: #f5f5f5; }
        .bg-gray-800 { background-color: #333333; }
        .bg-gray-900 { background-color: #222222; }
        .bg-orange-500 { background-color: #ff9800; }
        .bg-orange-600 { background-color: #f57c00; }
        .bg-orange-50 { background-color: #fff3e0; }
        .bg-green-50 { background-color: #e8f5e9; }
        .bg-blue-100 { background-color: #e3f2fd; }
        .bg-green-100 { background-color: #e8f5e9; }
        .bg-purple-100 { background-color: #f3e5f5; }
        .bg-red-100 { background-color: #ffebee; }
        .bg-yellow-100 { background-color: #fffde7; }
        .bg-orange-100 { background-color: #fff3e0; }

        /* Spacing */
        .p-4 { padding: 16px; }
        .p-6 { padding: 24px; }
        .p-8 { padding: 32px; }
        .p-12 { padding: 48px; }
        .py-2 { padding-top: 8px; padding-bottom: 8px; }
        .py-3 { padding-top: 12px; padding-bottom: 12px; }
        .py-4 { padding-top: 16px; padding-bottom: 16px; }
        .py-12 { padding-top: 48px; padding-bottom: 48px; }
        .py-16 { padding-top: 64px; padding-bottom: 64px; }
        .px-2 { padding-left: 8px; padding-right: 8px; }
        .px-4 { padding-left: 16px; padding-right: 16px; }
        .px-10 { padding-left: 40px; padding-right: 40px; }
        .px-12 { padding-left: 48px; padding-right: 48px; }
        .mb-2 { margin-bottom: 8px; }
        .mb-4 { margin-bottom: 16px; }
        .mb-6 { margin-bottom: 24px; }
        .mb-8 { margin-bottom: 32px; }
        .mb-10 { margin-bottom: 40px; }
        .mb-16 { margin-bottom: 64px; }
        .mt-2 { margin-top: 8px; }
        .mt-4 { margin-top: 16px; }
        .mt-8 { margin-top: 32px; }
        .mt-10 { margin-top: 40px; }
        .mt-12 { margin-top: 48px; }
        .mt-auto { margin-top: auto; }
        .mr-1 { margin-right: 4px; }
        .mr-2 { margin-right: 8px; }
        .ml-1 { margin-left: 4px; }
        .space-y-2 > * + * { margin-top: 8px; }
        .space-y-3 > * + * { margin-top: 12px; }

        /* Layout */
        .flex { display: flex; }
        .flex-col { flex-direction: column; }
        .flex-wrap { flex-wrap: wrap; }
        .grid { display: grid; }
        .relative { position: relative; }
        .absolute { position: absolute; }
        .sticky { position: sticky; }
        .fixed { position: fixed; }

        /* Flex Justify & Align */
        .justify-center { justify-content: center; }
        .justify-between { justify-content: space-between; }
        .items-center { align-items: center; }

        /* Grid */
        .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
        .gap-4 { gap: 16px; }
        .gap-6 { gap: 24px; }
        .gap-8 { gap: 32px; }

        @media (min-width: 768px) {
            .md\:flex-row { flex-direction: row; }
            .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
            .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
            .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
            .md\:text-4xl { font-size: 36px; }
            .md\:text-5xl { font-size: 48px; }
            .md\:text-6xl { font-size: 60px; }
        }

        /* Width & Height */
        .w-full { width: 100%; }
        .h-full { height: 100%; }
        .w-4 { width: 16px; }
        .w-5 { width: 20px; }
        .w-6 { width: 24px; }
        .w-8 { width: 32px; }
        .w-12 { width: 48px; }
        .w-16 { width: 64px; }
        .w-48 { width: 192px; }
        .min-h-\[500px\] { min-height: 500px; }
        .aspect-video {
            aspect-ratio: 16 / 9;
        }

        /* Typography */
        .text-sm { font-size: 14px; }
        .text-base { font-size: 16px; }
        .text-lg { font-size: 18px; }
        .text-xl { font-size: 20px; }
        .text-2xl { font-size: 24px; }
        .text-3xl { font-size: 30px; }
        .text-4xl { font-size: 36px; }
        .font-medium { font-weight: 500; }
        .font-bold { font-weight: 700; }
        .tracking-wider { letter-spacing: 0.1em; }
        .leading-relaxed { line-height: 1.625; }
        .text-center { text-align: center; }

        /* Borders */
        .border { border: 1px solid #e5e5e5; }
        .border-b { border-bottom: 1px solid #e5e5e5; }
        .border-l-4 { border-left: 4px solid; }
        .border-gray-200 { border-color: #e5e5e5; }
        .border-gray-700 { border-color: #4a4a4a; }
        .border-gray-800 { border-color: #333333; }
        .border-orange-500 { border-color: #ff9800; }
        .border-blue-500 { border-color: #ff9800; }
        .border-green-500 { border-color: #4caf50; }
        .border-purple-500 { border-color: #9c27b0; }
        .rounded-lg { border-radius: 8px; }
        .rounded-xl { border-radius: 12px; }
        .rounded-2xl { border-radius: 16px; }
        .rounded-full { border-radius: 9999px; }

        /* Shadows */
        .shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
        .shadow-md { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
        .shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }
        .shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1); }

        /* Overflow */
        .overflow-hidden { overflow: hidden; }

        /* Z-Index */
        .z-0 { z-index: 0; }
        .z-10 { z-index: 10; }
        .z-20 { z-index: 20; }
        .z-50 { z-index: 50; }

        /* Opacity */
        .opacity-50 { opacity: 0.5; }

        /* Transitions */
        .transition {
            transition: all 0.2s ease;
        }

        /* Hover Effects */
        .hover\:text-orange-500:hover { color: #ff9800; }
        .hover\:bg-orange-600:hover { background-color: #f57c00; }
        .hover\:bg-gray-700:hover { background-color: #4a4a4a; }
        .hover\:shadow-lg:hover { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); }

        /* Gradients */
        .bg-gradient-to-b {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
        }
        .bg-gradient-to-r {
            background: linear-gradient(to right, #fff3e0, #fffde7);
        }

        /* Border Bottom */
        .border-b-2 { border-bottom-width: 2px; }

        /* Cursor */
        .cursor-pointer { cursor: pointer; }

        /* Flex Grow */
        .flex-grow { flex-grow: 1; }

        /* Container */
        .max-w-7xl {
            max-width: 1280px;
        }
        .max-w-3xl {
            max-width: 768px;
        }
        .max-w-2xl {
            max-width: 672px;
        }
        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        /* Image */
        .object-cover {
            object-fit: cover;
        }
        .object-center {
            object-position: center;
        }

        /* SVG */
        .w-6 { width: 24px; height: 24px; }
        .h-6 { height: 24px; }

        /* Fill */
        .fill-current {
            fill: currentColor;
        }

        /* Custom Styles Matching Reference Site */
        .nav-link {
            color: #ffffff;
            font-weight: 500;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
        }

        .nav-link:hover {
            color: #ff9800;
            border-bottom-color: #ff9800;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            background-color: #ff9800;
            color: #ffffff;
            font-weight: 700;
            font-size: 18px;
            padding: 14px 32px;
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 14px rgba(255, 152, 0, 0.4);
        }

        .download-btn:hover {
            background-color: #f57c00;
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 152, 0, 0.5);
        }

        .download-btn svg {
            width: 24px;
            height: 24px;
            margin-right: 12px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 24px;
            padding-left: 20px;
            border-left: 4px solid #ff9800;
        }

        .feature-card {
            background-color: #ffffff;
            border: 1px solid #e5e5e5;
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .feature-icon svg {
            width: 24px;
            height: 24px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            color: #cccccc;
            font-size: 14px;
            margin: 0 16px;
        }

        .stat-item svg {
            width: 18px;
            height: 18px;
            margin-right: 8px;
        }

        .screenshot-item {
            background-color: #333333;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .screenshot-item:hover {
            transform: scale(1.05);
        }

        .screenshot-item img {
            width: 100%;
            height: auto;
            display: block;
        }

        .screenshot-label {
            padding: 12px;
            text-align: center;
            color: #ffffff;
            font-size: 14px;
        }

        .footer-link {
            display: block;
            color: #bbbbbb;
            padding: 6px 0;
            transition: color 0.2s ease;
        }

        .footer-link:hover {
            color: #ff9800;
        }

        .footer-title {
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            background: #2d2d44;
            border: 1px solid #444;
            border-radius: 8px;
            color: #fff;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dropdown-toggle:hover {
            background: #3d3d5c;
            border-color: #666;
        }

        .dropdown-toggle svg {
            width: 18px;
            height: 18px;
        }

        .dropdown-toggle .arrow {
            width: 14px;
            height: 14px;
            transition: transform 0.3s ease;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%; /* Position directly below the button */
            left: 0;
            min-width: 180px;
            background: #2d2d44;
            border: 1px solid #444;
            border-radius: 8px;
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
            /* KEY FIX: Add padding-top to create invisible bridge */
            margin-top: 0;
            padding-top: 8px;
        }

        /* KEY FIX: Use ::before pseudo-element to bridge the gap */
        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 0;
            right: 0;
            height: 10px;
            background: transparent;
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 16px;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            transition: background 0.2s ease;
        }

        .dropdown-menu a:hover {
            background: #3d3d5c;
        }

        /* KEY FIX: Hover on the PARENT .dropdown container, not just the button */
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

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

        /* Demo content */
        .demo-info {
            max-width: 600px;
            margin: 100px auto;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            text-align: center;
        }

        .demo-info h1 {
            margin-bottom: 1rem;
            color: #4ade80;
        }

        .demo-info p {
            line-height: 1.6;
            color: #ccc;
        }

        .demo-info code {
            background: rgba(0, 0, 0, 0.3);
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.9em;
        }

        .fix-list {
            text-align: left;
            margin-top: 1.5rem;
            padding-left: 1.5rem;
        }

        .fix-list li {
            margin-bottom: 0.5rem;
            color: #aaa;
        }        /* Game Info Box */
        .game-info {
            background-color: #333333;
            border-radius: 8px;
            padding: 24px;
            color: #ffffff;
        }

        .game-info h3 {
            color: #ff9800;
            font-size: 18px;
            margin-bottom: 16px;
        }

        .game-info-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #4a4a4a;
        }

        .game-info-row:last-child {
            border-bottom: none;
        }

        .game-info-label {
            color: #999999;
        }

        /* Requirements Box */
        .requirements-box {
            background-color: #f5f5f5;
            border-radius: 12px;
            padding: 24px;
        }

        .requirements-box.recommended {
            background-color: #e8f5e9;
        }

        .requirements-title {
            display: flex;
            align-items: center;
            font-size: 18px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 16px;
        }

        .requirements-title span {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 6px;
            color: #ffffff;
            font-size: 12px;
            font-weight: 700;
            margin-right: 12px;
        }

        .requirements-title .min {
            background-color: #ffc107;
        }

        .requirements-title .rec {
            background-color: #4caf50;
        }

        .requirements-table {
            width: 100%;
            color: #555555;
        }

        .requirements-table tr {
            border-bottom: 1px solid #e0e0e0;
        }

        .requirements-table tr:last-child {
            border-bottom: none;
        }

        .requirements-table td {
            padding: 10px 0;
        }

        .requirements-table td:first-child {
            font-weight: 500;
            width: 120px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(to right, #333333, #444444);
            border-radius: 16px;
            padding: 48px;
            text-align: center;
            color: #ffffff;
        }

        .cta-section h2 {
            color: #ffffff;
            font-size: 32px;
            margin-bottom: 16px;
        }

        .cta-section p {
            color: #cccccc;
            font-size: 18px;
            margin-bottom: 24px;
            max-width: 672px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer {
            background-color: #222222;
            color: #999999;
            padding: 48px 0 24px;
            margin-top: auto;
        }

        .footer-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #ff9800;
            margin-bottom: 16px;
        }

        .footer-desc {
            color: #888888;
            font-size: 14px;
            line-height: 1.7;
        }

        .footer-bottom {
            border-top: 1px solid #333333;
            margin-top: 32px;
            padding-top: 24px;
            text-align: center;
            font-size: 14px;
            color: #666666;
        }

        /* Screenshot grid */
        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        @media (min-width: 768px) {
            .screenshots-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        /* Steps */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 24px;
        }

        @media (min-width: 768px) {
            .steps-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .step-card {
            text-align: center;
            background-color: #ffffff;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .step-number {
            width: 56px;
            height: 56px;
            background-color: #ff9800;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 16px;
        }

        .step-number.check {
            background-color: #4caf50;
        }

        .step-title {
            font-size: 16px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 8px;
        }

        .step-desc {
            font-size: 14px;
            color: #666666;
        }

        /* Hero section */
        .hero {
            position: relative;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 64px 24px;
            background-image: url('https://counter-strike-16.net/dust2.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 960px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 36px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 24px;
            font-family: 'Orbitron', sans-serif;
        }

        @media (min-width: 768px) {
            .hero h1 {
                font-size: 48px;
            }
        }

        .hero p {
            font-size: 18px;
            color: #cccccc;
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            margin-top: 32px;
        }

        /* Main content */
        .main-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 48px 24px;
        }

        /* Navbar */
        .navbar {
            background-color: #222222;
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: #ff9800;
            text-decoration: none;
        }

        .navbar-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 24px;
        }

        @media (min-width: 768px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
        }

        @media (min-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .game-image {
            background-color: #333333;
            border-radius: 12px;
            overflow: hidden;
            height: 200px;
        }

        .game-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (min-width: 768px) {
            .game-image {
                height: 224px;
            }
        }

        /* Link styles override */
        .no-underline {
            text-decoration: none;
        }

