* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;

    font-family: Arial, Helvetica, sans-serif;

    color: white;

    background:
        radial-gradient(
            circle at 25% 5%,
            rgba(255, 170, 0, 0.12),
            transparent 30%
        ),
        #0b0b0b;
}

.container {
    width: 92%;
    max-width: 1500px;

    margin: auto;

    padding: 30px 0 60px;
}

/* HEADER */

.topbar {
    position: relative;
}

.logo {
    font-size: 44px;
    font-weight: 900;
    letter-spacing: 1px;

 background: linear-gradient(
    180deg,
    #FFF1B8 0%,
    #FFD66B 45%,
    #FFB52E 100%
);

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 0 18px rgba(255, 174, 0, 0.12);
}

.tagline {
    margin-top: 8px;

    color: #9a9a9a;

    font-size: 15px;
}

/* CLOCK */

.clock {
    position: absolute;

    top: 0;
    right: 0;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 7px 12px;

    border: 1px solid #5a420d;

    border-radius: 18px;

    color: #999;

    font-size: 12px;
}

.dot {
    width: 8px;
    height: 8px;

    background: #ffae00;
    border-radius: 50%;

    display: inline-block;
    flex-shrink: 0;

    box-shadow: 0 0 8px rgba(255, 174, 0, 0.8);
}

/* MARQUEE */

.marquee {
    width: 100%;

    height: 46px;

    overflow: hidden;

    display: flex;
    align-items: center;

    margin-top: 14px;

    color: #999;

    font-size: 15px;

    white-space: nowrap;
}

.marquee-track {
    display: flex;

    width: max-content;

    gap: 45px;

    animation:
        marqueeMove 30s linear infinite;
}

.marquee-track span {
    flex-shrink: 0;
}

@keyframes marqueeMove {
    from {
        transform: translateX(10%);
    }

    to {
        transform: translateX(-50%);
    }
}

/* LINE */

.line {
    height: 1px;

    background:
        linear-gradient(
            90deg,
            #684a08,
            #322400
        );

    margin-bottom: 38px;
}

/* LAYOUT */

.layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 28px;
    align-items: start;
}

/* PANEL */

.panel {
    background:
        linear-gradient(
            135deg,
            rgba(30, 29, 27, 0.96),
            rgba(20, 19, 18, 0.96)
        );

    border: 1px solid #5a4308;

    border-radius: 20px;

    padding: 28px;
}

.panel-title {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 24px;
}

.title-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #3b2b08;

    color: #ffc107;

    font-size: 19px;
}

.panel-title h2 {
    font-size: 22px;
}

.panel-title p {
    margin-top: 4px;

    color: #888;

    font-size: 13px;
}

/* LIST */

.feature-list {
    list-style: none;

    margin-bottom: 28px;
}

.feature-list li {
    position: relative;

    margin: 17px 0;

    padding-left: 20px;

    color: #aaa;

    font-size: 15px;
}

.feature-list li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 6px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #ffb300;
}

/* BUTTON */

.primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    padding: 18px;

    border: 4px solid #5a4109;
    border-radius: 14px;

    background: linear-gradient(
        90deg,
        #ffc32c,
        #f28b00
    );

    color: #111;
    font-size: 16px;
    font-weight: 800;

    text-decoration: none;
    cursor: pointer;

    transition: 0.2s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

/* INFO */

.info-box {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 15px 16px;

    margin-top: 12px;

    background: #0e0d0c;

    border: 1px solid #423005;

    border-radius: 12px;

    color: #999;
}

.info-box strong {
    color: white;

    font-size: 14px;
}

/* MOBILE */

@media (max-width: 900px) {

    .layout {
        grid-template-columns: 1fr;
    }

    .clock {
        display: none;
    }

    .logo {
        font-size: 34px;
    }
}


.clock {
    display: flex !important;
    align-items: center !important;
}

/* HIỆU ỨNG NỀN VÀNG */

body {
    background:
        radial-gradient(
            circle at 25% 10%,
            rgba(255, 160, 0, 0.13),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 75%,
            rgba(255, 120, 0, 0.09),
            transparent 35%
        ),
        #0b0b0b;
}

/* PARTICLES */

#particles {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    pointer-events: none;

    z-index: 0;
}

#particles span {
    position: absolute;

    display: block;

    background: #ffae00;

    border-radius: 50%;

    box-shadow:
        0 0 6px rgba(255, 174, 0, 0.8);

    animation:
        particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform:
            translateY(30px)
            translateX(0);

        opacity: 0;
    }

    15% {
        opacity: 0.5;
    }

    50% {
        transform:
            translateY(-60px)
            translateX(20px);

        opacity: 0.7;
    }

    85% {
        opacity: 0.3;
    }

    100% {
        transform:
            translateY(-140px)
            translateX(-15px);

        opacity: 0;
    }
}

/* ĐẢM BẢO NỘI DUNG NẰM TRÊN PARTICLES */

.container {
    position: relative;
    top: -30px;
    z-index: 1;
}

#particles {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    pointer-events: none !important;
    overflow: hidden !important;
    z-index: 999 !important;
}

#particles span {
    position: absolute !important;
    display: block !important;

    background: #ffae00 !important;
    border-radius: 50% !important;

    box-shadow:
        0 0 6px #ffae00,
        0 0 12px rgba(255,174,0,.8) !important;

    animation: bayHat 14s linear infinite !important;
}

@keyframes bayHat {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    10% {
        opacity: .8;
    }

    85% {
        opacity: .6;
    }

    100% {
        transform: translateY(-220px);
        opacity: 0;
    }
}

#particles span {
    opacity: 0.45 !important;

    box-shadow:
        0 0 4px rgba(255, 174, 0, 0.7),
        0 0 8px rgba(255, 174, 0, 0.25) !important;
}

.container {
    position: relative;
    z-index: 1;
}

.telegram-float {
    position: fixed !important;
    right: 5px !important;
    bottom: 20px !important;
    left: auto !important;
    z-index: 9999 !important;

    animation: telegramFloatGlow 2.2s ease-in-out infinite !important;
}

@keyframes telegramFloatGlow {
    0%, 100% {
        transform: translateY(0);
        filter: brightness(1);
        box-shadow:
            0 0 8px #229ED9,
            0 0 18px rgba(34, 158, 217, 0.6);
    }

    50% {
        transform: translateY(-8px);
        filter: brightness(1.35);
        box-shadow:
            0 0 15px #55c8ff,
            0 0 35px rgba(34, 158, 217, 1),
            0 0 55px rgba(34, 158, 217, 0.55);
    }
}

/* ===== LOADING SCREEN ===== */

.loading-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(4px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: opacity 0.25s ease;
    z-index: 99999;
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-box {
    width: 400px;
    padding: 35px 30px;

    text-align: center;

    background: #191714;
    border: 1px solid #6b4b00;
    border-radius: 18px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.6),
        0 0 30px rgba(255,174,0,.05);
}

.loading-spinner {
    width: 44px;
    height: 44px;

    margin: 0 auto 25px;

    border: 4px solid rgba(255,174,0,.18);
    border-top-color: #ffae00;

    border-radius: 50%;

    animation: loadingSpin 0.8s linear infinite;
}

.loading-box h2 {
    margin: 0 0 12px;

    color: #fff;
    font-size: 19px;
    font-weight: 800;
}

.loading-box p {
    margin: 0;

    color: #999;
    font-size: 14px;
}

@keyframes loadingSpin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== CHỌN QUỐC GIA ===== */

.country-screen {
    position: fixed;
    inset: 0;
    z-index: 9999999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 174, 0, 0.10),
            transparent 45%
        ),
        rgba(7, 7, 7, 0.97);

    backdrop-filter: blur(8px);
}

.country-select {
    width: 100%;
    text-align: center;
}

.country-select > h1,
.country-select > h2 {
    display: none;
}




.country-globes button span {
    position: absolute;
    bottom: -8px;
    left: 0;

    width: 100%;

    color: #ffd66b;
    font-size: 15px;
    font-weight: 700;
}

.country-globes button:hover {
    transform: translateY(-8px) scale(1.08);
}

.country-globes button:hover .globe {
    filter:
        drop-shadow(0 0 12px rgba(255, 190, 0, 0.8))
        drop-shadow(0 0 30px rgba(255, 140, 0, 0.4));
}

.country-box {
    width: 420px;
    max-width: calc(100% - 30px);

    padding: 32px;

    background: #171512;
    border: 1px solid #604609;
    border-radius: 20px;

    text-align: center;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 35px rgba(255, 174, 0, 0.08);
}

.country-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.country-box h2 {
    color: #ffd66b;
    font-size: 25px;
    margin-bottom: 8px;
}

.country-box > p {
    color: #888;
    font-size: 14px;
    margin-bottom: 25px;
}

.country-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.country-list button {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 16px;

    background: #0e0d0c;
    border: 1px solid #493606;
    border-radius: 12px;

    color: #ddd;
    font-size: 14px;

    cursor: pointer;
    transition: 0.2s ease;
}

.country-list button:hover {
    background: #2b2109;
    border-color: #ffb300;

    color: #ffd66b;

    transform: translateY(-2px);

    box-shadow: 0 0 15px rgba(255, 174, 0, 0.12);
}

/* XOAY QUẢ ĐỊA CẦU + LÁ CỜ */

.country-globes button {
    animation: globeFloat 3s ease-in-out infinite;
}

.globe {
    animation: globeSpin 8s linear infinite;
    transform-origin: center;
}





.country-globes button {
    position: relative;
}

.globe {
    font-size: 110px;
    line-height: 1;

    animation: globeSpin 5s linear infinite;
}





.globe {
    width: 190px;
    height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 1000px;
}

.globe-sphere {
    width: 175px;
    height: 175px;
    position: relative;

    border-radius: 50%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 32% 27%,
            #ffffff 0%,
            #c8c8c8 8%,
            #555 30%,
            #222 58%,
            #050505 100%
        );

    box-shadow:
        inset -32px -28px 45px rgba(0,0,0,.9),
        inset 12px 10px 25px rgba(255,255,255,.25),
        0 0 25px rgba(255,174,0,.4);

    animation: globeRotate 7s linear infinite;
}

.globe-sphere img {
    position: absolute;

    width: 105px;
    height: 65px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%)
        rotateY(0deg);

    object-fit: cover;

    border-radius: 50%;

    z-index: 5;

    box-shadow:
        0 4px 10px rgba(0,0,0,.7);
}

.globe-sphere::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 27% 23%,
            rgba(255,255,255,.32),
            transparent 23%
        ),
        radial-gradient(
            circle at 75% 78%,
            rgba(0,0,0,.75),
            transparent 55%
        );

    z-index: 2;

    pointer-events: none;
}

.globe-sphere::after {
    content: "";

    position: absolute;
    inset: 4px;

    border-radius: 50%;

    box-shadow:
        inset 0 0 30px rgba(0,0,0,.8);

    z-index: 3;

    pointer-events: none;
}

@keyframes globeRotate {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

/* ===== QUẢ BÓNG 3D ===== */

.globe {
    width: 190px;
    height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-sphere {
    position: relative;

    width: 180px;
    height: 180px;

    border-radius: 50%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 30% 25%,
            #777 0%,
            #444 18%,
            #222 45%,
            #090909 75%,
            #000 100%
        );

    box-shadow:
        inset -35px -30px 45px rgba(0,0,0,.9),
        inset 15px 12px 25px rgba(255,255,255,.22),
        0 0 25px rgba(255,174,0,.45),
        0 0 50px rgba(255,174,0,.15);

    transform-style: preserve-3d;

    animation: ballRotate 7s linear infinite;
}

/* LÁ CỜ TRÊN QUẢ BÓNG */

.globe-sphere img {
    position: absolute;

    width: 125px;
    height: 82px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    object-fit: cover;

    border-radius: 18px;

    z-index: 2;

    box-shadow:
        0 5px 12px rgba(0,0,0,.7);

    filter: brightness(.95);
}

/* ÁNH SÁNG TRÊN BỀ MẶT QUẢ BÓNG */

.globe-sphere::before {
    content: "";

    position: absolute;
    inset: 0;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 28% 23%,
            rgba(255,255,255,.35),
            transparent 20%
        ),
        radial-gradient(
            circle at 72% 78%,
            rgba(0,0,0,.75),
            transparent 55%
        );

    z-index: 3;

    pointer-events: none;
}

/* VIỀN BÓNG */

.globe-sphere::after {
    content: "";

    position: absolute;
    inset: 2px;

    border-radius: 50%;

    box-shadow:
        inset 0 0 25px rgba(0,0,0,.85);

    z-index: 4;

    pointer-events: none;
}

@keyframes ballRotate {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}
/* ===== OVERRIDE QUẢ BÓNG ===== */

.country-globes .globe {
    width: 200px !important;
    height: 200px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    perspective: 1000px !important;
}

.country-globes .globe-sphere {
    width: 185px !important;
    height: 185px !important;

    position: relative !important;
    overflow: hidden !important;

    border-radius: 50% !important;

    background:
        radial-gradient(
            circle at 30% 25%,
            #888 0%,
            #444 20%,
            #1c1c1c 50%,
            #050505 100%
        ) !important;

    box-shadow:
        inset -38px -30px 50px rgba(0,0,0,.95),
        inset 15px 12px 25px rgba(255,255,255,.25),
        0 0 30px rgba(255,174,0,.5) !important;

    animation: realBallSpin 6s linear infinite !important;
}

.country-globes .globe-sphere img {
    position: absolute !important;

    width: 125px !important;
    height: 82px !important;

    left: 50% !important;
    top: 50% !important;

    transform: translate(-50%, -50%) !important;

    object-fit: cover !important;

    border-radius: 12px !important;

    z-index: 2 !important;
}

@keyframes realBallSpin {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

/* ===== QUẢ BÓNG TRÒN Ú ===== */

.country-globes .globe {
    width: 220px !important;
    height: 220px !important;
    
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    position: relative !important;
    perspective: 1000px !important;
}

.country-globes .globe-sphere {
    width: 200px !important;
    height: 200px !important;

    position: relative !important;

    border-radius: 50% !important;
    overflow: hidden !important;

    background:
        radial-gradient(
            circle at 30% 25%,
            #999 0%,
            #555 18%,
            #222 48%,
            #080808 80%,
            #000 100%
        ) !important;

    box-shadow:
        inset -45px -35px 60px rgba(0,0,0,.95),
        inset 18px 15px 30px rgba(255,255,255,.28),
        0 0 25px rgba(255,174,0,.45),
        0 0 60px rgba(255,174,0,.15) !important;

    animation: bigBallSpin 7s linear infinite !important;
}


.country-item {
    width: 220px !important;
    height: 250px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    background: transparent !important;
    border: none !important;
}







.country-item > span {
    margin-top: 15px !important;

    color: #ffd66b !important;

    font-size: 16px !important;
    font-weight: 700 !important;
}

/* =========================
   SYSTEM INFO - GIỐNG ẢNH 1
========================= */

.panel {
    background: #191715 !important;
    border: 1px solid rgba(255, 174, 0, 0.45) !important;
    border-radius: 20px !important;
    padding: 24px !important;
    box-shadow: none !important;
}

/* Tiêu đề */
.panel-title {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 18px !important;
}

.panel-title .title-icon {
    width: 38px !important;
    height: 38px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(255, 174, 0, 0.12) !important;
    border-radius: 12px !important;

    color: #ffb000 !important;
}

.panel-title h2 {
    margin: 0 !important;

    color: #f5f5f5 !important;

    font-size: 20px !important;
    font-weight: 800 !important;
}


/* TỪNG DÒNG IP / DEVICE / OS / BROWSER */

.info-box {
    width: 100% !important;
    min-height: 46px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    padding: 0 14px !important;
    margin-bottom: 10px !important;

    background: #0e0d0c !important;

    border: 1px solid rgba(255, 174, 0, 0.28) !important;
    border-radius: 13px !important;

    color: #aaa !important;
}

.info-box:last-child {
    margin-bottom: 0 !important;
}


/* Tên IP / Device / OS / Browser */

.info-box span {
    color: #aaa !important;
    font-size: 14px !important;
}


/* Giá trị bên phải */

.info-box strong {
    color: #f2f2f2 !important;

    font-size: 14px !important;
    font-weight: 700 !important;

    text-align: right !important;
}


/* ICON */

.info-box span:first-child {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* STATUS BOX */
.status-box {
    width: 100%;
    box-sizing: border-box;

    margin-top: 24px;
    padding: 20px;

    background: #191715;
    border: 1px solid rgba(255, 174, 0, 0.4);
    border-radius: 20px;
}

.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 30px;
    margin-bottom: 8px;

    color: #aaa;
    font-size: 14px;
}

.status-row:last-child {
    margin-bottom: 0;
}

.status-row strong {
    color: #f5f5f5;
    font-weight: 700;
}

.status-row .online {
    color: #35d9a0;
}

.status-row .online i {
    display: inline-block;

    width: 8px;
    height: 8px;

    margin-right: 6px;

    background: #35d9a0;
    border-radius: 50%;
}

.status-row .secure {
    color: #ffb000;
}

/* STATUS - nằm dưới System Info */


/* 2FA SECURITY BOX */
.security-box {
    width: 100%;
    box-sizing: border-box;
    margin-top: 24px;
    padding: 18px 20px;

    display: flex;
    align-items: center;
    gap: 14px;

    background: #191715;
    border: 1px solid rgba(255, 174, 0, 0.4);
    border-radius: 20px;
}

.security-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 174, 0, 0.12);
    border-radius: 14px;

    color: #ffae00;
    font-size: 21px;
}

.security-content h3 {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.security-content p {
    margin: 0;
    color: #999999;
    font-size: 13px;
}




/* RIGHT COLUMN */
.right-column {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

/* RIGHT COLUMN */
.right-column {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    box-sizing: border-box;
}
.right-column > .status-box {
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.right-column > .security-box {
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}
.right-column > .status-box,
.right-column > .security-box {
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    box-sizing: border-box;
}
.right-column > .status-box,
.right-column > .security-box {
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
}

.right-column > .status-box {
    margin-top: 0 !important;
}

/* FIX: STATUS + 2FA nằm trong cột phải */
.layout > .right-column {
    grid-column: 2 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
}

.layout > .right-column > .status-box {
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.layout > .right-column > .security-box {
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}
/* ICON SYSTEM INFO MÀU VÀNG */
.info-box span:first-child {
    color: #ffae00 !important;
}

.info-box span:first-child::first-letter {
    color: #ffae00 !important;
}
.security-box {
    cursor: pointer !important;
}

.security-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 99999;

    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 300px;
    padding: 15px 18px;

    background: #191715;
    border: 1px solid rgba(255, 174, 0, 0.6);
    border-radius: 14px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);

    opacity: 0;
    transform: translateX(35px);
    pointer-events: none;

    transition: opacity 0.3s ease, transform 0.3s ease;
}

.security-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-icon {
    color: #ffae00;
    font-size: 22px;
}

.toast-content strong {
    display: block;
    color: #ffae00;
    font-size: 14px;
}

.toast-content span {
    display: block;
    margin-top: 3px;
    color: #aaa;
    font-size: 13px;
}
.left-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.system-targets {
    width: 100%;
    padding: 28px 24px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 174, 0, 0.35);
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        rgba(30, 26, 21, 0.96),
        rgba(17, 15, 13, 0.96)
    );
}

.target-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.target-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 174, 0, 0.14);
    color: #ffb000;
}

.target-title h2 {
    margin: 0;
    color: white;
    font-size: 21px;
}

.target-title p {
    margin: 4px 0 0;
    color: #8d8985;
    font-size: 13px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #eee;
    font-size: 14px;
    font-weight: 600;
}

.form-group select,
.form-group input {
    width: 100%;
    height: 52px;
    box-sizing: border-box;
    padding: 0 16px;
    border: 1px solid rgba(255, 174, 0, 0.45);
    border-radius: 13px;
    background: #0e0c0a;
    color: white;
    outline: none;
}

.run-btn,
.support-btn {
    width: 100%;
    height: 52px;
    border-radius: 13px;
    font-weight: 700;
    cursor: pointer;
}

.run-btn {
    border: 0;
    background: linear-gradient(90deg, #ffbf27, #ff9200);
    color: #16110a;
}

.support-btn {
    margin-top: 15px;
    border: 1px solid rgba(255, 174, 0, 0.5);
    background: transparent;
    color: #ffb000;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
/* ===== SYSTEM TARGETS ===== */

.target-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
}

.target-form label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.target-form select,
.target-form input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 52px;
    padding: 0 16px;

    background: #0d0c0b;
    color: #fff;

    border: 1px solid #805900;
    border-radius: 12px;

    outline: none;
    font-size: 14px;
}

.target-form select:focus,
.target-form input:focus {
    border-color: #ffb000;
}

.target-form input::placeholder {
    color: #777;
}

.target-form .primary-btn {
    width: 100%;
    height: 54px;
    margin-top: 4px;

    border: none;
    border-radius: 12px;

    background: linear-gradient(90deg, #ffc32b, #ff9700);
    color: #111;

    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.target-form .support-btn {
    width: 100%;
    height: 50px;

    background: transparent;
    color: #ffb000;

    border: 1px solid #805900;
    border-radius: 12px;

    font-weight: 600;
    cursor: pointer;
}
/* ===== CUSTOM GAME DROPDOWN ===== */

.game-dropdown {
    position: relative;
    width: 100%;
}

.game-dropdown-btn {
    width: 100%;
    height: 54px;
    padding: 0 16px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #0b0907;
    color: white;

    border: 2px solid #a97000;
    border-radius: 14px;

    font-size: 14px;
    cursor: pointer;
}

.dropdown-arrow {
    color: #ffae00;
    transition: 0.2s;
}

/* MẶC ĐỊNH GIẤU DANH SÁCH */
.game-dropdown-menu {
    display: none;

    width: 100%;
    max-height: 300px;
    overflow-y: auto;

    margin-top: 7px;

    background: #15110c;
    border: 1px solid #805900;
    border-radius: 12px;
}

/* CLICK THÌ MỞ */
.game-dropdown.open .game-dropdown-menu {
    display: block;
}

.game-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}


/* TỪNG DÒNG */

.game-row {
    display: grid;
    grid-template-columns: 120px 150px 1fr;

    min-height: 65px;

    cursor: pointer;

    border-bottom: 1px solid rgba(255, 174, 0, 0.15);
}

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

.game-row:hover {
    background: rgba(255, 174, 0, 0.08);
}


/* TÊN CỔNG */

.game-code {
    display: flex;
    align-items: center;

    padding: 12px;

    color: #ffae00;
    font-weight: bold;

    border-right: 1px solid rgba(255, 174, 0, 0.15);
}


/* NGÀY + TỶ LỆ + GIỜ */

.game-meta {
    padding: 8px 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;

    color: #999;
    font-size: 10px;

    border-right: 1px solid rgba(255, 174, 0, 0.15);
}

.game-meta b {
    color: #ffae00;
    font-size: 14px;
}

.game-meta strong {
    color: white;
}


/* TRẠNG THÁI BÊN PHẢI */

.game-status {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 10px;

    text-align: center;

    background: rgba(110, 70, 15, 0.35);

    color: #ffae00;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
}
/* Ẩn thanh cuộn của dropdown nhưng vẫn cuộn được */
.game-dropdown-menu {
    scrollbar-width: none;      /* Firefox */
    -ms-overflow-style: none;   /* Edge cũ */
}

.game-dropdown-menu::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}
.security-toast.shake {
    animation: toastShake 0.45s ease;
}

@keyframes toastShake {
    0%   { transform: translateX(0); }
    20%  { transform: translateX(-8px); }
    40%  { transform: translateX(8px); }
    60%  { transform: translateX(-6px); }
    80%  { transform: translateX(6px); }
    100% { transform: translateX(0); }
}
/* ===== LOW RATE POPUP ===== */

.low-rate-overlay {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(4px);

    opacity: 0;
    visibility: hidden;

    z-index: 999999;
    transition: 0.25s ease;
}

.low-rate-overlay.show {
    opacity: 1;
    visibility: visible;
}

.low-rate-modal {
    width: min(420px, calc(100% - 40px));
    padding: 30px;

    background: linear-gradient(
        145deg,
        #35141d,
        #1c0c11
    );

    border: 1px solid #a62d47;
    border-radius: 16px;

    box-shadow:
        0 0 45px rgba(255, 55, 90, 0.18);

    text-align: center;
    color: #ff7087;
}

.low-rate-icon {
    width: 54px;
    height: 54px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 70, 100, 0.12);

    color: #ff7087;
    font-size: 27px;
}

.low-rate-modal h2 {
    margin: 0 0 12px;

    color: #ff7087;

    font-size: 21px;
    font-weight: 800;
}

.low-rate-modal p {
    margin: 0 0 24px;

    color: #d98a98;

    line-height: 1.6;
    font-size: 14px;
}

.low-rate-modal button {
    width: 100%;

    padding: 14px;

    background: transparent;
    color: #ff7087;

    border: 1px solid #a62d47;
    border-radius: 10px;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

.low-rate-modal button:hover {
    background: rgba(255, 70, 100, 0.08);
}

/* RUNG */
.low-rate-modal.shake {
    animation: lowRateShake 0.45s ease;
}

@keyframes lowRateShake {
    0%   { transform: translateX(0); }
    20%  { transform: translateX(-10px); }
    40%  { transform: translateX(10px); }
    60%  { transform: translateX(-7px); }
    80%  { transform: translateX(7px); }
    100% { transform: translateX(0); }
}
/* Chưa chọn cổng hoặc chưa nhập tài khoản */
#runBtn:disabled {
    background: #6b470d !important;
    background-image: none !important;
    color: #1a1208 !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 0.65 !important;
    filter: brightness(0.75) !important;
    cursor: not-allowed !important;
}

/* Đã chọn cổng + đã nhập tài khoản */
#runBtn:not(:disabled) {
    background: linear-gradient(
        90deg,
        #ffc52b,
        #ff9200
    ) !important;

    color: #111 !important;
    border: none !important;
    opacity: 1 !important;
    filter: none !important;

    box-shadow:
        0 0 16px rgba(255, 176, 0, 0.28) !important;

    cursor: pointer !important;
}
.telegram-float {
    position: fixed !important;
    right: 25px !important;
    bottom: 25px !important;

    width: 65px;
    height: 65px;
    border-radius: 50%;

    background: #229ED9;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    z-index: 999999 !important;

    box-shadow:
        0 0 0 8px rgba(34, 158, 217, 0.15),
        0 0 25px rgba(34, 158, 217, 0.8);

    animation: telegramPulse 1.5s infinite;
}

.telegram-icon {
    color: white;
    font-size: 32px;
    font-weight: bold;
    transform: rotate(-35deg);
}

@keyframes telegramPulse {
    0% {
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(34, 158, 217, 0.7),
            0 0 20px rgba(34, 158, 217, 0.7);
    }

    50% {
        transform: scale(1.08);
        box-shadow:
            0 0 0 15px rgba(34, 158, 217, 0),
            0 0 35px rgba(34, 158, 217, 1);
    }

    100% {
        transform: scale(1);
        box-shadow:
            0 0 0 0 rgba(34, 158, 217, 0),
            0 0 20px rgba(34, 158, 217, 0.7);
    }
}
.telegram-svg {
    width: 36px;
    height: 36px;
    fill: white;
    display: block;
}
.telegram-float .telegram-plane {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    color: #ffffff !important;
    font-size: 36px !important;
    font-family: Arial, sans-serif !important;
    font-weight: bold !important;

    line-height: 1 !important;

    position: absolute !important;
    left: 50% !important;
    top: 50% !important;

    transform: translate(-50%, -50%) rotate(-35deg) !important;

    z-index: 1000001 !important;
}

.telegram-float {
    position: fixed !important;
    right: 25px !important;
    bottom: 25px !important;

    width: 65px !important;
    height: 65px !important;

    background: #229ed9 !important;
    border-radius: 50% !important;

    display: block !important;
    overflow: visible !important;

    z-index: 1000000 !important;
}
/* ===== TELEGRAM - ÉP HIỆN ICON ===== */

.telegram-float {
    position: fixed !important;
    right: 25px !important;
    bottom: 25px !important;

    width: 66px !important;
    height: 66px !important;

    display: block !important;

    background-color: #229ed9 !important;
    border-radius: 50% !important;

    overflow: visible !important;

    z-index: 9999999 !important;

    box-shadow:
        0 0 12px #229ed9,
        0 0 28px rgba(34, 158, 217, 0.8) !important;
}

/* ICON TELEGRAM */
.telegram-float::before {
    content: "" !important;

    position: absolute !important;
    left: 50% !important;
    top: 50% !important;

    width: 38px !important;
    height: 38px !important;

    transform: translate(-50%, -50%) !important;

    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M21.8 3.2 18.6 19c-.24 1.12-.88 1.4-1.78.87l-4.87-3.59-2.35 2.26c-.26.26-.48.48-.98.48l.35-4.96 9.03-8.16c.39-.35-.09-.55-.61-.2L6.23 12.73 1.43 11.23c-1.04-.33-1.06-1.04.22-1.54L20.4 2.46c.87-.32 1.63.2 1.4.74Z'/%3E%3C/svg%3E") !important;

    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;

    z-index: 99999999 !important;
}
.support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
}
.support-btn {
    transition: all 0.25s ease !important;
    cursor: pointer;
}

.support-btn:hover {
    background: rgba(255, 174, 0, 0.20) !important;
    color: #55b7ff !important;
    border-color: #ffae00 !important;

    box-shadow:
        0 0 12px rgba(255, 174, 0, 0.18),
        inset 0 0 18px rgba(255, 174, 0, 0.08) !important;

    transform: translateY(-2px);
}
/* ===== HIỆU ỨNG HOVER CHO CÁC Ô ===== */

.info-item,
.status-box,
.security-box,
.game-dropdown-btn,
.support-btn {
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease !important;
}

.info-item:hover,
.status-box:hover,
.security-box:hover,
.game-dropdown-btn:hover,
.support-btn:hover {
    background: rgba(255, 174, 0, 0.12) !important;
    border-color: #ffae00 !important;

    box-shadow:
        0 0 15px rgba(255, 174, 0, 0.20),
        inset 0 0 18px rgba(255, 174, 0, 0.05) !important;

    transform: translateY(-2px);
}
.info-box {
    transition: all 0.25s ease;
    cursor: pointer;
}

.info-box:hover {
    background: rgba(255, 170, 0, 0.12);
    border-color: #ffb000;
    transform: translateX(5px);
    box-shadow:
        0 0 12px rgba(255, 170, 0, 0.25),
        inset 0 0 12px rgba(255, 170, 0, 0.05);
}

.info-box:hover span,
.info-box:hover strong {
    color: #ffb000;
}
/* ===== LIVE ACTIVITY ===== */

.live-activity {
    width: 100%;
    margin-top: 24px;
    padding: 20px;

    background: rgba(20, 18, 16, 0.92);
    border: 1px solid #8a6200;
    border-radius: 20px;

    box-sizing: border-box;
}

.live-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.live-title {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.live-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 176, 0, 0.13);
    color: #ffb000;

    border-radius: 10px;
}

.live-badge {
    color: #ffb000;
    font-size: 12px;
    font-weight: 700;
}

.activity-list {
    max-height: 300px;
    overflow-y: auto;

    scrollbar-width: thin;
    scrollbar-color: #8a6200 transparent;
}

.activity-list::-webkit-scrollbar {
    width: 6px;
}

.activity-list::-webkit-scrollbar-track {
    background: transparent;
}

.activity-list::-webkit-scrollbar-thumb {
    background: #8a6200;
    border-radius: 10px;
}

.activity-list::-webkit-scrollbar-thumb:hover {
    background: #ffb000;
}

.activity-item {
    padding: 12px 14px;
    margin-bottom: 8px;

    background: rgba(0, 0, 0, 0.28);
    border-radius: 8px;

    color: #aaa;

    animation: activityIn 0.35s ease;
}

.activity-item strong {
    color: #ffb000;
}

.activity-item .dot {
    color: #ffb000;
    margin-right: 8px;
}

.activity-time {
    display: block;

    margin-left: 22px;
    margin-top: 4px;

    color: #666;
    font-size: 11px;
}

@keyframes activityIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== THU GỌN LIVE ACTIVITY ===== */

.activity-item {
    padding: 8px 12px;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.25;
}

.activity-item strong {
    font-size: 13px;
    font-weight: 700;
}

.activity-item .dot {
    font-size: 9px;
    margin-right: 7px;
}

.activity-time {
    margin-left: 18px;
    margin-top: 2px;
    font-size: 10px;
    line-height: 1.1;
}

.activity-list {
    max-height: 270px;
}

.live-activity {
    padding: 16px 18px;
}

.live-header {
    margin-bottom: 10px;
}

.live-title {
    font-size: 18px;
}

.live-icon {
    width: 34px;
    height: 34px;
}
.live-icon {
    position: relative;
    color: #ffb000;
}

.live-icon::before,
.live-icon::after {
    content: "";
    position: absolute;

    width: 10px;
    height: 10px;

    border: 2px solid #ffb000;
    border-radius: 50%;

    animation: liveSignal 1.8s infinite;
}

.live-icon::after {
    animation-delay: 0.6s;
}

@keyframes liveSignal {
    0% {
        width: 8px;
        height: 8px;
        opacity: 1;
    }

    100% {
        width: 30px;
        height: 30px;
        opacity: 0;
    }
}
/* ===== HOVER LIVE ACTIVITY ===== */

.activity-item {
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;

    border: 1px solid transparent;
    cursor: pointer;
}

.activity-item:hover {
    background: rgba(255, 176, 0, 0.10);
    border-color: rgba(255, 176, 0, 0.55);

    box-shadow:
        0 0 14px rgba(255, 176, 0, 0.18),
        inset 0 0 12px rgba(255, 176, 0, 0.05);

    transform: translateX(4px);
}

.activity-item:hover strong {
    color: #ffc233;
}

.activity-item:hover .activity-time {
    color: #999;
}
.activity-list {
    overflow-x: hidden !important;
}
.telegram-float {
    transition:
        transform 0.25s ease,
        filter 0.25s ease,
        box-shadow 0.25s ease !important;
}

.telegram-float:hover {
    transform: scale(1.12) !important;
    filter: brightness(1.25) !important;

    box-shadow:
        0 0 15px rgba(34, 158, 217, 0.9),
        0 0 30px rgba(34, 158, 217, 0.75),
        0 0 50px rgba(34, 158, 217, 0.45) !important;
}
/* FAQ - chữ to hơn một chút */

.faq-section h2 {
    font-size: 23px !important;
}

.faq-item h3 {
    color: #ffb000 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
}

.faq-item p {
    font-size: 14.5px !important;
    line-height: 1.75 !important;
}
.faq-item {
    margin-bottom: 38px !important;
}
.faq-section h2 {
    margin-bottom: 42px !important;
}

.faq-item:not(:last-child) {
    margin-bottom: 38px !important;
}
.faq-item p {
    color: #8f8f8f !important;
    font-size: 14.5px !important;
    line-height: 1.75 !important;

    background: none !important;
    background-image: none !important;

    -webkit-text-fill-color: #8f8f8f !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;

    text-shadow: none !important;
}
.marquee {
    overflow: hidden;

    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
    );
}
/* ===== POPUP NHẬP MÃ ===== */

.code-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.code-overlay.show {
    display: flex;
}

.code-modal {
    width: min(450px, calc(100% - 32px));

    background: #171512;
    border: 1px solid rgba(255, 176, 0, 0.4);
    border-radius: 17px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.65),
        0 0 35px rgba(255, 176, 0, 0.05);

    overflow: hidden;

    animation: codeModalIn 0.22s ease;
}

@keyframes codeModalIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.code-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 22px;

    border-bottom: 1px solid rgba(255, 176, 0, 0.18);
}

.code-modal-title {
    display: flex;
    align-items: center;
    gap: 11px;

    color: #fff;
    font-size: 19px;
}

.code-lock {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 9px;
    background: rgba(255, 176, 0, 0.13);
}

.code-close {
    border: 0;
    background: transparent;

    color: #999;
    font-size: 27px;
    cursor: pointer;
}

.code-close:hover {
    color: #ffb000;
}

.code-modal-body {
    padding: 25px;
}

.code-modal-body p {
    margin: 0 0 22px;

    color: #999;
    font-size: 14px;
}

.code-modal-body label {
    display: block;

    margin-bottom: 8px;

    color: #ddd;
    font-weight: 600;
}

#verifyCode {
    width: 100%;
    box-sizing: border-box;

    padding: 16px;

    background: #0d0c0b;
    color: #fff;

    border: 2px solid #b77b00;
    border-radius: 13px;

    outline: none;

    font-size: 17px;
}

#verifyCode:focus {
    border-color: #ffb000;

    box-shadow:
        0 0 0 3px rgba(255, 176, 0, 0.10);
}

.code-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;

    margin-top: 18px;
}

.code-actions button {
    height: 54px;

    border-radius: 12px;
    border: 1px solid #805700;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;
}

#codeCancel {
    background: #171512;
    color: #ffb000;
}

#codeConfirm {
    background: linear-gradient(90deg, #ffc02a, #ef8b00);
    color: #111;
}

#codeConfirm:disabled {
    background: #76500e;
    color: #17110a;

    opacity: 0.65;
    cursor: not-allowed;
}

.code-hint {
    margin-top: 20px;

    text-align: center;

    color: #666;
    font-size: 12px;
}
.code-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(7px);
}

.code-overlay.show {
    display: flex;
}
/* ===== NÚT LIÊN HỆ NHẬN MÃ ===== */

.get-code-btn {
    width: 100%;
    height: 46px;

    margin-top: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    background: linear-gradient(90deg, #ffc02a, #f39200);
    color: #15100a;

    border-radius: 10px;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition: 0.2s ease;
}

.get-code-btn:hover {
    filter: brightness(1.12);

    box-shadow:
        0 0 18px rgba(255, 176, 0, 0.35);

    transform: translateY(-1px);
}


/* ===== THÔNG BÁO CODE SAI ===== */

.code-toast {
    position: fixed;

    top: 22px;
    right: 22px;

    min-width: 285px;

    padding: 15px 18px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #1b1916;

    border: 1px solid #805700;
    border-radius: 9px;

    color: #fff;

    z-index: 9999999;

    opacity: 0;
    visibility: hidden;

    transform: translateX(25px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
}

.code-toast span {
    color: #fff;
    font-size: 10px;
}

.code-toast strong {
    font-size: 13px;
}

.code-toast.show {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}
/* ===== COMPACT 2 KHUNG CHÍNH ===== */

/* Code Manager + System Targets */
.left-column > .panel {
    padding: 22px 24px;
}

/* Tiêu đề */
.left-column .panel-title {
    margin-bottom: 14px;
}

/* Danh sách Code Manager */
.left-column .feature-list {
    margin: 10px 0 18px;
}

.left-column .feature-list li {
    margin-bottom: 8px;
    line-height: 1.35;
}

/* Nút tìm cổng */
.left-column .scan-btn {
    min-height: 52px;
    padding: 12px 18px;
}

/* System Targets */
#gameDropdownBtn,
#accountInput {
    min-height: 50px;
}

/* Khoảng cách các thành phần */
.left-column label {
    margin-bottom: 7px;
}

#gameDropdown {
    margin-bottom: 14px;
}

#accountInput {
    margin-bottom: 14px;
}

/* Nút chạy */
#runBtn {
    min-height: 52px;
    padding: 12px 18px;
}

/* Nút liên hệ */
.support-btn {
    min-height: 46px;
    padding: 10px 18px;
    margin-top: 12px;
}
.gold-icon {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: #ffb000;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;

    flex-shrink: 0;
}
.field-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gold-icon {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #ffb000;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.gold-icon {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #ffb000;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.title-icon .gold-icon {
    width: 19px;
    height: 19px;
}
/* ===== VUI LÒNG ĐỢI ===== */

.wait-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999999;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.45);
}

.wait-overlay.show {
    display: flex;
}

.wait-box {
    width: 300px;
    padding: 28px 25px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;

    background: #171512;
    border: 1px solid #9a6800;
    border-radius: 15px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.65),
        0 0 25px rgba(255,176,0,.10);

    animation: waitPop .2s ease;
}

.wait-box strong {
    color: #fff;
    font-size: 16px;
}

.wait-box span {
    color: #888;
    font-size: 12px;
}

.wait-spinner {
    width: 28px;
    height: 28px;
    margin-bottom: 7px;

    border: 3px solid rgba(255,176,0,.2);
    border-top-color: #ffb000;
    border-radius: 50%;

    animation: waitSpin .7s linear infinite;
}

@keyframes waitSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes waitPop {
    from {
        opacity: 0;
        transform: scale(.94);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
.security-box {
    padding: 14px 18px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    gap: 14px;

    transition: 0.25s ease;
}

.security-box:hover {
    border-color: rgba(255, 176, 0, 0.75);

    background: rgba(255, 176, 0, 0.06);

    box-shadow:
        0 0 16px rgba(255, 176, 0, 0.14);

    transform: translateY(-2px);
}

.security-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;

    display: grid;
    place-items: center;
}

.security-content h3 {
    margin: 0 0 3px;
    font-size: 16px;
}

.security-content p {
    margin: 0;
    font-size: 12px;
    color: #888;
}
/* ===== FIX CỤC 2FA GỌN ===== */

.security-box {
    padding: 14px 18px !important;
    min-height: 0 !important;
    height: auto !important;

    display: flex !important;
    align-items: center !important;
    gap: 14px !important;

    border-radius: 16px !important;
}

.security-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(255, 174, 0, 0.12) !important;
    color: #ffb000 !important;

    border-radius: 12px !important;
    font-size: 20px !important;
}

.security-content h3 {
    margin: 0 0 3px 0 !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
}

.security-content p {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
}
.security-gold-icon {
    width: 20px;
    height: 20px;

    fill: none !important;
    stroke: #ffb000 !important;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.security-icon {
    color: #ffb000 !important;
}

/* =========================================
   SUPPORT 24/7 - BẢN SẠCH DUY NHẤT
========================================= */

.support-fab {
    position: fixed;
    right: 40px;
    bottom: 110px;
    width: 80px;
    height: 80px;
    overflow: visible;
    z-index: 2147483647;
}

.support-main {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 78px;
    height: 78px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(145deg, #241b08, #120f09);
    border: 2px solid #d99000;
    color: #ffc107;

    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    pointer-events: auto;

    box-shadow:
        0 0 18px rgba(255, 176, 0, 0.25),
        inset 0 0 10px rgba(255, 176, 0, 0.06);

    z-index: 20;
    transition:
        filter .2s ease,
        box-shadow .2s ease,
        scale .2s ease;
}

.support-main strong {
    color: #ffb000;
    font-size: 18px;
}

.support-item {
    position: absolute;
    right: 1px;
    bottom: 1px;

    width: 76px;
    height: 76px;
    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;

    background: #15120c;
    border: 1px solid #8f6200;
    color: #ffb000;
    text-decoration: none;
    text-align: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: scale(.55);

    transition:
        opacity .25s ease,
        transform .35s cubic-bezier(.2, .8, .2, 1),
        visibility 0s linear .4s,
        filter .2s ease,
        box-shadow .2s ease,
        scale .2s ease;

    z-index: 30;
}

/* Khi mở mới cho 3 nút nhận click */
.support-fab.open .support-item {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    cursor: pointer;

    transition:
        opacity .25s ease,
        transform .35s cubic-bezier(.2, .8, .2, 1),
        visibility 0s,
        filter .2s ease,
        box-shadow .2s ease,
        scale .2s ease;
}

/* Bung đúng thứ tự: Khiếu nại -> CSKH -> Hotline */
.support-fab.open .item-complaint {
    transform: translate(-65px, -88px) scale(1);
    transition-delay: 0s;
}

.support-fab.open .item-cskh {
    transform: translate(-100px, 0) scale(1);
    transition-delay: .18s;
}

.support-fab.open .item-hotline {
    transform: translate(-65px, 88px) scale(1);
    transition-delay: .36s;
}

/* Thu ngược lại, mượt */
.support-fab:not(.open) .item-hotline {
    opacity: 0;
    transform: translate(-65px, 88px) scale(.55);
    transition-delay: 0s;
}

.support-fab:not(.open) .item-cskh {
    opacity: 0;
    transform: translate(-100px, 0) scale(.55);
    transition-delay: .12s;
}

.support-fab:not(.open) .item-complaint {
    opacity: 0;
    transform: translate(-65px, -88px) scale(.55);
    transition-delay: .24s;
}

.support-icon,
.support-svg-icon {
    width: 23px;
    height: 23px;
    color: #ffb000;
}

.support-icon {
    display: block;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 3px;
}

.support-svg-icon {
    fill: none;
    stroke: #ffb000;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.support-item span:last-child {
    color: #ffb000;
    font-size: 9px;
    line-height: 1.05;
    font-weight: 800;
}

.support-item:hover {
    filter: brightness(1.5);
    box-shadow:
        0 0 12px rgba(255, 183, 0, 0.8),
        0 0 25px rgba(255, 183, 0, 0.45);
    scale: 1.10;
}

.support-main:hover {
    filter: brightness(1.5);
    box-shadow:
        0 0 12px rgba(255, 183, 0, 0.8),
        0 0 25px rgba(255, 183, 0, 0.45);
    scale: 1.08;
}

@media (max-width: 900px) {
    .support-fab {
        right: 22px;
        bottom: 100px;
    }

    .support-main {
        width: 70px;
        height: 70px;
        font-size: 18px;
    }

    .support-item {
        width: 66px;
        height: 66px;
    }

    .support-fab.open .item-complaint {
        transform: translate(-62px, -78px) scale(1);
    }

    .support-fab.open .item-cskh {
        transform: translate(-92px, 0) scale(1);
    }

    .support-fab.open .item-hotline {
        transform: translate(-62px, 78px) scale(1);
    }

    .support-fab:not(.open) .item-complaint {
        transform: translate(-62px, -78px) scale(.55);
    }

    .support-fab:not(.open) .item-cskh {
        transform: translate(-92px, 0) scale(.55);
    }

    .support-fab:not(.open) .item-hotline {
        transform: translate(-62px, 78px) scale(.55);
    }
}

/* ===== ĐƯỜNG KẺ NGAY TRÊN FAQ ===== */
.faq-section h2 {
    border-top: 1px solid rgba(255, 176, 0, 0.45) !important;
    padding-top: 16px !important;
    margin-top: 0 !important;
}

/* =========================================================
   HUYIP PREMIUM WELCOME / LANGUAGE GATE
========================================================= */
body.welcome-open {
    overflow: hidden !important;
}

.huyip-welcome {
    position: fixed;
    inset: 0;
    z-index: 2147483646;
    display: none;
    place-items: center;
    overflow: hidden;
    padding: 28px;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 179, 0, .10), transparent 28%),
        linear-gradient(145deg, #080807 0%, #0d0c09 45%, #050505 100%);
    opacity: 0;
}

.huyip-welcome.show {
    display: grid;
    animation: welcomeScreenIn .65s cubic-bezier(.2,.8,.2,1) forwards;
}

.huyip-welcome.leaving {
    animation: welcomeScreenOut .75s cubic-bezier(.4,0,.2,1) forwards;
}

.welcome-grid {
    position: absolute;
    inset: -20%;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255,183,0,.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,183,0,.16) 1px, transparent 1px);
    background-size: 72px 72px;
    transform: perspective(700px) rotateX(68deg) translateY(26%);
    transform-origin: center bottom;
    mask-image: linear-gradient(to top, #000 0%, transparent 72%);
    pointer-events: none;
}

.welcome-noise {
    position: absolute;
    inset: 0;
    opacity: .035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.welcome-aurora {
    position: absolute;
    width: 52vw;
    height: 52vw;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .12;
    pointer-events: none;
    animation: welcomeAurora 8s ease-in-out infinite alternate;
}

.welcome-aurora-a {
    left: -22vw;
    top: -26vw;
    background: #ffb000;
}

.welcome-aurora-b {
    right: -25vw;
    bottom: -30vw;
    background: #ff7a00;
    animation-delay: -4s;
}

.welcome-shell {
    position: relative;
    width: min(720px, 100%);
    padding: 44px 46px 30px;
    border: 1px solid rgba(255, 190, 60, .25);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(30,27,20,.90), rgba(10,10,9,.94));
    box-shadow:
        0 35px 100px rgba(0,0,0,.65),
        inset 0 1px 0 rgba(255,255,255,.04),
        0 0 80px rgba(255,176,0,.055);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transform: translateY(18px) scale(.975);
    opacity: 0;
    animation: welcomeCardIn .8s .12s cubic-bezier(.16,1,.3,1) forwards;
}

.welcome-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(125deg, rgba(255,220,140,.55), transparent 22%, transparent 72%, rgba(255,164,0,.25));
    
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.welcome-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #8f8a7f;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .24em;
}

.welcome-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffb000;
    box-shadow: 0 0 12px rgba(255,176,0,.95);
    animation: welcomePulse 1.8s ease-in-out infinite;
}

.welcome-brand-wrap {
    position: relative;
    width: fit-content;
    margin: 18px auto 0;
}

.welcome-brand-glow {
    position: absolute;
    inset: 25% 8%;
    background: rgba(255,176,0,.25);
    filter: blur(30px);
    pointer-events: none;
}

.welcome-brand {
    position: relative;
    margin: 0;
    font-size: clamp(42px, 7vw, 72px);
    line-height: .98;
    font-weight: 950;
    letter-spacing: -.055em;
    background: linear-gradient(180deg, #fff7d9 0%, #ffd873 44%, #f2a000 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 20px rgba(255,176,0,.10));
}

.welcome-brand span {
    font-weight: 700;
    opacity: .88;
}

.welcome-kicker {
    margin: 18px 0 5px;
    text-align: center;
    color: #b28a34;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .22em;
}

.welcome-title {
    margin: 0;
    text-align: center;
    color: #f7f5ef;
    font-size: clamp(23px, 4vw, 32px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -.02em;
}

.welcome-subtitle {
    margin: 9px 0 26px;
    text-align: center;
    color: #77736b;
    font-size: 13px;
}

.welcome-languages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.welcome-lang {
    position: relative;
    min-height: 78px;
    display: grid;
    grid-template-columns: 44px 1fr 22px;
    align-items: center;
    gap: 13px;
    padding: 13px 16px;
    overflow: hidden;
    border: 1px solid rgba(255,190,50,.15);
    border-radius: 16px;
    background: rgba(8,8,7,.66);
    color: #fff;
    text-align: left;
    cursor: pointer;
    transition:
        transform .25s cubic-bezier(.2,.8,.2,1),
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.welcome-lang::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(110deg, transparent 15%, rgba(255,190,60,.10), transparent 78%);
    transform: translateX(-65%);
    transition: opacity .25s ease, transform .55s ease;
}

.welcome-lang:hover {
    transform: translateY(-3px);
    border-color: rgba(255,185,30,.48);
    background: rgba(34,27,12,.76);
    box-shadow: 0 12px 30px rgba(0,0,0,.28), 0 0 22px rgba(255,176,0,.07);
}

.welcome-lang:hover::before {
    opacity: 1;
    transform: translateX(55%);
}

.welcome-lang.selected {
    border-color: rgba(255,183,0,.88);
    background: linear-gradient(135deg, rgba(67,47,8,.72), rgba(24,20,11,.88));
    box-shadow:
        inset 0 0 0 1px rgba(255,208,95,.10),
        0 0 28px rgba(255,176,0,.10);
}

.welcome-lang-code {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,191,47,.25);
    border-radius: 12px;
    background: rgba(255,176,0,.07);
    color: #ffc13c;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
}

.welcome-lang-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.welcome-lang-copy strong {
    color: #f2efe7;
    font-size: 14px;
    font-weight: 800;
}

.welcome-lang-copy small {
    color: #716e67;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
}

.welcome-lang-check {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ffb000;
    color: #151006;
    font-size: 11px;
    font-weight: 950;
    opacity: 0;
    transform: scale(.55);
    transition: opacity .2s ease, transform .25s cubic-bezier(.2,.8,.2,1);
}

.welcome-lang.selected .welcome-lang-check {
    opacity: 1;
    transform: scale(1);
}

.welcome-continue {
    width: 100%;
    min-height: 56px;
    margin-top: 17px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid #d58b00;
    border-radius: 15px;
    background: linear-gradient(100deg, #ffd058 0%, #ffad0b 48%, #f18a00 100%);
    color: #171006;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .10em;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(255,151,0,.14);
    transition: transform .2s ease, filter .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.welcome-continue b {
    font-size: 20px;
    line-height: 1;
    transition: transform .2s ease;
}

.welcome-continue:not(:disabled):hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 16px 42px rgba(255,151,0,.22);
}

.welcome-continue:not(:disabled):hover b {
    transform: translateX(4px);
}

.welcome-continue:disabled {
    opacity: .38;
    cursor: not-allowed;
    filter: saturate(.45);
}

.welcome-footer {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #57544e;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.welcome-footer span:first-child {
    display: flex;
    align-items: center;
    gap: 7px;
}

.welcome-footer i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ffb000;
    box-shadow: 0 0 8px rgba(255,176,0,.7);
}

.welcome-language-switch {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 2147483000;
    height: 38px;
    min-width: 62px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(255,176,0,.30);
    border-radius: 999px;
    background: rgba(15,13,9,.82);
    color: #d8b158;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,.25);
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.welcome-language-switch:hover {
    transform: translateY(-2px);
    border-color: rgba(255,176,0,.72);
    background: rgba(35,27,10,.94);
}

.welcome-language-switch b {
    font-size: 10px;
    letter-spacing: .08em;
}

@keyframes welcomeScreenIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes welcomeScreenOut {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}

@keyframes welcomeCardIn {
    from { opacity: 0; transform: translateY(18px) scale(.975); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes welcomePulse {
    0%, 100% { opacity: .45; transform: scale(.85); }
    50% { opacity: 1; transform: scale(1.18); }
}

@keyframes welcomeAurora {
    from { transform: translate3d(-2%, -2%, 0) scale(.94); }
    to { transform: translate3d(4%, 4%, 0) scale(1.08); }
}

@media (max-width: 640px) {
    .huyip-welcome {
        padding: 14px;
    }

    .welcome-shell {
        padding: 30px 17px 22px;
        border-radius: 22px;
    }

    .welcome-languages {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .welcome-lang {
        min-height: 66px;
    }

    .welcome-brand {
        font-size: 46px;
    }

    .welcome-footer {
        justify-content: center;
    }

    .welcome-footer span:last-child {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .huyip-welcome *,
    .huyip-welcome *::before,
    .huyip-welcome *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
/* ===== 3D WELCOME EFFECT ===== */

.welcome-shell {
    transform-style: preserve-3d;
    perspective: 1200px;
    transition: transform 0.18s ease;
}

.welcome-brand-wrap {
    transform: translateZ(45px);
}

.welcome-title,
.welcome-subtitle,
.welcome-kicker {
    transform: translateZ(25px);
}

.welcome-languages {
    transform-style: preserve-3d;
}

.welcome-lang {
    transform-style: preserve-3d;
    transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateZ(0);
    transition:
        transform 0.18s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.welcome-lang:hover {
    transform:
        perspective(900px)
        rotateX(-5deg)
        rotateY(6deg)
        translateY(-4px)
        translateZ(18px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.45),
        0 0 28px rgba(255,176,0,.18);
}

.welcome-lang-code {
    transform: translateZ(22px);
}

.welcome-lang-copy {
    transform: translateZ(16px);
}

.welcome-lang-check {
    transform: translateZ(25px) scale(.55);
}

.welcome-lang.selected .welcome-lang-check {
    transform: translateZ(25px) scale(1);
}

.welcome-continue {
    transform: translateZ(28px);
}
@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

.shake-error {
    animation: errorShake 0.45s ease;
}
.trust-progress {
    width: 100%;
    height: 7px;
    margin-top: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,176,0,0.28);
    border-radius: 999px;
    overflow: hidden;
}

.trust-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #ffb000, #ffd66b);
    border-radius: inherit;
    box-shadow: 0 0 12px rgba(255,176,0,0.45);
    transition: width 0.45s ease;
}

.trust-progress-text {
    margin-top: 10px;
    font-size: 13px;
    color: #8f8f8f;
    text-align: center;
    letter-spacing: 0.01em;
}