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

    :root {
      --bg0: #060e1a;
      --bg1: #0b1827;
      --bg2: #0f2038;
      --blue-deep: #0d2340;
      --accent: #4fa8e0;
      --accent-dim: rgba(79,168,224,0.18);
      --cloud: #dde8f2;
      --cloud-dim: rgba(210,228,245,0.55);
      --white: #f0f5fa;
      --muted: #607a92;
      --muted-light: #8aa4bc;
      --border: rgba(255,255,255,0.07);
      --border-hover: rgba(100,180,255,0.28);
      --font: 'Inter', sans-serif;
      --mono: 'Space Mono', monospace;
      --radius: 16px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg0);
      color: var(--white);
      font-family: var(--font);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* ── STARS CANVAS ── */
    #stars-canvas {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      pointer-events: none;
      z-index: 0;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 2.5rem;
      background: rgba(6,14,26,0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      transition: background .3s;
    }

    nav.scrolled {
      background: rgba(6,14,26,0.95);
    }

    .nav-logo {
      font-family: var(--mono);
      font-size: .85rem;
      letter-spacing: .16em;
      color: var(--cloud);
      text-decoration: none;
      display: flex; align-items: center; gap: .6rem;
    }

    .nav-logo-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 8px var(--accent);
      animation: pulse 2.4s infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .5; transform: scale(.7); }
    }

    .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: .8rem;
      letter-spacing: .06em;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--white); }

    .nav-links .nav-cta {
      color: var(--accent);
      border: 1px solid rgba(79,168,224,.3);
      border-radius: 6px;
      padding: .3rem .8rem;
      font-size: .75rem;
      transition: background .2s, border-color .2s;
    }
    .nav-links .nav-cta:hover {
      background: rgba(79,168,224,.1);
      border-color: rgba(79,168,224,.6);
      color: var(--accent);
    }

    /* ── HERO ── */
    #hero {
      min-height: 85vh;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center;
      padding: 5rem 1.5rem 3rem;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    /* big ambient glow */
    #hero::before {
      content: '';
      position: absolute;
      top: 45%; left: 50%;
      transform: translate(-50%, -55%);
      width: 700px; height: 700px;
      background: radial-gradient(ellipse, rgba(60,130,210,.1) 0%, transparent 68%);
      pointer-events: none;
    }



    .logo-wrap {
      width: 160px;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: fadeUp .9s .1s forwards;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 0 40px rgba(79,168,224,.25));
      mix-blend-mode: screen;
      -webkit-mask-image: radial-gradient(ellipse 72% 68% at 50% 52%, black 30%, rgba(0,0,0,.6) 52%, transparent 72%);
      mask-image: radial-gradient(ellipse 72% 68% at 50% 52%, black 30%, rgba(0,0,0,.6) 52%, transparent 72%);
    }
    .logo-wrap img { width: 100%; display: block; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: .4rem;
      background: rgba(79,168,224,.08);
      border: 1px solid rgba(79,168,224,.2);
      border-radius: 100px;
      padding: .25rem .8rem;
      font-family: var(--mono);
      font-size: .6rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.8rem;
      opacity: 0;
      animation: fadeUp .7s .35s forwards;
      z-index: 1;
      position: relative;
    }

    .hero-badge-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 5px var(--accent);
    }

    .hero-title {
      font-size: clamp(2.2rem, 5.5vw, 3.8rem);
      font-weight: 300;
      letter-spacing: -.035em;
      line-height: 1.08;
      color: var(--white);
      margin-bottom: 0.8rem;
      opacity: 0;
      animation: fadeUp .8s .5s forwards;
      z-index: 1;
      position: relative;
    }

    .hero-title strong {
      font-weight: 700;
      background: linear-gradient(135deg, #c8dff0 0%, #78b8e8 40%, #4fa8e0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      color: var(--muted-light);
      font-size: .88rem;
      font-weight: 300;
      max-width: 340px;
      line-height: 1.65;
      opacity: 0;
      animation: fadeUp .8s .65s forwards;
      z-index: 1;
      position: relative;
      margin-bottom: 1.6rem;
    }

    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
      opacity: 0;
      animation: fadeUp .8s .8s forwards;
      z-index: 1;
      position: relative;
    }

    .btn {
      display: inline-flex; align-items: center; gap: .45rem;
      text-decoration: none;
      font-size: .78rem;
      letter-spacing: .04em;
      padding: .68rem 1.4rem;
      border-radius: 8px;
      transition: all .25s;
    }

    .btn-primary {
      background: linear-gradient(135deg, rgba(79,168,224,.22), rgba(79,168,224,.08));
      border: 1px solid rgba(79,168,224,.35);
      color: var(--cloud);
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, rgba(79,168,224,.32), rgba(79,168,224,.16));
      border-color: rgba(79,168,224,.6);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(79,168,224,.12);
    }

    .btn-ghost {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--muted-light);
    }
    .btn-ghost:hover {
      border-color: rgba(255,255,255,.18);
      color: var(--white);
      transform: translateY(-2px);
    }

    /* ── SCROLL INDICATOR ── */
    .scroll-hint {
      position: absolute;
      bottom: 2.5rem; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
      opacity: 0;
      animation: fadeIn .8s 1.2s forwards;
      z-index: 1;
    }

    .scroll-hint span {
      font-family: var(--mono);
      font-size: .58rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .scroll-arrow {
      width: 1px; height: 36px;
      background: linear-gradient(to bottom, var(--muted), transparent);
      animation: scrollDown 1.6s infinite;
    }

    @keyframes scrollDown {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      51% { transform: scaleY(1); transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* ── STATS STRIP ── */
    #stats {
      position: relative; z-index: 1;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      background: rgba(11,24,39,.5);
      backdrop-filter: blur(8px);
    }

    .stats-inner {
      max-width: 820px;
      margin: 0 auto;
      padding: 2.2rem 1.5rem;
      display: flex; justify-content: space-around; align-items: center;
      gap: 1rem; flex-wrap: wrap;
    }

    .stat {
      display: flex; flex-direction: column; align-items: center; gap: .3rem;
      opacity: 0;
      transform: translateY(12px);
      transition: opacity .6s, transform .6s;
    }

    .stat.vis { opacity: 1; transform: none; }

    .stat-num {
      font-family: var(--mono);
      font-size: 1.7rem;
      font-weight: 700;
      background: linear-gradient(135deg, #c8dff0, #4fa8e0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .stat-label {
      font-size: .72rem;
      color: var(--muted);
      letter-spacing: .06em;
    }

    .stat-divider {
      width: 1px;
      height: 36px;
      background: var(--border);
    }

    /* ── ADDONS ── */
    #addons {
      padding: 6rem 1.5rem 2rem;
      max-width: 860px;
      margin: 0 auto;
      position: relative; z-index: 1;
    }

    .section-label {
      text-align: center;
      font-family: var(--mono);
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: .8rem;
      opacity: 0;
      transition: opacity .6s, transform .6s;
      transform: translateY(14px);
    }
    .section-label.vis { opacity: 1; transform: none; }

    .section-title {
      text-align: center;
      font-size: clamp(1.5rem, 3.5vw, 2.2rem);
      font-weight: 300;
      letter-spacing: -.025em;
      color: var(--cloud);
      margin-bottom: 3.5rem;
      opacity: 0;
      transition: opacity .6s .1s, transform .6s .1s;
      transform: translateY(14px);
    }
    .section-title.vis { opacity: 1; transform: none; }

    .cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.4rem;
    }

    .card {
      position: relative;
      background: linear-gradient(145deg, rgba(11,24,39,.9), rgba(9,20,34,.95));
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2.2rem 2rem;
      text-decoration: none;
      color: inherit;
      display: flex; flex-direction: column; gap: 1rem;
      overflow: hidden;
      opacity: 0;
      transform: translateY(22px);
      transition: opacity .6s, transform .6s, border-color .35s, box-shadow .35s;
    }

    .card.vis { opacity: 1; transform: none; }

    /* gradient corner shine */
    .card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(100,180,255,.3) 50%, transparent 100%);
      opacity: 0;
      transition: opacity .4s;
    }

    .card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 35% -10%, rgba(79,168,224,.09) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .4s;
      pointer-events: none;
    }

    .card:hover {
      border-color: var(--border-hover);
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(79,168,224,.08);
    }
    .card.vis:hover { transform: translateY(-4px); }
    .card:hover::after { opacity: 1; }
    .card:hover::before { opacity: 1; }

    .card-header {
      display: flex; align-items: flex-start; justify-content: space-between;
    }

    .card-icon-wrap {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: rgba(79,168,224,.1);
      border: 1px solid rgba(79,168,224,.18);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .card-arrow {
      width: 28px; height: 28px;
      border-radius: 8px;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted);
      font-size: .9rem;
      transition: border-color .3s, color .3s, transform .3s;
    }
    .card:hover .card-arrow {
      border-color: rgba(79,168,224,.4);
      color: var(--accent);
      transform: translate(2px, -2px);
    }

    .card-name {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--cloud);
      letter-spacing: -.018em;
    }

    .card-desc {
      color: var(--muted-light);
      font-size: .88rem;
      line-height: 1.8;
      font-weight: 300;
      flex: 1;
    }

    .card-tags {
      display: flex; gap: .5rem; flex-wrap: wrap;
    }

    .tag {
      font-family: var(--mono);
      font-size: .6rem;
      letter-spacing: .08em;
      color: var(--muted);
      background: rgba(255,255,255,.04);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: .2rem .65rem;
      text-transform: uppercase;
    }

    .card-link {
      font-family: var(--mono);
      font-size: .65rem;
      color: rgba(79,168,224,.4);
      border-top: 1px solid var(--border);
      padding-top: .9rem;
      letter-spacing: .04em;
      transition: color .25s;
    }
    .card:hover .card-link { color: rgba(79,168,224,.8); }

    /* ── DONATION BANNER ── */
    .donation-banner {
      display: flex; flex-direction: row; align-items: center; justify-content: space-between;
      text-align: left;
      gap: 1.5rem; flex-wrap: wrap;
      background: linear-gradient(135deg, rgba(34,197,94,.08), rgba(34,197,94,.04));
      border: 1px solid rgba(34,197,94,.22);
      border-radius: var(--radius);
      padding: 1.6rem 2rem;
      margin-top: 1.4rem;
      margin-bottom: 2rem;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .6s, transform .6s, border-color .3s, box-shadow .3s;
    }

    .donation-banner.vis { opacity: 1; transform: none; }

    .donation-banner:hover {
      border-color: rgba(34,197,94,.4);
      box-shadow: 0 8px 28px rgba(34,197,94,.07);
    }

    .donation-banner-left {
      display: flex; align-items: center; gap: 1rem;
    }

    .donation-icon {
      width: 42px; height: 42px;
      background: rgba(34,197,94,.1);
      border: 1px solid rgba(34,197,94,.25);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .donation-text strong {
      display: block;
      font-size: .95rem;
      font-weight: 600;
      color: var(--cloud);
      margin-bottom: .2rem;
    }

    .donation-text span {
      font-size: .82rem;
      color: var(--muted-light);
    }

    .btn-donate {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(34,197,94,.14);
      border: 1px solid rgba(34,197,94,.35);
      color: #4ade80;
      border-radius: 8px;
      padding: .6rem 1.3rem;
      font-size: .82rem;
      font-family: var(--font);
      letter-spacing: .02em;
      text-decoration: none;
      white-space: nowrap;
      transition: background .25s, border-color .25s, transform .25s;
    }

    .btn-donate:hover {
      background: rgba(34,197,94,.22);
      border-color: rgba(34,197,94,.6);
      transform: translateY(-2px);
    }

    .donation-inline {
      display: flex; align-items: center; justify-content: center; gap: .6rem;
      margin-top: 1rem;
      padding: .9rem 1.2rem;
      border-top: 1px solid var(--border);
    }

    .donation-inline span {
      font-size: .82rem;
      color: var(--muted);
    }

    .donation-inline a {
      display: inline-flex; align-items: center; gap: .35rem;
      font-size: .82rem;
      color: #4ade80;
      text-decoration: none;
      font-weight: 500;
      transition: opacity .2s;
    }

    .donation-inline a:hover { opacity: .75; }

    @media (max-width: 768px) {
      nav { padding: 1rem; }
      .nav-links { display: none; }
      .hero-title { font-size: 2.8rem; }
      .stats-inner { flex-direction: row; gap: 1rem; justify-content: space-around; }
      .stat-divider { display: block; width: 1px; height: 24px; background: var(--border); }
      .stat-num { font-size: 1.2rem; }
      .stat-label { font-size: 0.6rem; }
      .cards { grid-template-columns: 1fr; }
      .donation-banner, .discord-banner { flex-direction: column; align-items: center; text-align: center; padding: 2rem 1.5rem; }
      .donation-banner-left, .discord-banner-left { flex-direction: column; text-align: center; }

      /* ── RANKING MOBILE ── */
      #donors-stage { min-height: 520px; }

      .stage-container {
        height: auto;
        min-height: 520px;
      }

      .s-donor-card {
        width: 140px !important;
        padding: 6px 9px !important;
      }
      .s-donor-card.expanded {
        width: 140px !important; /* Trava largura no mobile */
        min-height: auto !important;
      }
      .s-av { width: 24px !important; height: 24px !important; font-size: 0.65rem !important; }
      .s-name { font-size: 0.68rem !important; }
      .s-amount { font-size: 0.6rem !important; }
      .s-msg { font-size: 0.58rem !important; }

      #view-ranking {
        height: auto;
        width: 50%;
      }

      .ranking-view {
        padding: 0;
        height: auto;
        overflow: visible;
      }

      .ranking-content {
        flex-direction: column;
        overflow: visible;
        height: auto;
      }

      .ranking-sidebar {
        width: 100% !important;
        border-left: none !important;
        border-bottom: 1px solid var(--border);
        padding: 0.75rem 1rem;
        flex-shrink: 0;
        order: 1;
        position: relative;
        z-index: 100;
        background: rgba(255,255,255,0.02);
        border-radius: 0;
        flex-direction: column;
        overflow: visible;
      }

      .ranking-filters.expanded {
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
        max-height: 200px;
        opacity: 1;
        padding: 8px;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        gap: 6px;
        background: rgba(9, 20, 34, 0.98);
        border: 1px solid var(--border);
        box-shadow: 0 10px 30px rgba(0,0,0,0.6);
      }

      .ranking-filters::-webkit-scrollbar { width: 4px; }

      .filter-btn {
        padding: 9px 14px;
      }

      .ranking-main {
        padding: 1rem;
        overflow: visible;
        flex: 1;
        order: 2;
        background: transparent;
        border-radius: 0;
        border-top: none;
        margin-top: 0;
      }

      .ranking-list {
        padding-bottom: 3rem;
      }

      .ranking-header { flex-direction: column; align-items: flex-start; }

      .stage-dots {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        justify-content: center;
        padding: 1rem 0;
        background: transparent;
      }
    }

    /* ── DISCORD BANNER ── */
    .discord-banner {
      margin-top: 2.8rem;
      display: flex; flex-direction: row; align-items: center; justify-content: space-between;
      text-align: left;
      gap: 1.8rem;
      background: linear-gradient(135deg, rgba(88,101,242,.1), rgba(88,101,242,.05));
      border: 1px solid rgba(88,101,242,.28);
      border-radius: var(--radius);
      padding: 1.6rem 2rem;
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .6s, transform .6s, border-color .3s, box-shadow .3s;
    }

    .discord-banner.vis { opacity: 1; transform: none; }

    .discord-banner:hover {
      border-color: rgba(88,101,242,.5);
      box-shadow: 0 8px 28px rgba(88,101,242,.1);
    }

    .discord-banner-left {
      display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
    }

    .discord-icon {
      width: 42px; height: 42px;
      background: rgba(88,101,242,.15);
      border: 1px solid rgba(88,101,242,.3);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .discord-text strong {
      display: block;
      font-size: .95rem;
      font-weight: 600;
      color: var(--cloud);
      margin-bottom: .2rem;
    }

    .discord-text span {
      font-size: .82rem;
      color: var(--muted-light);
    }

    .btn-discord {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(88,101,242,.18);
      border: 1px solid rgba(88,101,242,.4);
      color: #a5adff;
      border-radius: 8px;
      padding: .6rem 1.3rem;
      font-size: .82rem;
      font-family: var(--font);
      letter-spacing: .02em;
      text-decoration: none;
      white-space: nowrap;
      transition: background .25s, border-color .25s, transform .25s;
    }

    .btn-discord:hover {
      background: rgba(88,101,242,.28);
      border-color: rgba(88,101,242,.65);
      transform: translateY(-2px);
    }

    @media (max-width: 640px) {
      .discord-banner { flex-direction: column; align-items: center; }
    }

    /* ── ABOUT STRIP ── */
    #about {
      padding: 1rem 1.5rem 4rem;
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
      position: relative; z-index: 1;
    }

    .about-divider {
      width: 40px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      margin: 0 auto 3rem;
    }

    .about-text {
      font-size: 1.1rem;
      font-weight: 300;
      line-height: 2;
      color: var(--muted-light);
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .7s, transform .7s;
      margin-bottom: -1rem;
    }
    .about-text.vis { opacity: 1; transform: none; }

    .about-text strong {
      color: var(--cloud);
      font-weight: 500;
    }

    .about-links {
      display: flex; justify-content: center; gap: 2rem;
      margin-top: 0;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity .7s .15s, transform .7s .15s;
    }
    .about-links.vis { opacity: 1; transform: none; }

    .about-links a {
      font-family: var(--mono);
      font-size: .72rem;
      color: var(--muted-light);
      text-decoration: none;
      letter-spacing: .06em;
      display: inline-flex; align-items: center; gap: .35rem;
      transition: color .2s;
    }
    .about-links a:hover { color: var(--accent); }

    /* ── FOOTER ── */
    footer {
      border-top: 1px solid var(--border);
      padding: 1.8rem 2.5rem;
      display: flex; align-items: center; justify-content: space-between;
      gap: 1rem; flex-wrap: wrap;
      position: relative; z-index: 1;
      background: rgba(6,14,26,.6);
      backdrop-filter: blur(8px);
    }

    .footer-left {
      display: flex; align-items: center; gap: .8rem;
    }

    footer p {
      font-family: var(--mono);
      font-size: .7rem;
      color: var(--muted);
    }

    footer a { color: var(--cloud-dim); text-decoration: none; transition: color .2s; }
    footer a:hover { color: var(--cloud); }

    .footer-sep { opacity: .25; margin: 0 .4rem; }

    /* ── KEYFRAMES ── */
    @keyframes fadeIn { to { opacity: 1; } }
    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

    /* initial states for animated items */
    .hero-badge, .hero-title, .hero-sub, .hero-actions { transform: translateY(14px); }
    .logo-wrap { transform: translateY(10px); }

    @media (max-width: 640px) {
      nav { padding: .9rem 1.2rem; }
      .nav-links { display: none; }
      .cards { grid-template-columns: 1fr; }
      .logo-wrap { width: 140px; }
      .stat-divider { display: none; }
      .stats-inner { gap: 1.8rem; }
      .hero-actions { flex-direction: column; align-items: center; }
      footer { padding: 1.4rem 1.2rem; }
    }

    @media (min-width: 900px) {
      nav { padding: 1.1rem 3.5rem; }

      .logo-wrap { width: 240px; }

      .hero-title { font-size: clamp(3.2rem, 5.5vw, 5.5rem); }

      .hero-sub {
        font-size: 1.05rem;
        max-width: 500px;
        line-height: 1.9;
      }

      #stats { padding: 0; }
      .stats-inner {
        max-width: 1060px;
        padding: 2.6rem 3rem;
        gap: 2rem;
      }
      .stat-num { font-size: 2rem; }

      #addons {
        max-width: 1060px;
        padding: 8rem 3rem 9rem;
      }

      .section-title { font-size: 2.8rem; }

      .cards {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
      }

      .card { padding: 2.6rem 2.4rem; }

      .discord-banner,
      .donation-banner {
        padding: 1.6rem 2.6rem;
        flex-direction: row !important;
        justify-content: space-between !important;
        text-align: left !important;
      }
      
      .discord-banner-left, .donation-banner-left {
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
      }

      .btn-discord, .btn-donate {
        width: auto !important;
        min-width: 160px;
        justify-content: center;
      }

      #about {
        max-width: 800px;
        padding: 3rem 3rem 7rem;
      }

      footer {
        padding: 2rem 4rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
      .section-label, .section-title, .card, .stat,
      .about-text, .about-links,
      .hero-badge, .hero-title, .hero-sub, .hero-actions, .logo-wrap,
      .scroll-hint {
        opacity: 1 !important;
        transform: none !important;
      }
    }

    /* ── APOIADORES SECTION ── */
    #apoiadores {
      padding: 5rem 1.5rem 5rem;
      position: relative; z-index: 1;
      overflow: hidden;
    }

    .apoiadores-inner {
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    /* Input URL */
    .csv-url-wrap {
      display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center;
      margin-top: 2rem;
    }

    .csv-url-input {
      flex: 1; min-width: 260px; max-width: 480px;
      background: rgba(11,24,39,.8);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: .65rem 1rem;
      color: var(--cloud);
      font-size: .82rem;
      font-family: var(--mono);
      outline: none;
      transition: border-color .2s;
    }
    .csv-url-input::placeholder { color: var(--muted); }
    .csv-url-input:focus { border-color: rgba(79,168,224,.5); }

    .csv-url-btn {
      display: inline-flex; align-items: center; gap: .4rem;
      background: linear-gradient(135deg, rgba(79,168,224,.22), rgba(79,168,224,.08));
      border: 1px solid rgba(79,168,224,.35);
      color: var(--cloud);
      border-radius: 8px;
      padding: .65rem 1.3rem;
      font-size: .82rem;
      font-family: var(--font);
      cursor: pointer;
      white-space: nowrap;
      transition: all .22s;
    }
    .csv-url-btn:hover {
      background: linear-gradient(135deg, rgba(79,168,224,.32), rgba(79,168,224,.16));
      border-color: rgba(79,168,224,.6);
      transform: translateY(-1px);
    }

    .csv-status {
      margin-top: .75rem;
      font-size: .76rem;
      font-family: var(--mono);
      color: var(--muted);
      min-height: 1.1em;
      transition: color .2s;
    }
    .csv-status.ok  { color: #4ade80; }
    .csv-status.err { color: #f87171; }

    /* Stage: área de cards flutuantes */
    #donors-stage {
      position: relative;
      width: 100%;
      height: 560px;
      margin-top: 3rem;
      border-radius: 20px;
      border: none;
      background: linear-gradient(145deg, rgba(9,20,34,.92), rgba(6,14,26,.97));
      overflow: hidden;
      cursor: grab;
      user-select: none;
    }
    #donors-stage:active { cursor: grabbing; }

    .stage-container {
      display: flex;
      width: 200%;
      height: 100%;
      transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .stage-view {
      width: 50%;
      height: 100%;
      position: relative;
      flex-shrink: 0;
    }

    /* Ranking View Styles */
    .ranking-view {
      padding: 0;
      display: flex;
      flex-direction: column;
      height: 100%;
      background: rgba(0,0,0,0.2);
    }

    .ranking-content {
      display: flex;
      flex-direction: column;
      flex: 1;
      overflow: hidden;
    }

    .ranking-sidebar {
      width: 100%;
      border-bottom: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      padding: 0.75rem 1.5rem;
      gap: 0.5rem;
      background: rgba(255,255,255,0.02);
      flex-shrink: 0;
      order: 1;
      z-index: 100;
      position: relative;
    }

    .ranking-main {
      flex: 1;
      padding: 1.5rem;
      overflow-y: auto;
      order: 2;
      height: 380px;
    }

    .ranking-filters {
      display: flex;
      flex-direction: column;
      gap: 6px;
      overflow-y: auto;
      overflow-x: hidden;
      max-height: 0;
      opacity: 0;
      padding: 0;
      position: absolute;
      top: 100%;
      left: 1.5rem;
      right: 1.5rem;
      background: rgba(9, 20, 34, 0.98);
      border: 1px solid var(--border);
      border-radius: 12px;
      z-index: 101;
      box-shadow: 0 12px 32px rgba(0,0,0,0.5);
      transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease;
    }

    .ranking-filters.expanded {
      max-height: 220px;
      opacity: 1;
      padding: 8px;
    }

    .ranking-filters::-webkit-scrollbar { width: 4px; }
    .ranking-filters::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 10px; }

    .ranking-filters::-webkit-scrollbar { width: 4px; }
    .ranking-filters::-webkit-scrollbar-track { background: transparent; }
    .ranking-filters::-webkit-scrollbar-thumb { background: rgba(79,168,224,0.2); border-radius: 10px; }

    .filter-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.5rem;
      padding: 10px 18px;
      border-radius: 10px;
      border: 1px solid rgba(79,168,224,0.4);
      background: rgba(79,168,224,0.1);
      cursor: pointer;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--accent);
      width: 100%;
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .filter-toggle:hover {
      background: rgba(79,168,224,0.17);
      border-color: rgba(79,168,224,0.6);
    }
    .filter-toggle-chevron {
      font-size: 0.7rem;
      line-height: 1;
      transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
      flex-shrink: 0;
    }
    .filter-toggle-chevron.open {
      transform: rotate(180deg);
    }

    .filter-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 14px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.03);
      cursor: pointer;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--white);
      transition: all .15s;
      width: auto;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .filter-btn:hover { border-color: var(--accent); background: rgba(79,168,224,0.05); }

    .filter-btn.active {
      border-color: var(--accent);
      background: rgba(79,168,224,0.12);
      color: var(--accent);
    }

    .filter-btn.all-months {
      border-color: rgba(79,168,224,0.3);
      background: rgba(79,168,224,0.06);
    }

    .filter-btn.all-months.active {
      background: rgba(79,168,224,0.18);
    }

    .filter-count {
      font-size: 0.7rem;
      color: var(--accent);
      font-family: var(--mono);
      display: none;
    }

    .filter-btn.active .filter-count {
      font-weight: 700;
      display: none;
    }


    .ranking-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .ranking-title {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--muted-light);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      text-align: left;
      margin-bottom: 0;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .ranking-list {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .ranking-item {
      background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all 0.3s;
    }
    .ranking-item:nth-child(1) { border-color: rgba(255, 215, 0, 0.3); background: rgba(255, 215, 0, 0.05); }
    .ranking-item:nth-child(2) { border-color: rgba(192, 192, 192, 0.3); background: rgba(192, 192, 192, 0.05); }
    .ranking-item:nth-child(3) { border-color: rgba(205, 127, 50, 0.3); background: rgba(205, 127, 50, 0.05); }

    .rank-number {
      width: 28px;
      height: 28px;
      background: rgba(79,168,224,0.15);
      border: 1px solid rgba(79,168,224,0.3);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--mono);
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--accent);
      flex-shrink: 0;
    }
    .ranking-item:nth-child(1) .rank-number { background: #ffd700; color: #000; border: none; }
    .ranking-item:nth-child(2) .rank-number { background: #c0c0c0; color: #000; border: none; }
    .ranking-item:nth-child(3) .rank-number { background: #cd7f32; color: #000; border: none; }

    .rank-info { flex: 1; text-align: left; }
    .rank-name { font-weight: 600; color: var(--cloud); font-size: 0.85rem; }
    .rank-amount { font-family: var(--mono); font-size: 0.75rem; color: var(--accent); font-weight: 700; }

    /* Navigation dots */
    .stage-dots {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.6rem;
      z-index: 10;
    }
    .stage-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.2);
      cursor: pointer;
      transition: all 0.3s;
    }
    .stage-dot.active {
      background: var(--accent);
      width: 24px;
      border-radius: 4px;
    }

    .swipe-hint {
      position: absolute;
      right: 1.5rem;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      color: var(--muted);
      font-size: 0.7rem;
      font-family: var(--mono);
      opacity: 0.6;
      animation: swipeAnim 2s infinite;
      pointer-events: none;
      z-index: 5;
    }
    @keyframes swipeAnim {
      0%, 100% { transform: translate(0, -50%); opacity: 0.6; }
      50% { transform: translate(-10px, -50%); opacity: 1; }
    }


    /* Glow central no stage */
    #donors-stage::before {
      content: '';
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      width: 500px; height: 500px;
      background: radial-gradient(ellipse, rgba(60,130,210,.09) 0%, transparent 65%);
      pointer-events: none;
    }

    /* Mensagem central */
    #stage-center {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      text-align: center;
      pointer-events: none;
      z-index: 5;
    }

    #stage-center .sc-eyebrow {
      font-family: var(--mono);
      font-size: .6rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: .6rem;
    }

    #stage-center .sc-headline {
      font-size: clamp(1.3rem, 3.5vw, 2rem);
      font-weight: 300;
      letter-spacing: -.025em;
      color: var(--cloud);
      line-height: 1.15;
    }

    #stage-center .sc-headline strong {
      font-weight: 700;
      background: linear-gradient(135deg, #c8dff0, #4fa8e0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    #stage-center .sc-sub {
      margin-top: .7rem;
      font-size: .78rem;
      color: var(--muted);
      font-weight: 300;
    }

    #stage-center .sc-line {
      width: 36px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      margin: .7rem auto 0;
    }

    /* Empty state */
    #stage-empty {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: .5rem;
      pointer-events: none; z-index: 3;
    }
    #stage-empty .se-icon { font-size: 1.8rem; opacity: .3; }
    #stage-empty .se-text { font-size: .8rem; color: var(--muted); font-family: var(--mono); letter-spacing: .06em; }

    /* Donor card (inline, no stage) */
    .s-donor-card {
      position: absolute;
      background: rgba(11,24,39,.95);
      border: 1px solid rgba(79,168,224,.18);
      border-radius: 12px;
      padding: 8px 11px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 6px 24px rgba(0,0,0,.5), 0 0 0 0 rgba(79,168,224,0);
      display: flex; align-items: flex-start; gap: 8px;
      width: 185px;
      opacity: 0;
      animation: sDonorIn .4s ease forwards;
      z-index: 6;
      pointer-events: auto;
      cursor: pointer;
      transition: width 0.2s, height 0.2s, z-index 0s, box-shadow 0.3s;
    }

    .s-donor-card.expanded {
      width: 190px; /* Largura quase fixa para expansão vertical */
      min-height: auto;
      z-index: 1000;
      cursor: default;
      box-shadow: 0 10px 40px rgba(0,0,0,0.9), 0 0 0 1px var(--accent);
      transform: scale(1.01);
      background: rgba(15, 32, 56, 0.98);
      border-color: var(--accent);
      padding-bottom: 12px;
    }

    .s-donor-card.expanded .s-msg {
      -webkit-line-clamp: unset;
      display: block;
      font-size: 0.75rem;
      color: var(--white);
      margin-top: 8px;
    }

    .s-donor-card.expanded .s-name {
      font-size: 0.85rem;
      color: var(--accent);
    }

    @keyframes sDonorIn  { from{opacity:0;transform:translateY(8px) scale(.93)} to{opacity:1;transform:translateY(0) scale(1)} }
    @keyframes sDonorOut { from{opacity:1;transform:scale(1)} to{opacity:0;transform:scale(.92)} }
    .s-donor-card.leaving { animation: sDonorOut .35s ease forwards; }

    .s-av {
      width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, #4fa8e0, #1e6fa8);
      display: flex; align-items: center; justify-content: center;
      font-size: .72rem; font-weight: 700; color: #060e1a;
    }
    .s-av.anon { background: linear-gradient(135deg, #1a3050, #0d2040); color: var(--muted); }

    .s-info { min-width: 0; flex: 1; }
    .s-name   { font-size: .74rem; font-weight: 600; color: var(--cloud); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .s-amount { font-size: .66rem; font-weight: 600; color: var(--accent); margin-top: 1px; }
    .s-msg    { font-size: .63rem; color: var(--muted-light); margin-top: 3px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-style: italic; }