        body {
            background-color: #121212;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            overflow-x: hidden;
            /* Cuộn ngang */
            overflow-y: hidden;
            /* Cuộn dọc */
        }

        .container {
            max-width: 700px;
            margin: 0 auto;
            background: #f5f5f5;
            padding: 15px 15px 0px 15px;
            /* Padding: trên 15px, phải 15px, dưới 1px, trái 15px */
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
        }

        h2 {
            margin-bottom: 5px;
            /* Giảm khoảng cách dưới tiêu đề */
            text-align: center;
        }

        p {
            margin: 5px 0;
            /* Giảm khoảng cách giữa các đoạn văn */
        }

        .row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        select,
        input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            height: 40px;
        }

        input[type="text"] {
            max-width: 100%;
            /* Chiều rộng tối đa của ô nhập */
            box-sizing: border-box;
            /* Đảm bảo padding không làm vượt quá chiều rộng */
        }

        button {
            background: linear-gradient(to bottom, #4CAF50, #1cd676, #4CAF50);
            /* Gradient từ trên xuống */
            color: white;
            /* Màu chữ trên nút */
            padding: 10px;
            /* Khoảng cách trong của nút */
            border: none;
            /* Không có đường viền */
            border-radius: 4px;
            /* Bo góc của nút */
            cursor: pointer;
            /* Con trỏ chuột hiển thị khi rê qua */
            width: 100%;
            /* Chiều rộng của nút là 100% */
            border-radius: 0 0 10px 10px;
            /* Bo góc dưới trái và phải */
            transition: background 0.5s ease;
            /* Thêm hiệu ứng chuyển màu */
        }

        button:hover {
            background: linear-gradient(to bottom, #1cd676, #4CAF50, #1cd676);
            /* Gradient đảo ngược khi hover */
        }

        .result {
            text-align: center;
        }

        /* Định dạng chữ */
        .attention-text {
            font-size: 13px;
            font-weight: bold;
            animation: zoomInOut 3s infinite;
        }

        /* Định nghĩa hoạt ảnh phóng to và thu nhỏ */
        @keyframes zoomInOut {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.5);
                /* Phóng to 1.5 lần */
            }

            100% {
                transform: scale(1);
            }
        }

        #result {
            margin-top: 10px;
            text-align: center;
            font-size: 16px;
        }

        #Launcher {
            transition: transform 0.8s ease;
        }

        #Launcher:hover {
            transform: scale(1.1);
            /* Phóng to tiêu đề khi di chuột */
        }

        #addInfo {
            text-align: center;
            /* Canh giữa nội dung */
            font-size: 16px;
            /* Kích thước chữ */
            border-radius: 0;
            margin-top: -11px;
            /* Khoảng cách trên cho ô nhập */
            transition: font-size 0.8s;
            /* Thêm hiệu ứng chuyển động cho font-size */
        }

        #addInfo:focus {
            outline: none;
            /* Xóa viền đen mặc định */
            border-radius: 0;
            /* Không bo góc */
            border: 2px solid #4CAF50;
            /* Viền xanh */
        }

        #addInfo:hover {
            font-size: 17px;
        }

        .form-group {
            display: flex;
            align-items: center;
        }

        #phienbanOption {
            border-radius: 8px 0 0 0;
            /* Chỉ bo góc trên bên trái */
        }

        #amount {
            border-radius: 0 8px 0 0;
            /* Chỉ bo góc trên bên phải */
        }

        #phienbanOption:focus,
        #phienbanOption:hover,
        #durationOption:focus,
        #durationOption:hover,
        #amount:focus,
        #amount:hover {
            color: #075226;
            /* Màu vàng cam */
            outline: none;
            /* Xóa viền đen mặc định */
            cursor: pointer;
            /* Biến con trỏ thành dạng click được */
        }

        .form-group select,
        .form-group input {
            width: 100%;
            padding: 8px;
            font-size: 15px;
            border: 1px solid #ccc;
            border-radius: 0;
            /* Mặc định không bo góc */
            box-sizing: border-box;
            /* Đảm bảo padding không làm thay đổi kích thước */
        }

        #sang {
            transition: color 0.3s ease-in-out;
        }

        #sang:hover,
        #sang:focus {
            color: #0054a6;
            /* Màu 0054a6 */
            font-weight: bold;
            /* Làm đậm chữ */
            cursor: pointer;
            /* Biến con trỏ thành dạng click được */
        }


        /* Default style for PC - both columns 50% width */
        #checkout_box .col-md-6 {
            width: 50%;
            padding: 0;
        }

        /* Media Query for mobile devices */
        @media (max-width: 767px) {
            #checkout_box {
                display: flex;
                flex-direction: column;
            }

            #cach1 {
                max-width: 350px;
                min-width: 350px;
                order: 1;
                /* "Cách 1" sẽ ở trên */
            }

            #cach2 {
                max-width: 350px;
                min-width: 350px;
                order: 2;
                /* "Cách 2" sẽ ở dưới */
            }
        }

        /* iconload khi tai trang */

        /* Loader full màn */
        #loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .loader-container {
            position: relative;
            width: 150px;
            height: 150px;
            z-index: 1001;
            /* cao hơn section */
        }

        .spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 3px solid transparent;
            border-radius: 50%;
        }

        .spinner1 {
            width: 150px;
            height: 150px;
            border-top-color: #3498db;
            animation: spin 1.5s linear infinite;
        }

        .spinner2 {
            width: 130px;
            height: 130px;
            border-top-color: #f1c40f;
            animation: spin-reverse 1.2s linear infinite;
        }

        .spinner3 {
            width: 110px;
            height: 110px;
            border-top-color: #56edf5;
            animation: spin 1s linear infinite;
        }

        .spinner4 {
            width: 90px;
            height: 90px;
            border-top-color: #2ecc71;
            animation: spin-reverse 0.8s linear infinite;
        }

        .spinner5 {
            width: 70px;
            height: 70px;
            border-top-color: #e74c3c;
            animation: spin 0.6s linear infinite;
        }


        @keyframes spin {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            100% {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        @keyframes spin-reverse {
            0% {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            100% {
                transform: translate(-50%, -50%) rotate(-360deg);
            }
        }

        /* Dạt trái phải */
        .loader-section {
            position: fixed;
            top: 0;
            width: 51%;
            height: 100%;
            background: #212121;
            z-index: 1000;
            transition: transform 0.7s 0.3s cubic-bezier(.645, .045, .355, 1);
        }

        .section-left {
            left: 0;
        }

        .section-right {
            right: 0;
        }

        .loaded #loader-wrapper .section-left {
            transform: translateX(-100%);
        }

        .loaded #loader-wrapper .section-right {
            transform: translateX(100%);
        }

        .loaded .spinner {
            opacity: 0;
            transition: all 0.3s ease-out;
        }

        /* KHÔNG kéo loader-wrapper lên nữa, chỉ ẩn đi */
        .loaded #loader-wrapper {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease-out 1s;
        }


        .cursor-heart {
            position: absolute;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff6b95"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>') no-repeat;
            background-size: contain;
            animation: fadeOut 1.2s ease-out;
            pointer-events: none;
            /* Không chặn sự kiện chuột */
        }

        @keyframes fadeOut {
            0% {
                transform: translateX(0) translateY(0) scale(1);
                opacity: 1;
            }

            50% {
                transform: translateX(calc(15px * var(--random-x))) translateY(-15px) scale(1.2);
                opacity: 0.8;
            }

            100% {
                transform: translateX(calc(30px * var(--random-x))) translateY(-30px) scale(0);
                opacity: 0;
            }
        }


        .animated-gradient-text {
            position: relative;
            margin: 0 auto;
            display: flex;
            max-width: fit-content;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            border-radius: 1.25rem;
            font-weight: 500;
            backdrop-filter: blur(10px);
            transition: box-shadow 0.5s ease-out;
            overflow: hidden;
            cursor: pointer;
            text-decoration: none;
        }

        #thanhtoan {
            text-align: center;
            margin: 0;
            font-size: 1.5rem;
            font-weight: bold;
            background-image: linear-gradient(90deg, red, orange, yellow, red);
            background-size: 300% 100%;
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            animation: gradient 5s linear infinite;
        }

        .marquee {
            font-size: 14px;
            font-weight: bold;
            user-select: none;
            white-space: nowrap;
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .marquee-content {
            display: inline-block;
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            background-image: linear-gradient(90deg, black, orange, rgb(54, 203, 223), rgb(189, 193, 198), rgb(74, 74, 74), black);
            background-size: 300% 100%;
            animation: gradient 5s linear infinite, marquee-scroll 12s linear infinite;
            padding-left: 100%;
            /* Bắt đầu từ ngoài khung nhìn */
            white-space: nowrap;
        }

        @keyframes marquee-scroll {
            from {
                transform: translateX(0%);
            }

            to {
                transform: translateX(-100%);
            }
        }

        @keyframes gradient {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }