    <style>
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

        /* =========================================================
   GT108 — BLUE PREMIUM
   BLUE × GOLD × BLACK
   ========================================================= */

        :root {
            --green-neon: #5fd3ff;
            /* blue neon */
            --green-lime: #3aa8ff;
            /* blue */
            --green: #1f78ff;
            /* main blue */
            --green-dark: #114cb8;
            --green-deep: #081a38;

            --yellow: #ffd21f;
            --yellow-light: #fff3a0;
            --gold: #f0b018;

            --black: #07111f;
            --black-2: #0b1727;
            --black-3: #102035;

            --white: #ffffff;
            --text: #eef6ff;
            --muted: #b8c8dc;

            --border: #2459a8;

            --retro-shadow:
                6px 6px 0 #040912;

            --soft-shadow:
                0 12px 30px rgba(0, 0, 0, .35);
        }


        /* =========================================================
   GLOBAL
   ========================================================= */

        * {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            padding: 0;

            font-family:
                'Poppins',
                Arial,
                sans-serif;

            color: var(--text);

            overflow-x: hidden;

            background:
                radial-gradient(circle at 50% -10%,
                    #123b74 0%,
                    #0b2348 35%,
                    #07111f 70%,
                    #040912 100%);
        }


        /* Retro grain / dot texture */

        body::before {
            content: "";

            position: fixed;
            inset: 0;

            pointer-events: none;

            opacity: .045;

            background-image:
                radial-gradient(#fff 1px,
                    transparent 1px);

            background-size: 6px 6px;

            z-index: 9999;
        }


        /* =========================================================
   HEADER
   ========================================================= */

        #header {
            background:
                linear-gradient(180deg,
                    #0f2747 0%,
                    #0a1730 100%) !important;

            border: none;

            border-bottom:
                2px solid var(--green);

            box-shadow:
                0 5px 0 #040912,
                0 12px 25px rgba(0, 0, 0, .4);

            position: relative;
        }


        /* Retro yellow stripe */

        #header::before {
            content: "";

            position: absolute;

            top: 0;
            left: 0;

            width: 100%;
            height: 4px;

            background:
                repeating-linear-gradient(90deg,
                    var(--yellow) 0 35px,
                    var(--green-neon) 35px 70px,
                    #101d33 70px 105px);
        }


        .bg-gt108 {
            padding: 15px 0;
        }


        /* =========================================================
   HEADER MAIN
   ========================================================= */

        .gt108-header-main {
            display: flex;
            align-items: center;

            gap: 20px;
        }


        .gt108-header-logo img {
            height: 48px !important;
            width: auto;

            display: block;

            filter:
                drop-shadow(3px 3px 0 #000) drop-shadow(0 0 7px rgba(95, 211, 255, .38));
        }


        /* =========================================================
   SEARCH
   ========================================================= */

        .gt108-header-search {
            flex: 1;
            width: 100%;
        }


        .gt108-header-search .navbar-form {
            margin: 0 !important;
            padding: 0 !important;

            border: none !important;
            box-shadow: none !important;
        }


        .gt108-header-search .input-group {
            display: flex !important;
            align-items: center;

            width: 100%;
            height: 52px;

            background: #0a1428;

            border:
                2px solid #225fb6;

            border-radius: 12px;

            overflow: hidden;

            box-shadow:
                4px 4px 0 #040912,
                inset 0 0 15px rgba(58, 168, 255, .06);
        }


        .gt108-header-search .form-control {
            flex: 1;

            height: 50px !important;

            border: none !important;

            background: transparent !important;

            box-shadow: none !important;

            color: #fff;

            font-size: 14px;

            padding: 0 18px;
        }


        .gt108-header-search .form-control::placeholder {
            color: #778675;
        }


        .gt108-header-search .form-control:focus {
            outline: none;

            box-shadow:
                inset 0 0 0 1px var(--green-neon) !important;
        }


        /* Search button */

        .gt108-header-search .input-group-btn {
            width: 60px;
            height: 50px;
        }


        .gt108-header-search .btn {
            width: 100%;
            height: 100%;

            border: none !important;

            border-left:
                2px solid #225fb6 !important;

            border-radius: 0 !important;

            background:
                linear-gradient(180deg,
                    var(--green),
                    var(--green-dark)) !important;

            color: #fff;

            box-shadow: none !important;

            transition: .2s ease;
        }


        .gt108-header-search .btn:hover {
            background:
                linear-gradient(180deg,
                    var(--green-neon),
                    var(--green)) !important;

            color: #081006;

            box-shadow:
                inset 0 0 15px rgba(255, 255, 255, .15);
        }


        /* =========================================================
   HEADER PILL BUTTON
   ========================================================= */

        .gt108-btn-pill {
            border-radius: 10px;

            border:
                2px solid var(--green);

            background:
                linear-gradient(180deg,
                    #173766,
                    #0c1730);

            color: #eef7ff;

            padding: 10px 22px;

            font-weight: 800;

            letter-spacing: .3px;

            box-shadow:
                4px 4px 0 #040912;

            transition: .25s ease;
        }


        .gt108-btn-pill:hover {
            transform:
                translate(-2px, -2px);

            color: #101d33;

            background: var(--yellow);

            border-color: var(--yellow);

            box-shadow:
                6px 6px 0 #040912;
        }


        /* =========================================================
   NAVIGATION
   ========================================================= */

        .gt108-header-nav {
            margin-top: 15px;

            padding-top: 12px;

            border-top:
                1px solid #1b3761;
        }


        .gt108-header-nav .nav {
            display: flex;

            flex-wrap: wrap;

            gap: 10px;
        }


        .gt108-header-nav .nav li {
            list-style: none;
        }


        .gt108-header-nav .nav li a {
            display: block;

            padding: 10px 18px;

            border-radius: 9px;

            background:
                #101d34;

            border:
                1px solid #2969c2;

            color: #dfff9a !important;

            font-size: 12px;

            font-weight: 800;

            text-transform: uppercase;

            letter-spacing: .5px;

            box-shadow:
                3px 3px 0 #040912;

            transition: .2s ease;
        }


        .gt108-header-nav .nav li a:hover {
            transform:
                translate(-2px, -2px);

            background: var(--yellow);

            border-color: var(--yellow);

            color: #101d33 !important;

            box-shadow:
                5px 5px 0 #040912;
        }


        /* =========================================================
   MARQUEE
   ========================================================= */

        .gt108-marquee {
            width: 100%;

            margin-top: 25px;
            margin-bottom: 32px;

            height: 44px;

            line-height: 44px;

            overflow: hidden;

            border-radius: 8px;

            border:
                2px solid #2760b6;

            background:
                linear-gradient(90deg,
                    #081327,
                    #1f68c6,
                    #2d89ff,
                    #1f68c6,
                    #081327);

            color: #fff;

            font-size: 13px;

            font-weight: 800;

            letter-spacing: .5px;

            box-shadow:
                5px 5px 0 #040912;
        }


        .gt108-marquee marquee {
            height: 44px;
            line-height: 44px;
        }


        /* =========================================================
   CONTENT
   ========================================================= */

        .main-content {
            background:
                radial-gradient(circle at top,
                    #163764 0%,
                    #0c1c39 40%,
                    #050d18 100%) !important;
        }


        .container {
            width: 100%;
        }


        .link-info {
            width: 100% !important;

            max-width: 1100px !important;

            margin: 0 auto !important;

            float: none !important;

            padding: 0 15px !important;
        }


        /* =========================================================
   MAIN TITLE
   ========================================================= */

        .h3.text-dark {
            display: block !important;

            text-align: center;

            font-size: clamp(30px, 5vw, 48px) !important;

            line-height: 1.15 !important;

            font-weight: 900 !important;

            color: #fff !important;

            margin-bottom: 20px;

            text-transform: uppercase;

            letter-spacing: 1px;

            text-shadow:
                4px 4px 0 #040912,
                0 0 15px rgba(95, 211, 255, .22);
        }


        .h3.text-dark span {
            display: block;
        }


        .link-info span {
            display: block;

            max-width: 950px;

            margin: 0 auto 30px;

            text-align: center;

            font-size: 19px;

            line-height: 1.8;

            color: #b9c9b4;
        }


        /* =========================================================
   HERO
   ========================================================= */

        .gt108-hero {
            max-width: 1100px;

            margin: 30px auto;

            text-align: center;
        }


        .gt108-hero h1 {
            margin: 0 0 15px;

            font-size: clamp(38px, 6vw, 58px);

            line-height: 1.1;

            font-weight: 900;

            color: #fff;

            text-transform: uppercase;

            letter-spacing: 1px;

            text-shadow:
                5px 5px 0 #040912,
                0 0 20px rgba(95, 211, 255, .20);
        }


        .gt108-hero p {
            margin: 0 auto;

            max-width: 900px;

            font-size: 19px;

            line-height: 1.8;

            color: #b8c8b4;
        }


        /* =========================================================
   BANNER
   ========================================================= */

        .img-full {
            display: block;

            width: 100%;

            max-width: 950px;

            margin: 0 auto;

            border-radius: 18px;

            border:
                3px solid #2457a8;

            box-shadow:
                7px 7px 0 #040912,
                0 18px 40px rgba(0, 0, 0, .45);

            transition: .3s ease;
        }


        .img-full:hover {
            transform:
                translateY(-4px);

            border-color: var(--green-neon);

            box-shadow:
                9px 9px 0 #040912,
                0 20px 45px rgba(0, 0, 0, .5);
        }


        /* =========================================================
   CONTENT WRAP
   ========================================================= */

        .gt108-content-wrap {
            max-width: 950px;

            margin: 35px auto;

            background:
                linear-gradient(145deg,
                    #101d34,
                    #081224);

            border:
                2px solid #255cae;

            border-radius: 18px;

            overflow: hidden;

            box-shadow:
                7px 7px 0 #040912,
                0 15px 35px rgba(0, 0, 0, .35);
        }


        /* =========================================================
   CONTENT HEAD
   ========================================================= */

        .gt108-content-head {
            padding: 30px;

            text-align: center;

            background:
                linear-gradient(135deg,
                    #184a8f,
                    #0f2951 50%,
                    #0b1730);

            border-bottom:
                2px solid #255cae;

            position: relative;
        }


        .gt108-content-head h2 {
            margin: 0 0 12px;

            font-size: 32px;

            font-weight: 900;

            line-height: 1.3;

            color: #fff;

            text-transform: uppercase;

            text-shadow:
                3px 3px 0 #040912;
        }


        .gt108-content-head p {
            margin: 0;

            font-size: 16px;

            color: #b8c9b4;
        }


        /* Retro divider */

        .gt108-content-head::after {
            content: "";

            display: block;

            width: 100px;
            height: 5px;

            margin: 20px auto 0;

            background:
                repeating-linear-gradient(90deg,
                    var(--yellow) 0 20px,
                    var(--green-neon) 20px 40px);

            border-radius: 3px;

            box-shadow:
                3px 3px 0 #040912;
        }


        /* =========================================================
   CONTENT BODY
   ========================================================= */

        .gt108-content-body {
            padding: 35px;

            background:
                linear-gradient(145deg,
                    #0c1730,
                    #081224);
        }


        .gt108-content-body h3 {
            margin: 0 0 20px;

            font-size: 24px;

            font-weight: 900;

            color: var(--yellow-light);

            text-transform: uppercase;

            text-shadow:
                2px 2px 0 #040912;
        }


        .gt108-content-body p {
            margin-bottom: 18px;

            line-height: 1.9;

            font-size: 16px;

            color: #b7c5b3;
        }


        .gt108-content-body a {
            color: var(--green-neon);

            font-weight: 800;

            transition: .2s ease;
        }


        .gt108-content-body a:hover {
            color: var(--yellow);

            text-decoration: none;

            text-shadow:
                0 0 8px rgba(255, 220, 0, .4);
        }


        /* =========================================================
   GOLD / YELLOW ACCENT
   ========================================================= */

        .gt108-gold {
            color: var(--yellow) !important;

            text-shadow:
                2px 2px 0 #040912;
        }


        /* =========================================================
   CTA
   ========================================================= */

        .action-panel-hd {
            max-width: 950px;

            margin: 35px auto;

            padding: 0;
        }


        .action-row-hd {
            display: grid;

            grid-template-columns:
                repeat(3, 1fr);

            gap: 18px;
        }


        .btn-hd {
            display: flex;

            align-items: center;

            justify-content: center;

            gap: 9px;

            height: 64px;

            background:
                linear-gradient(180deg,
                    #183662,
                    #0a1430);

            border:
                2px solid #2a61b5;

            border-radius: 12px;

            color: #eaffb0;

            font-size: 15px;

            font-weight: 900;

            text-decoration: none;

            box-shadow:
                5px 5px 0 #040912;

            transition: .2s ease;

            overflow: hidden;
        }


        .btn-hd:hover {
            transform:
                translate(-3px, -3px);

            background:
                linear-gradient(180deg,
                    var(--yellow),
                    #d7a900);

            border-color: var(--yellow);

            color: #101d33;

            box-shadow:
                8px 8px 0 #040912;

            text-decoration: none;
        }


        .btn-live-demo-hd {
            background:
                linear-gradient(180deg,
                    #1f68c6,
                    #0b1630);
        }


        .btn-bookmark-hd {
            background:
                linear-gradient(180deg,
                    #2157a5,
                    #0b1730);
        }


        .btn-like-hd {
            background:
                linear-gradient(180deg,
                    #2a6dc8,
                    #0d1831);
        }


        .btn-icon-hd {
            width: 20px !important;
            height: 20px !important;

            min-width: 20px !important;
            max-width: 20px !important;

            object-fit: contain;

            display: block;

            filter:
                drop-shadow(2px 2px 0 #040912);
        }


        .action-row-hd img {
            width: 20px !important;
            height: 20px !important;
            max-width: 20px !important;
        }


        /* =========================================================
   REMOVE UNWANTED ELEMENTS
   ========================================================= */

        .thumb-md,
        .thumb-lg,
        .visible-xs img.pull-left {
            display: none !important;
        }


        .item-menu {
            display: none !important;
        }


        .col-sm-4:empty {
            display: none !important;
        }


        /* =========================================================
   MOBILE
   ========================================================= */

        @media(max-width:768px) {

            .gt108-header-main {
                flex-direction: column;
            }

            .gt108-header-search {
                width: 100%;
            }

            .action-row-hd {
                grid-template-columns: 1fr;
            }

            .btn-hd {
                height: 57px;
                font-size: 14px;
            }

            .gt108-content-head {
                padding: 22px 18px;
            }

            .gt108-content-head h2 {
                font-size: 25px;
            }

            .gt108-content-body {
                padding: 23px 18px;
            }

            .gt108-content-body h3 {
                font-size: 20px;
            }

            .gt108-content-body p {
                font-size: 14px;
            }

            .img-full {
                border-radius: 14px;
            }

            .link-info span {
                font-size: 16px;
            }

        }


        /* =========================================================
   SCROLLBAR
   ========================================================= */

        ::-webkit-scrollbar {
            width: 8px;
        }


        ::-webkit-scrollbar-track {
            background: #040912;
        }


        ::-webkit-scrollbar-thumb {
            background:
                linear-gradient(180deg,
                    var(--yellow),
                    var(--green));

            border-radius: 10px;

            border:
                2px solid #040912;
        }


        ::-webkit-scrollbar-thumb:hover {
            background:
                linear-gradient(180deg,
                    var(--green-neon),
                    var(--yellow));
        }


        .gt108-faq-wrap {
            max-width: 950px;
            margin: 40px auto;
            padding: 35px;
            background: #081a35;
            border: 1px solid #2d89ff;
            border-radius: 20px;
            box-shadow:
                0 8px 30px rgba(0, 0, 0, .35),
                0 0 18px rgba(58, 168, 255, .12);
        }


        /* =====================================
   HEADER
===================================== */

        .gt108-faq-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 30px;
        }

        .gt108-faq-header h2 {
            margin: 0 0 10px;
            font-size: 30px;
            font-weight: 800;
            color: #ffffff;
            line-height: 1.3;
            text-shadow: 0 0 10px rgba(95, 211, 255, .28);
        }

        .gt108-faq-header p {
            margin: 0;
            font-size: 14px;
            line-height: 1.8;
            color: #b8c9b4;
        }


        /* =====================================
   FAQ BODY
===================================== */

        .gt108-faq-body {
            max-width: 850px;
            margin: 0 auto;
        }


        /* =====================================
   FAQ LIST
===================================== */

        .modern-faq-container {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }


        /* =====================================
   FAQ CARD
===================================== */

        .gt108-faq-card {
            position: relative;
            background:
                linear-gradient(145deg,
                    #103159,
                    #081a35);
            border: 1px solid #245db5;
            border-radius: 16px;
            padding: 22px;
            transition: .25s ease;
            overflow: hidden;
        }

        .gt108-faq-card:hover {
            border-color: #7fd7ff;
            box-shadow:
                0 8px 25px rgba(0, 0, 0, .35),
                0 0 18px rgba(58, 168, 255, .22);
            transform: translateY(-2px);
        }


        /* GREEN ACCENT */

        .gt108-faq-card::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            border-radius: 16px 0 0 16px;
            background: linear-gradient(180deg,
                    #fff3a0,
                    #3aa8ff,
                    #1f78ff);
            box-shadow: 0 0 10px rgba(95, 211, 255, .45);
        }


        /* =====================================
   QUESTION
===================================== */

        .modern-faq-question {
            margin: 0 0 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 17px;
            font-weight: 700;
            line-height: 1.5;
            color: #ffffff;
        }


        /* QUESTION ICON */

        .modern-faq-q-icon {
            width: 34px;
            height: 34px;
            min-width: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;

            background:
                linear-gradient(145deg,
                    #163765,
                    #071b08);

            border: 1px solid #ffd21f;
            color: #fff1a8;
            font-size: 12px;
            font-weight: 800;

            box-shadow:
                0 0 10px rgba(58, 168, 255, .20);
        }


        /* =====================================
   ANSWER
===================================== */

        .modern-faq-answer {
            margin: 0;
            padding: 14px 16px;

            background:
                linear-gradient(145deg,
                    #0a1f3f,
                    #081631);

            border: 1px solid #224d95;
            border-radius: 10px;

            color: #d7e7fb;
            font-size: 14px;
            line-height: 1.8;
        }


        /* =====================================
   GOLD HIGHLIGHT
===================================== */

        .gt108-faq-card strong {
            color: #ffe066;
        }


        /* =====================================
   MOBILE
===================================== */

        @media(max-width:768px) {

            .gt108-faq-wrap {
                padding: 22px;
                border-radius: 16px;
                margin: 25px 10px;
            }

            .gt108-faq-header h2 {
                font-size: 24px;
            }

            .gt108-faq-header p {
                font-size: 13px;
            }

            .gt108-faq-card {
                padding: 18px;
            }

            .modern-faq-question {
                font-size: 15px;
            }

            .modern-faq-answer {
                font-size: 13px;
                padding: 12px 14px;
            }

        }


        /* =====================================
   SIDE BOX
===================================== */

        .gt108-sidebox {
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid #2563c0;

            background: #081833;

            box-shadow:
                0 6px 20px rgba(0, 0, 0, .30),
                0 0 15px rgba(58, 168, 255, .10);
        }


        .gt108-sidebox .panel-heading {
            background:
                linear-gradient(135deg,
                    #113462,
                    #0b2141);

            color: #ffffff;
            text-align: center;
            font-weight: 700;
            padding: 15px;

            border-bottom: 1px solid #2563c0;
        }


        /* =====================================
   FEATURE LIST
===================================== */

        .gt108-feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }


        .gt108-feature-list li {
            padding: 10px 0;
            border-bottom: 1px solid #1c3e74;
            color: #d8e5f5;
        }


        .gt108-feature-list li:last-child {
            border-bottom: none;
        }


        /* =====================================
   INFO PANEL
===================================== */

        .gt108-info-panel {
            border: 1px solid #2563c0;
            border-radius: 18px;
            overflow: hidden;

            box-shadow:
                0 6px 20px rgba(0, 0, 0, .30),
                0 0 15px rgba(58, 168, 255, .10);

            background: #081833;
        }


        .gt108-info-panel .panel-heading {
            padding: 16px;
            font-size: 18px;
            color: #ffffff;

            background:
                linear-gradient(135deg,
                    #113462,
                    #0b2141);

            border-bottom: 1px solid #2563c0;
        }


        .gt108-info-panel table {
            margin: 0;
            color: #c8d4c5;
        }


        .gt108-info-panel td {
            padding: 14px 18px;
            border-color: #1c3e74;
            color: #d6e4f4;
            vertical-align: middle;
        }


        .gt108-info-panel tr:nth-child(even) {
            background: #0d2143;
        }


        .gt108-info-panel tr:nth-child(odd) {
            background: #081833;
        }


        .gt108-info-panel td:first-child {
            width: 45%;
            font-weight: 600;
            color: #fff3bf;
        }


        /* =====================================
   PANEL TITLE
===================================== */

        .gt108-panel-title {
            text-align: center !important;
        }


        .gt108-panel-title p {
            margin: 0;
            width: 100%;
            display: block;
            text-align: center !important;
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }


        /* =====================================
   REVIEW HEADER
===================================== */

        .gt108-review-header {
            max-width: 700px;
            margin: 0 auto;
            padding: 15px 20px;
            text-align: center;
        }


        .gt108-review-header h2 {
            margin: 0 0 10px;
            font-size: 32px;
            font-weight: 800;
            line-height: 1.2;
            color: #000;

            text-shadow:
                0 0 8px rgba(95, 211, 255, .26);
        }


        .gt108-review-header p {
            margin: 0;
            font-size: 15px;
            line-height: 1.8;
            color: #b8c9b4;
        }


        /* =====================================
   GOLD ACCENT FOR REVIEW
===================================== */

        .gt108-review-header h2::after {
            content: "";
            display: block;
            width: 70px;
            height: 3px;
            margin: 12px auto 0;

            background:
                linear-gradient(90deg,
                    #46b8ff,
                    #ffe066,
                    #46b8ff);

            border-radius: 10px;
            box-shadow: 0 0 10px rgba(95, 211, 255, .45);
        }


        /* =====================================
   MOBILE REVIEW
===================================== */

        @media(max-width:768px) {

            .gt108-review-header h2 {
                font-size: 24px;
            }

            .gt108-review-header p {
                font-size: 14px;
            }

        }


        /* =====================================
   OPTIONAL GOLD TEXT
===================================== */

        .gt108-gold {
            color: #e4ff68 !important;
        }


        /* =====================================
   SCROLLBAR
===================================== */

        .gt108-faq-wrap ::-webkit-scrollbar {
            width: 6px;
        }

        .gt108-faq-wrap ::-webkit-scrollbar-track {
            background: #081a35;
        }

        .gt108-faq-wrap ::-webkit-scrollbar-thumb {
            background: #2b89ff;
            border-radius: 10px;
        }


        /* =====================================
   GT108 PREMIUM REVIEW PANEL
   BLUE + GOLD
===================================== */

        .gt108-review-panel {
            margin-top: 20px;
            background:
                linear-gradient(145deg,
                    #071428 0%,
                    #0c2447 45%,
                    #07111f 100%);
            border: 1px solid rgba(95, 211, 255, .36);
            border-radius: 24px;
            overflow: hidden;
            box-shadow:
                0 15px 40px rgba(0, 0, 0, .45),
                0 0 25px rgba(58, 168, 255, .12);
        }


        /* =====================================
   HEADER
===================================== */

        .gt108-review-panel .panel-heading {
            background:
                linear-gradient(135deg,
                    #081733,
                    #0d3565,
                    #07152a) !important;

            border-bottom: 1px solid rgba(95, 211, 255, .28);
            padding: 30px;
            text-align: center;
            position: relative;
        }


        .gt108-review-panel .panel-heading::after {
            content: "";
            position: absolute;
            left: 15%;
            right: 15%;
            bottom: 0;
            height: 2px;

            background:
                linear-gradient(90deg,
                    transparent,
                    #7fd7ff,
                    #ffd84a,
                    #7fd7ff,
                    transparent);

            box-shadow:
                0 0 12px rgba(95, 211, 255, .50);
        }


        .gt108-review-panel .panel-heading h2 {
            margin: 0 0 10px;
            font-size: 34px;
            font-weight: 900;

            color: #ffffff;

            text-shadow:
                0 0 8px rgba(95, 211, 255, .36);
        }


        .gt108-review-panel .panel-heading p {
            margin: 0 auto;
            max-width: 650px;

            color: #d9e9fc;

            line-height: 1.8;
            font-size: 15px;
        }


        /* =====================================
   GRID
===================================== */

        .modern-review-container {
            padding: 25px;
        }


        .modern-review-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 18px;
        }


        /* =====================================
   REVIEW CARD
===================================== */

        .modern-review-card {
            position: relative;

            background:
                linear-gradient(145deg,
                    rgba(13, 48, 17, .95),
                    rgba(5, 23, 8, .95));

            border: 1px solid rgba(58, 168, 255, .22);

            border-radius: 18px;

            padding: 22px;

            transition: .3s ease;

            box-shadow:
                0 5px 18px rgba(0, 0, 0, .35),
                inset 0 0 20px rgba(58, 168, 255, .035);

            overflow: hidden;
        }


        .modern-review-card:hover {
            transform: translateY(-5px);

            border-color:
                rgba(95, 211, 255, .56);

            box-shadow:
                0 15px 30px rgba(0, 0, 0, .45),
                0 0 20px rgba(58, 168, 255, .16);
        }


        /* GREEN ACCENT */

        .modern-review-card::before {
            content: "";

            position: absolute;

            left: 0;
            top: 0;
            bottom: 0;

            width: 4px;

            border-radius: 18px 0 0 18px;

            background:
                linear-gradient(180deg,
                    #86dcff,
                    #3aa8ff,
                    #f0b018);

            box-shadow:
                0 0 12px rgba(95, 211, 255, .45);
        }


        /* GOLD LIGHT EFFECT */

        .modern-review-card::after {
            content: "";

            position: absolute;

            width: 120px;
            height: 120px;

            right: -60px;
            bottom: -60px;

            border-radius: 50%;

            background:
                radial-gradient(circle,
                    rgba(255, 205, 40, .12),
                    transparent 70%);

            pointer-events: none;
        }


        /* =====================================
   USER
===================================== */

        .modern-review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }


        .modern-review-avatar {
            width: 54px;
            height: 54px;

            border-radius: 14px;

            object-fit: cover;

            background: #091c3c;

            border:
                1px solid rgba(95, 211, 255, .46);

            padding: 4px;

            box-shadow:
                0 0 12px rgba(58, 168, 255, .16);
        }


        .modern-review-name {
            margin: 0;

            font-size: 16px;
            font-weight: 800;

            color: #ffffff;
        }


        .modern-review-badge {
            display: inline-block;

            margin-top: 3px;

            font-size: 12px;

            color: #bfdcff;
        }


        /* =====================================
   CONTENT
===================================== */

        .gt108-review-content {
            margin: 0 0 14px;

            color: #e3eefc;

            line-height: 1.8;

            font-size: 15px;
        }


        /* =====================================
   QUOTE
===================================== */

        .modern-review-quote-icon {
            position: absolute;

            top: 18px;
            right: 18px;

            font-size: 34px;

            color:
                rgba(95, 211, 255, .18);

            line-height: 1;

            text-shadow:
                0 0 10px rgba(58, 168, 255, .16);
        }


        /* =====================================
   RATING GOLD
===================================== */

        .modern-review-rating {
            color: #ffd43b;

            font-size: 16px;

            letter-spacing: 2px;

            text-shadow:
                0 0 8px rgba(255, 205, 40, .35);
        }


        /* =====================================
   MODAL PREMIUM
===================================== */

        .modal-dialog {
            max-width: 650px;
            margin: 50px auto;
        }


        .modal-content {

            border: none;

            border-radius: 22px;

            overflow: hidden;

            background:
                linear-gradient(145deg,
                    #08162f,
                    #0d315e,
                    #07111f);

            border:
                1px solid rgba(95, 211, 255, .36);

            box-shadow:
                0 20px 60px rgba(0, 0, 0, .7),
                0 0 30px rgba(58, 168, 255, .14);
        }


        /* =====================================
   MODAL HEADER
===================================== */

        .modal-header {

            position: relative;

            padding: 22px 25px;

            background:
                linear-gradient(135deg,
                    #0a2347,
                    #10305a);

            border-bottom:
                1px solid rgba(95, 211, 255, .28);

            text-align: center;
        }


        .modal-title {

            margin: 0;

            font-size: 24px;

            font-weight: 900;

            color: #ffffff;

            text-shadow:
                0 0 10px rgba(95, 211, 255, .28);
        }


        .modal-header .close {

            position: absolute;

            top: 18px;
            right: 20px;

            opacity: .8;

            font-size: 28px;

            color: #ffffff;

            text-shadow: none;
        }


        .modal-header .close:hover {
            opacity: 1;
            color: #ffd83d;
        }


        /* =====================================
   MODAL BODY
===================================== */

        .modal-body {
            padding: 30px;
        }


        .modal-body h3 {

            margin: 0 0 12px;

            font-size: 20px;

            font-weight: 800;

            color: #ffffff;
        }


        .modal-body p {

            margin-bottom: 20px;

            font-size: 15px;

            line-height: 1.8;

            color: #dceafb;
        }


        /* =====================================
   FORM
===================================== */

        .modal-body .form-control {

            height: 48px;

            border-radius: 12px;

            border:
                1px solid rgba(95, 211, 255, .28);

            background:
                rgba(0, 20, 5, .65);

            color: #ffffff;

            box-shadow: none;
        }


        .modal-body .form-control::placeholder {
            color: #a7bddb;
        }


        .modal-body .form-control:focus {

            border-color:
                #7fd7ff;

            background:
                rgba(0, 25, 6, .85);

            color: #ffffff;

            box-shadow:
                0 0 12px rgba(58, 168, 255, .14);
        }


        /* =====================================
   LIST
===================================== */

        .list-group-item {

            border-radius: 12px !important;

            margin-bottom: 10px;

            border:
                1px solid rgba(58, 168, 255, .20);

            background:
                rgba(8, 40, 12, .75);

            color: #e8f2fd;
        }


        /* =====================================
   BUTTON
===================================== */

        .btn-facebook {

            border-radius: 12px;

            height: 48px;

            font-weight: 700;

        }


        .btn-info {

            border-radius: 12px;

            height: 50px;

            font-weight: 800;

            color: #171000;

            border: none;

            background:
                linear-gradient(135deg,
                    #fff09a,
                    #ffd43d,
                    #d99b00);

            box-shadow:
                0 6px 18px rgba(255, 205, 40, .22);

            transition: .3s ease;
        }


        .btn-info:hover {

            color: #111;

            transform:
                translateY(-2px);

            box-shadow:
                0 10px 25px rgba(255, 205, 40, .35);
        }

        /* =========================================================
   MODAL FOOTER — RETRO MODERN
   ========================================================= */

        .modal-footer {
            position: relative;

            padding: 18px 25px;

            border-top:
                2px solid #245aad;

            background:
                linear-gradient(180deg,
                    #101a0e,
                    #080f08);

            box-shadow:
                inset 0 1px 0 rgba(182, 255, 0, .08);
        }


        /* Retro accent line */

        .modal-footer::before {
            content: "";

            position: absolute;

            left: 25px;
            right: 25px;
            top: -2px;

            height: 3px;

            background:
                repeating-linear-gradient(90deg,
                    #ffd91a 0 18px,
                    #b6ff00 18px 36px,
                    #245aad 36px 54px);

            border-radius: 3px;
        }


        /* =========================================================
   MODAL BUTTON
   ========================================================= */

        .modal-footer .btn {
            min-width: 120px;

            min-height: 42px;

            padding: 10px 20px;

            border-radius: 9px;

            border:
                2px solid #396d24;

            background:
                linear-gradient(180deg,
                    #18345e,
                    #0b1630);

            color: #eef7ff;

            font-weight: 800;

            letter-spacing: .3px;

            text-transform: uppercase;

            box-shadow:
                4px 4px 0 #040912;

            transition:
                transform .2s ease,
                background .2s ease,
                color .2s ease,
                box-shadow .2s ease,
                border-color .2s ease;
        }


        /* Hover */

        .modal-footer .btn:hover {
            transform:
                translate(-2px, -2px);

            background:
                linear-gradient(180deg,
                    #fff36a,
                    #ffd91a);

            border-color: #ffd91a;

            color: #101d33;

            box-shadow:
                6px 6px 0 #040912;

            text-decoration: none;
        }


        /* Active / pressed */

        .modal-footer .btn:active {
            transform:
                translate(2px, 2px);

            box-shadow:
                2px 2px 0 #040912;
        }


        /* =========================================================
   PRIMARY BUTTON
   ========================================================= */

        .modal-footer .btn-primary {
            background:
                linear-gradient(180deg,
                    #b6ff00,
                    #54bd13);

            border-color: #ffd21f;

            color: #081006;

            box-shadow:
                4px 4px 0 #040912;
        }


        .modal-footer .btn-primary:hover {
            background:
                linear-gradient(180deg,
                    #fff36a,
                    #ffd91a);

            border-color: #ffd91a;

            color: #101d33;
        }


        /* =========================================================
   SECONDARY BUTTON
   ========================================================= */

        .modal-footer .btn-secondary,
        .modal-footer .btn-default {
            background:
                linear-gradient(180deg,
                    #152943,
                    #0a1428);

            border-color: #275aab;

            color: #d7e4f5;
        }


        .modal-footer .btn-secondary:hover,
        .modal-footer .btn-default:hover {
            background: #ffd91a;

            border-color: #ffd91a;

            color: #101d33;
        }


        /* =========================================================
   MOBILE
   ========================================================= */

        @media(max-width:576px) {

            .modal-footer {
                padding: 16px;

                display: flex;

                flex-wrap: wrap;

                gap: 10px;
            }

            .modal-footer .btn {
                flex: 1;

                min-width: 110px;

                font-size: 13px;
            }

            .modal-footer::before {
                left: 16px;
                right: 16px;
            }
        }


        /* =====================================
   LINK
===================================== */

        .modal a {
            text-decoration: none;
        }


        .modal a:hover {
            text-decoration: underline;
        }


        /* =====================================
   FOOTER GT108
===================================== */

        #footer {

            margin-top: 50px;

            font-family: Poppins, sans-serif;

        }


        /* =====================================
   FOOTER TOP
===================================== */

        .footer-top {

            background:
                linear-gradient(180deg,
                    #081733,
                    #050d19);

            border-top:
                1px solid rgba(95, 211, 255, .28);

            border-bottom:
                1px solid rgba(58, 168, 255, .20);
        }


        .footer-wrap {

            max-width: 1200px;

            margin: auto;

            padding: 50px 25px;

            display: grid;

            grid-template-columns:
                repeat(4, 1fr);

            gap: 40px;
        }


        .footer-box h4 {

            margin: 0 0 18px;

            font-size: 18px;

            font-weight: 800;

            color: #ffffff;
        }


        .footer-box ul {

            margin: 0;

            padding: 0;

            list-style: none;
        }


        .footer-box li {
            margin-bottom: 10px;
        }


        .footer-box a {

            color: #bdd0e6;

            text-decoration: none;

            transition: .25s;
        }


        .footer-box a:hover {

            color: #ffe066;

            text-shadow:
                0 0 8px rgba(95, 211, 255, .30);
        }


        /* =====================================
   SOCIAL
===================================== */

        .footer-social {

            display: flex;

            gap: 12px;
        }


        .footer-social a {

            width: 42px;
            height: 42px;

            display: flex;

            align-items: center;

            justify-content: center;

            border-radius: 50%;

            background:
                linear-gradient(145deg,
                    #113561,
                    #081733);

            border:
                1px solid rgba(95, 211, 255, .36);

            color: #ffe066;

            font-size: 18px;

            box-shadow:
                0 0 10px rgba(58, 168, 255, .10);

            transition: .3s ease;
        }


        .footer-social a:hover {

            transform:
                translateY(-3px);

            color: #ffd83e;

            border-color: #ffd83e;

            box-shadow:
                0 0 18px rgba(255, 210, 50, .25);
        }


        /* =====================================
   FOOTER BOTTOM
===================================== */

        .footer-bottom {

            background:
                linear-gradient(180deg,
                    #0b2142,
                    #07111f);

            border-top:
                1px solid rgba(58, 168, 255, .20);
        }


        .footer-bottom-wrap {

            max-width: 1200px;

            margin: auto;

            padding: 18px 25px;

            display: flex;

            justify-content: space-between;

            align-items: center;

            gap: 20px;
        }


        .footer-menu {

            display: flex;

            flex-wrap: wrap;

            gap: 20px;

            margin: 0;

            padding: 0;

            list-style: none;
        }


        .footer-menu a {

            color: #bdd0e6;

            text-decoration: none;

            font-weight: 600;

            transition: .25s;
        }


        .footer-menu a:hover {

            color: #ffe066;

        }


        /* =====================================
   COPYRIGHT
===================================== */

        .footer-copyright {

            display: flex;

            align-items: center;

            gap: 8px;

            color: #000;

            font-size: 14px;
        }


        .footer-copyright img {

            width: 18px;

            height: 18px;
        }


        /* =====================================
   RESPONSIVEA-brakadabra 991805108
===================================== */

        @media(max-width:991px) {

            .footer-wrap {

                grid-template-columns:
                    repeat(2, 1fr);

            }


            .footer-bottom-wrap {

                flex-direction: column;

                text-align: center;

            }

        }


        /* =====================================
   RESPONSIVE 768
===================================== */

        @media(max-width:768px) {

            .modern-review-grid {

                grid-template-columns: 1fr;

            }


            .modern-review-container {

                padding: 18px;

            }


            .gt108-review-panel .panel-heading {

                padding: 25px 20px;

            }


            .gt108-review-panel .panel-heading h2 {

                font-size: 26px;

            }


            .modal-dialog {

                width: 95%;

                margin: 20px auto;

            }


            .modal-header {

                padding: 18px;

            }


            .modal-title {

                font-size: 20px;

            }


            .modal-body {

                padding: 20px;

            }


            .modal-body h3 {

                font-size: 18px;

            }


            .row.m-b .col-md-6 {

                margin-bottom: 10px;

            }


            .footer-wrap {

                grid-template-columns: 1fr;

                text-align: center;

            }


            .footer-social {

                justify-content: center;

            }


            .footer-menu {

                justify-content: center;

            }

        }


        /* =====================================
   EXTRAApolloMOBILE
===================================== */

        @media(max-width:480px) {

            .modern-review-card {

                padding: 18px;

            }


            .modern-review-avatar {

                width: 48px;

                height: 48px;

            }


            .gt108-review-content {

                font-size: 14px;

            }


            .modern-review-rating {

                font-size: 14px;

            }


            .footer-wrap {

                padding:
                    35px 18px;

            }

        }


        /* =========================================================
   GT108 BLUE PREMIUM POPUP
   BLUE × GOLD × BLACK
   ========================================================= */

        :root {
            --retro-green: #5fd3ff;
            --retro-lime: #3aa8ff;
            --retro-green-dark: #1a5fd0;
            --retro-green-deep: #07152d;

            --retro-yellow: #ffd21f;
            --retro-yellow-light: #fff3a0;
            --retro-gold: #f0b018;

            --retro-black: #07111f;
            --retro-black-2: #0b1727;

            --retro-white: #ffffff;
            --retro-muted: #b8c8dc;

            --retro-border: #2459a8;
        }


        /* =========================================================
   OVERLAY
   ========================================================= */

        .popup-overlay {
            position: fixed;
            inset: 0;

            display: flex;
            align-items: center;
            justify-content: center;

            background:
                radial-gradient(circle at center,
                    rgba(58, 168, 255, .14),
                    rgba(0, 0, 0, .88) 68%);

            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);

            overflow: hidden;

            z-index: 99999;
        }


        /* Retro scanline */

        .popup-overlay::after {
            content: "";

            position: absolute;
            inset: 0;

            pointer-events: none;

            opacity: .035;

            background:
                repeating-linear-gradient(0deg,
                    #fff 0 1px,
                    transparent 1px 5px);
        }


        /* =========================================================
   RETRO LIGHT SWEEP
   ========================================================= */

        .popup-overlay::before {
            content: "";

            position: absolute;

            top: 0;
            left: -150%;

            width: 70%;
            height: 100%;

            background:
                linear-gradient(90deg,
                    transparent,
                    rgba(95, 211, 255, .06) 30%,
                    rgba(255, 217, 26, .22) 48%,
                    rgba(255, 255, 255, .12) 50%,
                    rgba(95, 211, 255, .09) 55%,
                    transparent);

            transform: skewX(-22deg);

            animation:
                retroSweep 6s linear infinite;

            pointer-events: none;
        }


        @keyframes retroSweep {

            0% {
                left: -150%;
            }

            100% {
                left: 200%;
            }

        }


        /* =========================================================
   POPUP CONTAINER
   ========================================================= */

        .popup-container {
            position: relative;

            width: 90%;
            max-width: 440px;

            overflow: hidden;

            border-radius: 18px;

            background:
                linear-gradient(145deg,
                    #122544 0%,
                    #0b1b38 40%,
                    #081327 100%);

            border:
                2px solid var(--retro-green);

            box-shadow:

                8px 8px 0 #030503,

                0 25px 60px rgba(0, 0, 0, .8),

                0 0 25px rgba(58, 168, 255, .20);

            animation:
                popupEnter .7s cubic-bezier(.19, 1, .22, 1);
        }


        /* =========================================================
   RETRO TOP STRIPE
   ========================================================= */

        .popup-container::after {
            content: "";

            position: absolute;

            top: 0;
            left: 0;

            width: 100%;
            height: 5px;

            background:
                repeating-linear-gradient(90deg,
                    var(--retro-yellow) 0 22px,
                    var(--retro-green) 22px 44px,
                    #13274a 44px 66px);

            z-index: 6;
        }


        /* =========================================================
   CARD SHINE
   ========================================================= */

        .popup-container::before {
            content: "";

            position: absolute;

            top: 0;
            left: -130%;

            width: 55%;
            height: 100%;

            background:
                linear-gradient(90deg,
                    transparent,
                    rgba(95, 211, 255, .08),
                    rgba(255, 217, 26, .22),
                    rgba(255, 255, 255, .14),
                    transparent);

            transform: skewX(-20deg);

            animation:
                cardShine 5s infinite;

            z-index: 2;

            pointer-events: none;
        }


        @keyframes cardShine {

            0% {
                left: -130%;
            }

            100% {
                left: 220%;
            }

        }


        /* =========================================================
   POPUP ENTER
   ========================================================= */

        @keyframes popupEnter {

            from {
                opacity: 0;

                transform:
                    translateY(35px) scale(.88) rotate(-1deg);
            }

            to {
                opacity: 1;

                transform:
                    translateY(0) scale(1) rotate(0);
            }

        }


        /* =========================================================
   BORDER
   ========================================================= */

        .luxury-border {
            position: absolute;

            inset: 0;

            border-radius: 18px;

            border:
                1px solid rgba(95, 211, 255, .38);

            pointer-events: none;

            z-index: 4;

            box-shadow:
                inset 0 0 20px rgba(58, 168, 255, .08);
        }


        /* =========================================================
   IMAGE
   ========================================================= */

        .popup-image {
            width: 100%;

            display: block;

            border-bottom:
                2px solid var(--retro-green-dark);

            position: relative;

            z-index: 1;

            filter:
                saturate(1.08) contrast(1.03);
        }


        /* =========================================================
   BUTTON WRAP
   ========================================================= */

        .popup-buttons {
            padding: 24px;

            display: flex;

            flex-direction: column;

            gap: 14px;

            position: relative;

            z-index: 5;
        }


        /* =========================================================
   RETRO BUTTON
   ========================================================= */

        .popup-buttons a {
            position: relative;

            overflow: hidden;

            display: block;

            text-align: center;

            padding: 15px 18px;

            border-radius: 9px;

            text-decoration: none;

            font-weight: 900;

            letter-spacing: .8px;

            text-transform: uppercase;

            color: #101500;

            background:
                linear-gradient(180deg,
                    var(--retro-yellow-light),
                    var(--retro-yellow) 55%,
                    #d39a00);

            border:
                2px solid #f5c928;

            box-shadow:

                5px 5px 0 #030503,

                inset 0 1px 0 rgba(255, 255, 255, .65);

            transition:
                transform .2s ease,
                box-shadow .2s ease,
                background .2s ease;
        }


        /* Button shine */

        .popup-buttons a::before {
            content: "";

            position: absolute;

            top: 0;
            left: -120%;

            width: 70%;
            height: 100%;

            background:
                linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, .75),
                    transparent);

            transform: skewX(-20deg);
        }


        .popup-buttons a:hover::before {
            animation:
                btnShine .7s linear;
        }


        @keyframes btnShine {

            from {
                left: -120%;
            }

            to {
                left: 150%;
            }

        }


        /* Button hover */

        .popup-buttons a:hover {
            transform:
                translate(-3px, -3px);

            background:
                linear-gradient(180deg,
                    #fff77d,
                    #ffe229);

            box-shadow:

                8px 8px 0 #030503,

                0 0 20px rgba(255, 217, 26, .25);

            text-decoration: none;
        }


        /* Button press */

        .popup-buttons a:active {
            transform:
                translate(2px, 2px);

            box-shadow:
                2px 2px 0 #030503;
        }


        /* =========================================================
   INFORMATION TABLE
   ========================================================= */

        .info-table {
            width: 90%;

            margin: 20px auto;

            border-collapse: separate;

            border-spacing: 0;

            overflow: hidden;

            border-radius: 12px;

            background: #09152d;

            border:
                2px solid #2459aa;

            box-shadow:
                5px 5px 0 #030503;
        }


        /* Table header */

        .info-table th {
            background:
                linear-gradient(180deg,
                    var(--retro-yellow-light),
                    var(--retro-yellow));

            color: #101500;

            font-weight: 900;

            text-transform: uppercase;

            letter-spacing: .5px;

            padding: 13px;

            border-bottom:
                2px solid #8b6500;
        }


        /* Table content */

        .info-table td {
            color: #eef6ff;

            padding: 12px;

            border-bottom:
                1px solid rgba(58, 168, 255, .16);
        }


        .info-table tr:nth-child(even) td {
            background:
                rgba(117, 230, 0, .035);
        }


        .info-table tr:last-child td {
            border-bottom: none;
        }


        .info-table tr:hover td {
            background:
                rgba(95, 211, 255, .09);

            color: #fff;
        }


        /* =========================================================
   FOOTER
   ========================================================= */

        .popup-footer {
            padding: 19px;

            color: var(--retro-muted);

            font-size: 13px;

            line-height: 1.8;

            position: relative;

            z-index: 5;

            text-align: center;

            border-top:
                1px solid #244c95;
        }


        .popup-footer::before {
            content: "";

            display: block;

            width: 70px;
            height: 3px;

            margin: 0 auto 12px;

            background:
                repeating-linear-gradient(90deg,
                    var(--retro-yellow) 0 15px,
                    var(--retro-green) 15px 30px);
        }


        /* =========================================================
   CLOSE BUTTON
   ========================================================= */

        .close-btn {
            position: absolute;

            top: 14px;
            right: 14px;

            width: 36px;
            height: 36px;

            border-radius: 9px;

            background:
                #0b180a;

            backdrop-filter: blur(6px);

            border:
                2px solid var(--retro-green);

            cursor: pointer;

            z-index: 10;

            transition: .2s ease;

            box-shadow:
                3px 3px 0 #030503;
        }


        /* Close hover */

        .close-btn:hover {
            transform:
                translate(-2px, -2px) rotate(90deg);

            background:
                var(--retro-yellow);

            border-color:
                var(--retro-yellow);

            box-shadow:
                5px 5px 0 #030503;
        }


        .close-btn::before,
        .close-btn::after {
            content: "";

            position: absolute;

            width: 17px;
            height: 3px;

            background: #fff;

            top: 50%;
            left: 50%;

            margin-left: -8px;

            border-radius: 2px;
        }


        .close-btn::before {
            transform: rotate(45deg);
        }


        .close-btn::after {
            transform: rotate(-45deg);
        }


        .close-btn:hover::before,
        .close-btn:hover::after {
            background: #111;
        }


        /* =========================================================
   RETRO PULSE
   ========================================================= */

        @keyframes retroPulse {

            0%,
            100% {
                box-shadow:
                    8px 8px 0 #030503,
                    0 0 18px rgba(58, 168, 255, .14);
            }

            50% {
                box-shadow:
                    8px 8px 0 #030503,
                    0 0 30px rgba(95, 211, 255, .26);
            }

        }


        /* =========================================================
   MOBILE
   ========================================================= */

        @media(max-width:480px) {

            .popup-container {
                width: 94%;

                border-radius: 16px;

                box-shadow:
                    5px 5px 0 #030503,
                    0 20px 45px rgba(0, 0, 0, .8);
            }


            .popup-buttons {
                padding: 18px;

                gap: 12px;
            }


            .popup-buttons a {
                padding: 14px;

                font-size: 13px;
            }


            .info-table {
                width: 94%;
            }


            .popup-footer {
                font-size: 12px;

                padding: 16px;
            }


            .close-btn {
                width: 32px;
                height: 32px;

                top: 10px;
                right: 10px;
            }

        }

        /* =========================================================
   GT108 — BLUE GOLD ACCENT OVERRIDES
   ========================================================= */
        .gt108-marquee {
            background:
                linear-gradient(90deg,
                    #081327 0%,
                    #113561 25%,
                    #1f78ff 50%,
                    #1a4ea6 75%,
                    #081327 100%);
        }

        .gt108-content-head {
            background:
                linear-gradient(135deg,
                    #163765 0%,
                    #0d2b58 50%,
                    #081a38 100%);
        }

        .gt108-review-panel .panel-heading::after,
        .gt108-review-header h2::after,
        .modal-footer::before,
        .gt108-content-head::after {
            background:
                linear-gradient(90deg,
                    #ffd21f,
                    #fff3a0,
                    #5fd3ff,
                    #ffd21f);
        }

        .gt108-header-search .form-control:focus {
            box-shadow: inset 0 0 0 1px #5fd3ff,
                0 0 16px rgba(95, 211, 255, .20) !important;
        }

        .gt108-btn-pill:hover,
        .gt108-header-nav .nav li a:hover,
        .btn-hd:hover,
        .modal-footer .btn:hover,
        .modal-footer .btn-primary:hover,
        .popup-buttons a:hover {
            background: linear-gradient(180deg, #fff3a0, #ffd21f) !important;
            color: #102035 !important;
        }

        .modern-faq-q-icon {
            background: linear-gradient(145deg, #14407a, #0a1f43);
            color: #d7f4ff;
            border-color: #5fd3ff;
        }

        .btn-live-demo-hd {
            background: linear-gradient(180deg, #1f78ff, #114cb8);
            border-color: #3aa8ff;
        }

        .footer-social a {
            border-color: rgba(95, 211, 255, .36);
        }
    </style>