/* ================================================
   Stray Kids Fan Page — style.css
   Autora: Laysa Serrão
   ================================================

   Índice:
   01. Variáveis & Reset
   02. Hero
   03. Stats Bar
   04. Navegação (Tabs)
   05. Seção (Layout)
   06. Membros (Cards)
   07. Detalhe do Membro
   08. Galeria
   09. Curiosidades
   10. Sobre / About Cards
   11. Discografia (Albums)
   12. Unidades
   13. Stream & Votação
   14. Tours
   15. Conteúdo
   16. Novidades (News)
   17. Footer
   18. Lightbox
   19. Tabs
================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --red: #e8192c; --red-dim: #e8192c20; --red-border: #e8192c50; --red-light: #ff6b7a;
      --orange: #ff6b35; --pink: #ff3d6e;
      --bg: #111111; --surface: #1e1e1e; --surface2: #282828;
      --border: #ffffff12; --border2: #ffffff20;
      --text: #f5f5f5; --muted: #909090; --subtle: #505050;
      --grad: linear-gradient(135deg, #e8192c, #ff3d6e, #ff6b35);
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); }

    /* HERO */
    .hero {
      padding:7rem 2rem 5rem; text-align:center; position:relative; overflow:hidden;
      background: radial-gradient(ellipse at 50% 0%, #e8192c22 0%, transparent 60%),
                  radial-gradient(ellipse at 80% 80%, #ff3d6e10 0%, transparent 50%),
                  #111111;
    }
    .hero::before {
      content:''; position:absolute; top:0; left:0; right:0; bottom:0;
      background: repeating-linear-gradient(90deg, transparent, transparent 60px, #ffffff03 60px, #ffffff03 61px),
                  repeating-linear-gradient(0deg, transparent, transparent 60px, #ffffff03 60px, #ffffff03 61px);
      pointer-events:none;
    }
    .hero::after { content:''; position:absolute; bottom:0; left:0; right:0; height:1px; background:linear-gradient(90deg,transparent,#e8192c80,transparent); }
    .hero-eyebrow {
      font-size:11px; letter-spacing:6px; text-transform:uppercase;
      background: var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent;
      margin-bottom:1.25rem; display:inline-block;
    }
    .hero-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(72px,16vw,120px); letter-spacing:12px; color:#fff; line-height:.9; margin-bottom:.75rem; text-shadow: 0 0 80px #e8192c30; }
    .hero-title .red { background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
    .hero-subtitle { font-family:'Bebas Neue',sans-serif; font-size:clamp(14px,2.5vw,22px); letter-spacing:8px; color:var(--subtle); margin-bottom:1.5rem; }
    .hero-desc { font-size:15px; color:var(--muted); max-width:500px; margin:0 auto 2.5rem; line-height:1.8; }
    .hero-cta {
      display:inline-block; background:var(--grad); color:#fff;
      font-size:11px; letter-spacing:3px; text-transform:uppercase; font-weight:700;
      padding:14px 36px; border-radius:30px; text-decoration:none; transition:.3s;
      box-shadow: 0 4px 20px #e8192c40;
    }
    .hero-cta:hover { transform:translateY(-3px); box-shadow: 0 8px 30px #e8192c60; }

    /* STATS */
    .stats-bar { display:grid; grid-template-columns:repeat(4,1fr); border-bottom:1px solid var(--border); background:var(--surface); }
    @media(max-width:600px){ .stats-bar { grid-template-columns:repeat(2,1fr); } }
    .stat-item { padding:2rem 1rem; text-align:center; border-right:1px solid var(--border); position:relative; transition:background .2s; }
    .stat-item:hover { background:var(--surface2); }
    .stat-item:last-child { border-right:none; }
    .stat-num { font-family:'Bebas Neue',sans-serif; font-size:40px; line-height:1; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
    .stat-label { font-size:10px; color:var(--subtle); margin-top:6px; letter-spacing:2px; text-transform:uppercase; }

    /* NAV */
    .nav-tabs { display:flex; border-bottom:1px solid var(--border); padding:0 2rem; max-width:1000px; margin:0 auto; overflow-x:auto; background:var(--surface); }
    .nav-tab { padding:1.1rem 1.4rem; font-size:11px; color:var(--subtle); cursor:pointer; border-bottom:2px solid transparent; white-space:nowrap; letter-spacing:2px; text-transform:uppercase; font-weight:600; background:none; border-left:none; border-right:none; border-top:none; transition:.2s; }
    .nav-tab:hover { color:#fff; }
    .nav-tab.active { color:#fff; border-bottom-color:var(--red); }

    /* SECTION */
    .section { padding:3.5rem 2rem; max-width:1000px; margin:0 auto; }
    .section-header { display:flex; align-items:baseline; gap:1rem; margin-bottom:2rem; }
    .section-title { font-family:'Bebas Neue',sans-serif; font-size:44px; letter-spacing:4px; color:#fff; }
    .section-count { font-family:'Bebas Neue',sans-serif; font-size:20px; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }

    /* MEMBERS */
    .members-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(190px,1fr)); gap:14px; }
    .member-card {
      background:var(--surface); border:1px solid var(--border); border-radius:16px;
      padding:1.75rem 1.5rem; cursor:pointer; transition:all .25s; position:relative; overflow:hidden;
    }
    .member-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--grad); transform:scaleX(0); transition:.3s; transform-origin:left; border-radius:16px 16px 0 0; }
    .member-card:hover { border-color:var(--red-border); transform:translateY(-5px); box-shadow:0 12px 30px #00000040; }
    .member-card:hover::before, .member-card.active::before { transform:scaleX(1); }
    .member-card.active { border-color:var(--red); background:linear-gradient(135deg,#e8192c08,#ff3d6e05); }
    .m-avatar { width:64px; height:64px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:'Bebas Neue',sans-serif; font-size:20px; margin-bottom:1rem; box-shadow:0 4px 15px #00000040; }
    .m-name { font-weight:700; font-size:15px; margin-bottom:3px; color:#fff; }
    .m-kr { font-size:11px; color:var(--subtle); margin-bottom:10px; }
    .m-pos { font-size:10px; padding:4px 12px; border-radius:20px; border:1px solid var(--red-border); color:var(--red-light); background:var(--red-dim); display:inline-block; font-weight:500; }
    .m-unit { font-size:11px; color:var(--subtle); margin-top:8px; }

    /* DETAIL */
    .member-detail {
      background:linear-gradient(135deg,#1e1e1e,#222222);
      border:1px solid var(--red-border); border-radius:16px; border-top:3px solid var(--red);
      padding:2rem; margin-top:14px; display:none;
      box-shadow:0 8px 40px #e8192c15;
    }
    .member-detail.visible { display:block; }
    .d-top { display:flex; align-items:flex-start; gap:1.5rem; margin-bottom:1.5rem; flex-wrap:wrap; }
    .d-avatar { width:80px; height:80px; border-radius:50%; overflow:hidden; flex-shrink:0; box-shadow:0 4px 20px #00000060; border:2px solid var(--red-border); }
    .d-name { font-family:'Bebas Neue',sans-serif; font-size:40px; letter-spacing:3px; line-height:1; margin-bottom:4px; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
    .d-kr { font-size:13px; color:var(--subtle); }
    .d-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:1.25rem; }
    @media(max-width:500px){ .d-grid { grid-template-columns:repeat(2,1fr); } }
    .di { background:var(--bg); padding:12px 14px; border-radius:10px; border:1px solid var(--border); }
    .di-label { font-size:9px; color:var(--subtle); text-transform:uppercase; letter-spacing:2px; margin-bottom:4px; }
    .di-val { font-size:13px; color:var(--text); font-weight:600; }
    .d-fact { font-size:14px; color:var(--muted); border-left:3px solid var(--red); padding-left:14px; line-height:1.8; border-radius:0 4px 4px 0; background:#e8192c05; padding:12px 14px 12px 16px; }
    .close-btn { float:right; background:none; border:1px solid var(--border2); border-radius:20px; color:var(--subtle); font-size:11px; padding:5px 14px; cursor:pointer; font-family:'Inter',sans-serif; transition:.2s; }
    .close-btn:hover { color:#fff; border-color:var(--red); }
    .close-btn:hover { color:#fff; border-color:var(--red); }

    /* GALLERY */
    .gallery-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:8px; }
    .g-item { position:relative; aspect-ratio:3/4; overflow:hidden; background:var(--surface); cursor:pointer; border-radius:16px; border:1px solid var(--border); transition:transform .3s; }
    .g-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .4s, filter .3s; filter:grayscale(20%); }
    .g-item:hover img { transform:scale(1.08); filter:grayscale(0%); } .g-item:hover { box-shadow:0 12px 40px #00000060; transform:translateY(-3px); }
    .g-overlay { position:absolute; inset:0; background:linear-gradient(to top,#000c 0%,transparent 50%); display:flex; align-items:flex-end; padding:1rem; opacity:0; transition:.3s; }
    .g-item:hover .g-overlay { opacity:1; }
    .g-ovname { font-family:'Bebas Neue',sans-serif; font-size:20px; letter-spacing:2px; color:#fff; }
    .g-ph { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; padding:1rem; }
    .g-ph-av { font-family:'Bebas Neue',sans-serif; font-size:32px; }
    .g-ph-name { font-size:12px; letter-spacing:1px; }

    /* FACTS */
    .facts-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:10px; }
    .fact-card { background:var(--surface); border:1px solid var(--border); border-radius:16px; padding:1.5rem; position:relative; overflow:hidden; transition:all .25s; }
    .fact-card:hover { border-color:var(--red-border); transform:translateY(-4px); box-shadow:0 10px 30px #00000040; }
    .fact-card::before { content:attr(data-num); position:absolute; top:-10px; right:10px; font-family:'Bebas Neue',sans-serif; font-size:72px; color:var(--red); opacity:.06; line-height:1; pointer-events:none; }
    .fact-tag { font-size:9px; letter-spacing:2px; text-transform:uppercase; color:var(--red); margin-bottom:8px; font-weight:600; }
    .fact-text { font-size:14px; color:var(--muted); line-height:1.75; }
    .fact-text strong { color:#fff; font-weight:500; }

    /* ABOUT */
    .about-card { background:linear-gradient(135deg,var(--surface),var(--surface2)); border:1px solid var(--border); border-radius:16px; border-left:4px solid var(--red); padding:1.75rem; line-height:1.9; color:var(--muted); font-size:15px; margin-bottom:12px; transition:.2s; }  .about-card:hover { border-color:var(--red-border); }
    .about-card strong { color:#fff; font-weight:500; }
    .about-card em { color:#bbb; font-style:italic; }

    /* ALBUMS */
    .album-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(155px,1fr)); gap:8px; }
    .album-card { background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:1.25rem; transition:all .25s; }
    .album-card:hover { border-color:var(--red-border); transform:translateY(-4px); box-shadow:0 8px 24px #00000040; }
    .album-year { font-size:10px; color:var(--subtle); letter-spacing:2px; margin-bottom:6px; }
    .album-name { font-size:14px; font-weight:600; color:var(--text); margin-bottom:8px; line-height:1.4; }
    .album-badge { font-size:9px; padding:4px 12px; border-radius:20px; border:1px solid var(--red-border); color:var(--red-light); background:var(--red-dim); display:inline-block; font-weight:600; }
    .album-badge.gold { border-color:#d4a84340; color:#d4a843; background:#d4a84315; }

    /* UNITS */
    .units-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
    @media(max-width:600px){ .units-grid { grid-template-columns:1fr; } }
    .unit-card { background:linear-gradient(135deg,var(--surface),var(--surface2)); border:1px solid var(--border); border-radius:16px; border-top:3px solid; border-image:var(--grad) 1; padding:1.75rem; text-align:center; transition:all .25s; }
    .unit-card:hover { transform:translateY(-5px); box-shadow:0 12px 30px #00000050; }
    .unit-name { font-family:'Bebas Neue',sans-serif; font-size:28px; letter-spacing:3px; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; margin-bottom:6px; }
    .unit-desc { font-size:11px; color:var(--subtle); margin-bottom:14px; letter-spacing:1px; text-transform:uppercase; }
    .unit-members { font-size:14px; color:var(--muted); line-height:1.9; }

    /* STREAM */
    .stream-section { margin-bottom:2.5rem; }
    .stream-section-title { font-family:'Bebas Neue',sans-serif; font-size:22px; letter-spacing:3px; color:#fff; margin-bottom:1rem; padding-bottom:.5rem; border-bottom:1px solid var(--border); }
    .platform-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:10px; margin-bottom:1rem; }
    .platform-card { background:var(--surface); border:1px solid var(--border); border-radius:12px; padding:1.25rem 1.5rem; display:flex; align-items:center; gap:1rem; text-decoration:none; transition:border-color .2s, transform .2s; }
    .platform-card:hover { border-color:var(--red-border); transform:translateY(-2px); }
    .platform-icon { width:44px; height:44px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
    .platform-info { flex:1; }
    .platform-name { font-weight:600; font-size:14px; color:#fff; margin-bottom:2px; }
    .platform-desc { font-size:11px; color:var(--subtle); }
    .platform-arrow { font-size:16px; color:var(--subtle); }
    .guide-steps { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:10px; }
    .guide-step { background:var(--surface); border:1px solid var(--border); border-radius:12px; padding:1.25rem 1.5rem; display:flex; gap:1rem; align-items:flex-start; }
    .step-num { font-family:'Bebas Neue',sans-serif; font-size:32px; color:var(--red); line-height:1; flex-shrink:0; width:32px; }
    .step-title { font-weight:600; font-size:13px; color:#fff; margin-bottom:4px; }
    .step-desc { font-size:12px; color:var(--muted); line-height:1.6; }
    .tip-card { background:var(--red-dim); border:1px solid var(--red-border); border-radius:12px; padding:1.25rem 1.5rem; font-size:13px; color:var(--muted); line-height:1.7; margin-bottom:1.5rem; }
    .tip-card strong { color:var(--red-light); font-weight:500; }

    /* FOOTER */
    footer { text-align:center; padding:3rem 2rem; border-top:1px solid var(--border); font-size:12px; color:var(--subtle); letter-spacing:1px; background:var(--surface); }
    footer a { color:var(--red); text-decoration:none; }
    footer a:hover { color:var(--red-light); }
    .footer-logo { font-family:'Bebas Neue',sans-serif; font-size:32px; letter-spacing:8px; background:var(--grad); -webkit-background-clip:text; -webkit-text-fill-color:transparent; margin-bottom:1rem; }
    .footer-logo span { color:var(--red); }


    /* TOURS */
    .tour-card { background:var(--surface); border:1px solid var(--border); border-radius:12px; padding:1.5rem; transition:.2s; margin-bottom:10px; display:flex; gap:1.5rem; align-items:flex-start; }
    .tour-card:hover { border-color:var(--red-border); transform:translateY(-2px); }
    .tour-year { font-family:'Bebas Neue',sans-serif; font-size:40px; color:var(--red); line-height:1; flex-shrink:0; width:60px; }
    .tour-info { flex:1; }
    .tour-name { font-family:'Bebas Neue',sans-serif; font-size:20px; letter-spacing:2px; color:#fff; margin-bottom:6px; }
    .tour-details { font-size:13px; color:var(--muted); line-height:1.7; }
    .tour-stat { display:inline-block; font-size:10px; padding:3px 10px; border-radius:20px; border:1px solid var(--red-border); color:var(--red-light); background:var(--red-dim); margin-right:6px; margin-top:8px; }
    .tour-stat.gold { border-color:#d4a84340; color:#d4a843; background:#d4a84315; }

    /* CONTEUDO */
    .content-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:10px; }
    .content-card { background:var(--surface); border:1px solid var(--border); border-radius:12px; padding:1.5rem; text-decoration:none; display:block; transition:.2s; }
    .content-card:hover { border-color:var(--red-border); transform:translateY(-2px); }
    .content-icon { font-size:28px; margin-bottom:10px; }
    .content-name { font-family:'Bebas Neue',sans-serif; font-size:20px; letter-spacing:2px; color:#fff; margin-bottom:6px; }
    .content-desc { font-size:13px; color:var(--muted); line-height:1.6; }
    .content-platform { font-size:10px; color:var(--red); margin-top:8px; letter-spacing:1px; text-transform:uppercase; }

    /* NOVIDADES */
    .news-card { background:var(--surface); border:1px solid var(--border); border-radius:12px; padding:1.5rem; margin-bottom:10px; position:relative; overflow:hidden; transition:.2s; }
    .news-card:hover { border-color:var(--red-border); }
    .news-card::before { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background:var(--red); }
    .news-date { font-size:10px; color:var(--subtle); letter-spacing:2px; text-transform:uppercase; margin-bottom:6px; }
    .news-title { font-family:'Bebas Neue',sans-serif; font-size:22px; letter-spacing:2px; color:#fff; margin-bottom:8px; }
    .news-text { font-size:14px; color:var(--muted); line-height:1.75; }
    .news-text strong { color:#fff; font-weight:500; }
    .news-badge { display:inline-block; font-size:9px; padding:3px 10px; border-radius:20px; border:1px solid var(--red-border); color:var(--red); background:var(--red-dim); margin-top:10px; letter-spacing:1px; text-transform:uppercase; }

    .tab-content { display:none; }
    .tab-content.active { display:block; }

    /* LIGHTBOX */
    .lightbox { display:none; position:fixed; inset:0; background:#000000ee; z-index:999; align-items:center; justify-content:center; }
    .lightbox.open { display:flex; }
    .lightbox img { max-width:90vw; max-height:90vh; object-fit:contain; }
    .lb-close { position:fixed; top:1.5rem; right:1.5rem; background:none; border:1px solid #ffffff30; color:#fff; font-size:20px; cursor:pointer; width:40px; height:40px; display:flex; align-items:center; justify-content:center; border-radius:8px; }
/* ================================================
   20. Botão Voltar ao Topo
================================================ */
#back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px #e8192c50;
  transition: transform .2s, box-shadow .2s;
  z-index: 100;
}
#back-to-top.visible { display: flex; }
#back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 30px #e8192c70; }

/* ================================================
   21. Toggle Modo Claro/Escuro
================================================ */
#theme-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px #00000040;
  transition: transform .2s;
  z-index: 100;
}
#theme-toggle:hover { transform: rotate(20deg) scale(1.1); }

/* ================================================
   22. Modo Claro
================================================ */
body.light-mode {
  --bg: #f0f0f0;
  --surface: #ffffff;
  --surface2: #e8e8e8;
  --border: #00000015;
  --border2: #00000025;
  --text: #111111;
  --muted: #444444;
  --subtle: #777777;
}

/* Hero */
body.light-mode .hero {
  background: radial-gradient(ellipse at 50% 0%, #e8192c12 0%, transparent 60%), #f0f0f0;
}
body.light-mode .hero-subtitle { color: #777777; }
body.light-mode .hero-desc { color: #444444; }

/* Stats */
body.light-mode .stats-bar { background: #ffffff; }
body.light-mode .stat-label { color: #666666; }

/* Nav */
body.light-mode .nav-tabs { background: #ffffff; }
body.light-mode .nav-tab { color: #777777; }
body.light-mode .nav-tab:hover { color: #111111; }
body.light-mode .nav-tab.active { color: #111111; }

/* Cards de membros */
body.light-mode .member-card { background: #ffffff; border-color: #e0e0e0; }
body.light-mode .member-card:hover { background: #f8f8f8; }
body.light-mode .member-card.active { background: #fff0f1; }
body.light-mode .m-name { color: #111111; }
body.light-mode .m-kr { color: #777777; }
body.light-mode .m-unit { color: #777777; }

/* Detalhe do membro */
body.light-mode .member-detail { background: #ffffff; border-color: #e8192c40; }
body.light-mode .d-kr { color: #666666; }
body.light-mode .d-fact { background: #fff0f1; color: #444444; }
body.light-mode .di { background: #f5f5f5; border-color: #e0e0e0; }
body.light-mode .di-label { color: #777777; }
body.light-mode .di-val { color: #111111; }
body.light-mode .close-btn { color: #777777; border-color: #cccccc; }
body.light-mode .close-btn:hover { color: #111111; }

/* About cards */
body.light-mode .about-card { background: #ffffff; color: #444444; border-color: #e0e0e0; }
body.light-mode .about-card strong { color: #111111; }
body.light-mode .about-card em { color: #555555; }

/* Facts */
body.light-mode .fact-card { background: #ffffff; border-color: #e0e0e0; }
body.light-mode .fact-text { color: #444444; }
body.light-mode .fact-text strong { color: #111111; }

/* Albums */
body.light-mode .album-card { background: #ffffff; border-color: #e0e0e0; }
body.light-mode .album-year { color: #777777; }
body.light-mode .album-name { color: #111111; }

/* Units */
body.light-mode .unit-card { background: #ffffff; border-color: #e0e0e0; }
body.light-mode .unit-desc { color: #777777; }
body.light-mode .unit-members { color: #444444; }

/* Stream */
body.light-mode .platform-card { background: #ffffff; border-color: #e0e0e0; }
body.light-mode .platform-name { color: #111111; }
body.light-mode .platform-desc { color: #666666; }
body.light-mode .platform-arrow { color: #999999; }
body.light-mode .guide-step { background: #ffffff; border-color: #e0e0e0; }
body.light-mode .step-title { color: #111111; }
body.light-mode .step-desc { color: #555555; }
body.light-mode .tip-card { background: #fff0f1; color: #444444; }
body.light-mode .stream-section-title { color: #111111; border-color: #e0e0e0; }

/* Tours */
body.light-mode .tour-card { background: #ffffff; border-color: #e0e0e0; }
body.light-mode .tour-name { color: #111111; }
body.light-mode .tour-details { color: #555555; }

/* Conteúdo */
body.light-mode .content-card { background: #ffffff; border-color: #e0e0e0; }
body.light-mode .content-name { color: #111111; }
body.light-mode .content-desc { color: #555555; }

/* News */
body.light-mode .news-card { background: #ffffff; border-color: #e0e0e0; }
body.light-mode .news-date { color: #777777; }
body.light-mode .news-title { color: #111111; }
body.light-mode .news-text { color: #555555; }
body.light-mode .news-text strong { color: #111111; }

/* Section titles */
body.light-mode .section-title { color: #111111; }

/* Footer */
body.light-mode footer { background: #e8e8e8; color: #666666; }
body.light-mode .footer-logo { -webkit-text-fill-color: transparent; }

/* Theme toggle */
body.light-mode #theme-toggle { background: #ffffff; border-color: #dddddd; }

/* Fix modo claro — aba Conteúdo */
body.light-mode .content-name { color: #111111 !important; -webkit-text-fill-color: #111111 !important; }
body.light-mode [style*="font-family:'Bebas Neue'"],
body.light-mode [style*="font-family: 'Bebas Neue'"] { color: #111111 !important; -webkit-text-fill-color: #111111 !important; }
body.light-mode div[style*="Bebas Neue"][style*="color:#fff"] { color: #111111 !important; }
body.light-mode .stream-section-title,
body.light-mode div[style*="letter-spacing:3px"][style*="color:#fff"],
body.light-mode div[style*="letter-spacing: 3px"][style*="color: #fff"] { color: #111111 !important; -webkit-text-fill-color: #111111 !important; }

/* ================================================
   Fix modo claro — News cards e formatação geral
================================================ */

/* Barra lateral vermelha visível no modo claro */
body.light-mode .news-card::before { background: var(--red); }
body.light-mode .about-card { border-left-color: var(--red); }

/* Títulos dos news cards */
body.light-mode .news-title {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  background: none;
}

/* Section titles no modo claro */
body.light-mode .section-title {
  color: #111111 !important;
  -webkit-text-fill-color: #111111 !important;
  background: none;
}

/* Hero title no modo claro */
body.light-mode .hero-title {
  color: #111111 !important;
  text-shadow: none;
}
body.light-mode .hero-title .red {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gradientes de texto só no modo escuro */
body.light-mode .section-count {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* d-name no detalhe do membro */
body.light-mode .d-name {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tour year */
body.light-mode .tour-year {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Stat numbers mantêm gradiente */
body.light-mode .stat-num {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav tab ativo */
body.light-mode .nav-tab.active {
  color: #111111;
  border-bottom-color: var(--red);
}

/* Fact tag */
body.light-mode .fact-tag { color: var(--red); }

/* Album badge */
body.light-mode .album-badge { color: var(--red); background: var(--red-dim); }
body.light-mode .album-badge.gold { color: #b8860b; background: #b8860b15; border-color: #b8860b40; }

/* Unit name */
body.light-mode .unit-name {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Step number */
body.light-mode .step-num {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* News date */
body.light-mode .news-date { color: #888888; }

/* News badge */
body.light-mode .news-badge { color: var(--red); background: var(--red-dim); border-color: var(--red-border); }

/* Content platform */
body.light-mode .content-platform { color: var(--red); }

/* Tour stat */
body.light-mode .tour-stat { color: var(--red); background: var(--red-dim); border-color: var(--red-border); }
body.light-mode .tour-stat.gold { color: #b8860b; background: #b8860b15; border-color: #b8860b40; }

/* Footer logo */
body.light-mode .footer-logo {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Member position badge */
body.light-mode .m-pos { color: var(--red); background: var(--red-dim); border-color: var(--red-border); }

/* ================================================
   23. Contador Rock in Rio
================================================ */
.rir-unit {
  text-align: center;
  min-width: 70px;
}
.rir-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 8vw, 64px);
  color: #fff;
  line-height: 1;
  display: block;
  text-shadow: 0 2px 20px #00000040;
}
.rir-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffffaa;
  margin-top: 4px;
  display: block;
}

/* ================================================
   24. Share buttons hover
================================================ */
#share-twitter:hover { background: #1d9bf020 !important; border-color: #1d9bf060 !important; color: #1d9bf0 !important; }
#share-whatsapp:hover { background: #25D36630 !important; }
#share-copy:hover { background: #e8192c20 !important; border-color: var(--red-border) !important; color: var(--red) !important; }

/* ================================================
   25. MVs Grid
================================================ */
.mv-card {
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  display: block;
  transition: all .25s;
  position: relative;
}
.mv-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px #00000050; border-color: var(--red-border); }
.mv-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter .3s;
}
.mv-card:hover .mv-thumb { filter: brightness(1.05); }
.mv-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: #e8192ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.mv-card:hover .mv-play { opacity: 1; }
.mv-info { padding: 1rem; }
.mv-title { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 2px; color: #fff; margin-bottom: 4px; }
.mv-year { font-size: 11px; color: var(--subtle); letter-spacing: 1px; }
.mv-views { font-size: 11px; color: var(--red); margin-top: 4px; }

/* Light mode MVs */
body.light-mode .mv-title { color: #111111; }
body.light-mode .mv-card { background: #ffffff; border-color: #e0e0e0; }

/* ================================================
   26. Responsividade Mobile
   (max-width: 768px)
================================================ */
@media (max-width: 768px) {

  /* Hero */
  .hero { padding: 4rem 1.25rem 3rem; }
  .hero-title { font-size: clamp(52px, 18vw, 80px); letter-spacing: 6px; }
  .hero-subtitle { font-size: 14px; letter-spacing: 4px; }
  .hero-desc { font-size: 13px; }
  .hero-cta { padding: 12px 24px; font-size: 10px; }

  /* Stats */
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 1.25rem .75rem; border-right: 1px solid var(--border); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-num { font-size: 28px; }
  .stat-label { font-size: 9px; }

  /* Nav tabs */
  .nav-tabs { padding: 0 .5rem; gap: 0; }
  .nav-tab { padding: .75rem .75rem; font-size: 9px; letter-spacing: 1px; }

  /* Section */
  .section { padding: 2rem 1.25rem; }
  .section-title { font-size: 30px; letter-spacing: 2px; }

  /* Members grid */
  .members-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .member-card { padding: 1.25rem 1rem; }
  .m-avatar { width: 52px; height: 52px; }
  .m-name { font-size: 13px; }

  /* Member detail */
  .member-detail { padding: 1.25rem; }
  .d-top { gap: 1rem; }
  .d-avatar { width: 60px; height: 60px; }
  .d-name { font-size: 28px; }
  .d-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .di { padding: 8px 10px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

  /* Facts */
  .facts-grid { grid-template-columns: 1fr; gap: 8px; }

  /* Albums */
  .album-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Units */
  .units-grid { grid-template-columns: 1fr; gap: 10px; }

  /* Stream */
  .platform-grid { grid-template-columns: 1fr; gap: 8px; }
  .platform-card { padding: 1rem 1.25rem; }
  .guide-steps { grid-template-columns: 1fr; gap: 8px; }

  /* Tours */
  .tour-card { flex-direction: column; gap: .75rem; padding: 1.25rem; }
  .tour-year { font-size: 32px; width: auto; }
  .tour-name { font-size: 16px; }

  /* Conteúdo */
  .content-grid { grid-template-columns: 1fr; gap: 8px; }

  /* News */
  .news-card { padding: 1.25rem; }
  .news-title { font-size: 17px; }

  /* MVs */
  #mvs-grid { grid-template-columns: 1fr; gap: 10px; }

  /* Contador Rock in Rio */
  #rir-banner { padding: 1.25rem 1rem; }
  .rir-num { font-size: clamp(28px, 10vw, 48px); }
  .rir-unit { min-width: 55px; }

  /* Share buttons */
  #share-section { padding: .75rem 1rem; gap: .5rem; }
  #share-section span { display: none; }

  /* Botões fixos */
  #back-to-top { bottom: 5rem; right: 1rem; width: 40px; height: 40px; font-size: 16px; }
  #theme-toggle { bottom: 1rem; right: 1rem; width: 40px; height: 40px; font-size: 18px; }

  /* SKZoo grid no Sobre */
  #skzoo-grid { grid-template-columns: repeat(2, 1fr); }

  /* About card */
  .about-card { padding: 1.25rem; font-size: 14px; }

}

/* ================================================
   27. Responsividade Extra Small
   (max-width: 400px)
================================================ */
@media (max-width: 400px) {

  .hero-title { font-size: 48px; letter-spacing: 4px; }
  .members-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .album-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-tab { padding: .6rem .5rem; font-size: 8px; }
  .d-grid { grid-template-columns: 1fr 1fr; }

}

/* ================================================
   28. Linha do Tempo
================================================ */
.timeline {
  position: relative;
  padding: 0 0 2rem 0;
}

/* Linha central */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), #ff3d6e, #ff6b35, transparent);
}

.tl-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2.5rem);
  margin-bottom: 2.5rem;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .5s ease, transform .5s ease;
}

.tl-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2.5rem);
  transform: translateX(30px);
}

.tl-item.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Ponto central */
.tl-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 1.25rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--red);
  z-index: 2;
  transition: transform .3s;
}

.tl-item:hover .tl-dot {
  transform: translateX(-50%) scale(1.4);
  box-shadow: 0 0 15px #e8192c80;
}

/* Card */
.tl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  max-width: 380px;
  width: 100%;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
}

.tl-card:hover {
  border-color: var(--red-border);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px #00000040;
}

/* Seta do card */
.tl-item:not(.right) .tl-card::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 1.5rem;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid var(--border);
}

.tl-item.right .tl-card::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 1.5rem;
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid var(--border);
}

.tl-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}

.tl-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.tl-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

.tl-desc strong { color: #fff; font-weight: 500; }

.tl-badge {
  display: inline-block;
  font-size: 9px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--red-border);
  color: var(--red-light);
  background: var(--red-dim);
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tl-badge.gold {
  border-color: #d4a84340;
  color: #d4a843;
  background: #d4a84315;
}

/* Mobile timeline */
@media (max-width: 768px) {
  .timeline::before {
    left: 16px;
  }
  .tl-item,
  .tl-item.right {
    justify-content: flex-start;
    padding-left: 3rem;
    padding-right: 0;
    transform: translateX(20px);
  }
  .tl-item.visible { transform: translateX(0); }
  .tl-dot {
    left: 16px;
  }
  .tl-card { max-width: 100%; }
  .tl-item:not(.right) .tl-card::after,
  .tl-item.right .tl-card::after {
    display: none;
  }
}

/* Light mode timeline */
body.light-mode .timeline::before {
  background: linear-gradient(to bottom, var(--red), #ff3d6e, #ff6b35, transparent);
}
body.light-mode .tl-card { background: #ffffff; border-color: #e0e0e0; }
body.light-mode .tl-card:hover { border-color: var(--red-border); }
body.light-mode .tl-title { color: #111111; }
body.light-mode .tl-dot { border-color: var(--bg); }

/* ================================================
   29. Discografia v2 — Cards com capa
================================================ */
#album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}

.album-card-v2 {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all .25s;
}
.album-card-v2:hover {
  border-color: var(--red-border);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px #00000050;
}

.album-cover-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--surface2);
}

.album-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.album-card-v2:hover .album-cover { transform: scale(1.05); }

.album-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface2), var(--bg));
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--red);
  opacity: .4;
}

.album-type-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 9px;
  padding: 3px 8px;
  border-radius: 20px;
  background: #000000aa;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.album-card-body { padding: 1rem; }

.album-year-v2 {
  font-size: 10px;
  color: var(--subtle);
  letter-spacing: 2px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.album-name-v2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 6px;
}

.album-title-track {
  font-size: 11px;
  color: var(--red-light);
  margin-bottom: 3px;
  font-weight: 500;
}

.album-meta {
  font-size: 10px;
  color: var(--subtle);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

/* Remover estilo antigo se sobrar */
.album-card { display: none; }

/* Light mode */
body.light-mode .album-card-v2 { background: #ffffff; border-color: #e0e0e0; }
body.light-mode .album-name-v2 { color: #111111; }
body.light-mode .album-cover-placeholder { background: linear-gradient(135deg, #eeeeee, #f5f5f5); }

/* Mobile */
@media (max-width: 768px) {
  #album-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .album-name-v2 { font-size: 14px; }
}

/* ================================================
   30. Animações de entrada (Scroll Reveal)
================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade lateral para cards de membros */
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Scale in para cards da galeria e MVs */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }
