@font-face {
    font-family: 'UrbanJungle';
    src: url('../fonts/UrbanJungle.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg: #050505;
    --bg-soft: #0b0b0b;
    --text: #f1f1f1;
    --text-soft: rgba(255, 255, 255, 0.78);
    --text-muted: rgba(255, 255, 255, 0.56);
    --orange: #ff6b1d;
    --orange-dark: #b63a0d;
    --red: #d81f17;
    --green: #47db63;
    --border: rgba(255, 110, 40, 0.20);
    --border-soft: rgba(255, 255, 255, 0.08);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, #030303 0%, #080808 50%, #050505 100%);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
.tlh-brand-main,
.tlh-brand-sub,
.tlh-hero-title,
.tlh-section-title-exact,
.tlh-card-exact h3,
.tlh-home-lore-box h2,
.tlh-footer-brand,
.tlh-footer-sub,
.tlh-footer-title {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.02em;
}

/* NAVBAR */
.tlh-navbar {
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.97), rgba(7, 7, 7, 0.96));
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
}

.tlh-brand-wrap {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #fff;
}

.tlh-navbar-logo {
    width: 78px;
    height: 78px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform .25s ease, filter .25s ease;
}

.tlh-brand-wrap:hover .tlh-navbar-logo {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(255, 90, 0, 0.4));
}

.tlh-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.tlh-brand-main {
    font-family: 'UrbanJungle', 'Oswald', sans-serif;
    font-size: 1.9rem;
    text-transform: uppercase;
    color: #fff;
}

.tlh-brand-main span {
    color: var(--red);
}

.tlh-brand-sub {
    margin-top: 0.25rem;
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    padding: 0.5rem 0.78rem;
    position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff;
}

.navbar .nav-link.active::after,
.navbar .nav-link:hover::after {
    content: '';
    position: absolute;
    left: 0.78rem;
    right: 0.78rem;
    bottom: -0.1rem;
    height: 2px;
    background: var(--orange);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.16);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.tlh-navbar-actions {
    align-items: center;
}

.tlh-navbar-actions .btn {
    min-width: 155px;
}

/* BUTTONS */
.tlh-btn-primary,
.tlh-btn-outline {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 6px;
    padding: 0.9rem 1.3rem;
    transition: all 0.22s ease;
}

.tlh-btn-primary {
    background: linear-gradient(180deg, #ef6b1f, #b93d10);
    border: 1px solid rgba(255, 140, 60, 0.34);
    color: #fff;
    box-shadow: 0 10px 24px rgba(185, 61, 16, 0.26);
}

.tlh-btn-primary:hover {
    background: linear-gradient(180deg, #ff7c2e, #cb4b14);
    color: #fff;
    transform: translateY(-1px);
}

.tlh-btn-outline {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

.tlh-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff;
}

.tlh-btn-primary.is-loading {
    pointer-events: none;
    opacity: 0.95;
}

.tlh-btn-spinner {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 8px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-top-color: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    animation: tlhSpin 0.7s linear infinite;
    vertical-align: -2px;
}

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

/* HERO EXACT */
.tlh-hero-exact {
    position: relative;
    min-height: 640px;
    padding: 74px 0 54px;
    padding-top: calc(var(--tlh-navbar-offset) + 24px);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid rgba(255, 90, 0, 0.24);
    overflow: hidden;
}

.tlh-hero-exact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.52) 50%, rgba(0, 0, 0, 0.82) 100%),
        radial-gradient(circle at 20% 45%, rgba(0, 0, 0, 0.65), transparent 50%),
        url('../img/backgrounds/hero-survival.jpg') center center / cover no-repeat;
    z-index: -2;
}

.tlh-hero-exact::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 24%, rgba(255, 110, 40, 0.16), transparent 20%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.22));
    z-index: -1;
}

.tlh-hero-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.2fr;
    gap: 1.6rem;
    align-items: center;
}

.tlh-hero-left {
    max-width: 760px;
}

.tlh-hero-domain {
    font-family: 'Oswald', sans-serif;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.tlh-hero-title {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: 0.36rem;
    white-space: nowrap;

    font-family: 'UrbanJungle', 'Oswald', sans-serif;

    font-size: clamp(5.1rem, 7vw, 8.4rem);
    line-height: 0.9;
    margin: 0 0 0.95rem;

    text-transform: uppercase;
    letter-spacing: 2px;

    text-shadow:
        0 8px 20px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(0, 0, 0, 0.3);
}

.tlh-hero-title .white {
    color: #f0f0f0;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.58);
}

.tlh-hero-title .red {
    color: #ff2a1f;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.58);
}

.tlh-hero-subtitle {
    font-family: 'Oswald', sans-serif;
    color: rgba(255, 255, 255, 0.70);
    font-size: 1.08rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.tlh-hero-text {
    max-width: 620px;
    color: var(--text);
    font-size: 1.18rem;
    line-height: 1.8;
    margin-bottom: 1.6rem;
}

.tlh-hero-text strong {
    color: var(--orange);
}

.tlh-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.tlh-btn-hero {
    min-width: 248px;
    text-align: center;
}

/* RIGHT PANEL */
.tlh-hero-right {
    display: flex;
    justify-content: flex-end;
}

.tlh-panel-exact {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(255, 100, 40, 0.30);
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow:
        0 0 0 1px rgba(255, 80, 0, 0.10),
        0 16px 40px rgba(0, 0, 0, 0.72);
}

.tlh-panel-exact.tlh-panel-aaa {
    width: 100%;
    max-width: 600px;
}

.tlh-panel-exact-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tlh-panel-exact-head .online {
    color: var(--green);
}

.tlh-panel-exact-status.is-online {
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.25);
}

.tlh-panel-exact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.tlh-panel-exact-row span {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.96rem;
}

.tlh-panel-exact-row strong {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 1.14rem;
    transition: color 0.3s ease;
}

.tlh-panel-exact-status {
    margin-top: 1rem;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #5eff88;
    background: linear-gradient(180deg, rgba(20, 58, 32, 0.92), rgba(7, 29, 16, 0.95));
    border: 1px solid rgba(89, 255, 134, 0.16);
    border-radius: 6px;
    padding: 0.92rem;
}

/* MID SECTION */
.tlh-home-mid {
    padding: 48px 0 54px;
    border-top: 1px solid rgba(255, 80, 0, 0.24);
    border-bottom: 1px solid rgba(255, 80, 0, 0.24);
}

.tlh-home-mid-grid {
    display: grid;
    grid-template-columns: 2.15fr 0.9fr;
    gap: 1.3rem;
    align-items: stretch;
}

.tlh-section-title-exact {
    font-size: 2.55rem;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    color: #dfdfdf;
}

.tlh-feature-cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.tlh-card-exact {
    background:
        linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(8, 8, 8, 0.98));
    border: 1px solid rgba(255, 80, 0, 0.25);
    border-radius: 10px;
    padding: 1rem;
    min-height: 228px;
    box-shadow:
        inset 0 0 20px rgba(255, 80, 0, 0.05),
        0 10px 25px rgba(0, 0, 0, 0.4);
    transition: 0.25s;
}

.tlh-card-exact:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 120, 60, 0.6);
}

.tlh-card-icon {
    font-size: 2rem;
    margin-bottom: 0.7rem;
}

.tlh-card-exact h3 {
    font-size: 1.35rem;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    color: #f0f0f0;
}

.tlh-card-exact p {
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 0;
}

.tlh-home-lore {
    display: flex;
}

.tlh-home-lore-box {
    width: 100%;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.82), rgba(5, 5, 5, 0.90)),
        url('../img/backgrounds/hero-survival.jpg') center center / cover no-repeat;
    border: 1px solid rgba(255, 80, 0, 0.25);
    border-radius: 10px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tlh-lore-kicker {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: var(--orange);
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.tlh-home-lore-box h2 {
    font-size: 2.45rem;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: #f0f0f0;
}

.tlh-home-lore-box p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* FOOTER */
.tlh-footer {
    padding: 52px 0 40px;
    border-top: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(6, 6, 6, 0.98));
}

.tlh-footer-brand-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.tlh-footer-logo {
    width: 68px;
    height: 68px;
    object-fit: contain;
    display: block;
    border-radius: 50%;
}

.tlh-footer-brand {
    font-family: 'UrbanJungle', 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tlh-footer-brand span {
    color: var(--red);
}

.tlh-footer-sub {
    margin-top: 0.2rem;
    color: var(--red);
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

.tlh-footer-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: #fff;
}

.tlh-footer-text {
    color: var(--text-soft);
    line-height: 1.8;
}

.tlh-footer-links a {
    color: var(--text-soft);
    line-height: 2;
}

.tlh-footer-links a:hover {
    color: #fff;
}

.tlh-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* INTERNALS */
.tlh-page-main {
    min-height: 60vh;
}

.tlh-page-hero {
    position: relative;
    padding: 92px 0 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.tlh-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.74)),
        url('../img/backgrounds/hero-survival.jpg') center/cover no-repeat;
    opacity: 0.34;
    z-index: -1;
}

.tlh-page-title {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    line-height: 1;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.tlh-page-text {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-soft);
    line-height: 1.8;
}

.tlh-page-card {
    background:
        linear-gradient(180deg, rgba(15, 15, 17, 0.92), rgba(8, 8, 10, 0.95));
    border: 1px solid rgba(255, 115, 35, 0.14);
    border-radius: 8px;
    padding: 1.4rem;
}

.tlh-page-card h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
    color: #fff;
}

.tlh-page-card p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
    .tlh-hero-title {
        white-space: normal;
        flex-wrap: wrap;
        font-size: clamp(3.8rem, 7vw, 6.5rem);
        gap: 0.2rem 0.45rem;
    }

    .tlh-hero-grid,
    .tlh-home-mid-grid {
        grid-template-columns: 1fr;
    }

    .tlh-feature-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .tlh-navbar .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        background: rgba(8, 8, 10, 0.94);
    }

    .tlh-navbar-actions .btn {
        width: 100%;
        min-width: auto;
    }

    .tlh-brand-main {
        font-size: 1.35rem;
    }

    .tlh-brand-sub {
        font-size: 0.74rem;
    }

    .tlh-navbar-logo {
        width: 56px;
        height: 56px;
    }

    .tlh-panel-exact {
        max-width: 100%;
    }

    .tlh-feature-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tlh-hero-exact {
        min-height: auto;
        padding: 60px 0 42px;
    }
}

@media (max-width: 767.98px) {
    .tlh-hero-title {
        font-size: 3rem;
    }

    .tlh-hero-actions {
        flex-direction: column;
    }

    .tlh-btn-hero,
    .tlh-btn-primary,
    .tlh-btn-outline {
        width: 100%;
        text-align: center;
        min-width: auto;
    }

    .tlh-feature-cards {
        grid-template-columns: 1fr;
    }

    .tlh-panel-exact-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .tlh-brand-sub,
    .tlh-footer-sub {
        display: none;
    }
}

.tlh-status-online {
    color: var(--green);
}

.tlh-btn-sm {
    padding: 0.72rem 1rem;
}

.tlh-page-section {
    padding: 56px 0;
}

.tlh-section-heading {
    max-width: 860px;
    margin: 0 auto 2rem;
}

.tlh-section-kicker {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    color: var(--orange);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    font-size: 0.85rem;
}

.tlh-section-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 0.8rem;
}

.tlh-section-copy {
    color: var(--text-soft);
    line-height: 1.85;
}

.tlh-page-card,
.tlh-mini-panel {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

.tlh-page-card {
    position: relative;
    overflow: hidden;
}

.tlh-page-card::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 115, 35, 0.42), rgba(255, 115, 35, 0));
}

.tlh-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 0.3rem 0.6rem;
    margin-bottom: 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 115, 35, 0.24);
    background: rgba(255, 115, 35, 0.08);
    color: var(--orange);
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tlh-elevated-card,
.tlh-step-card,
.tlh-stat-card,
.tlh-pricing-card,
.tlh-cta-card {
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tlh-elevated-card:hover,
.tlh-step-card:hover,
.tlh-stat-card:hover,
.tlh-pricing-card:hover,
.tlh-cta-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 115, 35, 0.32);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.tlh-stat-card h3,
.tlh-pricing-card h3 {
    font-size: 1.7rem;
}

.tlh-mini-panel {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(22, 22, 24, 0.92), rgba(10, 10, 12, 0.95));
}

.tlh-mini-panel strong {
    display: block;
    margin-bottom: 0.45rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
}

.tlh-mini-panel span {
    display: block;
    color: var(--text-soft);
    line-height: 1.7;
}

.tlh-cta-card {
    background:
        linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(8, 8, 10, 0.98)),
        url('../img/backgrounds/hero-survival.jpg') center/cover no-repeat;
}

@media (max-width: 767.98px) {
    .tlh-page-section {
        padding: 42px 0;
    }
}

/* HOME AAA UPGRADE */
.tlh-navbar {
    backdrop-filter: blur(8px);
    background:
        linear-gradient(180deg, rgba(15, 10, 10, 0.95), rgba(8, 6, 6, 0.94));
    box-shadow:
        0 10px 34px rgba(0, 0, 0, 0.42),
        inset 0 -1px 0 rgba(255, 120, 40, 0.08);
}

.tlh-hero-aaa {
    min-height: 720px;
    padding: 86px 0 62px;
    padding-top: calc(var(--tlh-navbar-offset) + 32px);
}

.tlh-hero-aaa::before {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.84) 100%),
        radial-gradient(circle at 18% 38%, rgba(255, 110, 40, 0.10), transparent 28%),
        radial-gradient(circle at 75% 40%, rgba(255, 82, 20, 0.18), transparent 24%),
        url('../img/backgrounds/hero-survival.jpg') center center / cover no-repeat;
    filter: saturate(1.04) contrast(1.02);
}

.tlh-hero-aaa::after {
    background:
        linear-gradient(180deg, rgba(255, 100, 40, 0.05), rgba(0, 0, 0, 0.18)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
}

.tlh-hero-topline {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
}

.tlh-hero-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(94, 255, 136, 0.18);
    background: rgba(17, 43, 26, 0.68);
    color: #8cffac;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.tlh-hero-title-aaa {
    text-shadow:
        0 8px 18px rgba(0, 0, 0, 0.62),
        0 0 28px rgba(0, 0, 0, 0.16);
}

.tlh-hero-title-aaa .white,
.tlh-hero-title-aaa .red {
    position: relative;
}

.tlh-hero-title-aaa .white::after,
.tlh-hero-title-aaa .red::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.00) 35%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.tlh-hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 620px;
    margin-top: 1.35rem;
}

.tlh-hero-mini-stat {
    padding: 0.95rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 120, 40, 0.16);
    background: linear-gradient(180deg, rgba(20, 16, 16, 0.74), rgba(10, 9, 9, 0.80));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tlh-hero-mini-stat span {
    display: block;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.56);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.35rem;
    font-family: 'Oswald', sans-serif;
}

.tlh-hero-mini-stat strong {
    display: block;
    font-size: 1rem;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.tlh-panel-aaa {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(15, 12, 12, 0.96), rgba(5, 5, 5, 0.98));
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.68),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(255, 90, 10, 0.08);
}

.tlh-panel-aaa::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.tlh-panel-exact-row span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tlh-panel-exact-row span i {
    font-style: normal;
    color: var(--orange);
    width: 0.95rem;
    text-align: center;
}

.tlh-home-mid-aaa {
    position: relative;
    background:
        linear-gradient(180deg, rgba(12, 9, 9, 0.94), rgba(5, 5, 5, 0.98));
}

.tlh-home-mid-aaa::before,
.tlh-home-mid-aaa::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 90, 10, 0), rgba(255, 90, 10, 0.52), rgba(255, 90, 10, 0));
}

.tlh-home-mid-aaa::before {
    top: 0;
}

.tlh-home-mid-aaa::after {
    bottom: 0;
}

.tlh-card-exact-aaa {
    border-radius: 14px;
    min-height: 248px;
    background:
        linear-gradient(180deg, rgba(21, 17, 17, 0.98), rgba(8, 8, 8, 0.98));
    box-shadow:
        inset 0 0 24px rgba(255, 80, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 16px 34px rgba(0, 0, 0, 0.34);
}

.tlh-card-exact-aaa .tlh-card-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 6px 12px rgba(255, 100, 40, 0.18));
}

.tlh-home-lore-box-aaa {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(8, 7, 7, 0.55), rgba(4, 4, 4, 0.80)),
        url('../img/backgrounds/hero-survival.jpg') center center / cover no-repeat;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 18px 44px rgba(0, 0, 0, 0.42);
}

.tlh-home-lore-box-aaa::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(255, 88, 25, 0.05));
    pointer-events: none;
}

.tlh-home-lore-box-aaa>* {
    position: relative;
    z-index: 1;
}

.tlh-home-section-dark {
    background: linear-gradient(180deg, #0b0909 0%, #050505 100%);
}

.tlh-card-panel-aaa {
    border-radius: 14px;
    background:
        linear-gradient(180deg, rgba(16, 16, 18, 0.96), rgba(7, 7, 8, 0.98));
}

.tlh-status-strip-section {
    padding-top: 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 1) 0%, rgba(8, 7, 7, 1) 100%);
}

.tlh-status-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 120, 40, 0.14);
    background:
        linear-gradient(180deg, rgba(19, 16, 16, 0.96), rgba(8, 8, 8, 0.98));
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tlh-status-strip-item,
.tlh-status-strip-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tlh-status-strip-item span {
    color: rgba(255, 255, 255, 0.56);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    margin-bottom: 0.35rem;
    font-family: 'Oswald', sans-serif;
}

.tlh-status-strip-item strong {
    color: #fff;
    font-size: 1.02rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.tlh-status-strip-action {
    align-items: flex-end;
}

@media (max-width: 1199.98px) {
    .tlh-hero-mini-stats {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .tlh-status-strip {
        grid-template-columns: 1fr 1fr;
    }

    .tlh-status-strip-action {
        grid-column: 1 / -1;
        align-items: stretch;
    }
}

@media (max-width: 991.98px) {
    .tlh-hero-aaa {
        min-height: auto;
        padding: 64px 0 44px;
    }

    .tlh-panel-aaa {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .tlh-hero-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .tlh-status-strip {
        grid-template-columns: 1fr;
    }
}

/* SITE AAA EXPANSION */
.tlh-page-text-left {
    margin-left: 0;
    margin-right: 0;
}

.tlh-navbar-aaa {
    position: relative;
}

.tlh-navbar-shell {
    position: relative;
}

.tlh-navbar-shell::before {
    content: '';
    position: absolute;
    inset: auto 0 -0.7rem 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 90, 10, 0), rgba(255, 90, 10, 0.22), rgba(255, 90, 10, 0));
    pointer-events: none;
}

.tlh-navbar-logo-shell,
.tlh-footer-logo-shell {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 140, 80, 0.18), rgba(10, 10, 10, 0.72));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 24px rgba(0, 0, 0, 0.34);
}

.tlh-navbar-logo-shell {
    width: 84px;
    height: 84px;
    border: 1px solid rgba(255, 115, 35, 0.18);
}

.tlh-nav-pills .nav-link {
    border: 1px solid transparent;
    border-radius: 999px;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.tlh-nav-pills .nav-link:hover,
.tlh-nav-pills .nav-link.active {
    background: rgba(255, 115, 35, 0.08);
    border-color: rgba(255, 115, 35, 0.16);
    transform: translateY(-1px);
}

.tlh-nav-pills .nav-link.active::after,
.tlh-nav-pills .nav-link:hover::after {
    left: 1rem;
    right: 1rem;
    bottom: 0.18rem;
}

.tlh-btn-nav-primary,
.tlh-btn-nav-secondary {
    border-radius: 999px;
}

.tlh-page-hero-aaa {
    padding: 102px 0 58px;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.92), rgba(5, 5, 5, 0.98));
}

.tlh-page-hero-aaa::before {
    opacity: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.54) 48%, rgba(0, 0, 0, 0.84) 100%),
        radial-gradient(circle at 18% 34%, rgba(255, 110, 40, 0.10), transparent 26%),
        radial-gradient(circle at 78% 28%, rgba(255, 82, 20, 0.14), transparent 22%),
        url('../img/backgrounds/hero-survival.jpg') center/cover no-repeat;
}

.tlh-server-hero,
.tlh-vip-hero {
    overflow: hidden;
}

.tlh-server-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.tlh-server-mini-stats {
    margin-top: 1.25rem;
    max-width: 700px;
}

.tlh-server-connect-panel,
.tlh-vip-panel {
    max-width: 100%;
}

.tlh-server-flow,
.tlh-vip-upgrade-flow {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.tlh-server-flow-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(24, 22, 22, 0.92), rgba(9, 9, 9, 0.98));
}

.tlh-server-flow-item strong {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    color: var(--orange);
    background: rgba(255, 115, 35, 0.10);
    border: 1px solid rgba(255, 115, 35, 0.24);
}

.tlh-server-flow-item span {
    color: var(--text-soft);
    line-height: 1.8;
}

.tlh-vip-hero-point {
    display: grid;
    gap: 0.28rem;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 115, 35, 0.14);
    background: linear-gradient(180deg, rgba(18, 15, 15, 0.82), rgba(8, 8, 8, 0.90));
}

.tlh-vip-hero-points {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.45rem;
    max-width: 700px;
}

.tlh-vip-hero-point strong {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.06em;
}

.tlh-vip-hero-point span,
.tlh-pricing-copy {
    color: var(--text-soft);
    line-height: 1.8;
}

.tlh-pricing-card-aaa {
    border-radius: 16px;
    padding: 1.55rem;
    background: linear-gradient(180deg, rgba(18, 16, 16, 0.98), rgba(7, 7, 7, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 40px rgba(0, 0, 0, 0.30);
}

.tlh-pricing-card-featured {
    position: relative;
    border-color: rgba(255, 115, 35, 0.30);
    transform: translateY(-8px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tlh-pricing-card-featured::after {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    background: rgba(255, 115, 35, 0.12);
    border: 1px solid rgba(255, 115, 35, 0.22);
    color: var(--orange);
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.tlh-vip-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: grid;
    gap: 0.7rem;
}

.tlh-vip-list li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.tlh-vip-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange);
    font-size: 1.1rem;
}

.tlh-footer-aaa {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.98) 0%, rgba(4, 4, 4, 1) 100%);
}

.tlh-footer-aaa::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 110, 40, 0.10), transparent 24%),
        radial-gradient(circle at 82% 10%, rgba(255, 70, 20, 0.09), transparent 20%);
    pointer-events: none;
}

.tlh-footer-aaa>.container {
    position: relative;
    z-index: 1;
}

.tlh-footer-topbar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 1rem;
    padding: 1rem 1.1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 115, 35, 0.14);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(20, 16, 16, 0.94), rgba(8, 8, 8, 0.98));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tlh-footer-topbar-item,
.tlh-footer-topbar-action {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tlh-footer-topbar-item span {
    color: rgba(255, 255, 255, 0.56);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    margin-bottom: 0.3rem;
    font-family: 'Oswald', sans-serif;
}

.tlh-footer-topbar-item strong {
    color: #fff;
    font-size: 1rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.tlh-footer-topbar-action {
    align-items: flex-end;
}

.tlh-footer-logo-shell {
    width: 74px;
    height: 74px;
    border: 1px solid rgba(255, 115, 35, 0.16);
}

.tlh-footer-server-card {
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.92), rgba(8, 8, 8, 0.98));
}

@media (max-width: 1199.98px) {
    .tlh-footer-topbar {
        grid-template-columns: 1fr 1fr;
    }

    .tlh-footer-topbar-action {
        grid-column: 1 / -1;
        align-items: stretch;
    }
}

@media (max-width: 991.98px) {
    .tlh-navbar-logo-shell {
        width: 62px;
        height: 62px;
    }

    .tlh-page-hero-aaa {
        padding: 82px 0 44px;
    }

    .tlh-pricing-card-featured {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .tlh-server-hero-actions {
        flex-direction: column;
    }

    .tlh-footer-topbar {
        grid-template-columns: 1fr;
    }

    .tlh-page-text-left {
        text-align: left;
    }
}


/* NAVBAR HOTFIX */
:root {
    --tlh-navbar-offset: 106px;
}

body {
    padding-top: var(--tlh-navbar-offset);
}

.tlh-navbar {
    min-height: var(--tlh-navbar-offset);
}

.tlh-navbar-shell {
    max-width: 1480px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.tlh-brand-wrap {
    flex: 0 0 auto;
    min-width: 0;
}

.tlh-brand-main {
    font-size: 1.8rem;
    line-height: 0.95;
    white-space: nowrap;
}

.tlh-brand-sub {
    white-space: nowrap;
}

.tlh-navbar-collapse {
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.tlh-nav-pills {
    flex-wrap: nowrap;
    align-items: center;
}

.tlh-nav-pills .nav-link {
    white-space: nowrap;
    font-size: 0.92rem;
    padding: 0.52rem 0.72rem;
}

.tlh-navbar-actions {
    flex: 0 0 auto;
    white-space: nowrap;
}

.tlh-navbar-actions .btn {
    min-width: 140px;
    padding-inline: 1.1rem;
}

@media (max-width: 1530px) {
    .tlh-navbar-shell {
        gap: 0.9rem;
    }

    .tlh-brand-main {
        font-size: 1.6rem;
    }

    .tlh-brand-sub {
        font-size: 0.74rem;
        letter-spacing: 0.09em;
    }

    .tlh-nav-pills .nav-link {
        font-size: 0.86rem;
        padding: 0.5rem 0.56rem;
    }

    .tlh-navbar-actions .btn {
        min-width: 128px;
        padding-inline: 0.95rem;
    }
}

@media (max-width: 1399.98px) {
    :root {
        --tlh-navbar-offset: 98px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --tlh-navbar-offset: 90px;
    }

    .tlh-navbar-shell {
        gap: 0.75rem;
    }

    .tlh-brand-sub {
        white-space: normal;
    }
}


/* NAVBAR FIXED FINAL */
html {
    scroll-padding-top: var(--tlh-navbar-offset);
}

body {
    padding-top: 0 !important;
}

.tlh-navbar,
.navbar.tlh-navbar,
.navbar.fixed-top.tlh-navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1080;
}

.tlh-navbar .container,
.tlh-navbar .container-fluid,
.tlh-navbar-shell {
    position: relative;
}

@media (min-width: 992px) {
    .tlh-navbar-collapse {
        flex-basis: auto;
    }
}

/* ===== NAVBAR BUTTONS WITH ICON ===== */

.tlh-btn-primary,
.tlh-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* Ícones */
.tlh-btn-primary i,
.tlh-btn-outline i {
    font-size: 14px;
    display: flex;
    align-items: center;
}

/* Ajuste fino no navbar */
.navbar .tlh-btn-primary,
.navbar .tlh-btn-outline {
    padding: 10px 18px;
    font-size: 14px;
}


/* ===== HERO LEGIBILITY FIX ===== */
.tlh-hero-exact,
.tlh-hero-aaa {
    position: relative;
    overflow: hidden;
}

.tlh-hero-exact::before,
.tlh-hero-aaa::before {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.82) 32%, rgba(0, 0, 0, 0.58) 58%, rgba(0, 0, 0, 0.78) 100%),
        radial-gradient(circle at 22% 42%, rgba(0, 0, 0, 0.56), transparent 38%),
        radial-gradient(circle at 76% 34%, rgba(255, 88, 25, 0.10), transparent 24%),
        url('../img/backgrounds/hero-survival.jpg') center center / cover no-repeat !important;
    filter: saturate(1.02) contrast(1.04);
}

.tlh-hero-left {
    position: relative;
    max-width: 980px;
}

.tlh-hero-left::before {
    content: '';
    position: absolute;
    inset: -1.1rem -1.2rem -1.35rem -1.1rem;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.28), rgba(8, 8, 8, 0.18));
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
    z-index: 0;
    pointer-events: none;
}

.tlh-hero-left>* {
    position: relative;
    z-index: 1;
}

.tlh-hero-topline,
.tlh-hero-domain,
.tlh-hero-chip,
.tlh-hero-subtitle,
.tlh-hero-text,
.tlh-hero-mini-stat,
.tlh-hero-actions {
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.78);
}

.tlh-hero-title,
.tlh-hero-title-aaa,
.tlh-hero-title .white,
.tlh-hero-title .red {
    text-shadow:
        0 8px 24px rgba(0, 0, 0, 0.92),
        0 3px 10px rgba(0, 0, 0, 0.55) !important;
}

.tlh-hero-subtitle {
    color: rgba(255, 255, 255, 0.84);
}

.tlh-hero-text {
    color: rgba(255, 255, 255, 0.94);
}

.tlh-hero-text strong {
    color: #ff7a2f;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.82);
}

.tlh-hero-mini-stat {
    background: linear-gradient(180deg, rgba(15, 12, 12, 0.84), rgba(9, 8, 8, 0.88));
    border-color: rgba(255, 120, 40, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 10px 24px rgba(0, 0, 0, 0.22);
}

@media (max-width: 991.98px) {
    .tlh-hero-left::before {
        inset: -0.8rem -0.8rem -1rem -0.8rem;
    }
}

@media (max-width: 767.98px) {
    .tlh-hero-left::before {
        inset: -0.6rem -0.4rem -0.8rem -0.4rem;
        border-radius: 14px;
    }

    .tlh-hero-subtitle {
        font-size: 0.96rem;
    }

    .tlh-hero-text {
        font-size: 1.05rem;
        line-height: 1.72;
    }
}

.tlh-brand-main,
.tlh-footer-brand {
    line-height: 1;
}

.tlh-brand-main {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.tlh-footer-brand {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* REMOVE GRID DO TÍTULO */
.tlh-hero-left::before {
    display: none !important;
}

/* REMOVE QUADRADOS DO TÍTULO */
.tlh-hero-title-aaa .white::after,
.tlh-hero-title-aaa .red::after {
    display: none !important;
}

/* ===== VIP PLANS LAYOUT FIX ===== */
.tlh-vip-plans-row {
    align-items: stretch;
}

.tlh-vip-plans-row>[class*="col-"] {
    display: flex;
}

.tlh-vip-plans-row .tlh-pricing-card-aaa {
    width: 100%;
}

@media (min-width: 1200px) {
    .tlh-vip-plans-row {
        --bs-gutter-x: 1.1rem;
    }

    .tlh-vip-plans-row>.col-xl-3 {
        width: 25%;
    }

    .tlh-vip-plans-row .tlh-pricing-card-featured {
        transform: translateY(-10px) scale(1.015);
    }
}

.tlh-pricing-card-aaa {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid rgba(255, 115, 35, 0.14);
    overflow: hidden;
}

.tlh-pricing-card-aaa::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 115, 35, 0.55), rgba(255, 115, 35, 0));
}

.tlh-pricing-card-aaa .tlh-card-badge {
    margin-bottom: 1rem;
}

.tlh-pricing-card-aaa h3 {
    margin-bottom: 0.7rem;
}

.tlh-pricing-card-aaa .tlh-pricing-copy {
    min-height: 76px;
}

.tlh-pricing-card-aaa .tlh-vip-list {
    margin-top: 1rem;
    margin-bottom: 0;
}

.tlh-pricing-card-aaa .tlh-vip-list li:last-child {
    margin-bottom: 0;
}

.tlh-pricing-card-featured {
    border-color: rgba(255, 115, 35, 0.34);
    background:
        linear-gradient(180deg, rgba(28, 18, 14, 0.98), rgba(10, 8, 8, 0.99));
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 115, 35, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tlh-pricing-card-featured::after {
    top: 0.9rem;
    right: 0.9rem;
    padding: 0.34rem 0.72rem;
    background: linear-gradient(180deg, rgba(255, 126, 54, 0.20), rgba(255, 97, 22, 0.10));
    border-color: rgba(255, 140, 60, 0.28);
    color: #ffd2b1;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.tlh-pricing-card-featured .tlh-card-badge {
    background: rgba(255, 115, 35, 0.14);
    border-color: rgba(255, 115, 35, 0.32);
    color: #ffb27e;
}

.tlh-pricing-card-featured h3 {
    color: #fff4ea;
}

.tlh-pricing-card-featured .tlh-pricing-copy,
.tlh-pricing-card-featured .tlh-vip-list li {
    color: rgba(255, 244, 234, 0.86);
}

@media (max-width: 1199.98px) {
    .tlh-vip-plans-row .tlh-pricing-card-featured {
        transform: none;
    }

    .tlh-pricing-card-aaa .tlh-pricing-copy {
        min-height: auto;
    }
}

/* ===== VIP CARD: selo MAIS POPULAR corrigido ===== */

/* comportamento normal para todos os cards */
.tlh-pricing-card-aaa .tlh-card-badge {
    position: static;
    margin: 0 0 1rem;
    min-width: 72px;
    width: auto;
    justify-content: center;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    text-align: center;
}

/* somente o card em destaque recebe topo especial */
.tlh-pricing-card-aaa.tlh-pricing-card-featured {
    position: relative;
    padding-top: 5.25rem;
}

.tlh-pricing-card-aaa.tlh-pricing-card-featured::after {
    top: 1rem;
    right: 1rem;
    padding: 0.38rem 0.78rem;
    font-size: 0.7rem;
    line-height: 1;
    z-index: 3;
}

.tlh-pricing-card-aaa.tlh-pricing-card-featured .tlh-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    margin: 0;
    min-width: 0;
    width: auto;
    padding: 0.75rem 7.4rem 0.75rem 1rem;
    border-radius: 999px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .tlh-pricing-card-aaa.tlh-pricing-card-featured {
        padding-top: 5.7rem;
    }

    .tlh-pricing-card-aaa.tlh-pricing-card-featured::after {
        top: 0.9rem;
        right: 0.9rem;
        font-size: 0.66rem;
        padding: 0.34rem 0.68rem;
    }

    .tlh-pricing-card-aaa.tlh-pricing-card-featured .tlh-card-badge {
        left: 0.9rem;
        right: 0.9rem;
        padding: 0.72rem 6.8rem 0.72rem 0.9rem;
    }
}

.tlh-status-online {
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.35);
    font-weight: 700;
}

.tlh-status-offline {
    color: #f87171;
    text-shadow: 0 0 10px rgba(248, 113, 113, 0.35);
    font-weight: 700;
}

.tlh-panel-exact-status.is-online {
    color: #86efac;
    border: 1px solid rgba(74, 222, 128, 0.25);
    background: rgba(34, 197, 94, 0.08);
}

.tlh-panel-exact-status.is-offline {
    color: #fca5a5;
    border: 1px solid rgba(248, 113, 113, 0.25);
    background: rgba(239, 68, 68, 0.08);
}

.tlh-status-online {
    color: #39ff88;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(57, 255, 136, 0.45);
    animation: tlhPulseOnline 1.8s infinite ease-in-out;
}

.tlh-status-offline {
    color: #ff5a5a;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 90, 90, 0.35);
}

@keyframes tlhPulseOnline {

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

    50% {
        opacity: 0.7;
        transform: scale(1.03);
    }
}

.tlh-panel-exact-row.is-active strong {
    color: #7dffb2;
    text-shadow: 0 0 10px rgba(125, 255, 178, 0.25);
}

/* mapa */
.tlh-map-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(15, 20, 34, 0.96) 0%, rgba(8, 11, 20, 0.98) 100%);
    padding: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.tlh-map-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.tlh-map-toolbar-badge,
.tlh-map-toolbar-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.tlh-map-toolbar-badge i {
    color: #ff6a00;
}

.map-zoom-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: crosshair;
    line-height: 0;
}

.map-zoom-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    user-select: none;
    -webkit-user-drag: none;
}

.map-lens {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.50),
        0 0 0 10px rgba(255, 106, 0, 0.14);
    background-color: rgba(12, 18, 30, 0.90);
    background-repeat: no-repeat;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity .12s ease;
    z-index: 5;
}

.map-lens.active {
    opacity: 1;
}

.tlh-map-fullscreen-btn {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 6;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(10, 12, 20, 0.82);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
    cursor: pointer;
}

.tlh-map-fullscreen-btn:hover {
    background: rgba(255, 106, 0, 0.20);
    border-color: rgba(255, 106, 0, 0.45);
}

.map-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(4, 6, 12, 0.96);
    backdrop-filter: blur(8px);
}

.map-modal.open {
    display: flex;
}

.map-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    /* MUITO IMPORTANTE */
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-modal-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;

    transform-origin: center center;
    transition: transform 0.08s ease;

    cursor: grab;
}

.map-modal-image:active {
    cursor: grabbing;
}

.map-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100000;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(12, 16, 26, 0.92);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.map-modal-close:hover {
    border-color: rgba(255, 106, 0, 0.45);
    background: rgba(255, 106, 0, 0.20);
}

@media (max-width: 768px) {
    .map-lens {
        width: 140px;
        height: 140px;
    }
}

/* ===== MAPA INTERATIVO + ZOOM AVANÇADO ===== */
body.modal-open {
    overflow: hidden !important;
}

.tlh-map-full-section {
    position: relative;
}

.tlh-map-info-card {
    margin-top: 1rem;
    padding: 1.15rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(17, 19, 28, 0.96), rgba(8, 11, 18, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.tlh-map-info-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.7rem;
}

.tlh-map-info-kicker,
.tlh-map-info-risk {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.tlh-map-info-kicker {
    color: var(--orange);
    background: rgba(255, 115, 35, 0.10);
    border: 1px solid rgba(255, 115, 35, 0.18);
}

.tlh-map-info-risk {
    color: #ffd2b1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.tlh-map-info-card h3 {
    margin-bottom: 0.7rem;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 1.8rem;
}

.tlh-map-info-card p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 0;
}

.tlh-map-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1rem;
}

.tlh-map-mini-info {
    padding: 0.95rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(22, 22, 26, 0.92), rgba(10, 10, 12, 0.96));
}

.tlh-map-mini-info strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tlh-map-mini-info span {
    display: block;
    color: var(--text-soft);
    line-height: 1.7;
}

.map-zoom-wrap {
    position: relative;
}

.map-pins {
    position: absolute;
    inset: 0;
    z-index: 4;
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.92);
    background: radial-gradient(circle at 30% 30%, #ffb37d, #ff6a00 60%, #7b2500 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
    cursor: pointer;
    z-index: 4;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.map-pin:hover,
.map-pin.is-active {
    transform: translate(-50%, -50%) scale(1.12);
    border-color: #fff4ea;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45), 0 0 0 8px rgba(255, 106, 0, 0.16);
}

.map-pin span {
    font-size: 0.95rem;
    line-height: 1;
    pointer-events: none;
}

.map-lens {
    z-index: 5;
}

.tlh-map-fullscreen-btn {
    z-index: 6;
}

.map-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(4, 6, 12, 0.96);
    backdrop-filter: blur(8px);
}

.map-modal.open {
    display: flex;
}

.map-modal-viewer {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) 360px;
    gap: 1rem;
    width: min(96vw, 1600px);
    height: min(92vh, 980px);
}

.map-modal-stage {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(10, 12, 18, 0.98), rgba(6, 8, 14, 0.98));
    cursor: grab;
}

.map-modal-stage.is-dragging {
    cursor: grabbing;
}

.map-modal-scene {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(100%, 1200px);
    transform: translate(0, 0) scale(1);
    transform-origin: center center;
    will-change: transform;
}

.map-modal-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    user-select: none;
    -webkit-user-drag: none;
}

.map-pins--modal {
    z-index: 4;
}

.map-pins--modal .map-pin {
    width: 42px;
    height: 42px;
}

.map-modal-side {
    position: relative;
    padding: 1.15rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(17, 19, 28, 0.96), rgba(8, 11, 18, 0.98));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.36);
    overflow: auto;
}

.map-modal-side h2 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    font-size: 2rem;
}

.map-modal-side p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 0;
}

.tlh-map-modal-help {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tlh-map-modal-help div {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.tlh-map-modal-help i {
    color: var(--orange);
    width: 16px;
    text-align: center;
}

.map-modal-controls {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 8;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.map-control-btn {
    min-width: 48px;
    height: 48px;
    padding: 0 0.95rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 12, 20, 0.86);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.map-control-btn:hover {
    border-color: rgba(255, 106, 0, 0.45);
    background: rgba(255, 106, 0, 0.20);
}

.map-control-btn-reset {
    min-width: 130px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.map-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 100000;
}

.tlh-feature-cards-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1399.98px) {
    .map-modal-viewer {
        grid-template-columns: minmax(0, 1fr) 320px;
    }
}

@media (max-width: 1199.98px) {
    .tlh-feature-cards-map {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .map-modal-viewer {
        grid-template-columns: 1fr;
        height: auto;
        max-height: 92vh;
    }

    .map-modal-side {
        max-height: 32vh;
    }

    .map-modal-stage {
        min-height: 58vh;
    }
}

@media (max-width: 767.98px) {
    .tlh-map-info-grid {
        grid-template-columns: 1fr;
    }

    .tlh-feature-cards-map {
        grid-template-columns: 1fr;
    }

    .map-pin {
        width: 34px;
        height: 34px;
    }

    .map-pins--modal .map-pin {
        width: 36px;
        height: 36px;
    }

    .map-modal {
        padding: 14px;
    }

    .map-modal-stage {
        min-height: 46vh;
    }

    .map-control-btn,
    .map-control-btn-reset {
        min-width: 44px;
        height: 44px;
    }

    .map-control-btn-reset {
        min-width: 112px;
        font-size: 0.82rem;
    }
}


/* TRADERS E MARCADORES CUSTOMIZADOS */
.map-marker-wrap {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 4;
}

.map-marker-wrap.is-active {
    z-index: 7;
}

.map-pin-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--pin-ring, rgba(255, 106, 0, 0.18));
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    animation: traderPulse 2s ease-in-out infinite;
    pointer-events: none;
}

.map-pin {
    background: radial-gradient(circle at 30% 30%, #ffb37d, var(--pin-color, #ff6a00) 58%, #7b2500 100%);
    color: #ffffff;
}

.map-pin span {
    font-size: 1rem;
    line-height: 1;
    pointer-events: none;
}

@keyframes traderPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.85;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.12);
        opacity: 0.45;
    }
}


/* ===== VIP MODAL FIX ABOVE NAVBAR ===== */
#promoVipModal {
    z-index: 2000 !important;
}

#promoVipModal .modal-dialog {
    position: relative;
    z-index: 2001;
    margin-top: calc(var(--tlh-navbar-offset) + 12px);
}

#promoVipModal .modal-content {
    position: relative;
}

.modal-backdrop.show {
    z-index: 1990 !important;
}

@media (max-width: 767.98px) {
    #promoVipModal .modal-dialog {
        margin-top: calc(var(--tlh-navbar-offset) + 8px);
        margin-left: 0.75rem;
        margin-right: 0.75rem;
    }
}

/* ===== WEATHER AAA ===== */

.tlh-weather-row {
    position: relative;
    overflow: hidden;
}

.tlh-weather-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    animation: tlhWeatherFloat 2.8s ease-in-out infinite;
}

.tlh-weather-temp {
    transition: color 0.35s ease, text-shadow 0.35s ease, transform 0.35s ease;
}

.tlh-panel-exact.tlh-panel-aaa.weather-theme-clear {
    background:
        radial-gradient(circle at top right, rgba(255, 128, 40, 0.10), transparent 28%),
        linear-gradient(180deg, rgba(15, 12, 12, 0.96), rgba(5, 5, 5, 0.98));
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.68),
        0 0 28px rgba(255, 120, 40, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(255, 90, 10, 0.08);
}

.tlh-panel-exact.tlh-panel-aaa.weather-theme-overcast {
    background:
        radial-gradient(circle at top right, rgba(148, 163, 184, 0.10), transparent 30%),
        linear-gradient(180deg, rgba(14, 14, 16, 0.97), rgba(6, 6, 8, 0.99));
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.68),
        0 0 30px rgba(148, 163, 184, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 0 1px rgba(148, 163, 184, 0.10);
}

.tlh-panel-exact.tlh-panel-aaa.weather-theme-fog {
    background:
        radial-gradient(circle at top right, rgba(226, 232, 240, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(20, 20, 22, 0.96), rgba(8, 8, 10, 0.99));
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.68),
        0 0 34px rgba(226, 232, 240, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.tlh-panel-exact.tlh-panel-aaa.weather-theme-rain {
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(10, 16, 22, 0.98), rgba(5, 8, 14, 1));
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.72),
        0 0 36px rgba(56, 189, 248, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(56, 189, 248, 0.12);
}

.weather-theme-rain .tlh-weather-temp {
    text-shadow: 0 0 10px rgba(125, 211, 252, 0.20);
}

.weather-theme-fog .tlh-weather-temp {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.16);
}

.weather-theme-overcast .tlh-weather-temp {
    text-shadow: 0 0 10px rgba(203, 213, 225, 0.14);
}

.weather-theme-clear .tlh-weather-temp {
    text-shadow: 0 0 10px rgba(251, 146, 60, 0.18);
}

@keyframes tlhWeatherFloat {

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

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

.tlh-btn-entrar {
    background: linear-gradient(180deg, #3b82f6, #1d4ed8) !important;
    border: 1px solid rgba(59, 130, 246, 0.45) !important;
    box-shadow: 0 10px 28px rgba(29, 78, 216, 0.35);
}

.tlh-btn-entrar:hover {
    background: linear-gradient(180deg, #60a5fa, #2563eb) !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.45);
}

/* ===== NOTICIAS FINAL ===== */
.tlh-news-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.tlh-news-card p {
    margin-bottom: 1rem;
}

.tlh-news-date {
    margin-top: auto;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.tlh-news-card .tlh-card-badge {
    margin-bottom: 1rem;
}

.tlh-news-card h3 {
    min-height: 48px;
}

.tlh-news-featured {
    position: relative;
    padding: 2rem;
    border-radius: 12px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 115, 35, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(25, 20, 18, 0.98), rgba(10, 8, 8, 0.99));
    border: 1px solid rgba(255, 115, 35, 0.25);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.60),
        0 0 0 1px rgba(255, 115, 35, 0.12),
        0 0 28px rgba(255, 115, 35, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    animation: tlhFeaturedGlow 3.2s ease-in-out infinite;
}

.tlh-news-featured::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 115, 35, 0.75), rgba(255, 115, 35, 0));
}

.tlh-news-featured h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff4ea;
}

.tlh-news-featured p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.tlh-news-featured .tlh-news-date {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes tlhFeaturedGlow {

    0%,
    100% {
        box-shadow:
            0 30px 80px rgba(0, 0, 0, 0.60),
            0 0 0 1px rgba(255, 115, 35, 0.12),
            0 0 22px rgba(255, 115, 35, 0.10),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    50% {
        box-shadow:
            0 34px 88px rgba(0, 0, 0, 0.64),
            0 0 0 1px rgba(255, 115, 35, 0.18),
            0 0 38px rgba(255, 115, 35, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }
}

/* base */
.tlh-card-badge.tlh-news-type {
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* PATCH */
.tlh-card-badge.tlh-news-type--patch {
    color: #7cc8ff;
    background: rgba(59, 130, 246, 0.14);
    border-color: rgba(59, 130, 246, 0.26);
}

/* EVENTO */
.tlh-card-badge.tlh-news-type--evento {
    color: #ffd27a;
    background: rgba(245, 158, 11, 0.14);
    border-color: rgba(245, 158, 11, 0.26);
}

/* AVISO */
.tlh-card-badge.tlh-news-type--aviso {
    color: #ff9ab1;
    background: rgba(236, 72, 153, 0.14);
    border-color: rgba(236, 72, 153, 0.26);
}

/* STATUS */
.tlh-card-badge.tlh-news-type--status {
    color: #86efac;
    background: rgba(34, 197, 94, 0.14);
    border-color: rgba(34, 197, 94, 0.26);
}

/* PROMO */
.tlh-card-badge.tlh-news-type--promo {
    color: #d8b4fe;
    background: rgba(168, 85, 247, 0.14);
    border-color: rgba(168, 85, 247, 0.26);
}

/* DESTAQUE */
.tlh-card-badge.tlh-news-type--destaque {
    color: #ffb27e;
    background: rgba(255, 115, 35, 0.16);
    border-color: rgba(255, 115, 35, 0.32);
    box-shadow: 0 0 16px rgba(255, 115, 35, 0.10);
}

/* POST */
.tlh-card-badge.tlh-news-type--post {
    color: #d6dbe3;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 767.98px) {
    .tlh-news-featured {
        padding: 1.35rem;
    }

    .tlh-news-featured h3 {
        font-size: 1.55rem;
    }

    .tlh-news-featured p {
        font-size: 1rem;
    }

    .tlh-news-card h3 {
        min-height: auto;
    }
}

.tlh-card-badge.tlh-news-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ===== ADMIN COM VISUAL DE MENU ===== */
.tlh-navbar-actions .tlh-btn-admin {
    background: transparent !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;

    color: rgba(255, 255, 255, 0.84) !important;
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;

    padding: 0.52rem 0.72rem !important;
    border-radius: 999px;
    min-width: auto !important;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        color 0.22s ease;
}

.tlh-navbar-actions .tlh-btn-admin:hover {
    background: rgba(255, 115, 35, 0.08) !important;
    border-color: rgba(255, 115, 35, 0.16) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.tlh-navbar-actions .tlh-btn-admin i {
    font-size: 13px;
    opacity: 0.9;
}

/* ===== ADMIN ICON ONLY (MAIOR E EQUILIBRADO) ===== */
.tlh-navbar-actions .tlh-btn-admin {
    width: 44px;
    height: 44px;

    padding: 0 !important;
    border-radius: 12px;

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

    font-size: 16px;
    /* aumenta o ícone */
}

/* ícone ainda mais refinado */
.tlh-navbar-actions .tlh-btn-admin i {
    font-size: 18px;
}

/* hover mais responsivo */
.tlh-navbar-actions .tlh-btn-admin:hover {
    transform: translateY(-2px) scale(1.05);
}

/* logout continua separado para não misturar com menu normal */
.tlh-navbar-actions .tlh-btn-admin-logout {
    border-color: rgba(255, 120, 120, 0.22);
    background: rgba(255, 120, 120, 0.05);
    color: #ffb0b0;
}

.tlh-navbar-actions .tlh-btn-admin-logout:hover {
    border-color: rgba(255, 120, 120, 0.40);
    background: rgba(255, 120, 120, 0.12);
    color: #ffe1e1;
}

/* ===== PRIORIDADE VISUAL DAS NOTICIAS ===== */

/* card principal por tipo */
.tlh-news-featured--fixo {
    border-color: rgba(255, 210, 122, 0.36);
    box-shadow:
        0 34px 88px rgba(0, 0, 0, 0.64),
        0 0 0 1px rgba(255, 210, 122, 0.18),
        0 0 38px rgba(255, 210, 122, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    background:
        radial-gradient(circle at top right, rgba(255, 210, 122, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(30, 24, 14, 0.98), rgba(10, 8, 8, 0.99));
}

.tlh-news-featured--destaque {
    border-color: rgba(255, 115, 35, 0.30);
}

/* cards menores com prioridade */
.tlh-news-card--fixo {
    border-color: rgba(255, 210, 122, 0.28);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(255, 210, 122, 0.10);
    background:
        radial-gradient(circle at top right, rgba(255, 210, 122, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(20, 18, 12, 0.95), rgba(8, 8, 10, 0.98));
}

.tlh-news-card--destaque {
    border-color: rgba(255, 115, 35, 0.24);
    background:
        radial-gradient(circle at top right, rgba(255, 115, 35, 0.10), transparent 30%),
        linear-gradient(180deg, rgba(18, 15, 12, 0.94), rgba(8, 8, 10, 0.97));
}

/* badge FIXO */
.tlh-card-badge.tlh-news-type--fixo {
    color: #ffe29d;
    background: rgba(255, 210, 122, 0.14);
    border-color: rgba(255, 210, 122, 0.32);
    box-shadow: 0 0 16px rgba(255, 210, 122, 0.10);
}

/* ===== NOTICIAS SEM CORTE ===== */

/* container padrão */
.tlh-news-media {
    margin-top: 1rem;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
    background: #050505;

    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* imagem SEM corte */
.tlh-news-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 🔥 NÃO CORTA */
    object-position: center;
}

/* remover limite antigo */
.tlh-news-card .tlh-news-media {
    max-height: none;
}

.tlh-news-card .tlh-news-media img {
    height: 100%;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .tlh-news-featured .tlh-news-media {
        max-height: 260px;
    }

    .tlh-news-featured .tlh-news-media img {
        height: 260px;
    }

    .tlh-news-card .tlh-news-media {
        max-height: 180px;
    }

    .tlh-news-card .tlh-news-media img {
        height: 180px;
    }
}

/* ===== HERO / BANNER CINEMATOGRÁFICO INSANO ===== */
.tlh-news-featured-hero {
    position: relative;
    min-height: 540px;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 115, 35, 0.22);
    background: #050505;
    box-shadow:
        0 36px 90px rgba(0, 0, 0, 0.58),
        0 0 0 1px rgba(255, 115, 35, 0.10),
        0 0 38px rgba(255, 115, 35, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    isolation: isolate;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.tlh-news-featured-hero:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 135, 50, 0.34);
    box-shadow:
        0 44px 110px rgba(0, 0, 0, 0.66),
        0 0 0 1px rgba(255, 135, 50, 0.14),
        0 0 46px rgba(255, 115, 35, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tlh-news-featured-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        linear-gradient(120deg,
            rgba(255, 255, 255, 0) 18%,
            rgba(255, 255, 255, 0.045) 32%,
            rgba(255, 255, 255, 0) 46%);
    transform: translateX(-120%);
    transition: transform .9s ease;
}

.tlh-news-featured-hero:hover::after {
    transform: translateX(120%);
}

.tlh-news-featured-hero__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    overflow: hidden;
}

.tlh-news-featured-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.05) contrast(1.10) saturate(1.08);
    transform: scale(1.02);
    transition: transform .6s ease, filter .35s ease;
}

.tlh-news-featured-hero:hover .tlh-news-featured-hero__media img {
    transform: scale(1.045);
    filter: brightness(1.23) contrast(1.12) saturate(1.12);
}

.tlh-news-featured-hero__media::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 150, 70, 0.12), transparent 18%),
        radial-gradient(circle at 18% 72%, rgba(255, 115, 35, 0.08), transparent 24%);
    mix-blend-mode: screen;
}

.tlh-news-featured-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.70) 0%,
            rgba(0, 0, 0, 0.40) 38%,
            rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(180deg,
            rgba(255, 115, 35, 0.08) 0%,
            rgba(0, 0, 0, 0.18) 38%,
            rgba(0, 0, 0, 0.34) 100%);
    pointer-events: none;
}

.tlh-news-featured-hero__content {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 540px;
    padding: 2rem 2rem 1.7rem;
}

.tlh-news-featured-hero__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.tlh-news-featured-hero__date {
    color: rgba(255, 255, 255, 0.94);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.78);
}

.tlh-news-featured-hero__body {
    max-width: 660px;
    margin-top: auto;
}

.tlh-news-featured-hero__eyebrow {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: #ff7a2f;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.72);
}

.tlh-news-featured-hero__title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    line-height: 0.92;
    text-transform: uppercase;
    margin: 0 0 1rem;
    color: #f7f7f7;
    text-shadow:
        0 10px 28px rgba(0, 0, 0, 0.92),
        0 4px 12px rgba(0, 0, 0, 0.56);
}

.tlh-news-featured-hero__text {
    max-width: 580px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.12rem;
    line-height: 1.82;
    margin: 0 0 1.5rem;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.82);
}

.tlh-news-featured-hero__actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.tlh-news-featured-hero__actions .tlh-btn-primary {
    box-shadow:
        0 18px 34px rgba(185, 61, 16, 0.30),
        0 0 18px rgba(255, 107, 29, 0.14);
}

.tlh-news-featured-hero__actions .tlh-btn-primary:hover {
    box-shadow:
        0 22px 40px rgba(185, 61, 16, 0.36),
        0 0 24px rgba(255, 107, 29, 0.20);
}

.tlh-news-featured-hero--fixo {
    border-color: rgba(255, 210, 122, 0.32);
    box-shadow:
        0 38px 96px rgba(0, 0, 0, 0.60),
        0 0 0 1px rgba(255, 210, 122, 0.12),
        0 0 44px rgba(255, 210, 122, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tlh-news-featured-hero--fixo:hover {
    border-color: rgba(255, 225, 150, 0.40);
    box-shadow:
        0 44px 108px rgba(0, 0, 0, 0.66),
        0 0 0 1px rgba(255, 225, 150, 0.14),
        0 0 54px rgba(255, 225, 150, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (max-width: 991.98px) {

    .tlh-news-featured-hero,
    .tlh-news-featured-hero__content {
        min-height: 460px;
    }

    .tlh-news-featured-hero__title {
        font-size: clamp(2.6rem, 8vw, 4.4rem);
    }

    .tlh-news-featured-hero__text {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {

    .tlh-news-featured-hero,
    .tlh-news-featured-hero__content {
        min-height: 390px;
    }

    .tlh-news-featured-hero__content {
        padding: 1.25rem;
    }

    .tlh-news-featured-hero__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .tlh-news-featured-hero__title {
        font-size: 2.35rem;
        line-height: 0.98;
    }

    .tlh-news-featured-hero__text {
        font-size: 0.96rem;
        line-height: 1.72;
    }
}

/* ===== HOME INICIO VISUAL LANÇADOR ===== */
.tlh-home-v2 {
    background: linear-gradient(180deg, #040404 0%, #050505 100%);
}

.tlh-home-v2-hero {
    position: relative;
    padding: 1.8rem 0 1.5rem;
    border-top: 1px solid rgba(255, 110, 40, 0.14);
    border-bottom: 1px solid rgba(255, 110, 40, 0.12);
    overflow: hidden;
}

.tlh-home-v2-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 40%, rgba(0, 0, 0, 0.62) 100%),
        linear-gradient(180deg, rgba(255, 106, 0, 0.05) 0%, rgba(0, 0, 0, 0.10) 100%),
        var(--tlh-home-v2-bg) center center / cover no-repeat;
    z-index: 0;
}

.tlh-home-v2-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 65% 20%, rgba(255, 140, 60, 0.12), transparent 20%);
    z-index: 0;
}

.tlh-home-v2-hero .container {
    position: relative;
    z-index: 1;
}

.tlh-home-v2-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(360px, 470px);
    gap: 1.5rem;
    align-items: stretch;
}

.tlh-home-v2-copy {
    padding: 1rem 0 0.5rem;
    max-width: 560px;
}

.tlh-home-v2-title {
    margin: 0 0 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.4rem, 5.3vw, 6rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #f4f4f4;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.92);
}

.tlh-home-v2-title span {
    display: block;
}

.tlh-home-v2-title .is-orange {
    color: #ff6b1d;
}

.tlh-home-v2-text {
    max-width: 430px;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.8);
}

.tlh-home-v2-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tlh-home-v2-btn-primary,
.tlh-home-v2-btn-secondary {
    min-width: 243px;
    justify-content: center;
    min-height: 54px;
    border-radius: 8px;
}

.tlh-home-v2-btn-secondary {
    background: rgba(10, 10, 12, 0.72);
}

.tlh-home-v2-status-panel {
    border-radius: 14px;
    padding: 1.6rem;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(5, 5, 5, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(4px);
}

.tlh-home-v2-status-title {
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.55rem;
    text-transform: uppercase;
    color: #ff6b1d;
}

.tlh-home-v2-status-online {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    text-transform: uppercase;
}

.tlh-home-v2-status-online .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 16px currentColor;
}

.tlh-home-v2-status-online.is-online {
    color: #39ff88;
}

.tlh-home-v2-status-online.is-offline {
    color: #ff5a5a;
}

.tlh-home-v2-status-list {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
}

.tlh-home-v2-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.52rem 0;
}

.tlh-home-v2-status-row span,
.tlh-home-v2-status-row strong {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.tlh-home-v2-status-row span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.tlh-home-v2-status-row strong {
    color: #fff;
    font-size: 1.15rem;
    text-align: right;
}

.tlh-home-v2-status-row strong i {
    color: #8aa8ff;
    margin-right: 0.4rem;
}

.tlh-home-v2-panel-btn {
    min-height: 62px;
    justify-content: center;
    border-radius: 10px;
    border-color: rgba(255, 106, 0, 0.18);
    font-size: 1rem;
}

.tlh-home-v2-info-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
}

.tlh-home-v2-info-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-height: 92px;
    padding: 1rem 1rem 1rem 1.1rem;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.92), rgba(7, 7, 7, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

.tlh-home-v2-info-icon {
    color: #ff6b1d;
    font-size: 2rem;
    flex: 0 0 auto;
}

.tlh-home-v2-info-body {
    min-width: 0;
}

.tlh-home-v2-info-body span,
.tlh-home-v2-info-body strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.tlh-home-v2-info-body span {
    color: #ff6b1d;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.tlh-home-v2-info-body strong {
    color: #fff;
    font-size: 1.35rem;
    line-height: 1.1;
}

.tlh-home-copy-btn {
    margin-left: auto;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.88);
}

.tlh-home-copy-btn.is-copied {
    color: #39ff88;
    border-color: rgba(57, 255, 136, 0.3);
}

.tlh-home-v2-panels {
    padding: 1.2rem 0 2rem;
}

.tlh-home-v2-panels-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.85fr) minmax(320px, 0.9fr);
    gap: 1rem;
}

.tlh-home-v2-feature-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.8rem;
}

.tlh-home-v2-feature-card,
.tlh-home-v2-news-panel,
.tlh-home-v2-vip-bar {
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.96), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.tlh-home-v2-feature-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 304px;
}

.tlh-home-v2-feature-image {
    height: 122px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tlh-home-v2-feature-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.38));
}

.tlh-home-v2-feature-content {
    padding: 0.95rem 1rem 1.05rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tlh-home-v2-feature-icon {
    width: 52px;
    height: 52px;
    margin-top: -28px;
    margin-bottom: 0.8rem;
    border-radius: 50%;
    border: 2px solid rgba(255, 106, 0, 0.58);
    background: rgba(8, 8, 8, 0.96);
    color: #ff6b1d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
    position: relative;
    z-index: 2;
}

.tlh-home-v2-feature-content h3 {
    margin: 0 0 0.55rem;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
}

.tlh-home-v2-feature-content p {
    margin: 0 0 0.9rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.5;
    font-size: 0.96rem;
    flex: 1;
}

.tlh-home-v2-feature-content a {
    color: #ff6b1d;
    font-weight: 700;
    font-size: 0.95rem;
}

.tlh-home-v2-news-panel {
    padding: 1rem;
}

.tlh-home-v2-news-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.tlh-home-v2-news-panel-head h2 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    text-transform: uppercase;
    color: #fff;
}

.tlh-home-v2-news-panel-head a {
    color: #ff6b1d;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.tlh-home-v2-news-list {
    display: grid;
    gap: 0.8rem;
}

.tlh-home-v2-news-item {
    display: grid;
    grid-template-columns: 104px 1fr auto;
    gap: 0.8rem;
    align-items: start;
    padding: 0.55rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tlh-home-v2-news-thumb {
    width: 104px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
}

.tlh-home-v2-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tlh-home-v2-news-body h3 {
    margin: 0 0 0.25rem;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    line-height: 1.1;
}

.tlh-home-v2-news-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.9rem;
    line-height: 1.45;
}

.tlh-home-v2-news-item time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    white-space: nowrap;
    padding-top: 0.2rem;
}

.tlh-home-v2-vip-bar {
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.tlh-home-v2-vip-badge {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    border: 2px solid rgba(255, 170, 70, 0.18);
    background: radial-gradient(circle at 30% 30%, rgba(255, 185, 90, 0.22), rgba(60, 38, 10, 0.82));
    color: #ffb347;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 1.9rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tlh-home-v2-vip-copy strong,
.tlh-home-v2-vip-copy span {
    display: block;
}

.tlh-home-v2-vip-copy strong {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.7rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.tlh-home-v2-vip-copy span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
}

.tlh-home-v2-vip-btn {
    min-width: 245px;
    min-height: 56px;
    justify-content: center;
}

@media (max-width: 1599.98px) {
    .tlh-home-v2-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1399.98px) {
    .tlh-home-v2-info-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tlh-home-v2-panels-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .tlh-home-v2-hero-grid {
        grid-template-columns: 1fr;
    }

    .tlh-home-v2-copy,
    .tlh-home-v2-text {
        max-width: 100%;
    }

    .tlh-home-v2-btn-primary,
    .tlh-home-v2-btn-secondary {
        min-width: 220px;
    }
}

@media (max-width: 767.98px) {
    .tlh-home-v2-hero {
        padding: 1rem 0 1rem;
    }

    .tlh-home-v2-title {
        font-size: 2.75rem;
    }

    .tlh-home-v2-actions {
        flex-direction: column;
    }

    .tlh-home-v2-btn-primary,
    .tlh-home-v2-btn-secondary {
        width: 100%;
        min-width: 0;
    }

    .tlh-home-v2-info-grid,
    .tlh-home-v2-feature-grid {
        grid-template-columns: 1fr;
    }

    .tlh-home-v2-news-item {
        grid-template-columns: 88px 1fr;
    }

    .tlh-home-v2-news-item time {
        grid-column: 2;
        padding-top: 0;
    }

    .tlh-home-v2-vip-bar {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .tlh-home-v2-vip-btn {
        width: 100%;
        min-width: 0;
    }
}


/* ===== HOME INICIO ULTRA WIDE SAFE ===== */
.tlh-home-v2-shell {
    width: min(100% - 48px, 1680px);
    max-width: 1680px;
    padding-left: 0;
    padding-right: 0;
}

.tlh-home-v2-hero-grid {
    grid-template-columns: minmax(0, 1.72fr) minmax(380px, 500px);
    gap: 1.8rem;
}

.tlh-home-v2-copy {
    max-width: 620px;
}

.tlh-home-v2-text {
    max-width: 500px;
}

.tlh-home-v2-info-grid {
    gap: 0.9rem;
}

.tlh-home-v2-panels-grid {
    grid-template-columns: minmax(0, 2.05fr) minmax(360px, 0.95fr);
    gap: 1.1rem;
}

.tlh-home-v2-feature-grid {
    gap: 0.9rem;
}

@media (min-width: 1800px) {
    .tlh-home-v2-shell {
        width: min(100% - 64px, 1760px);
        max-width: 1760px;
    }

    .tlh-home-v2-hero-grid {
        grid-template-columns: minmax(0, 1.8fr) minmax(400px, 520px);
    }
}

@media (max-width: 1399.98px) {
    .tlh-home-v2-shell {
        width: min(100% - 32px, 1480px);
        max-width: 1480px;
    }

    .tlh-home-v2-hero-grid {
        grid-template-columns: minmax(0, 1.45fr) minmax(340px, 450px);
    }
}

@media (max-width: 991.98px) {
    .tlh-home-v2-shell {
        width: 100%;
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
}

@media (max-width: 767.98px) {
    .tlh-home-v2-shell {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* ===== CONTAINER ULTRA WIDE GLOBAL ===== */
.tlh-container-wide {
    width: 100%;
    max-width: 1680px;
    /* 🔥 largura ultra wide */
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.tlh-footer {
    position: relative;
}

.tlh-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 110, 40, 0.08), transparent 30%),
        radial-gradient(circle at 80% 10%, rgba(255, 110, 40, 0.06), transparent 25%);
    pointer-events: none;
}



/* ===== FOOTER STATUS CARDS ===== */
.tlh-footer-status-cards {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.tlh-footer-status-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.95rem;
    min-height: 94px;
    padding: 1rem 1rem 1rem 1.1rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(20, 16, 16, 0.94), rgba(8, 8, 8, 0.98));
    border: 1px solid rgba(255, 115, 35, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.tlh-footer-status-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 115, 35, 0.55), rgba(255, 115, 35, 0));
}

.tlh-footer-status-card-icon {
    color: #ff6b1d;
    font-size: 2rem;
    flex: 0 0 auto;
    filter: drop-shadow(0 6px 12px rgba(255, 100, 40, 0.18));
}

.tlh-footer-status-card-body {
    min-width: 0;
}

.tlh-footer-status-card-body span,
.tlh-footer-status-card-body strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.tlh-footer-status-card-body span {
    color: #ff6b1d;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.02em;
}

.tlh-footer-status-card-body strong {
    color: #fff;
    font-size: 1.35rem;
    line-height: 1.1;
}

.tlh-footer-copy-btn {
    margin-left: auto;
    flex: 0 0 auto;
}

@media (max-width: 1599.98px) {
    .tlh-footer-status-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .tlh-footer-status-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .tlh-footer-status-cards {
        grid-template-columns: 1fr;
    }

    .tlh-footer-status-card-body strong {
        font-size: 1.2rem;
    }
}

/* FOOTER EXPANDIDO */
.tlh-footer .tlh-container-wide {
    max-width: 1720px;
    /* pode abrir um pouco mais no footer */
}

/* em telas muito grandes (ultra wide real) */
@media (min-width: 1800px) {
    .tlh-container-wide {
        max-width: 1820px;
    }
}

/* RESPONSIVO (proteção mobile) */
@media (max-width: 991.98px) {
    .tlh-container-wide {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* HERO CINEMATIC */
.tlh-hero {
    position: relative;
    overflow: hidden;
}

/* camada de fumaça / atmosfera */
.tlh-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 120, 40, 0.08), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 80, 0, 0.06), transparent 40%);
    animation: fogMove 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes fogMove {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-20px);
    }
}

.tlh-btn-primary {
    position: relative;
    overflow: hidden;
}

.tlh-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.tlh-btn-primary:hover::after {
    left: 100%;
}

.tlh-status-online::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulse 1.5s infinite;
}

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

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.tlh-card {
    transform-style: preserve-3d;
    transition: transform 0.4s ease, box-shadow 0.4s;
}

.tlh-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

body {
    background: radial-gradient(circle at center, #0a0a0a, #000000 80%);
}

/* ===== BOTÃO VIP (VER BENEFÍCIOS) ===== */
.tlh-btn-vip {
    background: linear-gradient(180deg, #ffb347, #d97706);
    border: 1px solid rgba(255, 190, 80, 0.45);
    color: #1a0f00;
    font-weight: 700;

    box-shadow:
        0 10px 30px rgba(255, 160, 60, 0.35),
        0 0 18px rgba(255, 170, 70, 0.18);

    transition: all 0.25s ease;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* 🔥 centraliza tudo */
    gap: 8px;

    line-height: 1;
    /* remove desalinhamento vertical */
    padding: 0.9rem 1.4rem;
}

.tlh-btn-vip i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.tlh-btn-vip:hover {
    background: linear-gradient(180deg, #ffc76a, #ea8a1a);
    color: #1a0f00;

    transform: translateY(-2px);

    box-shadow:
        0 16px 40px rgba(255, 170, 70, 0.45),
        0 0 26px rgba(255, 190, 90, 0.25);
}

/* ===== DISCORD ICON ONLY FINAL ===== */
.tlh-navbar-actions .tlh-btn-discord {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    flex: 0 0 44px !important;

    padding: 0 !important;
    margin: 0 !important;

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

    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    border-radius: 12px !important;
    color: #ffffff !important;
}

.tlh-navbar-actions .tlh-btn-discord i {
    font-size: 18px !important;
    line-height: 1 !important;
    color: inherit !important;
    opacity: 1 !important;
}

.tlh-navbar-actions .tlh-btn-discord:hover {
    background: rgba(88, 101, 242, 0.18) !important;
    box-shadow: 0 0 14px rgba(88, 101, 242, 0.25) !important;
    color: #cfd7ff !important;
    transform: translateY(-2px) scale(1.05);
}

/* ===== SOCIAL ICONS PADRÃO ===== */
.tlh-navbar-actions .tlh-btn-social {
    width: 42px;
    height: 42px;
    min-width: 42px;
    max-width: 42px;
    flex: 0 0 42px;

    padding: 0 !important;
    margin: 0;

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

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    border-radius: 12px;
    color: #ffffff;

    transition: all 0.25s ease;
}

.tlh-navbar-actions .tlh-btn-social i {
    font-size: 17px;
    line-height: 1;
}

/* ===== HOVER POR PLATAFORMA ===== */

/* YouTube 🔴 */
.tlh-btn-social[href*="youtube"]:hover {
    background: rgba(255, 0, 0, 0.15);
    box-shadow: 0 0 14px rgba(255, 0, 0, 0.35);
}

/* Twitch 🟣 */
.tlh-btn-social[href*="twitch"]:hover {
    background: rgba(145, 70, 255, 0.18);
    box-shadow: 0 0 14px rgba(145, 70, 255, 0.35);
}

/* TikTok ⚫ */
.tlh-btn-social[href*="tiktok"]:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.25);
}

/* Instagram 🌈 */
.tlh-btn-social[href*="instagram"]:hover {
    background: rgba(225, 48, 108, 0.18);
    box-shadow: 0 0 14px rgba(225, 48, 108, 0.35);
}

/* Kick 🟢 */
.tlh-btn-social[href*="kick"]:hover {
    background: rgba(83, 252, 24, 0.18);
    box-shadow: 0 0 14px rgba(83, 252, 24, 0.35);
}

/* Telegram 🔵 */
.tlh-btn-social[href*="t.me"]:hover {
    background: rgba(0, 136, 204, 0.18);
    box-shadow: 0 0 14px rgba(0, 136, 204, 0.35);
}

/* efeito geral */
.tlh-navbar-actions .tlh-btn-social:hover {
    transform: translateY(-2px) scale(1.05);
}

/* ===== NAVBAR TRANSPARENTE (TOPO) ===== */
.tlh-navbar {
    background: transparent !important;
    transition: all 0.35s ease;
}

/* efeito vidro leve */
.tlh-navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(6px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.15));
    opacity: 0;
    transition: 0.35s;
    pointer-events: none;
}

/* ===== NAVBAR ATIVO (SCROLL) ===== */
.tlh-navbar.scrolled {
    background: rgba(15, 15, 15, 0.92) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* ativa o vidro */
.tlh-navbar.scrolled::before {
    opacity: 1;
}

/* deixa mais compacto no scroll */
.tlh-navbar.scrolled .navbar {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* ===== NAVBAR HERO TRANSPARENTE REAL ===== */
.navbar.tlh-navbar.tlh-navbar-aaa.fixed-top {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

/* remove qualquer camada extra no topo */
.navbar.tlh-navbar.tlh-navbar-aaa.fixed-top::before,
.navbar.tlh-navbar.tlh-navbar-aaa.fixed-top::after {
    background: transparent !important;
    opacity: 0 !important;
    box-shadow: none !important;
    border: 0 !important;
}

/* estado com scroll */
.navbar.tlh-navbar.tlh-navbar-aaa.fixed-top.scrolled {
    background: linear-gradient(180deg, rgba(15, 10, 10, 0.95), rgba(8, 6, 6, 0.94)) !important;
    border-bottom: 1px solid rgba(255, 110, 40, 0.20) !important;
    box-shadow:
        0 10px 34px rgba(0, 0, 0, 0.42),
        inset 0 -1px 0 rgba(255, 120, 40, 0.08) !important;
    backdrop-filter: blur(8px) !important;
}

/* ===== NAVBAR TRANSPARENTE NO TOPO REAL ===== */
body {
    padding-top: 0 !important;
}

.navbar.tlh-navbar.tlh-navbar-aaa.fixed-top {
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.navbar.tlh-navbar.tlh-navbar-aaa.fixed-top::before,
.navbar.tlh-navbar.tlh-navbar-aaa.fixed-top::after {
    background: transparent !important;
    opacity: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
}

/* a linha inferior da shell também some no topo */
.navbar.tlh-navbar.tlh-navbar-aaa.fixed-top .tlh-navbar-shell::before {
    opacity: 0 !important;
}

/* estado ao rolar */
.navbar.tlh-navbar.tlh-navbar-aaa.fixed-top.scrolled {
    background: linear-gradient(180deg, rgba(15, 10, 10, 0.95), rgba(8, 6, 6, 0.94)) !important;
    border-bottom: 1px solid rgba(255, 110, 40, 0.20) !important;
    box-shadow:
        0 10px 34px rgba(0, 0, 0, 0.42),
        inset 0 -1px 0 rgba(255, 120, 40, 0.08) !important;
    backdrop-filter: blur(8px) !important;
}

.navbar.tlh-navbar.tlh-navbar-aaa.fixed-top.scrolled .tlh-navbar-shell::before {
    opacity: 1 !important;
}

/* ===== HERO HOME AFASTADO DA NAVBAR ===== */
.tlh-hero-exact,
.tlh-hero-aaa {
    padding-top: calc(var(--tlh-navbar-offset) + 56px) !important;
}

/* home v2, se estiver usando essa versão */
.tlh-home-v2-hero {
    padding-top: calc(var(--tlh-navbar-offset) + 28px) !important;
}

/* garante que o conteúdo comece abaixo da navbar */
.tlh-hero-left,
.tlh-hero-right,
.tlh-home-v2-copy,
.tlh-home-v2-status-panel {
    position: relative;
    z-index: 2;
}

/* navbar continua acima de tudo */
.navbar.tlh-navbar.tlh-navbar-aaa.fixed-top {
    z-index: 1200 !important;
}

/* =========================================================
   NAVBAR ACTIONS — PADRÃO CINEMATOGRÁFICO UNIFICADO
   ========================================================= */

.tlh-navbar-actions .tlh-btn-admin,
.tlh-navbar-actions .tlh-btn-discord,
.tlh-navbar-actions .tlh-btn-social {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;

    color: #ffffff !important;
    border-radius: 12px !important;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        color 0.25s ease !important;
}

/* ===== TAMANHO BOTÕES ===== */
.tlh-navbar-actions .tlh-btn-admin,
.tlh-navbar-actions .tlh-btn-discord {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    flex: 0 0 44px !important;
    padding: 0 !important;
    margin: 0 !important;
}

.tlh-navbar-actions .tlh-btn-social {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    flex: 0 0 42px !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ===== ÍCONES ===== */
.tlh-navbar-actions .tlh-btn-admin i,
.tlh-navbar-actions .tlh-btn-discord i {
    font-size: 18px !important;
    line-height: 1 !important;
}

.tlh-navbar-actions .tlh-btn-social i {
    font-size: 17px !important;
    line-height: 1 !important;
}

/* ===== EFEITO BASE (IGUAL DISCORD) ===== */
.tlh-navbar-actions .tlh-btn-admin:hover,
.tlh-navbar-actions .tlh-btn-discord:hover,
.tlh-navbar-actions .tlh-btn-social:hover {
    transform: translateY(-2px) scale(1.05) !important;
}

/* =========================================================
   CORES INDIVIDUAIS (GLOW + FUNDO)
   ========================================================= */

/* ADMIN 🔥 */
.tlh-navbar-actions .tlh-btn-admin:hover {
    background: rgba(255, 115, 35, 0.18) !important;
    box-shadow: 0 0 14px rgba(255, 115, 35, 0.25) !important;
    color: #ffd7bf !important;
}

/* DISCORD 💙 */
.tlh-navbar-actions .tlh-btn-discord:hover {
    background: rgba(88, 101, 242, 0.18) !important;
    box-shadow: 0 0 14px rgba(88, 101, 242, 0.25) !important;
    color: #cfd7ff !important;
}

/* YOUTUBE 🔴 */
.tlh-btn-social[href*="youtube"]:hover {
    background: rgba(255, 0, 0, 0.15) !important;
    box-shadow: 0 0 14px rgba(255, 0, 0, 0.35) !important;
    color: #ffd6d6 !important;
}

/* TWITCH 🟣 */
.tlh-btn-social[href*="twitch"]:hover {
    background: rgba(145, 70, 255, 0.18) !important;
    box-shadow: 0 0 14px rgba(145, 70, 255, 0.35) !important;
    color: #e6d6ff !important;
}

/* TIKTOK ⚪ */
.tlh-btn-social[href*="tiktok"]:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

/* INSTAGRAM 🌸 */
.tlh-btn-social[href*="instagram"]:hover {
    background: rgba(225, 48, 108, 0.18) !important;
    box-shadow: 0 0 14px rgba(225, 48, 108, 0.35) !important;
    color: #ffd7e8 !important;
}

/* KICK 🟢 */
.tlh-btn-social[href*="kick"]:hover {
    background: rgba(83, 252, 24, 0.18) !important;
    box-shadow: 0 0 14px rgba(83, 252, 24, 0.35) !important;
    color: #e3ffd6 !important;
}

/* TELEGRAM 🔵 */
.tlh-btn-social[href*="t.me"]:hover {
    background: rgba(0, 136, 204, 0.18) !important;
    box-shadow: 0 0 14px rgba(0, 136, 204, 0.35) !important;
    color: #d8f1ff !important;
}

/* ===== TRAILER HERO ESTILO AAA ===== */
.tlh-home-v2-trailer {
    margin-top: 1.2rem;
    max-width: 520px;
}

.tlh-home-v2-trailer-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    border: 1px solid rgba(255, 115, 35, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.tlh-home-v2-trailer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease, filter .4s ease;
}

/* overlay cinematográfico */
.tlh-home-v2-trailer-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.7)),
        radial-gradient(circle at center, rgba(255, 115, 35, 0.15), transparent 40%);
}

/* topo estilo imagem que você mandou */
.tlh-home-v2-trailer-header {
    position: absolute;
    top: 12px;
    left: 14px;
    color: #fff;
    z-index: 2;
    font-family: 'Oswald', sans-serif;
}

.tlh-home-v2-trailer-header span {
    font-size: 0.7rem;
    opacity: 0.7;
}

.tlh-home-v2-trailer-header strong {
    display: block;
    font-size: 1.1rem;
    color: #ff6a00;
}

/* botão play */
.tlh-home-v2-trailer-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 115, 35, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    z-index: 2;
    transition: all .3s ease;
}

/* rodapé estilo CTA */
.tlh-home-v2-trailer-footer {
    position: absolute;
    bottom: 10px;
    left: 14px;
    right: 14px;
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    z-index: 2;
    opacity: 0.9;
}

/* hover */
.tlh-home-v2-trailer-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.tlh-home-v2-trailer-card:hover .tlh-home-v2-trailer-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(255, 115, 35, 0.4);
    box-shadow: 0 0 30px rgba(255, 115, 35, 0.4);
}

.tlh-home-v2-trailer-trigger {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
}

.tlh-status-actions {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.tlh-status-actions .btn {
    flex: 1;
    white-space: nowrap;
}

/* ===== NOTICIAS LAYOUT AAA REFINADO ===== */
.tlh-page-hero-news {
    padding: 2rem 0 1.25rem;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.94), rgba(5, 5, 5, 0.98));
}

.tlh-page-hero-news::before {
    opacity: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 100%),
        radial-gradient(circle at 12% 22%, rgba(255, 115, 35, 0.10), transparent 24%),
        url('../img/backgrounds/hero-survival.jpg') center/cover no-repeat;
}

.tlh-news-hero-head {
    padding: 0.8rem 0 0;
}

.tlh-news-hero-title-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.tlh-news-hero-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d8d8d8;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.92), rgba(8, 8, 8, 0.98));
    border: 1px solid rgba(255, 115, 35, 0.22);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
    font-size: 1.8rem;
}

.tlh-news-page-title {
    margin-bottom: 0.35rem;
    font-size: clamp(3rem, 5vw, 4.8rem);
}

.tlh-news-page-subtitle {
    max-width: none;
    color: rgba(255, 255, 255, 0.78);
}

.tlh-news-page-subtitle strong {
    color: var(--orange);
}

.tlh-news-section {
    padding-top: 1.5rem;
}

.tlh-news-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(320px, 0.98fr);
    gap: 1.1rem;
    align-items: stretch;
}

.tlh-news-layout-side {
    display: grid;
    gap: 1rem;
}

.tlh-news-side-card {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 1rem;
    min-height: 180px;
    padding: 0.75rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(14, 14, 16, 0.96), rgba(7, 7, 8, 0.98));
    border: 1px solid rgba(255, 115, 35, 0.16);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30);
    overflow: hidden;
}

.tlh-news-side-card__thumb {
    min-height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #070707;
}

.tlh-news-side-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tlh-news-side-card__content {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0.2rem 2.4rem 0.2rem 0;
}

.tlh-news-side-card__date {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
}

.tlh-news-side-card__date i,
.tlh-news-date i {
    color: rgba(255, 255, 255, 0.85);
    margin-right: 0.35rem;
}

.tlh-news-side-card__type {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--orange);
    font-family: 'Oswald', sans-serif;
    font-size: 0.96rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tlh-news-side-card h3 {
    margin: 0 0 0.55rem;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    line-height: 1.02;
    text-transform: uppercase;
    color: #f2f2f2;
}

.tlh-news-side-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.55;
    font-size: 1rem;
}

.tlh-news-side-card__arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    color: var(--orange);
    font-size: 1.15rem;
}

.tlh-news-featured-hero,
.tlh-news-featured-hero__content {
    min-height: 620px;
}

.tlh-news-featured-hero__body {
    max-width: 720px;
}

.tlh-news-featured-hero__eyebrow {
    display: block;
    margin-top: 0.8rem;
    margin-bottom: 1rem;
    color: #ff8a46;
    font-size: 1.05rem;
}

.tlh-news-featured-hero__title {
    max-width: 700px;
    font-size: clamp(2.9rem, 4.8vw, 5.4rem);
    line-height: 0.9;
    letter-spacing: 0.01em;
    word-break: break-word;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.tlh-news-featured-hero__text {
    max-width: 560px;
    font-size: 1.03rem;
}

.tlh-news-featured-hero__date {
    padding: 0.6rem 0.9rem;
    border-radius: 12px;
    background: rgba(8, 8, 8, 0.34);
    backdrop-filter: blur(5px);
}

.tlh-news-card {
    gap: 0.95rem;
}

.tlh-news-card .tlh-news-media {
    order: -1;
    margin-top: 0;
}

.tlh-news-card h3 {
    min-height: auto;
    margin-bottom: 0;
    font-size: 1.8rem;
    line-height: 1.04;
}

.tlh-news-card p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.tlh-news-date {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

@media (max-width: 1399.98px) {
    .tlh-news-layout {
        grid-template-columns: 1fr;
    }

    .tlh-news-layout-side {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tlh-news-side-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .tlh-news-side-card__thumb {
        aspect-ratio: 16 / 9;
    }

    .tlh-news-side-card h3 {
        font-size: 1.45rem;
    }
}

@media (max-width: 991.98px) {

    .tlh-news-featured-hero,
    .tlh-news-featured-hero__content {
        min-height: 520px;
    }

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

    .tlh-news-page-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 767.98px) {
    .tlh-news-hero-title-wrap {
        align-items: flex-start;
    }

    .tlh-news-hero-icon {
        width: 52px;
        height: 52px;
        font-size: 1.35rem;
    }

    .tlh-news-featured-hero,
    .tlh-news-featured-hero__content {
        min-height: 430px;
    }

    .tlh-news-featured-hero__title {
        font-size: 2.25rem;
        line-height: 0.98;
    }

    .tlh-news-featured-hero__text {
        font-size: 0.95rem;
        max-width: 100%;
    }
}


/* ===== NOTICIAS HOTFIX FINAL ===== */
.tlh-page-main.tlh-news-page {
    padding-top: calc(var(--tlh-navbar-offset) + 14px);
}

.tlh-page-hero-news {
    padding-top: 1.25rem;
}

.tlh-news-section {
    padding-top: 1rem;
}

.tlh-news-layout {
    grid-template-columns: minmax(0, 1.72fr) minmax(380px, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.tlh-news-layout-main,
.tlh-news-layout-side {
    min-width: 0;
}

.tlh-news-layout-side {
    gap: 1.1rem;
}

.tlh-news-side-card {
    grid-template-columns: 176px minmax(0, 1fr);
    min-height: 168px;
    align-items: stretch;
}

.tlh-news-side-card__thumb {
    height: 100%;
    min-height: 150px;
}

.tlh-news-side-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tlh-news-side-card__content {
    min-width: 0;
}

.tlh-news-side-card h3 {
    font-size: 1.45rem;
    line-height: 1.02;
    margin-bottom: 0.45rem;
}

.tlh-news-side-card p {
    font-size: 0.96rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tlh-news-featured-hero,
.tlh-news-featured-hero__content {
    min-height: 560px;
}

.tlh-news-featured-hero__title {
    font-size: clamp(2.6rem, 4.2vw, 4.6rem);
    max-width: 620px;
}

.tlh-news-featured-hero__text {
    max-width: 520px;
}

@media (max-width: 1399.98px) {
    .tlh-page-main.tlh-news-page {
        padding-top: calc(var(--tlh-navbar-offset) + 10px);
    }

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

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

@media (max-width: 767.98px) {
    .tlh-page-main.tlh-news-page {
        padding-top: calc(var(--tlh-navbar-offset) + 8px);
    }

    .tlh-news-hero-title-wrap {
        gap: 0.9rem;
    }

    .tlh-news-side-card {
        grid-template-columns: 1fr;
    }

    .tlh-news-side-card__thumb {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
}


/* ===== REDES SOCIAIS NO FOOTER ===== */
.tlh-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.tlh-footer-social {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.tlh-footer-social i {
    font-size: 1rem;
    line-height: 1;
}

.tlh-footer-social:hover {
    transform: translateY(-2px);
    color: #fff;
}

.tlh-footer-social[href*="discord.gg"]:hover,
.tlh-footer-social[aria-label="Discord"]:hover {
    background: rgba(88, 101, 242, 0.18);
    border-color: rgba(88, 101, 242, 0.32);
    box-shadow: 0 0 16px rgba(88, 101, 242, 0.24);
}

.tlh-footer-social[href*="youtube"]:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.26);
    box-shadow: 0 0 16px rgba(255, 0, 0, 0.24);
}

.tlh-footer-social[href*="twitch"]:hover {
    background: rgba(145, 70, 255, 0.18);
    border-color: rgba(145, 70, 255, 0.30);
    box-shadow: 0 0 16px rgba(145, 70, 255, 0.24);
}

.tlh-footer-social[href*="tiktok"]:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.16);
}

.tlh-footer-social[href*="instagram"]:hover {
    background: rgba(225, 48, 108, 0.18);
    border-color: rgba(225, 48, 108, 0.30);
    box-shadow: 0 0 16px rgba(225, 48, 108, 0.22);
}

.tlh-footer-social[href*="kick"]:hover {
    background: rgba(83, 252, 24, 0.18);
    border-color: rgba(83, 252, 24, 0.28);
    box-shadow: 0 0 16px rgba(83, 252, 24, 0.22);
}

.tlh-footer-social[href*="t.me"]:hover {
    background: rgba(0, 136, 204, 0.18);
    border-color: rgba(0, 136, 204, 0.30);
    box-shadow: 0 0 16px rgba(0, 136, 204, 0.22);
}

@media (max-width: 767.98px) {
    .tlh-footer-socials {
        justify-content: center;
    }
}

/* ===== NAVBAR TOTALMENTE CENTRALIZADO ===== */

/* container principal */
.tlh-navbar-shell {
    display: flex !important;
    align-items: center;
    justify-content: center !important;
    position: relative;
}

/* ajuste fino dos links */
.tlh-nav-pills .nav-link {
    padding: 0.5rem 0.7rem;
}

/* ===== NAVBAR CENTRALIZADO SÓ NO DESKTOP ===== */
@media (min-width: 992px) {
    .tlh-navbar-shell {
        display: flex !important;
        align-items: center;
        justify-content: center !important;
        position: relative;
    }

    .tlh-brand-wrap {
        position: absolute;
        left: 20px;
    }

    .tlh-navbar-actions {
        position: absolute;
        right: 20px;
        margin-left: 0 !important;
    }

    .tlh-nav-pills {
        margin: 0 auto !important;
        justify-content: center !important;
        gap: 0.3rem;
    }

    .tlh-nav-pills .nav-link {
        padding: 0.5rem 0.7rem;
    }
}

/* ===== MOBILE: VOLTA AO FLUXO NORMAL ===== */
@media (max-width: 991.98px) {
    .tlh-navbar-shell {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative;
    }

    .tlh-brand-wrap,
    .tlh-navbar-actions {
        position: static !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .tlh-navbar-collapse {
        justify-content: flex-start !important;
    }

    .tlh-nav-pills {
        margin: 0 !important;
        width: 100%;
        justify-content: flex-start !important;
        transform: none !important;
    }

    .tlh-navbar-actions {
        margin-left: 0 !important;
    }
}

/* ===== FIX MENU MOBILE BOOTSTRAP ===== */
@media (max-width: 991.98px) {
    #tlhNavbar.navbar-collapse.collapse:not(.show) {
        display: none !important;
    }

    #tlhNavbar.navbar-collapse.collapse.show {
        display: block !important;
    }

    #tlhNavbar.navbar-collapse.collapsing {
        display: block !important;
        overflow: hidden;
    }

    /* evita qualquer centralização/posição absoluta bagunçando o mobile */
    .tlh-navbar-shell {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .tlh-brand-wrap,
    .tlh-navbar-actions {
        position: static !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .tlh-navbar-collapse {
        width: 100%;
        margin-top: 1rem;
    }

    .tlh-nav-pills {
        width: 100%;
        margin: 0 !important;
        transform: none !important;
    }
}

/* ===== HOME MOBILE HOTFIX FINAL DEFINITIVO ===== */
@media (max-width: 991.98px) {

    /* hero em coluna real */
    .tlh-home-v2-hero-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 1rem !important;
    }

    /* texto do hero */
    .tlh-home-v2-copy {
        order: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
        margin: 0 auto !important;
        text-align: left !important;
    }

    .tlh-home-v2-title {
        max-width: 100% !important;
        margin: 0 0 0.85rem !important;
        font-size: clamp(2.5rem, 8vw, 3.4rem) !important;
        line-height: 0.95 !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
    }

    .tlh-home-v2-text {
        max-width: 100% !important;
        margin: 0 0 1rem !important;
        font-size: 1rem !important;
        line-height: 1.6 !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
    }

    /* painel centralizado de verdade */
    .tlh-home-v2-status-panel {
        order: 2 !important;
        width: min(100%, 360px) !important;
        max-width: 360px !important;
        margin: 0 auto !important;
        align-self: center !important;
        padding: 1.2rem 1rem !important;
    }

    /* trailer também centralizado */
    .tlh-home-v2-trailer {
        width: min(100%, 360px) !important;
        max-width: 360px !important;
        margin: 1rem auto 0 !important;
        align-self: center !important;
    }

    /* botões do hero */
    .tlh-home-v2-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    .tlh-home-v2-btn-primary,
    .tlh-home-v2-btn-secondary,
    .tlh-home-v2-panel-btn,
    .tlh-status-actions .btn {
        width: 100% !important;
        min-width: 0 !important;
    }

    /* linhas do painel */
    .tlh-home-v2-status-list {
        gap: 0.4rem !important;
    }

    .tlh-home-v2-status-row {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: space-between !important;
        gap: 0.75rem !important;
    }

    .tlh-home-v2-status-row span {
        font-size: 0.92rem !important;
    }

    .tlh-home-v2-status-row strong {
        max-width: 58% !important;
        font-size: 0.98rem !important;
        line-height: 1.25 !important;
        text-align: right !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
    }

    /* remove vazamento lateral do hero */
    .tlh-home-v2,
    .tlh-home-v2-hero,
    .tlh-home-v2-panels,
    .tlh-home-v2-panels-grid,
    .tlh-home-v2-news-panel {
        overflow-x: clip !important;
    }

    html,
    body {
        overflow-x: hidden !important;
    }

    /* seção abaixo mais compacta */
    .tlh-home-v2-panels {
        padding-top: 0.75rem !important;
        padding-bottom: 0.9rem !important;
    }

    .tlh-home-v2-panels-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.9rem !important;
        align-items: start !important;
    }

    .tlh-home-v2-news-panel {
        margin-bottom: 0 !important;
    }

    /* últimas notícias sem buraco exagerado */
    .tlh-home-v2-news-list {
        gap: 0.65rem !important;
    }

    .tlh-home-v2-news-item {
        margin-bottom: 0 !important;
    }

    /* reduz respiros gerais abaixo da home */
    .tlh-page-section,
    .tlh-home-mid,
    .tlh-news-section {
        padding-top: 0.9rem !important;
        padding-bottom: 0.9rem !important;
    }
}

/* ===== HOME HERO DESKTOP: TEXTO | TRAILER | STATUS ===== */
@media (min-width: 1400px) {
    .tlh-home-v2-hero-grid {
        display: grid !important;
        grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr) minmax(380px, 0.95fr) !important;
        align-items: center !important;
        gap: 1.6rem !important;
    }

    .tlh-home-v2-copy {
        grid-column: 1 !important;
        max-width: 560px !important;
        margin: 0 !important;
    }

    .tlh-home-v2-trailer-col {
        grid-column: 2 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 0 !important;
    }

    .tlh-home-v2-trailer-col .tlh-home-v2-trailer {
        width: 100% !important;
        max-width: 560px !important;
        margin: 0 auto !important;
    }

    .tlh-home-v2-status-panel {
        grid-column: 3 !important;
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 0 0 auto !important;
    }
}

/* telas médias: mantém o layout estável sem apertar */
@media (min-width: 992px) and (max-width: 1399.98px) {
    .tlh-home-v2-hero-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(360px, 460px) !important;
        align-items: center !important;
        gap: 1.4rem !important;
    }

    .tlh-home-v2-copy {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
    }

    .tlh-home-v2-trailer-col {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }

    .tlh-home-v2-status-panel {
        grid-column: 2 !important;
        grid-row: 2 !important;
    }

    .tlh-home-v2-trailer-col .tlh-home-v2-trailer {
        max-width: 460px !important;
        margin: 0 auto !important;
    }
}

/* mobile: preserva o hotfix que já ficou bom */
@media (max-width: 991.98px) {
    .tlh-home-v2-trailer-col {
        order: 2 !important;
        width: min(100%, 360px) !important;
        max-width: 360px !important;
        margin: 0 auto !important;
        align-self: center !important;
    }

    .tlh-home-v2-trailer-col .tlh-home-v2-trailer {
        width: 100% !important;
        max-width: 360px !important;
        margin: 1rem auto 0 !important;
    }

    .tlh-home-v2-status-panel {
        order: 3 !important;
    }
}

/* ===== MODAL DO TRAILER - FIX FINAL SEGURO ===== */
.tlh-trailer-modal {
    z-index: 3000 !important;
}

.tlh-trailer-modal .modal-dialog {
    width: min(1120px, calc(100vw - 2rem)) !important;
    max-width: min(1120px, calc(100vw - 2rem)) !important;
    margin: calc(var(--tlh-navbar-offset) + 10px) auto 1rem !important;
}

.tlh-trailer-modal .modal-content {
    position: relative !important;
    width: 100% !important;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(4, 4, 4, 0.99)) !important;
    border: 1px solid rgba(255, 115, 35, 0.18) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.62) !important;
}

.tlh-trailer-modal-body {
    padding: 0.9rem !important;
    background: #050505 !important;
}

.tlh-trailer-modal-frame {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #000 !important;
}

.tlh-trailer-modal-frame iframe {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    display: block !important;
}

.tlh-trailer-modal-close {
    position: absolute !important;
    top: 0.75rem !important;
    right: 0.75rem !important;
    z-index: 5 !important;
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    background: rgba(10, 10, 12, 0.86) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.22s ease !important;
}

.tlh-trailer-modal-close:hover {
    background: rgba(255, 115, 35, 0.20) !important;
    border-color: rgba(255, 115, 35, 0.34) !important;
    transform: translateY(-1px) !important;
}

@media (max-width: 767.98px) {
    .tlh-trailer-modal .modal-dialog {
        width: calc(100vw - 1rem) !important;
        max-width: calc(100vw - 1rem) !important;
        margin: calc(var(--tlh-navbar-offset) + 8px) auto 0.5rem !important;
    }

    .tlh-trailer-modal-body {
        padding: 0.55rem !important;
    }

    .tlh-trailer-modal-close {
        width: 38px !important;
        height: 38px !important;
        top: 0.55rem !important;
        right: 0.55rem !important;
        border-radius: 10px !important;
    }
}

.tlh-note-message,
.tlh-news-message {
    color: rgba(255, 255, 255, .86);
    line-height: 1.75;
    font-size: 1rem;
}

.tlh-patch-label {
    display: inline-block;
    margin-top: 0.8rem;
    color: #ffffff;
    font-weight: 800;
}

/* ===== DISCORD FLOAT FIX ===== */
.tlh-discord-float {
    position: fixed !important;
    right: 22px;
    bottom: 22px;
    z-index: 2500;

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

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

    background: #5865F2;
    color: #fff !important;

    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        0 14px 34px rgba(0, 0, 0, 0.45),
        0 0 22px rgba(88, 101, 242, 0.45);

    font-size: 1.55rem;
    text-decoration: none !important;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.tlh-discord-float i {
    line-height: 1;
}

.tlh-discord-float:hover {
    color: #fff !important;
    background: #6b76ff;
    transform: translateY(-3px) scale(1.06);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.55),
        0 0 30px rgba(88, 101, 242, 0.70);
}

@media (max-width: 767.98px) {
    .tlh-discord-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
        font-size: 1.35rem;
    }
}

.tlh-discord-float i {
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================
   TLH STEAM PROFILE NAVBAR — UPGRADE
   Cole no final do style.css
   ========================================================= */

.tlh-navbar-actions .tlh-steam-profile {
    min-height: 44px;
    max-width: 210px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 5px 10px 5px 5px;
    border-radius: 14px;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    text-decoration: none;
    transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.tlh-navbar-actions .tlh-steam-profile:hover {
    transform: translateY(-2px) scale(1.02);
    background: rgba(255, 115, 35, 0.10);
    border-color: rgba(255, 115, 35, 0.20);
    box-shadow: 0 0 16px rgba(255, 115, 35, 0.16);
}

.tlh-steam-avatar,
.tlh-steam-avatar-empty {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    object-fit: cover;
    flex: 0 0 34px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.tlh-steam-avatar-empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
}

.tlh-steam-profile-text {
    min-width: 0;
    display: grid;
    line-height: 1.1;
}

.tlh-steam-profile-text strong {
    max-width: 138px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    color: #ffffff;
}

.tlh-steam-profile-text em {
    margin-top: 3px;
    font-style: normal;
    font-family: 'Oswald', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffb27e;
}

.tlh-navbar-actions .tlh-btn-admin,
.tlh-navbar-actions .tlh-btn-discord,
.tlh-navbar-actions .tlh-btn-social,
.tlh-navbar-actions .tlh-btn-admin-logout {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    flex: 0 0 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 12px !important;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #ffffff !important;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease !important;
}

.tlh-navbar-actions .tlh-btn-admin i,
.tlh-navbar-actions .tlh-btn-discord i,
.tlh-navbar-actions .tlh-btn-social i,
.tlh-navbar-actions .tlh-btn-admin-logout i {
    font-size: 18px !important;
    line-height: 1 !important;
    color: inherit !important;
    opacity: 1 !important;
}

.tlh-navbar-actions .tlh-btn-admin:hover,
.tlh-navbar-actions .tlh-btn-discord:hover,
.tlh-navbar-actions .tlh-btn-social:hover,
.tlh-navbar-actions .tlh-btn-admin-logout:hover {
    transform: translateY(-2px) scale(1.05) !important;
}

.tlh-navbar-actions .tlh-btn-admin:hover {
    background: rgba(255, 115, 35, 0.18) !important;
    box-shadow: 0 0 14px rgba(255, 115, 35, 0.25) !important;
    color: #ffd7bf !important;
}

.tlh-navbar-actions .tlh-btn-admin-logout:hover {
    background: rgba(255, 80, 110, 0.14) !important;
    box-shadow: 0 0 14px rgba(255, 80, 110, 0.22) !important;
    color: #ffd4dc !important;
}

.tlh-navbar-actions .tlh-btn-discord:hover {
    background: rgba(88, 101, 242, 0.18) !important;
    box-shadow: 0 0 14px rgba(88, 101, 242, 0.25) !important;
    color: #cfd7ff !important;
}

@media (max-width: 991.98px) {
    .tlh-navbar-actions .tlh-steam-profile {
        width: 100%;
        max-width: none;
        justify-content: flex-start;
    }

    .tlh-steam-profile-text strong {
        max-width: 100%;
    }
}

/* ===== STEAM PROFILE NAVBAR ===== */
.tlh-steam-profile {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    min-height: 44px;
    padding: 5px 10px 5px 5px;

    border-radius: 14px;
    background: rgba(255, 115, 35, 0.10);
    border: 1px solid rgba(255, 115, 35, 0.18);

    color: #fff;
    text-decoration: none;

    transition: all 0.25s ease;
}

.tlh-steam-profile:hover {
    background: rgba(255, 115, 35, 0.18);
    box-shadow: 0 0 14px rgba(255, 115, 35, 0.24);
    transform: translateY(-2px);
    color: #fff;
}

.tlh-steam-avatar {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    object-fit: cover;
    flex: 0 0 34px;
}

.tlh-steam-avatar-empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
}

.tlh-steam-profile-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.tlh-steam-profile-text strong {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    color: #fff;
}

.tlh-steam-profile-text em {
    font-style: normal;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.66);
}

/* ===== NAVBAR AAA LAYOUT ===== */
@media (min-width: 992px) {
    .navbar.tlh-navbar .tlh-navbar-shell {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        align-items: center !important;
    }

    /* LOGO - esquerda */
    .navbar.tlh-navbar .tlh-brand-wrap {
        grid-column: 1;
        position: static !important;
    }

    /* MENU - centralizado REAL */
    .navbar.tlh-navbar .tlh-navbar-collapse {
        grid-column: 2;
        display: flex;
        justify-content: center;
    }

    .navbar.tlh-navbar .tlh-nav-pills {
        margin: 0 !important;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 8px;
    }

    /* AÇÕES (Steam / Discord / Admin) - direita */
    .navbar.tlh-navbar .tlh-navbar-actions {
        grid-column: 3;
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        position: static !important;
    }
}

/* ===== NAVBAR AJUSTE FINO FINAL ===== */
@media (min-width: 992px) {
    .navbar.tlh-navbar .tlh-navbar-shell {
        width: min(100% - 56px, 1680px) !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 390px 1fr 170px !important;
        align-items: center !important;
        column-gap: 1rem !important;
    }

    .navbar.tlh-navbar .tlh-brand-wrap {
        grid-column: 1 !important;
        justify-self: start !important;
        position: static !important;
    }

    .navbar.tlh-navbar .tlh-navbar-collapse {
        grid-column: 2 !important;
        justify-self: center !important;
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .navbar.tlh-navbar .tlh-nav-pills {
        margin: 0 auto !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        gap: 0.35rem !important;
    }

    .navbar.tlh-navbar .tlh-navbar-actions {
        grid-column: 3 !important;
        justify-self: end !important;
        position: static !important;
        margin: 0 !important;
    }

    .tlh-nav-link {
        transition: all 0.2s ease;
    }

    .tlh-nav-link:hover {
        transform: translateY(-1px);
    }
}

/* ===== AJUSTE FINO BOTÕES DO PAINEL (INDEX) ===== */

.tlh-home-v2-status-panel .tlh-home-v2-panel-btn,
.tlh-home-v2-status-panel .tlh-home-v2-actions .btn {
    width: 100%;
    height: 56px;

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

    border-radius: 10px;
}

/* deixa os dois de baixo alinhados e iguais */
.tlh-home-v2-status-panel .tlh-home-v2-actions {
    display: flex;
    gap: 10px;
}

.tlh-home-v2-status-panel .tlh-home-v2-actions .btn {
    flex: 1;
}

/* ===== INDEX: BOTÕES DO PAINEL RESPONSIVOS ===== */
.tlh-home-v2-status-panel .tlh-home-v2-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.75rem !important;
    width: 100% !important;
}

.tlh-home-v2-status-panel .tlh-home-v2-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 58px !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;

    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.tlh-home-v2-status-panel .tlh-home-v2-actions .btn i {
    flex: 0 0 auto !important;
}

/* quando o painel ficar estreito, empilha os botões */
@media (max-width: 1280px) {
    .tlh-home-v2-status-panel .tlh-home-v2-actions {
        grid-template-columns: 1fr !important;
    }
}

/* ===== BOTÕES DO PAINEL: brilho + leve lift (sem mudar cor) ===== */

.tlh-home-v2-status-panel .tlh-home-v2-panel-btn,
.tlh-home-v2-status-panel .tlh-home-v2-btn-secondary {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* efeito de brilho */
.tlh-home-v2-status-panel .tlh-home-v2-panel-btn::after,
.tlh-home-v2-status-panel .tlh-home-v2-btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

/* ativa brilho */
.tlh-home-v2-status-panel .tlh-home-v2-panel-btn:hover::after,
.tlh-home-v2-status-panel .tlh-home-v2-btn-secondary:hover::after {
    left: 120%;
}

/* leve lift */
.tlh-home-v2-status-panel .tlh-home-v2-panel-btn:hover,
.tlh-home-v2-status-panel .tlh-home-v2-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ===== FOOTER BOTTOM CENTER FIX — TLH SAFE ===== */
.tlh-footer .tlh-footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 0.35rem !important;
    text-align: center !important;
}

.tlh-footer .tlh-footer-copy,
.tlh-footer .tlh-footer-legal {
    width: 100% !important;
    max-width: 920px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.tlh-footer .tlh-footer-copy p,
.tlh-footer .tlh-footer-legal p {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.tlh-footer .tlh-footer-copy p {
    margin-bottom: 0.35rem !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 500 !important;
}

.tlh-footer .tlh-footer-brand-inline {
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: 0.35px !important;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.16) !important;
}

.tlh-footer .tlh-footer-link {
    display: inline-block;
    margin-top: 0.25rem;
    color: #ff8a46 !important;
    font-weight: 700;
    text-decoration: none !important;
    transition: color 0.22s ease, text-shadow 0.22s ease;
}

.tlh-footer .tlh-footer-link:hover {
    color: #ffb27e !important;
    text-shadow: 0 0 8px rgba(255, 115, 35, 0.28);
}

/* ================================
   TLH MODS PAGE
================================ */

.tlh-mods-page {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
    color: #fff;
}

.tlh-mods-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            rgba(8, 12, 24, 0.82),
            rgba(5, 8, 18, 0.92)
        ),
        url('/assets/img/backgrounds/hero-survival.jpg') center/cover no-repeat;

    filter: brightness(0.45);
}

.tlh-mods-page::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;

    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size: 42px 42px;
    opacity: .15;
    pointer-events: none;
}

.tlh-mods-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 120px 7% 80px;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78),
            rgba(0,0,0,.40),
            rgba(0,0,0,.82)
        ),
        url('/assets/img/backgrounds/hero-survival.jpg') center/cover no-repeat;

    overflow: hidden;
}

.tlh-mods-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .18;
    pointer-events: none;
}

.tlh-mods-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.tlh-mods-kicker,
.tlh-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f59e0b;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tlh-mods-hero h1 {
    margin: 18px 0;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    line-height: .95;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 0 28px rgba(192,0,0,.45);
}

.tlh-mods-hero p {
    max-width: 680px;
    color: #d1d5db;
    font-size: 1.08rem;
    line-height: 1.7;
}

.tlh-mods-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.tlh-mods-btn-primary,
.tlh-mods-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
}

.tlh-mods-btn-primary {
    background: linear-gradient(135deg, #c00000, #7f0000);
    color: #fff;
    box-shadow: 0 0 24px rgba(192,0,0,.35);
}

.tlh-mods-btn-secondary {
    border: 1px solid rgba(255,255,255,.18);
    color: #e5e7eb;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(8px);
}

.tlh-mods-btn-primary:hover,
.tlh-mods-btn-secondary:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
}

.tlh-mods-wrap {
    width: min(1400px, 92%);
    margin: 0 auto;
    padding: 70px 0 90px;
}

.tlh-mods-header {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    align-items: end;
    margin-bottom: 34px;
}

.tlh-mods-header h2 {
    margin: 8px 0 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
    text-transform: uppercase;
}

.tlh-mods-header p {
    max-width: 520px;
    color: #a1a1aa;
    line-height: 1.6;
}

.tlh-mods-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.tlh-mod-card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(0,0,0,.38);
    transition: .25s ease;
}

.tlh-mod-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245,158,11,.45);
    box-shadow: 0 24px 70px rgba(0,0,0,.55);
}

.tlh-mod-card.is-featured {
    border-color: rgba(192,0,0,.55);
}

.tlh-mod-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(192,0,0,.92);
    color: #fff;
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 0 22px rgba(192,0,0,.55);
}

.tlh-mod-img {
    height: 190px;
    background: #111;
    overflow: hidden;
}

.tlh-mod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .86;
    transition: .35s ease;
}

.tlh-mod-card:hover .tlh-mod-img img {
    transform: scale(1.06);
    opacity: 1;
}

.tlh-mod-body {
    padding: 22px;
}

.tlh-mod-category {
    display: inline-block;
    margin-bottom: 10px;
    color: #f59e0b;
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.tlh-mod-body h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    font-weight: 900;
}

.tlh-mod-body p {
    min-height: 76px;
    color: #b8b8c0;
    line-height: 1.55;
    font-size: .95rem;
}

.tlh-mod-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.10);
}

.tlh-mod-id {
    color: #94a3b8;
    font-size: .78rem;
    font-weight: 700;
}

.tlh-mod-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: .85rem;
    font-weight: 900;
    text-decoration: none;
}

.tlh-mod-link:hover {
    color: #f59e0b;
}

@media (max-width: 1200px) {
    .tlh-mods-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .tlh-mods-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tlh-mods-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .tlh-mods-hero {
        min-height: auto;
        padding: 100px 24px 70px;
    }

    .tlh-mods-actions {
        flex-direction: column;
    }

    .tlh-mods-btn-primary,
    .tlh-mods-btn-secondary {
        justify-content: center;
        width: 100%;
    }

    .tlh-mods-grid {
        grid-template-columns: 1fr;
    }

    .tlh-mod-body p {
        min-height: auto;
    }
}

/* Fundo geral da página de mods */
.tlh-mods-page {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
    color: #fff;
    background: transparent !important;
}

.tlh-mods-page::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            rgba(8, 12, 24, 0.82),
            rgba(5, 8, 18, 0.94)
        ),
        url('/assets/img/backgrounds/hero-survival.jpg') center/cover no-repeat;

    filter: brightness(0.55);
}

/* Remove o bloco escuro que está tampando o fundo */
.tlh-mods-wrap {
    position: relative;
    z-index: 1;
    background: transparent !important;
}

/* Caso tenha section/container escuro herdado */
.tlh-mods-page section {
    background-color: transparent !important;
}

/* ===== TLH MODS PAGE BACKGROUND FIX FINAL ===== */

.tlh-mods-page {
    position: relative;
    min-height: 100vh;
    color: #fff;

    background:
        linear-gradient(
            rgba(8, 12, 24, 0.86),
            rgba(5, 8, 18, 0.94)
        ),
        url('/assets/img/backgrounds/hero-survival.jpg') center top / cover fixed no-repeat !important;
}

/* remove pseudo fundo antigo que estava ficando atrás do body */
.tlh-mods-page::before {
    display: none !important;
}

/* camada de grid por cima do fundo */
.tlh-mods-page::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);

    background-size: 42px 42px;
    opacity: .12;
}

/* conteúdo sempre acima do fundo */
.tlh-mods-hero,
.tlh-mods-wrap {
    position: relative;
    z-index: 1;
}

/* deixa a área dos mods respirar o fundo */
.tlh-mods-wrap {
    background: transparent !important;
}