/* =================================================================
   FUTI — Várzea Tycoon · Landing Page Teaser v004
   Estética "CRT Green" inspirada na UI do jogo.
   Mescla: layout 100vh sem rolagem da v003 + refinamentos da v002.
   (Fonte carregada via <link> no HTML — @import bloqueia a renderização)
   ================================================================= */

:root {
    --bg-dark: #0a0f0d;
    --panel-bg: #111a14;
    --panel-bg-soft: #1a2620;
    --text-main: #e0f2e9;
    --text-soft: #88a392;
    --accent-primary: #00ff66;
    --accent-primary-dim: #00a844;
    --accent-blue: #00e5ff;
    --accent-red: #ff3366;
    --accent-yellow: #ffeb3b;
    --border-color: #1a2f22;
    --font-stack: 'Share Tech Mono', 'Courier New', monospace;
}

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

body {
    font-family: var(--font-stack);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* ================================================================
   MAIN GRID — uma linha só no desktop; o hero absorve a altura
   livre (flex-grow no container da imagem) e a página cabe em
   100vh sem barra de rolagem.
   ================================================================ */
.game-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    flex: 1;
}

/* Mobile: o hero (e o CTA) vêm primeiro */
.hero-panel { order: -1; }

@media (min-width: 1024px) {
    .main-grid {
        grid-template-columns: 290px 1.618fr 360px;
        align-items: stretch;
    }

    .hero-panel { order: 0; grid-column: 2; }
    .identity-panel { grid-column: 1; }
    .col-stack { grid-column: 3; }
}

/* Coluna 3: Tesouraria + Resenha empilhadas */
.col-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.col-stack .community-panel { flex: 1; }

/* ================================================================
   PANEL BASE
   ================================================================ */
.panel {
    background-color: var(--panel-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}

.panel:hover {
    box-shadow: 0 6px 20px rgba(0,255,102,0.05);
}

.panel h2 {
    color: var(--accent-blue);
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 8px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.panel-subtitle {
    color: var(--accent-primary);
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 5px;
    margin-top: 10px;
}

/* ================================================================
   MARCA (Painel de Identidade)
   FUTI é a marca; "Várzea Tycoon" é o subtítulo.
   ================================================================ */
.brand-title {
    color: var(--accent-blue);
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.brand-subtitle {
    color: var(--accent-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 4px;
}

/* Versão clicável: abre o modal de Patch Notes */
.version-tag {
    background: none;
    border: none;
    font-family: inherit;
    color: var(--text-soft);
    font-size: 0.85rem;
    margin-bottom: 10px;
    cursor: pointer;
    text-align: left;
    padding: 0;
    text-decoration: underline dotted;
    text-underline-offset: 3px;
}

.version-tag:hover { color: var(--accent-primary); }

/* ================================================================
   COLUNA CENTRAL: O HERO (carrossel + overlay)
   ================================================================ */
.hero-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border: 2px solid var(--accent-primary-dim);
    padding-top: 15px;
}

.hero-image-container {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 14px;
    position: relative;
    min-height: 220px;
    background: #000;
    flex-grow: 1;
}

/* Mobile: container não estica (flex), garante altura útil */
@media (max-width: 1023px) {
    .hero-image-container { min-height: 300px; }
}

.hero-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s ease-out;
    transform: scale(1);
}

.hero-image.active {
    opacity: 1;
    transform: scale(1.05);
}

.hero-image-container:hover .hero-image.active {
    transform: scale(1.08);
}

.scanline {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 4px, 3px 100%;
    pointer-events: none;
    z-index: 10;
}

.hero-title {
    font-size: clamp(1.6rem, 5vw, 2.3rem);
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-shadow: 0 0 10px rgba(0,255,102,0.3);
}

.hero-subtitle-overlay {
    position: absolute;
    top: 16px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 20;
    padding: 0 20px;
}

.hero-subtitle-overlay span {
    background-color: rgba(10, 15, 13, 0.85);
    color: var(--text-main);
    padding: 4px 10px;
    font-size: 1rem;
    line-height: 1.6;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* Frase do overlay: entra rápido e "aterrissa" devagar (easeOutExpo) */
.frase-anim {
    animation: frase-pousa 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes frase-pousa {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-epic-copy {
    color: var(--accent-yellow);
    font-size: 1.05rem;
    margin-bottom: 16px;
    font-weight: bold;
    padding: 10px;
    border: 1px dashed var(--accent-yellow);
    background: rgba(255, 235, 59, 0.05);
    border-radius: 4px;
    transition: opacity 0.6s ease;
}

/* Estado de fade da citação durante a troca */
.hero-epic-copy.apagada { opacity: 0; }

.hero-epic-copy cite {
    display: block;
    margin-top: 6px;
    color: var(--text-soft);
    font-size: 0.85rem;
    font-style: normal;
    font-weight: normal;
}

.cta-button {
    background-color: var(--accent-primary);
    color: var(--bg-dark);
    border: 2px solid var(--accent-primary);
    padding: 14px 32px;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(0,255,102,0.4);
    position: relative;
    overflow: hidden;
    animation: cta-pulsa 2s ease-in-out infinite;
}

/* Brilho pulsante pra chamar o boleiro pro CTA */
@keyframes cta-pulsa {
    0%, 100% { box-shadow: 0 0 10px rgba(0,255,102,0.3); }
    50% { box-shadow: 0 0 30px rgba(0,255,102,0.8), 0 0 50px rgba(0,255,102,0.25); }
}

.cta-button:hover {
    background-color: var(--bg-dark);
    color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0,255,102,0.6);
    animation: none; /* no hover, o brilho fixo do hover assume */
}

.cta-button:active {
    transform: translateY(1px);
}

/* Micro-animation for CTA */
.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}
.cta-button:hover::after {
    left: 100%;
    opacity: 1;
}

.cta-note {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-top: 8px;
}

/* ================================================================
   MOCKUP COLUNAS LATERAIS (Identidade e Economia)
   ================================================================ */
.mock-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.mock-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255,255,255,0.02);
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    cursor: default;
    transition: background 0.2s, border-color 0.2s;
}

.mock-item:hover {
    background-color: rgba(0,255,102,0.05);
    border-color: var(--accent-primary-dim);
}

/* A vaga do elenco é clicável: abre a inscrição do alpha */
.mock-item-cta {
    width: 100%;
    font-family: inherit;
    color: var(--text-main);
    cursor: pointer;
}

.mock-item-cta:hover {
    border-color: var(--accent-primary);
    background-color: rgba(0,255,102,0.08);
}

.mock-item .badge {
    background: var(--panel-bg-soft);
    border: 1px solid var(--border-color);
    padding: 2px 6px;
    border-radius: 3px;
    color: var(--accent-blue);
    font-weight: bold;
}

.player-status { font-size: 0.8rem; }
.player-status.is-injured { color: var(--accent-red); }
.player-status.ovr-mid { color: var(--accent-yellow); }
.player-status.ovr-low { color: var(--accent-blue); }
.player-status.vaga-status { color: var(--accent-primary); }

.tag-positive { color: var(--accent-primary); font-weight: bold; }
.tag-blocked { color: var(--accent-red); font-weight: bold; }
.tag-rare { color: var(--accent-yellow); font-weight: bold; }

.blinking-cursor {
    display: inline-block;
    width: 10px;
    height: 1.2rem;
    background-color: var(--accent-primary);
    vertical-align: middle;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ================================================================
   GLITCH (intermitente, sem fundo opaco — pisca a cada ~5s)
   ================================================================ */
.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

.glitch-text::before {
    color: var(--accent-red);
    animation: glitch-shift-a 5s steps(1, end) infinite;
}

.glitch-text::after {
    color: var(--accent-blue);
    animation: glitch-shift-b 5s steps(1, end) infinite;
}

@keyframes glitch-shift-a {
    0%, 100% { opacity: 0; transform: none; clip-path: inset(0 0 0 0); }
    92% { opacity: 0.9; transform: translate(-3px, 1px); clip-path: inset(15% 0 55% 0); }
    94% { opacity: 0.9; transform: translate(2px, -1px); clip-path: inset(60% 0 10% 0); }
    96% { opacity: 0; }
}

@keyframes glitch-shift-b {
    0%, 100% { opacity: 0; transform: none; clip-path: inset(0 0 0 0); }
    91% { opacity: 0.9; transform: translate(3px, -1px); clip-path: inset(50% 0 25% 0); }
    93% { opacity: 0.9; transform: translate(-2px, 1px); clip-path: inset(5% 0 70% 0); }
    95% { opacity: 0; }
}

/* ================================================================
   STATUS OVERVIEW (Estilo Aba Clube)
   ================================================================ */
.club-status {
    margin-top: auto;
    padding-top: 12px;
}

.club-status-title {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-bottom: 5px;
}

.stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
    margin-top: 8px;
}

.status-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    transition: border-color 0.2s, background 0.2s;
}

.status-card:hover {
    border-color: var(--accent-blue);
    background: rgba(0,229,255,0.05);
}

.status-label {
    font-size: 0.8rem;
    color: var(--text-soft);
    line-height: 1.3;
}

.status-value {
    font-size: 0.85rem;
    font-weight: bold;
    line-height: 1.2;
    color: var(--accent-blue);
}

.status-value.value-red { color: var(--accent-red); }
.status-value.value-green { color: var(--accent-primary); }
.status-value.value-yellow { color: var(--accent-yellow); }

/* ================================================================
   TESOURARIA
   ================================================================ */
.treasury-box {
    background: var(--panel-bg-soft);
    border: 1px solid var(--border-color);
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 12px;
}

.treasury-label {
    font-size: 0.8rem;
    color: var(--text-soft);
}

.money-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-primary);
}

/* Saldo no vermelho fica... vermelho. */
.money-value.negative { color: var(--accent-red); }

/* ================================================================
   PATCH NOTES (Changelog fake — dentro do modal de versionamento)
   ================================================================ */
.changelog-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.changelog-item {
    font-size: 0.85rem;
    line-height: 1.5;
    padding: 8px 10px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-main);
    text-align: left;
}

.changelog-item .ver {
    color: var(--accent-blue);
    font-weight: bold;
    margin-right: 6px;
}

/* ================================================================
   COMUNIDADE / RESENHA (Contador + Redes)
   ================================================================ */
.counter-box {
    text-align: center;
    padding: 12px 10px;
    background: var(--panel-bg-soft);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 10px;
}

.counter-number {
    font-size: 1.8rem;
    color: var(--accent-primary);
    font-weight: bold;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0,255,102,0.3);
}

.counter-label {
    font-size: 0.85rem;
    color: var(--text-main);
    margin-top: 4px;
}

.counter-warning {
    font-size: 0.8rem;
    color: var(--accent-yellow);
    margin-top: 6px;
}

/* "INSCREVA-SE" dentro do aviso do contador: abre o modal de cadastro */
.inline-cta {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: bold;
    color: var(--accent-primary);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.inline-cta:hover {
    color: var(--accent-primary-dim);
    text-shadow: 0 0 8px rgba(0, 255, 102, 0.4);
}

/* Feed do caderninho: inscrições simuladas subindo no painel Resenha */
.feed-title {
    font-size: 0.75rem;
    color: var(--text-soft);
    opacity: 0.8;
    margin-bottom: 4px;
    text-align: left;
}

.feed-box {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* novos entram embaixo, antigos sobem e saem */
    gap: 4px;
    /* basis 0 + min-height explícito: o feed absorve a sobra de altura
       da coluna em vez de empurrá-la (o excesso de itens é clipado) */
    flex: 1 1 0;
    min-height: 96px;
    max-height: 180px;
    overflow: hidden;
    margin-bottom: 10px;
    padding: 6px 8px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.feed-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--text-soft);
    text-align: left;
    animation: feed-entra 0.45s ease-out;
}

.feed-item b { color: var(--text-main); }

.feed-item .feed-ico { font-weight: bold; flex-shrink: 0; }
.feed-ok .feed-ico { color: var(--accent-primary); }
.feed-no .feed-ico { color: var(--accent-red); }

/* Inscrição real (de quem acabou de se cadastrar): destaque dourado */
.feed-item.feed-real {
    color: var(--text-main);
}

.feed-item.feed-real b {
    color: var(--accent-yellow);
    text-shadow: 0 0 6px rgba(255, 235, 59, 0.45);
}

/* Barrado: riscado do caderninho */
.feed-no { opacity: 0.75; }
.feed-no b {
    text-decoration: line-through;
    text-decoration-color: var(--accent-red);
}

@keyframes feed-entra {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contador pulsa quando o feed mexe nele */
.counter-number span.pulsa {
    display: inline-block;
    animation: contador-pulsa 0.4s ease-out;
}

@keyframes contador-pulsa {
    0% { transform: scale(1); }
    40% { transform: scale(1.18); }
    100% { transform: scale(1); }
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.social-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    background: rgba(255,255,255,0.02);
    transition: background 0.2s, border-color 0.2s;
}

.social-link:hover {
    border-color: var(--accent-primary-dim);
    background: rgba(0,255,102,0.05);
}

/* Rede ainda não configurada: item apagado, sem hover, com ✗ */
.social-link-off,
.social-link-off:hover {
    border-color: var(--border-color);
    background: rgba(255,255,255,0.02);
    cursor: not-allowed;
    opacity: 0.6;
}

.social-x {
    color: var(--accent-red);
    font-weight: bold;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer-credits {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-soft);
    opacity: 0.7;
}

.footer-credits a {
    color: var(--text-soft);
}

/* Botão com cara de link (Patch Notes no rodapé) */
.link-button {
    background: none;
    border: none;
    font-family: inherit;
    font-size: inherit;
    color: var(--text-soft);
    cursor: pointer;
    padding: 0;
    text-decoration: underline dotted;
    text-underline-offset: 3px;
}

.link-button:hover { color: var(--accent-primary); }

/* ================================================================
   MODAIS E FORMULÁRIOS
   ================================================================ */
.modal {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.85);
    z-index: 1000;
    display: flex; justify-content: center; align-items: center;
    padding: 12px;
}
.modal[hidden] { display: none; }

.modal-content {
    background-color: var(--panel-bg);
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    width: 100%;
    max-width: 480px;
    max-height: 95vh;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    position: relative;
}

.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 12px; margin-bottom: 16px;
}

.modal-header h2 {
    color: var(--accent-primary);
    margin: 0;
    padding: 0;
    border: none;
}

.modal-intro {
    color: var(--text-soft);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.close-btn {
    background: none; border: none;
    color: var(--accent-red);
    font-size: 2rem;
    cursor: pointer; line-height: 1;
    padding: 0 8px;
}

/* Honeypot: fora da tela pra humanos, presente no DOM pra bots */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-group {
    margin-bottom: 16px;
    text-align: left;
}

.form-group label {
    display: block;
    color: var(--text-soft);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.retro-input {
    width: 100%; box-sizing: border-box;
    background: var(--panel-bg-soft);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 4px; padding: 10px 12px;
    font-family: inherit; font-size: 1rem;
    transition: border-color 0.2s;
}

.retro-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 5px rgba(0,255,102,0.2);
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-dark);
    font-weight: bold;
    border: 2px solid var(--accent-primary);
    padding: 12px;
    width: 100%;
    font-family: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.1s, color 0.1s;
    text-transform: uppercase;
    margin-top: 10px;
}

.btn-primary:hover {
    background: var(--accent-primary-dim);
    border-color: var(--accent-primary-dim);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: wait;
}

.form-error {
    color: var(--accent-red);
    font-size: 0.85rem;
    margin: 10px 0;
}

.form-success {
    text-align: center;
    padding: 20px 0;
}

.success-title {
    color: var(--accent-primary);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.lgpd-note {
    font-size: 0.8rem;
    color: var(--text-soft);
    margin-top: 14px;
    text-align: center;
    opacity: 0.8;
}

/* ================================================================
   MODO COMPACTO — desktop com pouca altura (ex.: 1280x720):
   aperta espaçamentos pra manter a página em 100vh sem rolagem.
   ================================================================ */
@media (min-width: 1024px) and (max-height: 780px) {
    .game-container { padding: 12px 20px; }
    .main-grid { gap: 12px; }
    .col-stack { gap: 12px; }
    .panel { padding: 12px; }
    .panel h2 { margin-bottom: 8px; padding-bottom: 6px; font-size: 1.1rem; }
    .mock-list { gap: 6px; margin-top: 8px; }
    .mock-item { padding: 6px 10px; }
    .treasury-box { padding: 8px; margin-bottom: 10px; }
    .money-value { font-size: 1.3rem; }
    .counter-box { padding: 8px; margin-bottom: 8px; }
    .counter-number { font-size: 1.5rem; }
    .counter-warning { margin-top: 4px; }
    .feed-title { display: none; }
    .feed-box { min-height: 48px; margin-bottom: 8px; }
    .social-link { padding: 7px 10px; }
    .hero-title { margin-bottom: 10px; }
    .hero-epic-copy { margin-bottom: 12px; padding: 8px; font-size: 1rem; }
    .cta-button { padding: 12px 28px; font-size: 1.05rem; }
    .footer-credits { margin-top: 10px; }
}

/* ================================================================
   ACESSIBILIDADE: movimento reduzido
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .glitch-text::before,
    .glitch-text::after {
        display: none;
    }

    .blinking-cursor {
        animation: none;
    }
}
