        :root {
            --primary: #ff3d00;
            --primary-dark: #cc3100;
            --primary-light: #ff6a3d;
            --orange-grad: linear-gradient(135deg, #ff6a00 0%, #ff0000 100%);
            --dark-bg: #1f2937;
            --light-bg: #f4f4f4;
            --white: #ffffff;
            --border: #e5e7eb;
            --text: #333333;
            --text-light: #6b7280;
            --card-bg: #f9fafb;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', 'Segoe UI', sans-serif; }
        body { background: var(--light-bg); color: var(--text); display: flex; flex-direction: column; min-height: 100vh; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        .container { max-width: 1275px; margin: 0 auto; padding: 0 20px; }

        /* ===== TOP BAR ===== */
        .top-bar { background: var(--dark-bg); padding: 8px 0; font-size: 13px; color: rgba(255,255,255,0.75); }
        .top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
        .top-left { display: flex; align-items: center; gap: 20px; }
        .top-left a { color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 6px; transition: 0.2s; }
        .top-left a:hover { color: #fff; }
        .top-right { display: flex; align-items: center; gap: 10px; }
        .btn-sm { padding: 5px 14px; border-radius: 4px; font-weight: 600; font-size: 12px; cursor: pointer; border: none; transition: 0.2s; }
        .btn-orange { background: var(--orange-grad); color: #fff; }
        .btn-outline { background: transparent; color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.3); }
        .btn-sm:hover { opacity: 0.85; transform: translateY(-1px); }

        /* ===== MAIN HEADER ===== */
        .main-header { background: var(--white); padding: 18px 0; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
        .header-inner { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
        .logo { font-size: 26px; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
        .logo span { color: var(--dark-bg); }
        .logo-icon { width: 38px; height: 38px; background: var(--orange-grad); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; }
        .search-box { flex: 1; max-width: 480px; position: relative; }
        .search-box input { width: 100%; padding: 11px 50px 11px 16px; border: 1.5px solid var(--border); border-radius: 8px; outline: none; font-size: 14px; background: #f9fafb; transition: 0.2s; }
        .search-box input:focus { border-color: var(--primary); background: #fff; }
        .search-box button { position: absolute; right: 0; top: 0; bottom: 0; background: var(--orange-grad); border: none; border-radius: 0 8px 8px 0; color: #fff; padding: 0 16px; cursor: pointer; font-size: 15px; }
        .header-actions { display: flex; align-items: center; gap: 12px; }
        .cart-btn { position: relative; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--text); transition: 0.2s; cursor: pointer; border: 1px solid var(--border); border-radius: 8px; }
        .cart-btn:hover { color: var(--primary); border-color: var(--primary); }
        .cart-count { position: absolute; top: -6px; right: -6px; background: var(--primary); color: #fff; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
        .header-contact { display: flex; align-items: center; gap: 8px; border: 1px solid var(--border); padding: 8px 16px; border-radius: 8px; font-size: 14px; color: var(--text); background: var(--card-bg); }
        .header-contact i { color: var(--primary); font-size: 16px; }
        .header-contact .hc-num { font-weight: 700; color: var(--dark-bg); font-size: 14px; }
        .btn-login { background: var(--orange-grad); color: #fff; padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 7px; cursor: pointer; border: none; transition: 0.2s; white-space: nowrap; }
        .btn-login:hover { opacity: 0.88; transform: translateY(-1px); }
        .btn-register { background: var(--dark-bg); color: #fff; padding: 10px 20px; border-radius: 8px; font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 7px; cursor: pointer; border: none; transition: 0.2s; white-space: nowrap; }
        .btn-register:hover { background: #374151; transform: translateY(-1px); }
        .mobile-menu-btn { display: none; background: none; border: none; font-size: 24px; color: var(--text); cursor: pointer; }

        /* ===== NAVBAR ===== */
        .navbar { background: var(--white); border-bottom: 2px solid #f0f0f0; }
        .nav-inner { display: flex; align-items: center; height: 56px; }
        .nav-links { display: flex; height: 100%; align-items: center; gap: 2px; }
        .nav-links > li { height: 100%; display: flex; align-items: center; position: relative; }
        .nav-links > li > a { font-weight: 600; font-size: 14px; color: #444; padding: 0 16px; height: 100%; display: flex; align-items: center; gap: 5px; border-bottom: 3px solid transparent; transition: 0.2s; white-space: nowrap; }
        .nav-links > li > a:hover, .nav-links > li > a.active { color: var(--primary); border-bottom-color: var(--primary); }
        .nav-links > li > a .chev { font-size: 10px; margin-left: 1px; }
        .has-dropdown { position: relative; }
        .dropdown { position: absolute; top: 100%; left: 0; background: #fff; min-width: 220px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.12); border: 1px solid var(--border); z-index: 999; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.25s ease; pointer-events: none; }
        .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
        .dropdown li { border-bottom: 1px solid #f5f5f5; }
        .dropdown li:last-child { border-bottom: none; }
        .dropdown li a { display: flex; align-items: center; gap: 10px; padding: 11px 18px; font-size: 13.5px; color: #555; font-weight: 500; border-bottom: none !important; width: 100%; transition: 0.2s; }
        .dropdown li a:hover { background: #fff5f2; color: var(--primary); padding-left: 22px; }
        .dropdown li a i { width: 18px; color: #aaa; }
        .dropdown li a:hover i { color: var(--primary); }
        .nav-right-area { margin-left: auto; display: flex; align-items: center; gap: 8px; }
        .discord-nav { background: #5865F2; color: #fff; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; white-space: nowrap; transition: 0.2s; }
        .discord-nav:hover { background: #4752c4; }
        .ts-nav { background: #1366b5; color: #fff; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; white-space: nowrap; transition: 0.2s; }
        .ts-nav:hover { background: #0f5099; }

        /* Mobile */
        .mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; }
        .mobile-overlay.open { display: block; }
        .mobile-sidebar { position: fixed; top: 0; left: -300px; width: 280px; height: 100vh; background: #fff; z-index: 2001; overflow-y: auto; transition: left 0.3s ease; box-shadow: 4px 0 20px rgba(0,0,0,0.15); }
        .mobile-sidebar.open { left: 0; }
        .mobile-sidebar-header { background: var(--orange-grad); padding: 20px; display: flex; align-items: center; justify-content: space-between; }
        .mobile-sidebar-header .logo { color: #fff; font-size: 20px; }
        .mobile-sidebar-header .logo span { color: rgba(255,255,255,0.75); }
        .mobile-close { background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }
        .mobile-nav a { display: flex; align-items: center; gap: 12px; padding: 13px 20px; font-size: 14px; font-weight: 500; color: #333; border-bottom: 1px solid #f5f5f5; transition: 0.2s; }
        .mobile-nav a:hover { background: #fff5f2; color: var(--primary); }
        .mobile-nav a i { width: 20px; color: #aaa; font-size: 16px; }
        .mobile-nav a:hover i { color: var(--primary); }
        .mobile-section-title { padding: 12px 20px 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; color: #aaa; letter-spacing: 0.5px; }
        .mobile-social-row { display: flex; gap: 10px; padding: 15px 20px; }
        .mobile-social-row a { padding: 8px 14px; border-radius: 6px; font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
        .ms-discord { background: #5865F2; color: #fff; }
        .ms-ts { background: #1366b5; color: #fff; }
        .mobile-bottom-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: #fff; border-top: 1px solid var(--border); z-index: 999; box-shadow: 0 -3px 12px rgba(0,0,0,0.08); }
        .mobile-bottom-nav-inner { display: flex; justify-content: space-around; padding: 8px 0 6px; }
        .mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 10px; font-weight: 500; color: #666; }
        .mobile-bottom-nav a i { font-size: 20px; }
        .mobile-bottom-nav a.active, .mobile-bottom-nav a:hover { color: var(--primary); }

        @media (max-width: 1024px) { .search-box { max-width: 320px; } .header-contact { display: none; } }
        @media (max-width: 768px) {
            .top-bar { display: none; }
            .main-header { padding: 14px 0; }
            .search-box { display: none; }
            .header-actions .btn-login, .header-actions .btn-register { display: none; }
            .navbar { display: none; }
            .mobile-menu-btn { display: block; }
            .mobile-bottom-nav { display: block; }
            body { padding-bottom: 65px; }
        }





.ctx .ct-hdr{background:var(--or-bar);border-radius:12px;padding:18px 26px;display:flex;align-items:center;gap:13px;color:#fff;box-shadow:0 10px 28px rgba(255,85,0,.25);}
.ctx .ct-hdr .ct-ic{width:44px;height:44px;border-radius:11px;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;font-size:20px;flex-shrink:0;}
.ctx .ct-hdr h1{font-family:'Space Grotesk',sans-serif;font-size:clamp(19px,3vw,26px);font-weight:700;margin:0;letter-spacing:-.4px;}























        /* ===== HERO SLIDER ===== */
        .hero-section { background: #fff; padding: 0; }
        .hero-grid { display: grid; grid-template-columns: 1fr 290px; gap: 16px; height: 340px; padding: 20px 0; }
        .slider-wrapper { position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 10px; cursor: grab; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
        .slider-wrapper:active { cursor: grabbing; }
        .slider-track { display: flex; height: 100%; width: 100%; transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94); will-change: transform; }
        .slide { min-width: 100%; height: 100%; position: relative; border-radius: 10px; overflow: hidden; }
        .slide-bg { width: 100%; height: 100%; background-size: cover; background-position: center; display: flex; align-items: center; border-radius: 10px; }
        .slide-content { padding: 40px 50px; max-width: 520px; }
        .slide-badge { display: inline-block; background: rgba(255,255,255,0.2); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 20px; margin-bottom: 14px; backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.3); }
        .slide-title { font-size: 30px; font-weight: 800; color: #fff; line-height: 1.25; margin-bottom: 12px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
        .slide-desc { font-size: 14px; color: rgba(255,255,255,0.88); margin-bottom: 22px; line-height: 1.6; }
        .slide-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--primary); padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 700; transition: 0.2s; box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
        .slide-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
        .slide-price { display: inline-block; background: rgba(255,255,255,0.15); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.3); color: #fff; font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 8px; margin-left: 10px; }
        .slider-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
        .dot { width: 10px; height: 10px; background: rgba(255,255,255,0.5); border-radius: 50%; cursor: pointer; transition: 0.3s; }
        .dot.active { background: #fff; width: 28px; border-radius: 5px; }
        .slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.3); color: #fff; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; transition: 0.2s; z-index: 10; }
        .slider-arrow:hover { background: rgba(255,255,255,0.35); }
        .slider-arrow.prev { left: 14px; }
        .slider-arrow.next { right: 14px; }
        .side-banners { display: flex; flex-direction: column; gap: 14px; }
        .side-banner { flex: 1; border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
        .side-banner-bg { width: 100%; height: 100%; background-size: cover; background-position: center; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 18px; transition: transform 0.4s; }
        .side-banner:hover .side-banner-bg { transform: scale(1.04); }
        .side-banner-title { color: #fff; font-size: 14px; font-weight: 700; text-shadow: 0 2px 8px rgba(0,0,0,0.3); margin-bottom: 4px; }
        .side-banner-sub { color: rgba(255,255,255,0.85); font-size: 12px; }

        @media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; height: auto; } .side-banners { flex-direction: row; height: 160px; } }
        @media (max-width: 600px) { .hero-grid { height: auto; } .slide-content { padding: 24px; } .slide-title { font-size: 20px; } .side-banners { flex-direction: row; height: 140px; gap: 10px; } .side-banner-title { font-size: 12px; } }

        /* ===== DOMAIN CHECK ===== */
        .domain-check-section { background: var(--dark-bg); padding: 30px 0; }
        .domain-check-inner { text-align: center; }
        .domain-check-inner h2 { color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 6px; }
        .domain-check-inner p { color: rgba(255,255,255,0.6); font-size: 14px; margin-bottom: 20px; }
        .domain-search-form { display: flex; max-width: 680px; margin: 0 auto 20px; border-radius: 10px; overflow: hidden; box-shadow: 0 6px 30px rgba(0,0,0,0.3); }
        .domain-search-form input { flex: 1; padding: 16px 20px; border: none; outline: none; font-size: 16px; background: #fff; color: #333; }
        .domain-tld-select { padding: 16px 14px; border: none; outline: none; border-left: 1px solid #e5e7eb; font-size: 14px; font-weight: 600; background: #f9fafb; color: #333; cursor: pointer; min-width: 90px; }
        .domain-search-btn { background: var(--orange-grad); color: #fff; border: none; padding: 16px 30px; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 8px; white-space: nowrap; transition: 0.2s; }
        .domain-search-btn:hover { opacity: 0.88; }
        .popular-tlds { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
        .popular-tlds span { color: rgba(255,255,255,0.5); font-size: 13px; }
        .tld-badge { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.2); padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; transition: 0.2s; }
        .tld-badge:hover { background: rgba(255,255,255,0.2); color: #fff; }
        .domain-result { max-width: 680px; margin: 16px auto 0; display: none; }
        .domain-result-card { background: #fff; border-radius: 10px; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
        .domain-result-info { display: flex; align-items: center; gap: 10px; }
        .domain-result-status { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
        .status-available { background: #dcfce7; color: #16a34a; }
        .status-taken { background: #fee2e2; color: #dc2626; }
        .domain-result-name { font-size: 16px; font-weight: 700; color: #1f2937; }
        .domain-result-status-text { font-size: 13px; color: #6b7280; margin-top: 2px; }
        .domain-result-actions { display: flex; align-items: center; gap: 10px; }
        .domain-result-price { font-size: 18px; font-weight: 800; color: var(--primary); }
        .btn-add-domain { background: var(--orange-grad); color: #fff; border: none; padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; transition: 0.2s; }
        .btn-add-domain:hover { opacity: 0.88; }

        @media (max-width: 600px) { .domain-search-form { border-radius: 8px; flex-wrap: wrap; } .domain-tld-select { display: none; } .domain-search-btn { width: 100%; justify-content: center; border-radius: 0 0 8px 8px; } .domain-search-form input { width: 100%; } }

        /* ===== SECTION HEADERS ===== */
        .section-bar { background: var(--orange-grad); color: #fff; padding: 14px 22px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
        .section-bar-title { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
        .section-bar-link { font-size: 13px; background: rgba(255,255,255,0.2); padding: 5px 14px; border-radius: 4px; color: rgba(255,255,255,0.95); font-weight: 600; transition: 0.2s; }
        .section-bar-link:hover { background: rgba(255,255,255,0.3); }

        /* ===== HOSTING PACKAGES ===== */
        .hosting-section { padding: 40px 0 10px; }
        .hosting-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
        .hosting-card {
            background: #fff; border: 2px solid var(--border); border-radius: 14px;
            overflow: hidden; transition: 0.3s; position: relative;
        }
        .hosting-card:hover { border-color: var(--primary); box-shadow: 0 12px 35px rgba(255,61,0,0.12); transform: translateY(-5px); }
        .hosting-card.popular { border-color: var(--primary); }
        .popular-badge { position: absolute; top: 0; right: 0; background: var(--orange-grad); color: #fff; font-size: 10px; font-weight: 700; padding: 5px 12px; border-radius: 0 14px 0 8px; text-transform: uppercase; letter-spacing: 0.5px; }
        .hosting-card-header { padding: 24px 22px 16px; border-bottom: 1px solid #f0f0f0; }
        .hosting-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
        .hosting-name { font-size: 18px; font-weight: 800; color: #1f2937; margin-bottom: 4px; }
        .hosting-tagline { font-size: 12.5px; color: var(--text-light); line-height: 1.5; }
        .hosting-card-price { padding: 16px 22px; border-bottom: 1px solid #f0f0f0; }
        .hosting-price { display: flex; align-items: flex-end; gap: 4px; }
        .hosting-amount { font-size: 30px; font-weight: 800; color: var(--primary); line-height: 1; }
        .hosting-period { font-size: 13px; color: #888; margin-bottom: 4px; }
        .hosting-old-price { font-size: 13px; color: #bbb; text-decoration: line-through; margin-left: 6px; margin-bottom: 4px; }
        .hosting-features { padding: 18px 22px; flex: 1; }
        .hosting-features ul { display: flex; flex-direction: column; gap: 9px; }
        .hosting-features li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #444; }
        .hosting-features li i { color: #4ade80; font-size: 13px; width: 16px; flex-shrink: 0; }
        .hosting-features li.no i { color: #f87171; }
        .hosting-features li.no { color: #aaa; }
        .hosting-card-footer { padding: 16px 22px 20px; }
        .btn-order {
            width: 100%; background: var(--orange-grad); color: #fff; border: none;
            padding: 13px; border-radius: 8px; font-size: 14px; font-weight: 700;
            cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: 0.2s;
        }
        .btn-order:hover { opacity: 0.88; transform: translateY(-1px); }
        .btn-order.outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
        .btn-order.outline:hover { background: var(--primary); color: #fff; }

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

        /* ===== VPS PACKAGES ===== */
        .vps-section { padding: 0 0 40px; }
        .vps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
        .vps-card { background: #fff; border: 2px solid var(--border); border-radius: 14px; padding: 26px 22px; transition: 0.3s; position: relative; }
        .vps-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px rgba(255,61,0,0.1); transform: translateY(-4px); }
        .vps-card.popular { border-color: var(--primary); background: linear-gradient(135deg, #fff5f2 0%, #fff 50%); }
        .vps-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
        .vps-name { font-size: 18px; font-weight: 800; color: #1f2937; }
        .vps-os { display: flex; gap: 6px; margin-top: 4px; }
        .os-badge { font-size: 11px; padding: 2px 8px; border-radius: 4px; font-weight: 600; }
        .os-linux { background: #fef3c7; color: #d97706; }
        .os-windows { background: #dbeafe; color: #2563eb; }
        .vps-price-block { text-align: right; }
        .vps-price { font-size: 26px; font-weight: 800; color: var(--primary); line-height: 1; }
        .vps-period { font-size: 12px; color: #888; }
        .vps-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
        .vps-spec { background: #f9fafb; border-radius: 8px; padding: 12px; text-align: center; border: 1px solid #f0f0f0; }
        .vps-spec-value { font-size: 16px; font-weight: 800; color: #1f2937; }
        .vps-spec-label { font-size: 11px; color: #888; margin-top: 2px; }
        .vps-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
        .vps-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; }
        .vps-features li i { color: #4ade80; font-size: 12px; }

        @media (max-width: 900px) { .vps-grid { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 600px) { .vps-grid { grid-template-columns: 1fr; } }

        /* ===== DOMAIN PACKAGES ===== */
        .domain-section { padding: 0 0 40px; }
        .domain-table-wrapper { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
        .domain-table { width: 100%; border-collapse: collapse; }
        .domain-table thead { background: var(--dark-bg); color: #fff; }
        .domain-table thead th { padding: 14px 20px; text-align: left; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
        .domain-table thead th:last-child { text-align: center; }
        .domain-table tbody tr { border-bottom: 1px solid #f5f5f5; transition: 0.2s; }
        .domain-table tbody tr:last-child { border-bottom: none; }
        .domain-table tbody tr:hover { background: #fff5f2; }
        .domain-table td { padding: 14px 20px; font-size: 14px; }
        .domain-ext { font-size: 18px; font-weight: 800; color: #1f2937; }
        .domain-price-col { font-size: 16px; font-weight: 700; color: var(--primary); }
        .domain-renew-col { font-size: 13px; color: #888; }
        .domain-popular-tag { background: #fff5f2; color: var(--primary); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; border: 1px solid #ffd5c8; }
        .domain-table td:last-child { text-align: center; }
        .btn-domain-order { background: var(--orange-grad); color: #fff; border: none; padding: 8px 18px; border-radius: 6px; font-size: 13px; font-weight: 700; cursor: pointer; transition: 0.2s; }
        .btn-domain-order:hover { opacity: 0.88; transform: translateY(-1px); }

        @media (max-width: 600px) { .domain-table thead th:nth-child(3), .domain-table td:nth-child(3) { display: none; } }

        /* ===== SSL SECTION ===== */
        .ssl-section { padding: 0 0 40px; }
        .ssl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
        .ssl-card { background: #fff; border: 2px solid var(--border); border-radius: 14px; padding: 26px 22px; text-align: center; transition: 0.3s; }
        .ssl-card:hover { border-color: var(--primary); box-shadow: 0 10px 30px rgba(255,61,0,0.1); transform: translateY(-4px); }
        .ssl-icon { font-size: 38px; margin-bottom: 14px; }
        .ssl-name { font-size: 17px; font-weight: 800; color: #1f2937; margin-bottom: 6px; }
        .ssl-type { font-size: 12px; color: var(--primary); font-weight: 600; background: #fff5f2; padding: 3px 10px; border-radius: 4px; display: inline-block; margin-bottom: 14px; }
        .ssl-price { font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
        .ssl-price span { font-size: 14px; color: #888; font-weight: 400; }
        .ssl-features { text-align: left; display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
        .ssl-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; }
        .ssl-features li i { color: #4ade80; }

        @media (max-width: 900px) { .ssl-grid { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 600px) { .ssl-grid { grid-template-columns: 1fr; } }

        /* ===== STATS BAR ===== */
        .stats-bar { background: var(--orange-grad); padding: 30px 0; margin-bottom: 40px; }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        .stat-item { text-align: center; }
        .stat-number { font-size: 34px; font-weight: 800; color: #fff; line-height: 1; }
        .stat-label { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 5px; }

        @media (max-width: 600px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-number { font-size: 26px; } }

        /* ===== BLOG ===== */
        .blog-section { padding: 0 0 50px; }
        .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
        .blog-card { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: 0.3s; }
        .blog-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.09); transform: translateY(-4px); }
        .blog-img { width: 100%; height: 180px; object-fit: cover; display: block; background: linear-gradient(135deg, #f3f4f6, #e5e7eb); }
        .blog-img-placeholder { width: 100%; height: 180px; display: flex; align-items: center; justify-content: center; font-size: 42px; }
        .blog-body { padding: 20px; }
        .blog-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--primary); background: #fff5f2; padding: 3px 10px; border-radius: 4px; display: inline-block; margin-bottom: 10px; }
        .blog-title { font-size: 16px; font-weight: 700; color: #1f2937; margin-bottom: 8px; line-height: 1.4; }
        .blog-excerpt { font-size: 13.5px; color: #666; line-height: 1.65; margin-bottom: 14px; }
        .blog-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: #999; }
        .blog-meta i { margin-right: 4px; }
        .blog-read-more { color: var(--primary); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 4px; transition: 0.2s; }
        .blog-read-more:hover { gap: 8px; }

        @media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

        /* ===== TESTIMONIALS ===== */
        .testimonials-section { background: #fff; padding: 50px 0; border-top: 1px solid #f0f0f0; margin-bottom: 0; }
        .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .testi-card { background: #f9fafb; border-radius: 14px; padding: 24px; border: 1px solid #f0f0f0; transition: 0.3s; }
        .testi-card:hover { border-color: #ffd5c8; box-shadow: 0 6px 20px rgba(255,61,0,0.07); }
        .testi-stars { color: #fbbf24; font-size: 14px; margin-bottom: 12px; }
        .testi-text { font-size: 14px; color: #555; line-height: 1.7; margin-bottom: 16px; font-style: italic; }
        .testi-author { display: flex; align-items: center; gap: 12px; }
        .testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--orange-grad); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; font-weight: 700; }
        .testi-name { font-size: 14px; font-weight: 700; color: #1f2937; }
        .testi-role { font-size: 12px; color: #888; }

        @media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 600px) { .testi-grid { grid-template-columns: 1fr; } }

        /* ===== FEATURES ===== */
        .features-section { background: #fff; padding: 50px 0; border-top: 1px solid #f0f0f0; }
        .features-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
        .feature-card { background: #f9fafb; border: 1px solid #f0f0f0; border-radius: 12px; padding: 28px 18px; text-align: center; transition: 0.3s; cursor: default; }
        .feature-card:hover { box-shadow: 0 8px 24px rgba(255,61,0,0.1); border-color: #ff3d00; transform: translateY(-4px); }
        .feature-icon-wrap { width: 68px; height: 68px; border: 2px solid #f9a533; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
        .feature-icon { font-size: 26px; color: #f9a533; transition: transform 0.5s; }
        .feature-card:hover .feature-icon { transform: rotate(360deg); }
        .feature-title { font-size: 14px; font-weight: 700; color: #f9a533; margin-bottom: 8px; }
        .feature-desc { font-size: 12px; color: #555; line-height: 1.6; }
        @media (max-width: 1100px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 600px) { .features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } .feature-card { padding: 20px 12px; } }

        /* ===== FOOTER ===== */
        .main-footer { background: #111827; color: rgba(255,255,255,0.75); margin-top: auto; }
        .footer-top { padding: 55px 0 40px; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr; gap: 35px; }
        .footer-logo { font-size: 24px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
        .footer-logo span { color: rgba(255,255,255,0.5); }
        .footer-logo-icon { width: 34px; height: 34px; background: var(--orange-grad); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 16px; }
        .footer-desc { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
        .footer-social { display: flex; gap: 8px; flex-wrap: wrap; }
        .social-btn { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: #fff; transition: 0.2s; }
        .s-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
        .s-fb { background: #1877f2; }
        .s-dc { background: #5865F2; }
        .s-yt { background: #ff0000; }
        .s-tw { background: #000; }
        .social-btn:hover { transform: translateY(-3px); opacity: 0.85; }
        .footer-col-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
        .footer-col-title i { color: #ff3d00; }
        .footer-links { display: flex; flex-direction: column; gap: 9px; }
        .footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.55); display: flex; align-items: center; gap: 7px; transition: 0.2s; }
        .footer-links a i { font-size: 10px; color: #ff3d00; }
        .footer-links a:hover { color: #fff; padding-left: 4px; }
        .footer-contact-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
        .footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.55); }
        .footer-contact-list li i { color: #ff3d00; margin-top: 2px; width: 16px; flex-shrink: 0; }
        .footer-contact-list a { color: rgba(255,255,255,0.55); transition: 0.2s; }
        .footer-contact-list a:hover { color: #fff; }
        .footer-community-btns { display: flex; gap: 8px; flex-wrap: wrap; }
        .community-btn { padding: 7px 14px; border-radius: 6px; font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: 0.2s; }
        .cb-discord { background: #5865F2; color: #fff; }
        .cb-discord:hover { background: #4752c4; }
        .cb-ts { background: #1366b5; color: #fff; }
        .cb-ts:hover { background: #0f5099; }
        .payment-bar { background: #ffff; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.06); }
        .payment-bar-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
        .payment-label { font-size: 13px; font-weight: 600; color: #000; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
        .payment-label i { color: #111827; }
        .payment-icons { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
        .payment-icon { font-size: 28px; color: rgba(255,255,255,0.45); display: flex; align-items: center; }
        .pay-text { background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 4px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.55); }
        .footer-bottom { background: #0f1521; padding: 16px 0; }
        .footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
        .footer-bottom-inner > span { font-size: 13px; color: rgba(255,255,255,0.4); }
        .footer-bottom-links { display: flex; gap: 18px; }
        .footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: 0.2s; }
        .footer-bottom-links a:hover { color: rgba(255,255,255,0.75); }
        @media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .footer-col.brand-col { grid-column: 1 / -1; } }
        @media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } .footer-col.brand-col { grid-column: 1 / -1; } .footer-bottom-inner { flex-direction: column; text-align: center; } }
        @media (max-width: 400px) { .footer-grid { grid-template-columns: 1fr; } }

        /* ===== CART ===== */
        .cart-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 3000; }
        .cart-overlay.open { display: block; }
        .cart-sidebar { position: fixed; right: -380px; top: 0; width: 360px; height: 100vh; background: #fff; z-index: 3001; box-shadow: -4px 0 30px rgba(0,0,0,0.15); transition: right 0.3s ease; display: flex; flex-direction: column; }
        .cart-sidebar.open { right: 0; }
        .cart-sidebar-header { background: var(--orange-grad); color: #fff; padding: 20px; display: flex; align-items: center; justify-content: space-between; }
        .cart-sidebar-header h3 { font-size: 17px; display: flex; align-items: center; gap: 8px; }
        .cart-sidebar-header button { background: none; border: none; color: #fff; font-size: 20px; cursor: pointer; }
        .cart-items-wrap { flex: 1; overflow-y: auto; padding: 20px; }
        .cart-empty { text-align: center; padding: 50px 20px; color: #aaa; }
        .cart-empty i { font-size: 50px; margin-bottom: 14px; display: block; }
        .cart-empty p { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
        .cart-empty span { font-size: 13px; }
        .cart-item-row { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
        .cart-item-icon { width: 44px; height: 44px; border-radius: 10px; background: #fff5f2; display: flex; align-items: center; justify-content: center; color: #ff3d00; font-size: 20px; flex-shrink: 0; }
        .cart-item-info { flex: 1; }
        .cart-item-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
        .cart-item-info span { font-size: 12px; color: #888; }
        .cart-item-price { font-size: 15px; font-weight: 700; color: #ff3d00; white-space: nowrap; }
        .cart-item-rm { background: none; border: none; color: #ccc; cursor: pointer; font-size: 16px; transition: 0.2s; }
        .cart-item-rm:hover { color: #ff3d00; }
        .cart-footer { padding: 16px 20px; border-top: 2px solid #f0f0f0; }
        .cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 15px; }
        .cart-total-row strong { font-size: 20px; color: #ff3d00; }
        .cart-checkout-btn { width: 100%; background: var(--orange-grad); color: #fff; border: none; border-radius: 8px; padding: 14px; font-size: 15px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: 0.2s; }
        .cart-checkout-btn:hover { opacity: 0.88; transform: translateY(-1px); }
        .toast { position: fixed; bottom: 80px; left: 50%; transform: translateX(-50%) translateY(20px); background: #1f2937; color: #fff; padding: 12px 24px; border-radius: 30px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 8px; opacity: 0; pointer-events: none; transition: all 0.35s ease; z-index: 9999; }
        .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
        .toast i { color: #4ade80; font-size: 16px; }