@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700&display=swap');

:root {
    --text-color: rgb(28, 83, 121);
    --background-color: #059862;
    --background-nav: rgb(13, 143, 67);
    --bg-premium: rgb(245, 245, 245);
    --bg-basic: rgb(0, 180, 0);
    --ktmt-green: #0f8a3a;
    --ktmt-teal: #0aa6d8;
    --ktmt-ink: #0f2b46;
}

* {
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

html,
body {
    font-family: 'Mulish', sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
}

body a {
    color: var(--text-color);
}

a {
    text-decoration: none;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
    position: relative;
}

body.offcanvas-backdrop {
    overflow: hidden !important;
    position: relative;
}

.offcanvas {
    max-height: 100vh;
    overflow: hidden;
    max-width: 350px;
}

.offcanvas-body {
    max-height: calc(100vh - 60px);
    /* 60px là header offcanvas */
    overflow-y: auto;
}

.sticky_basic {
    position: sticky;
    top: 50px;
    /* Chiều cao nav (tuỳ chỉnh) */
    z-index: 999;
    background: white;
    /* padding: 10px 0; */
    border-bottom: 1px solid #eee;
}

.bg-purple {
    background-color: #6f42c1;
}

html {
    scroll-behavior: smooth;
}

.table-of-contents ul {
    list-style: none;
    padding-left: 0;
}

.toc-h4 {
    margin-left: 0;
    font-weight: bold;
}

.toc-h5 {
    margin-left: 20px;
}

.table-of-contents a {
    text-decoration: none;
    color: #007bff;
    line-height: 2;
}

.table-of-contents {
    border: 1px dashed;
    padding-left: 15px;
}

h4,
h5 {
    font-size: medium;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none !important;
}

input[type="password"]::-webkit-credentials-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0;
}

@media (max-width: 575.98px) {
    .hero-lead {
        font-size: medium;
    }

    .btn-config {
        width: 68%;
        background-color: #0095CA;
        border: none;
    }

    .btn-config:hover {
        background-color: var(--background-color)
    }
}

/* Gradient nút Đăng ký */
.btn-gradient {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 16px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0, 114, 255, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 114, 255, 0.4);
}

/* Nút Đăng nhập hiện đại */
.btn-success-modern {
    background: linear-gradient(135deg, #28a745, #218838);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 16px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-success-modern:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #34d058, #28a745);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 1px dashed #28a745;
    color: #28a745;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(40, 167, 69, 0.15);
}

.btn-cta:hover {
    color: #fff;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(32, 201, 151, 0.4);
    transform: translateY(-2px);
}

.btn-discover {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    border: dashed 1px;
    color: #212529;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-discover:hover {
    color: #fff;
    background: linear-gradient(135deg, #81aae9, #11c6ba);
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(13, 110, 253, 0.35);
    transform: translateY(-2px);
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    border: dashed 1px;
    color: #212529;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-view-all:hover {
    color: #fff;
    background: linear-gradient(135deg, #81aae9, #11c6ba);
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(33, 37, 41, 0.35);
    transform: translateY(-2px);
}

.btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    color: #212529;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-detail:hover {
    color: #fff;
    background: linear-gradient(135deg, #20c997, #0d6efd);
    box-shadow: 0 6px 14px rgba(32, 201, 151, 0.35);
    transform: translateY(-2px);
}

#totop {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    position: fixed;
    right: 15px;
    bottom: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    animation: UpDown 1.5s infinite ease-in-out;
    z-index: 1800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

#totop:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

#totop a {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
    display: flex;
    justify-content: center;
}

/* Hiệu ứng icon to dần khi hover */
#totop a i {
    transition: transform 0.3s ease;
    margin-top: 10px;
}

#totop:hover a i {
    transform: scale(1.2);
}

/* Keyframes cho animation nhịp */
@keyframes UpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.phone-icon {
    position: fixed;
    right: 20px;
    bottom: 200px;
    width: 50px;
    height: 50px;
    background: #e60000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    animation: ring 1.5s infinite;
    transition: all 0.3s ease;
}

.phone-icon:hover {
    background: #ff3333;
    transform: scale(1.1);
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(5deg);
    }

    60% {
        transform: rotate(-5deg);
    }

    70%,
    100% {
        transform: rotate(0);
    }
}

/* Sóng xung kích */
.phone-icon .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(230, 0, 0, 0.5);
    animation: pulseAnim 2s infinite;
    z-index: 1;
}

.phone-icon .pulse:nth-child(2) {
    animation-delay: 1s;
}

@keyframes pulseAnim {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.modern-card {
    border-radius: 1rem;
    /* rounded-4 */
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    background: #fff;
}

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

/* Ảnh tỉ lệ 16:9, zoom khi hover */
.modern-card .thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.modern-card .thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.0);
    transition: transform .5s ease;
    display: block;
}

.modern-card:hover .thumb-img {
    transform: scale(1.05);
}

/* Overlay & badge tiêu đề */
.modern-card .thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .35), rgba(0, 0, 0, 0));
    pointer-events: none;
}

.modern-card .thumb-badge {
    position: absolute;
    left: .75rem;
    bottom: .75rem;
    padding: .35rem .6rem;
    font-size: .75rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(2px);
    border-radius: .5rem;
    text-transform: uppercase;
}

/* Line clamp tiêu đề & mô tả */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-discover .arrow {
    transition: transform .2s ease;
}

.btn-discover:hover .arrow {
    transform: translateX(4px);
}

.btn-subject {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    border: dashed 1px;
    color: #fff;
    background: linear-gradient(135deg, #28a745, #20c997);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-subject:hover {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(13, 110, 253, 0.35);
    transform: translateY(-2px);
}

.btn-doc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: dashed 1px;
    color: #fff;
    background: linear-gradient(135deg, #81aae9, #11c6ba);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-doc:hover {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 14px rgba(13, 110, 253, 0.35);
    transform: translateY(-2px);
}

/* Knowledge */
.card-img-wrapper {
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Giữ tỉ lệ, cắt ảnh thừa thay vì kéo dãn */
    transition: transform 0.3s ease;
}

.card-img-wrapper img:hover {
    transform: scale(1.05);
    /* hiệu ứng zoom nhẹ khi hover */
}

/* Hero */
/* ===== Tone màu tối ưu tương phản trên nền xanh lam/xanh lục hiện tại ===== */
:root {
    --hero-white: #ffffff;
    --hero-ink: #0b3a2a;
    /* chữ trên nền sáng */
    --accent-mint: rgb(0, 148, 201);
    /* nhấn headline */
    --cta-grad-a: #34D399;
    /* green */
    --cta-grad-b: #22D3EE;
    /* cyan */
    --glass-bg: rgba(255, 255, 255, .14);
    --glass-br: rgba(255, 255, 255, .28);
    --chip-bg: rgba(255, 255, 255, .92);
    --chip-text: #0b3a2a;
}

/* Đệm tránh đè menu nếu navbar fixed */
.hero-ktmt {
    color: var(--hero-white);
    position: relative;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Tiêu đề */
.hero-title {
    font-weight: 700;
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .18);
    color: var(--text-color);
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: rgba(13, 110, 253, .08);
    border: 1px solid rgba(13, 110, 253, .18);
    color: rgba(33, 37, 41, .82);
    font-weight: 700;
    font-size: .92rem;
}

/* ===== Ping dot ===== */
.badge-new {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .55rem .95rem;
    border-radius: 999px;
    background: rgba(15, 138, 58, .08);
    border: 1px solid rgba(15, 138, 58, .18);
    color: rgba(15, 43, 70, .85);
    font-weight: 700;
    font-size: .95rem;
}

.ping-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    position: relative;
    flex: 0 0 auto;
    background: radial-gradient(circle at 35% 35%,
            rgba(255, 255, 255, .55) 0 22%,
            rgba(10, 166, 216, .95) 22% 55%,
            rgba(15, 138, 58, 1) 55% 100%);
    box-shadow:
        0 0 0 4px rgba(15, 138, 58, .12),
        0 0 18px rgba(10, 166, 216, .18);
}

.ping-dot::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    background: radial-gradient(circle,
            rgba(10, 166, 216, .18) 0%,
            rgba(15, 138, 58, .14) 45%,
            rgba(15, 138, 58, 0) 70%);
    animation: ktmtPing 1.35s cubic-bezier(.22, 1, .36, 1) infinite;
}

.ping-dot::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: rgba(255, 255, 255, .35);
}

@keyframes ktmtPing {
    0% {
        transform: scale(.35);
        opacity: .95;
    }

    65% {
        opacity: .25;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ping-dot::before {
        animation: none;
        opacity: .35;
        transform: scale(1);
    }
}


.text-accent {
    color: var(--accent-mint);
}

/* Badge trên nền xanh */
.pill-badge {
    display: inline-block;
    font-weight: 700;
    font-size: .95rem;
    padding: .45rem .9rem;
    color: #0b3a2a;
    background: rgba(255, 255, 255, .95);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
}

/* Dải glass cho tagline giúp dễ đọc trên nền gradient */
.glass-bar {
    color: #0b3a2a;
    max-width: 69ch;
    font-size: 1.05rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-br);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: .9rem 1rem;
}

/* Meta list */
.hero-meta {
    color: #0b3a2a;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: .9;
}

.hero-meta i {
    margin-right: 8px;
}

/* Illustration card */
.hero-illustration {
    position: relative;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    padding: 18px 18px 0;
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

.hero-illustration img {
    border-radius: 16px;
    display: block;
    width: 100%;
    height: auto;
    animation: floatY 7s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

/* Chips */
.chip {
    position: absolute;
    background: var(--chip-bg);
    color: var(--chip-text);
    padding: .42rem .7rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

.chip-1 {
    top: 8%;
    left: -6%;
    transform: rotate(-6deg);
}

.chip-2 {
    top: -6%;
    right: -4%;
    transform: rotate(6deg);
}

.chip-3 {
    bottom: -8%;
    left: 12%;
    transform: rotate(-2deg);
}

/* Blobs tạo chiều sâu (mềm, không lấn chữ) */
.hero-blob {
    position: absolute;
    filter: blur(70px);
    opacity: .28;
    pointer-events: none;
}

.hero-blob-l {
    width: 420px;
    height: 420px;
    background: #22c55e;
    top: -80px;
    left: -120px;
    border-radius: 50%;
}

.hero-blob-r {
    width: 460px;
    height: 460px;
    background: #60a5fa;
    bottom: -60px;
    right: -120px;
    border-radius: 50%;
}

/* Wave ngăn cách section */
.hero-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 120px;
    fill: #fff;
}

/* Giảm chuyển động cho người dùng sensitive */
@media (prefers-reduced-motion: reduce) {
    .hero-illustration img {
        animation: none;
    }
}

/* Ẩn chips trên màn nhỏ để gọn gàng */
@media (max-width: 991.98px) {
    .chip {
        display: none;
    }
}

.hero-meta {
    font-size: 1.1rem;
    color: #333;
}

.hero-meta li {
    transition: transform 0.3s ease;
}

.hero-meta li:hover {
    transform: scale(1.05);
    color: var(--bs-primary);
}

.count {
    font-weight: bold;
    color: #dc3545;
}

/* About */
.modern-checklist li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.modern-checklist li::before {
    content: "\f058";
    /* fa-circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #16A34A;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
}

.text-gradient {
    background: linear-gradient(90deg, #0EA5E9, #22C55E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Badge */
.bg-premium {
    background-color: var(--bg-premium);
}

.bg-basic {
    background-color: var(--bg-basic);
}

/* Đảm bảo toast luôn trên cùng mọi thứ */
.toast,
.toast-container {
    z-index: 2147483647 !important;
}

/* share-box */
.share-btn {
    border-radius: 999px;
    font-size: 0.8rem;
    padding: 0.3rem 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.share-btn i {
    font-size: 0.85rem;
}

/* Hover nhẹ nhàng */
.share-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

/* Chrismast-Popup */
.ktmt-xmas-modal {
    border-radius: 18px;
}

.ktmt-xmas-hero {
    color: #fff;
    background: radial-gradient(1200px 400px at 20% 0%, rgba(255, 255, 255, .20), transparent 60%),
        linear-gradient(135deg, #0b5d3b, #0a3d2d);
    border: 1px solid rgba(255, 255, 255, .12);
}

.ktmt-xmas-badge {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: 22px;
}

.ktmt-snow {
    position: absolute;
    top: -10px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .75);
    filter: blur(.2px);
    animation: ktmtSnow 4.5s linear infinite;
    opacity: .75;
}

.ktmt-snow.s1 {
    left: 18%;
    animation-duration: 5.2s;
    transform: scale(.9);
}

.ktmt-snow.s2 {
    left: 52%;
    animation-duration: 4.2s;
    transform: scale(1.1);
}

.ktmt-snow.s3 {
    left: 78%;
    animation-duration: 5.8s;
    transform: scale(.8);
}

.ktmt-snow.s4 {
    left: 90%;
    animation-duration: 4.8s;
    transform: scale(1.0);
}

.christmas-btn a {
    border-radius: 25px;
}

@media (max-width: 575.98px) {
    .christmas-btn {
        flex-wrap: nowrap !important;
    }

    .christmas-btn a {
        font-size: 12px;
    }
}

@keyframes ktmtSnow {
    0% {
        transform: translateY(0) translateX(0) scale(var(--s, 1));
        opacity: .0;
    }

    15% {
        opacity: .8;
    }

    100% {
        transform: translateY(260px) translateX(-18px);
        opacity: .0;
    }
}

/* NEwyear PoPUP */
.ktmt-ny26-modal {
    border-radius: 18px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F6FFFB 100%);
    ;
    color: #fff;
}

.ktmt-ny26-hero {
    background:
        radial-gradient(1200px 520px at 15% 10%, rgba(255, 210, 102, .18), transparent 60%),
        radial-gradient(900px 420px at 80% 0%, rgba(120, 162, 255, .18), transparent 55%),
        linear-gradient(135deg, #0b1220 0%, #111a33 45%, #0a0f1d 100%);
    border: 1px solid rgba(255, 255, 255, .10);
}

.ktmt-ny26-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .6rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 13px;
    color: rgba(255, 255, 255, .86);
}

.ktmt-ny26-badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 210, 102, .95);
    box-shadow: 0 0 0 6px rgba(255, 210, 102, .18);
    animation: ktmtPulse 1.8s ease-in-out infinite;
}

@keyframes ktmtPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(255, 210, 102, .16);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 210, 102, .10);
    }
}

.ktmt-ny26-year {
    line-height: 1.0;
}

.ktmt-ny26-year-top {
    display: block;
    font-size: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .75;
}

.ktmt-ny26-year-main {
    display: block;
    font-size: clamp(56px, 8vw, 84px);
    font-weight: 800;
    letter-spacing: .02em;
    background: linear-gradient(90deg, rgba(255, 210, 102, 1), rgba(255, 255, 255, .95), rgba(120, 162, 255, 1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.ktmt-ny26-year-sub {
    display: block;
    font-size: 13px;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .7;
}

.ktmt-ny26-title {
    font-weight: 700;
    font-size: 18px;
}

.ktmt-ny26-desc {
    margin-top: .5rem;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.ktmt-ny26-muted {
    color: rgba(255, 210, 102, 1) !important;
}

.modal-title {
    color: var(--ktmt-ink);
    font-weight: 800;
}

.btn-ny26-gold {
    background: rgba(255, 210, 102, .16);
    border: 1px solid rgba(255, 210, 102, .35);
    color: rgba(255, 255, 255, .92);
}

.btn-ny26-gold:hover {
    background: rgba(255, 210, 102, .22);
    border-color: rgba(255, 210, 102, .50);
    color: #fff;
}

/* Confetti canvas */
.ktmt-ny26-confetti {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: .85;
}

/* Decorative orbs */
.ktmt-ny26-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(1px);
    opacity: .75;
    z-index: 0;
}

.ktmt-ny26-orb.orb-1 {
    width: 180px;
    height: 180px;
    left: -40px;
    top: -50px;
    background: rgba(255, 210, 102, .22);
}

.ktmt-ny26-orb.orb-2 {
    width: 220px;
    height: 220px;
    right: -70px;
    top: -80px;
    background: rgba(120, 162, 255, .20);
}

.ktmt-ny26-orb.orb-3 {
    width: 160px;
    height: 160px;
    right: 18%;
    bottom: -70px;
    background: rgba(255, 255, 255, .10);
}

/* Diagonal light lines */
.ktmt-ny26-line {
    position: absolute;
    height: 2px;
    width: 320px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
    transform: rotate(-18deg);
    opacity: .55;
    z-index: 0;
}

.ktmt-ny26-line.l1 {
    left: -40px;
    bottom: 60px;
}

.ktmt-ny26-line.l2 {
    right: -60px;
    top: 70px;
    width: 380px;
    opacity: .45;
}

@media (max-width: 567px) {
    .btn-ny {
        width: 100% !important;
    }
}
