:root {
  /* PALETA APROVADA - SIMBAproduz */
  --simba-pink: #F2059F;
  --simba-blue: #05AFF2;
  --simba-purple: #260259;
  --bg-core: #05040A;
  --bg-card: #0D0D0D;
  --text-white: #F5F3FF;
  
  /* VARIAVEIS DE EFEITOS */
  --glass: rgba(38, 2, 89, 0.3); /* Baseado no Roxo Simba */
  --border-dim: rgba(255, 255, 255, 0.08);
  --neon-shadow: 0 0 10px var(--simba-pink), 0 0 20px var(--simba-purple);
  --scan-color: rgba(5, 175, 242, 0.03); /* Baseado no Azul Simba */
}

/* ============================
   GLOBAL & RESETS
   ============================ */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--simba-pink) var(--bg-core);
    height: 100%;
}
body {
    background-color: var(--bg-core);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    margin: 0; padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex; justify-content: center;
}

/* Fonte estilo 'Terminal/Code' para detalhes */
.console-log, .reference-date, .label, .digit-sep, .input-prefix, .cmd-block, .news-type {
    font-family: 'Share Tech Mono', monospace;
}
/* Fonte Títulos Impactantes */
h1, h2, h3, .btn-text, .scramble-text {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

/* ============================
   EFEITOS DE FUNDO (ATMOSFERA)
   ============================ */
/* 1. CRT Scanlines */
.crt-overlay {
    position: fixed; inset: 0; z-index: 90; pointer-events: none;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1));
    background-size: 100% 4px;
    animation: scanmove 60s linear infinite; opacity: 0.6;
}
.vignette {
    position: fixed; inset: 0; z-index: 91; pointer-events: none;
    background: radial-gradient(circle, transparent 60%, rgba(0,0,0,0.8) 100%);
}
/* 2. Logo Gigante Pulsando no fundo */
.bg-backdrop-zomboid {
    position: fixed; top: 50%; left: 50%; width: 92%; height: 92%;
    transform: translate(-50%, -50%);
    background: url('../img/logozomboid.png') center/contain no-repeat;
    opacity: 0.08; z-index: 0; pointer-events: none;
    animation: breatheDeep 10s ease-in-out infinite;
    filter: blur(3px) grayscale(80%) sepia(20%) hue-rotate(240deg); /* Puxando pro roxo */
}
/* 3. Canvas Particulas (controlado via JS) */
#particle-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none; opacity: 0.4;
}

/* 4. Mouse Futurista */
.cursor-glow {
    position: fixed; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(242, 5, 159, 0.15), transparent 70%);
    transform: translate(-50%, -50%); pointer-events: none; z-index: 2; mix-blend-mode: screen;
    transition: width 0.2s, height 0.2s;
}

/* ============================
   LAYOUT WRAPPER
   ============================ */
.page-wrapper {
    position: relative; z-index: 10;
    width: 100%; max-width: 1200px;
    padding: 30px 20px 100px 20px;
    display: flex; flex-direction: column; gap: 40px;
}

/* ============================
   HEADER / HUD
   ============================ */
.top-bar {
    display: flex; justify-content: space-between; align-items: center;
    border-bottom: 1px solid var(--border-dim);
    padding-bottom: 20px;
    position: relative;
}
/* Brilho na linha inferior */
.top-bar::after {
    content: ''; position: absolute; bottom: -1px; left: 0; width: 100px; height: 2px;
    background: var(--simba-blue);
    box-shadow: 0 0 15px var(--simba-blue);
    animation: traverseLine 5s linear infinite alternate;
}

.brand-group { display: flex; align-items: center; gap: 20px; }
.logo-simba { height: 45px; filter: drop-shadow(0 0 8px rgba(242, 5, 159, 0.5)); transition: transform 0.3s;}
.logo-wrapper:hover .logo-simba { transform: scale(1.05) skew(-2deg); }

.brand-info {
    display: flex; align-items: center; gap: 10px;
    background: rgba(38, 2, 89, 0.4); padding: 5px 12px;
    border: 1px solid rgba(242, 5, 159, 0.3); border-radius: 4px;
}
.status-led {
    width: 8px; height: 8px; background: #00ff41; border-radius: 50%;
    box-shadow: 0 0 10px #00ff41; animation: blink 1.5s infinite;
}
.brand-badge { color: var(--simba-blue); font-size: 12px; letter-spacing: 1px; }

.social-menu { display: flex; gap: 8px; }
.social-icon {
    width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-dim); background: rgba(0,0,0,0.4); border-radius: 8px;
    transition: all 0.2s; position: relative; overflow: hidden;
    --brand-color: rgba(0,0,0,0.4); --icon-src: none;
    box-shadow: 0 0 10px rgba(2, 89, 23, 0.0);
}
.social-icon::after {
    content: "";
    position: absolute;
    width: 18px; height: 18px;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.75);
    mask: var(--icon-src) center/contain no-repeat;
    -webkit-mask: var(--icon-src) center/contain no-repeat;
    transition: background 0.2s ease, filter 0.2s ease;
    z-index: 1;
}
/* Hover: Cyberpunk fill */
.social-icon:hover {
    border-color: #71D98A;
    box-shadow: 0 0 15px rgba(113, 217, 138, 0.65), 0 0 25px rgba(113, 217, 138, 0.35);
    transform: translateY(-2px);
    background: var(--brand-color) !important; /* brand solid fill under the existing green glow */
}
.social-icon:hover::after {
    background: var(--brand-color); /* colorize the glyph itself */
    filter: drop-shadow(0 0 6px rgba(113,217,138,0.9));
}
.social-icon[aria-label="YouTube"], .social-icon.youtube { --brand-color: #FF0033; --icon-src: url('../img/youtube.png'); }   /* YouTube brand fill */
.social-icon[aria-label="Twitch"], .social-icon.twitch { --brand-color: #9146FF; --icon-src: url('../img/twitch.png'); }     /* Twitch brand fill */
.social-icon[aria-label="Kick"], .social-icon.kick { --brand-color: #00E701; --icon-src: url('../img/kick.png'); }         /* Kick brand fill */
.social-icon[aria-label="Instagram"], .social-icon.instagram { --brand-color: #E1306C; --icon-src: url('../img/instagram.png'); } /* Instagram brand fill */
.social-icon[aria-label="Discord"], .social-icon.discord { --brand-color: #5865F2; --icon-src: url('../img/discord.png'); }   /* Discord brand fill */
.social-icon img { width: 18px; opacity: 0; pointer-events: none; } /* keep DOM image for fallback but hide it visually */

/* Hero Text Typer */
.hero-status { margin-bottom: px; }
.console-log { font-size: 14px; color: #444; margin-bottom: 5px; opacity: 0.7; }
.hero-typer {
    font-size: 24px; color: var(--text-white); margin: 0;
    min-height: 1.2em; border-right: 3px solid var(--simba-pink);
    animation: blinkBorder 0.8s infinite;
}

/* ============================
   CONTADORES (HOLOGRAM CARDS)
   ============================ */
.counters-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; perspective: 1000px; }

/* Estilo Base Card */
.counter-card {
    position: relative; background: rgba(13, 13, 13, 0.8);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 12px;
    padding: 18px 25px 25px; transform-style: preserve-3d;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}
/* Reflexo 'vidro' */
.holo-reflection {
    position: absolute; inset: 0; background: linear-gradient(125deg, rgba(255,255,255,0.03) 0%, transparent 40%);
    pointer-events: none; z-index: 1; border-radius: 12px;
}

/* Efeito Highlight Card Principal */
.highlight-card {
    background: linear-gradient(150deg, rgba(38, 2, 89, 0.6) 0%, rgba(9, 12, 24, 0.9) 40%, rgba(5, 175, 242, 0.2) 100%);
    border-color: rgba(242, 5, 159, 0.4);
    background-size: 140% 140%;
    overflow: hidden;
}
.highlight-card::before {
    content: "";
    position: absolute;
    inset: -20%;
    border-radius: inherit;
    background:
        radial-gradient(circle at 20% 25%, rgba(5, 175, 242, 0.18), transparent 45%),
        radial-gradient(circle at 80% 35%, rgba(242, 5, 159, 0.18), transparent 38%),
        radial-gradient(circle at 40% 70%, rgba(5, 175, 242, 0.12), transparent 42%);
    filter: blur(12px);
    opacity: 0.55;
    animation: holoDrift 22s ease-in-out infinite;
    pointer-events: none;
}
.highlight-card::after {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: inherit;
    background: radial-gradient(ellipse at center, rgba(5, 175, 242, 0.2), rgba(38, 2, 89, 0.12) 50%, transparent 70%);
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    z-index: 0;
    filter: blur(6px);
}
.highlight-card:hover::after {
    opacity: 0.35;
    transform: scale(1.02);
}
.highlight-card > * { position: relative; z-index: 1; }
.card-glow-border {
    position: absolute; inset: -1px; z-index: -1; border-radius: 12px;
    background: linear-gradient(45deg, var(--simba-pink), transparent, var(--simba-blue));
    background-size: 200% 200%; animation: borderRotate 4s linear infinite; opacity: 0.5;
}

/* Headers */
.card-head { margin-bottom: 20px; transform: translateZ(20px); }
.card-head h2 { font-size: 18px; margin: 2px 0 6px; color: var(--text-white); text-shadow: 0 0 5px rgba(255,255,255,0.25); transition: 0.3s; letter-spacing: 0.4px; }
/* Efeito de glitch RGB no hover do texto */
.counter-card:hover h2 { color: var(--simba-pink); text-shadow: 2px 0 var(--simba-blue), -2px 0 var(--simba-purple); }

.data-line { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--simba-blue); }
.icon-pulse { animation: blink 1s infinite; }
.reference-date { font-size: 12px; color: #888; }

/* Display Grande */
.counter-display { display: flex; align-items: center; justify-content: center; transform: translateZ(40px); }
.digit-sep { font-size: 30px; color: #333; margin: 0 10px; animation: blink 2s infinite; }
.time-slot { display: flex; flex-direction: column; align-items: center; }
.digit {
    font-family: 'Oswald', sans-serif; font-size: 52px; font-weight: 700; line-height: 1;
    background: linear-gradient(to bottom, #fff, #bbb);
    -webkit-background-clip: text; color: transparent;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.25));
}
.time-slot .digit[data-unit="days"],
.time-slot-sm .digit[data-unit="days"] {
    color: var(--simba-pink);
    text-shadow: 0 0 12px rgba(242, 5, 159, 0.9), 0 0 18px rgba(242, 5, 159, 0.55);
    -webkit-text-stroke: 0 transparent;
}
/* Display Menor para outros cards */
.small-display { gap: 15px; }
.time-slot-sm .digit { font-size: 32px; filter: none; color: #ccc; }
.sec-slot .digit { color: var(--simba-blue); text-shadow: 0 0 10px var(--simba-blue); }

.label { font-size: 10px; letter-spacing: 2px; color: #666; margin-top: 5px; }
/* Decoração técnica no canto */
.deco-corner-br {
    position: absolute; bottom: 10px; right: 10px; width: 10px; height: 10px;
    border-bottom: 2px solid var(--simba-pink); border-right: 2px solid var(--simba-pink);
    opacity: 0.7;
}

/* ============================
   CTA ESTILO "WARP DRIVE"
   ============================ */
.cta-section { margin-top: 20px; width: 100%; perspective: 1000px; }
.cta-cyber-container {
    background: linear-gradient(90deg, #0e0b16, #000);
    border: 1px solid #333; position: relative; overflow: hidden;
    padding: 30px; border-radius: 4px; display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5); gap: 40px; transition: transform 0.3s, border-color 0.3s;
}
.cta-cyber-container:hover { transform: scale(1.01); border-color: var(--simba-pink); }
/* Barra neon top */
.cta-glow-bar {
    position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--simba-purple), var(--simba-pink), var(--simba-blue));
    box-shadow: 0 0 15px var(--simba-pink);
}
.cta-cyber-container::before {
    content: "";
    position: absolute;
    top: 0; left: -40%;
    width: 40%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transform: skewX(-20deg);
    animation: sweep 4s linear infinite;
    pointer-events: none;
}

@keyframes sweep {
    0% { left: -50%; }
    100% { left: 120%; }
}

.cta-content-wrapper { display: flex; width: 100%; gap: 30px; align-items: center; z-index: 2; flex-wrap: wrap; }
.cta-header-group { display: flex; align-items: center; gap: 20px; }
.bell-box { 
    font-size: 30px; background: rgba(242, 5, 159, 0.1); 
    width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
    border-radius: 50%; border: 1px solid var(--simba-pink);
    animation: float 3s ease-in-out infinite, ring 1.4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(242, 5, 159, 0.4), 0 0 35px rgba(5, 175, 242, 0.25);
    position: relative;
}
.bell-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(5, 175, 242, 0.35);
    animation: pulseGlow 2.4s ease-in-out infinite;
}

@keyframes ring {
    0% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-3px) rotate(-6deg); }
    50% { transform: translateX(3px) rotate(6deg); }
    75% { transform: translateX(-2px) rotate(-4deg); }
    100% { transform: translateX(0) rotate(0deg); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.text-group { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0px; text-align: center; }
.cta-main-text,
.text-group h3 {
    margin: 0;
    font-size: 26px;
    color: #71D98A;
    letter-spacing: 1px;
    text-shadow:
      0 0 6px rgba(113, 217, 138, 0.8),
      0 0 12px rgba(113, 217, 138, 0.6),
      0 0 18px rgba(113, 217, 138, 0.35);
}
.cta-sub {
    margin: 0;
    font-size: 12px;
    color: #025917;
    font-family: 'Share Tech Mono', monospace;
    line-height: 1.1;
    text-shadow:
      0 0 4px rgba(255,255,255,0.25),
      0 0 8px rgba(255,255,255,0.18);
}

/* Input complexo */
.cta-form { display: flex; flex: 1; gap: 0; box-shadow: 0 0 20px rgba(0,0,0,0.5); align-items: stretch; }
.input-wrapper { 
    flex: 1; background: rgba(255,255,255,0.05); border: 1px solid #333; border-right: none;
    display: flex; align-items: center; padding-left: 15px;
    margin-right: -18px; /* estende por baixo do botão */
    padding-right: 24px;
}
.input-prefix { color: var(--simba-pink); user-select: none; }
.cta-form input { 
    width: 100%; background: transparent; border: none; padding: 18px 10px; color: #fff; outline: none;
    font-family: 'Share Tech Mono', monospace;
}
.form-feedback {
    min-width: 0;
    width: 0;
    padding: 0;
    font-size: 12px;
    color: var(--simba-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.35);
    font-family: 'Share Tech Mono', monospace;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: opacity 0.2s ease, padding 0.2s ease, width 0.2s ease;
}
.form-feedback.is-error {
    color: #ff8a8a;
    text-shadow: 0 0 10px #ff3b6b;
    padding: 0 12px;
    width: auto;
    opacity: 1;
}
.cta-form button {
    background: var(--simba-pink); border: none; padding: 0 40px; 
    color: #fff; font-weight: 700; font-size: 14px; letter-spacing: 1px;
    cursor: pointer; position: relative; overflow: hidden; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    transition: 0.2s; z-index: 1;
}
.cta-form button:hover { background: #ff3377; padding-right: 50px; text-shadow: 0 0 8px #fff; }
.cta-form button.is-loading {
    pointer-events: none;
    background: linear-gradient(90deg, #19001f, var(--simba-pink));
    box-shadow: 0 0 18px rgba(242, 5, 159, 0.5);
}
.cta-form button.is-loading::after {
    content: "RUN";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 2px;
    animation: blink 1s infinite;
}
.cta-form button.is-success {
    background: #0a9e48;
    box-shadow: 0 0 20px rgba(2, 89, 23, 0.6);
    color: #fff;
}
.cta-form button.is-error {
    background: #FF2255;
    box-shadow: 0 0 20px rgba(255, 34, 85, 0.6), 0 0 30px rgba(255, 34, 85, 0.35);
    color: #fff;
}
.cta-form button.is-redirect {
    background: var(--simba-blue);
    box-shadow: 0 0 20px rgba(5, 175, 242, 0.6);
    color: #fff;
}
.cta-form .btn-text { font-family: 'Share Tech Mono', monospace; letter-spacing: 1px; text-transform: uppercase; }

/* Botão de voltar ao topo */
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    padding: 6px 14px;
    background: var(--simba-pink);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(242, 5, 159, 0.45);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 120;
    pointer-events: none;
}
.back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: pulseTop 2s ease-in-out infinite;
}
.back-to-top.is-hiding {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    animation: none;
}
.back-to-top:hover {
    background: #ff3377;
    box-shadow: 0 0 18px rgba(113, 217, 138, 0.5), 0 0 25px rgba(242, 5, 159, 0.4);
}

@keyframes pulseTop {
    0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 0 15px rgba(242, 5, 159, 0.45); }
    50% { transform: translateY(0) scale(1.04); box-shadow: 0 0 18px rgba(113, 217, 138, 0.55); }
}

/* ============================
   NEWS SCANNER ACCORDION
   ============================ */
.news-section { display: flex; flex-direction: column; gap: 0; border: 1px solid #222; background: #080808; padding: 10px; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.8); }

.terminal-header {
    background: #111; padding: 10px 15px; display: flex; gap: 8px; align-items: center; border-radius: 4px; margin-bottom: 10px;
    border-bottom: 1px solid #333;
}
.term-dot { width: 10px; height: 10px; border-radius: 50%; display: block; }
.red { background: #FF2255; } .yellow { background: #FFC857; } .green { background: #025917; }
.term-title { margin-left: 10px; font-size: 10px; color: #666; letter-spacing: 1px; ; }

.accordion-item {
    border-bottom: 1px solid #1a1a1a; transition: background 0.3s;
}
.accordion-item:last-child { border-bottom: none; }
.accordion-item.is-open { background: rgba(38, 2, 89, 0.15); border-left: 2px solid var(--simba-blue); }

.accordion-trigger {
    width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 15px; background: transparent; border: none;
    color: #ccc; cursor: pointer; text-align: left; font-family: 'Inter', sans-serif; position: relative;
    transition: 0.2s; gap: 12px;
}
.accordion-left { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.accordion-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.trigger-decoration { width: 4px; height: 4px; background: var(--simba-pink); margin-right: 15px; box-shadow: 0 0 5px var(--simba-pink); }
.trigger-decoration.warning { background: #FFC857; box-shadow: 0 0 5px #FFC857; }

.news-type { margin-right: 10px; color: var(--simba-pink); font-size: 12px; }
.news-type.warning { color: #FFC857; }
.news-title { 
    font-weight: 700; 
    font-size: 15px; 
    letter-spacing: 0.5px; 
    transition: 0.2s; 
    font-family: 'Oswald', sans-serif;
}
.accordion-trigger:hover .news-title { color: #fff; padding-left: 5px; }
.accordion-date-compact {
    font-size: 11px;
    color: #777;
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 0.5px;
    padding-left: 8px;
    min-width: 90px;
    text-align: right;
}

.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; position: relative; }
.is-open .accordion-content { max-height: 300px; }

.inner-padding { padding: 0 20px 20px 45px; color: #aaa; position: relative; }

/* Linha de Scanner passando pelo conteudo quando abre */
.is-open .scan-line {
    position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: rgba(5, 175, 242, 0.3);
    box-shadow: 0 0 10px var(--simba-blue); animation: scanDown 2s ease-out; opacity: 0;
}
@keyframes scanDown { 0% { top: 0; opacity: 1; } 100% { top: 100%; opacity: 0; } }

.meta-tag { font-size: 10px; font-weight: bold; display: inline-block; padding: 2px 6px; border-radius: 2px; margin-bottom: 8px; color: #000; }
.simba-pink { background: var(--simba-pink); } .simba-blue { background: var(--simba-blue); }

.cmd-block {
    background: rgba(0,0,0,0.5); border: 1px dashed #444; padding: 10px;
    font-size: 12px; margin: 10px 0; border-radius: 4px; color: #eee;
}
.text-success { color: #025917; text-shadow: 0 0 5px #71D98A; }
.text-warning { color: #AEAB3E; }

.btn-link { 
    color: var(--simba-blue); font-size: 11px; text-decoration: none; border-bottom: 1px solid transparent; 
    text-transform: uppercase; font-weight: bold; margin-top: 5px; display: inline-block; 
}
.btn-link:hover { border-bottom-color: var(--simba-blue); text-shadow: 0 0 10px var(--simba-blue); }

/* Chevron Animation */
.chevron { margin-left: auto; width: 8px; height: 8px; border-right: 2px solid #555; border-bottom: 2px solid #555; transform: rotate(45deg); transition: 0.3s; }
.is-open .chevron { transform: rotate(-135deg); border-color: var(--simba-pink); }

/* ============================
   ANIMAÇÕES GLOBAIS
   ============================ */
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes scanmove { 0% { background-position: 0 0; } 100% { background-position: 0 100%; } }
@keyframes borderRotate { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
@keyframes holoDrift {
    0% { transform: translate3d(-4%, -2%, 0) scale(1); opacity: 0.5; }
    25% { transform: translate3d(4%, 3%, 0) scale(1.02); opacity: 0.58; }
    50% { transform: translate3d(2%, -3%, 0) scale(1.03); opacity: 0.52; }
    75% { transform: translate3d(-3%, 2%, 0) scale(1.01); opacity: 0.56; }
    100% { transform: translate3d(-4%, -2%, 0) scale(1); opacity: 0.5; }
}
@keyframes traverseLine { 0% { left: 0; opacity: 0; } 50% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@keyframes breatheDeep { 0% { opacity: 0.08; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 0.12; transform: translate(-50%, -50%) scale(1.05); } 100% { opacity: 0.08; transform: translate(-50%, -50%) scale(1); } }
@keyframes blinkBorder { 0%, 100% { border-color: var(--simba-pink); } 50% { border-color: transparent; } }

.reveal-element { animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; opacity: 0; transform: translateY(20px); }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; } .delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; } .delay-5 { animation-delay: 0.5s; } .delay-6 { animation-delay: 0.6s; }

/* RESPONSIVO */
@media (max-width: 900px) {
    .counters-grid { grid-template-columns: 1fr; }
    .cta-cyber-container { flex-direction: column; align-items: stretch; text-align: center; gap: 20px; }
    .cta-header-group { flex-direction: column; }
    .cta-form { flex-direction: column; width: 100%; }
    .text-group { align-items: center; }
    .top-bar { flex-direction: column; gap: 15px; }
    .logo-simba { height: 35px; }
}

.news-img {
  display: block;
  max-width: 100%;
  border-radius: 10px;
  margin: 10px auto;
  box-shadow: 0 0 8px rgba(255, 0, 138, 0.3);
}

/* --- NEWS BODY / IMAGENS RICAS (Steam) --- */
.news-body {
  margin-top: 12px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: #d0cfe6;
}

.news-body a {
  color: var(--simba-blue);
  text-decoration: underline;
}

.news-body .news-image {
  margin: 16px auto;
  text-align: center;
}

.news-body .news-image img {
  max-width: 100%;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 8px rgba(5, 175, 242, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.news-body .news-image img[data-loaded="1"] {
  opacity: 1;
}

/* rodapé da notícia */
.news-footer {
  margin-top: 14px;
  font-size: 0.8rem;
  color: #9b96c0;
}

.news-footer .news-source {
  font-weight: 600;
  margin-right: 6px;
}

.news-footer .news-disclaimer {
  margin-top: 4px;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* garante espaço suficiente para notícias longas no accordion */
.accordion-item.is-open .accordion-content { max-height: none; }
