  
          :root {
            --color-primary: #6cc195; /* MonsGeek Green (main) */
            --color-secondary: #333333;
            --color-background-light: #fafafa;
            --color-block-background: white;
            --color-border: #e5e5e5;
            --color-hover-light: #f8f8f8;
            --color-primary-hover: #58a07c; /* Darker Green for hover */
            --border-radius-default: 8px;
            --font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            --shadow-subtle: 0 4px 10px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 8px 20px rgba(0,0,0,0.08);
            --shadow-overlay: 0 10px 30px rgba(0, 0, 0, 0.3);
            --overlay-transparent: rgba(0, 0, 0, 0.5);
        }
        .header {
            background-image: url('https://www.monsgeek.com/wp-content/uploads/2025/12/MonsGeek-Customer-Support.webp');
            background-size: cover;
            background-position: center;
            background-color: var(--color-primary);
      
            text-align: center;
            position: relative;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
        }

        .header-content {
            position: relative;
            z-index: 1;
            color: white;
        }

        .header h1 {
            font-size: 42px;
            margin-bottom: 12px;
            font-weight: 600;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .header p {
            font-size: 16px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }

        .download_wrap{
              padding: 40px 20px;
          }  

        /* Product Promo Section - Size: 800 x 400 px*/
        .product-promos {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .product-card {
            background: var(--color-block-background);
            border-radius: var(--border-radius-default);
            border: 1px solid var(--color-border);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            height: 200px;
        }

        .product-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .product-image {
            width: 100%;
            height: 100%;
            background-color: #f5f5f5;
            background-image: url('https://www.monsgeek.com/wp-content/uploads/2025/12/MonsGeek-TMR-Magmech-Series.webp');
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .product-card:nth-child(2) .product-image {
            background-image: url('https://www.monsgeek.com/wp-content/uploads/2025/12/MonsGeek-Deals.webp');
        }

        .product-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
        }

        .product-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            color: white;
            z-index: 1;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        }

        .product-info h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        .product-cta {
            color: white;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s ease;
        }

        .product-cta:hover {
            text-decoration: underline;
        }

        /* Search Bar */
        .search-section {
            margin-bottom: 30px;
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .search-bar {
            flex: 1;
            max-width: 500px;
        }

        .search-bar input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--color-border);
            border-radius: 6px;
            font-size: 14px;
            background: white;
        }

        .search-bar input:focus {
            outline: none;
            border-color: var(--color-primary);
        }

        /* Web Driver Module */
        .monsgeek-driver-module .driver-button-container {
            background-color: var(--color-primary) !important;
        }

        .monsgeek-driver-module .driver-button-container:hover {
            opacity: 1;
            background-color: var(--color-primary-hover) !important;
        }

        /* Driver Section from uploaded code */
        .web-driver-section {
            background: white;
            border-radius: var(--border-radius-default);
            border: 1px solid var(--color-border);
            padding: 24px;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .driver-icon {
            width: 50px;
            height: 50px;
            background: #f0f7f3;
            border-radius: var(--border-radius-default);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .driver-btn {
            background: var(--color-primary);
            color: white;
            padding: 10px 28px;
            border-radius: 6px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 14px;
        }

        .driver-btn:hover {
            background: var(--color-primary-hover);
        }

        /* Four Column Layout (Downloads Grid) */
        .downloads-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 40px;
        }

        .category-column {
            background: var(--color-block-background);
            border-radius: var(--border-radius-default);
            border: 1px solid var(--color-border);
            overflow: hidden;
            box-shadow: var(--shadow-subtle);
        }

        .category-header {
            background: var(--color-hover-light);
            padding: 20px;
            border-bottom: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .category-header h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--color-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .category-icon {
            font-size: 20px;
            color: var(--color-primary);
        }

        /* --- HELP ICON OPTIMIZATION: Reduced Green Saturation --- */
        .help-icon {
            width: 18px;
            height: 18px;
            background: white; /* Changed: White background */
            border: 1px solid var(--color-primary); /* Added: Green border */
            color: var(--color-primary); /* Changed: Green text */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            cursor: help;
            position: relative;
            font-weight: bold;
            transition: all 0.2s ease;
        }

        .help-icon:hover {
            background: var(--color-primary); /* Hover: Solid green */
            color: white; /* Hover: White text */
        }
        /* ---------------------------------------------------- */

        .tooltip {
            display: none;
            position: absolute;
            top: 28px;
            right: 0;
            background: var(--color-secondary);
            color: white;
            padding: 12px;
            border-radius: 6px;
            font-size: 12px;
            width: 250px;
            z-index: 100;
            font-weight: normal;
            line-height: 1.5;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .help-icon:hover .tooltip {
            display: block;
            opacity: 1;
        }

        .tooltip::before {
            content: '';
            position: absolute;
            top: -6px;
            right: 8px;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-bottom: 6px solid var(--color-secondary);
        }

        /* --- Scrolling Implemented --- */
        .category-items {
            padding: 16px;
            max-height: 380px;
            overflow-y: auto;
            padding-right: 10px;
        }

        .category-items::-webkit-scrollbar {
            width: 8px;
        }

        .category-items::-webkit-scrollbar-thumb {
            background-color: rgba(51, 51, 51, 0.3);
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .category-items::-webkit-scrollbar-thumb:hover {
            background-color: var(--color-primary);
        }

        .category-items::-webkit-scrollbar-track {
            background-color: var(--color-border);
        }
        /* -------------------------- */

        .download-item {
            padding: 14px 0;
            margin-bottom: 0;
            border-bottom: 1px solid var(--color-border);
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .download-item:last-child {
            border-bottom: none;
        }

        .download-item:hover {
            background: var(--color-hover-light);
            padding: 14px 10px 14px 0;
        }

        .item-info {
            flex: 1;
            /* Visual hint for clickable description */
            text-decoration: underline dotted var(--color-primary);
            text-underline-offset: 3px;
        }

        .item-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--color-secondary);
            margin-bottom: 4px;
        }

        .item-type {
            font-size: 12px;
            color: #999;
            text-decoration: none;
        }

        /* --- Download Icon Implemented --- */
        .download-link {
            flex-shrink: 0;
            text-decoration: none;
            color: rgba(51, 51, 51, 0.4);
            font-size: 1.4em;
            margin-left: 10px;
            transition: transform 0.2s, color 0.2s;
        }

        .download-link:hover {
            color: var(--color-primary);
            transform: scale(1.1);
        }

        .download-link:active {
            color: var(--color-primary);
        }
        /* ------------------------------------ */

        .promo-section {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 24px;
            margin-bottom: 40px;
        }

        .blog-promo {
            background: var(--color-block-background);
            border-radius: var(--border-radius-default);
            border: 1px solid var(--color-border);
            overflow: hidden;
            box-shadow: var(--shadow-subtle);
        }

        .blog-header {
            background: var(--color-hover-light);
            padding: 20px;
            border-bottom: 1px solid var(--color-border);
        }

        .blog-header h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--color-secondary);
        }

        .blog-content {
            padding: 20px;
        }

        .blog-item {
            display: flex;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid #f0f0f0;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .blog-item:last-child {
            border-bottom: none;
        }

        .blog-item:hover {
            background: var(--color-hover-light);
            margin: 0 -20px;
            padding: 16px 20px;
        }

        .blog-thumbnail {
            width: 60px;
            height: 60px;
            background: var(--color-primary);
            border-radius: 6px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
        }

        .blog-info h4 {
            font-size: 14px;
            font-weight: 600;
            color: var(--color-secondary);
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .blog-info p {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 6px;
        }

        .blog-date {
            font-size: 11px;
            color: #999;
        }

        .side-ad {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
            border-radius: var(--border-radius-default);
            padding: 30px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            box-shadow: var(--shadow-subtle);
        }

        .side-ad-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .side-ad h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .side-ad p {
            font-size: 13px;
            opacity: 0.95;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .side-ad-btn {
            background: white;
            color: var(--color-primary);
            padding: 12px 24px;
            border-radius: 6px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .side-ad-btn:hover {
            background: var(--color-hover-light);
            color: var(--color-primary-hover);
        }

        /* --- Pop-up Description (JS Functionality) --- */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--overlay-transparent);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .popup-content {
            background-color: white;
            padding: 30px;
            border-radius: var(--border-radius-default);
            max-width: 450px;
            width: 90%;
            position: relative;
            box-shadow: var(--shadow-overlay);
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 1.5em;
            font-weight: bold;
            cursor: pointer;
            color: #999;
            transition: color 0.2s;
        }

        .close-btn:hover {
            color: var(--color-secondary);
        }

        .popup-content h4 {
            color: var(--color-primary);
            margin-bottom: 15px;
            border-bottom: 1px solid var(--color-border);
            padding-bottom: 5px;
        }
        /* ---------------------------------------- */


             .monsgeek-driver-module {
                    margin: 0;
                    padding: 20px 0;
                    font-family: var(--font-stack);
                    background: none;
                    display: flex;
                    justify-content: center;
                    align-items: flex-start;
                }

                .monsgeek-driver-module .content-wrapper {
                    background-color: var(--color-block-background);
                    padding: 30px;
                    border-radius: var(--border-radius-default);
                    max-width: 100%;
                    width: 100%;
                    box-shadow: var(--shadow-subtle);
                    display: flex;
                    gap: 30px;
                    align-items: flex-start;
                    border: 1px solid var(--color-border);
                }

                .monsgeek-driver-module .left-panel {
                    flex: 1;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    text-align: center;
                }

                .monsgeek-driver-module .driver-button-container {
                    width: 180px;
                    height: 180px;
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    text-decoration: none !important;
                    color: white !important;
                    background-color: var(--color-primary) !important;
                    border-radius: 16px !important;
                    transition: all 0.3s ease;
                    padding: 10px;
                    box-sizing: border-box;
                }

                .monsgeek-driver-module .driver-button-container:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
                    background-color: var(--color-primary-hover) !important;
                }

                .monsgeek-driver-module .cloud-icon {
                    font-size: 50px;
                    margin-bottom: 8px;
                    color: white;
                }

                .monsgeek-driver-module .driver-button-text {
                    font-size: 16px;
                    font-weight: 600;
                    text-align: center;
                    line-height: 1.3;
                    color: white !important;
                }

                .monsgeek-driver-module a:link,
                .monsgeek-driver-module a:visited,
                .monsgeek-driver-module a:hover,
                .monsgeek-driver-module a:active {
                    color: inherit !important;
                    text-decoration: none !important;
                }

                .monsgeek-driver-module .right-panel {
                    flex: 2;
                }

                .monsgeek-driver-module .note {
                    color: black;
                    line-height: 1.6;
                    font-size: 15px;
                }

                .monsgeek-driver-module .note p {
                    margin-top: 0;
                    margin-bottom: 12px;
                }

                .monsgeek-driver-module .note strong {
                    display: block;
                    margin-bottom: 8px;
                    font-size: 16px;
                    color: var(--color-secondary);
                }




        @media (max-width: 1200px) {
            .downloads-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .product-promos {
                grid-template-columns: 1fr;
            }
        }

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

            .promo-section {
                grid-template-columns: 1fr;
            }

            .header h1 {
                font-size: 32px;
            }

            .monsgeek-driver-module .content-wrapper {
                flex-direction: column;
                align-items: center;
            }
            .monsgeek-driver-module .right-panel {
                text-align: center;
                margin-top: 20px;
            }
        }