:root {
  --dark: #0e0e10;
  --card: rgba(22, 22, 26, .78);
  --primary: #ff4d4d;
  --primary-2: #b30000;
  --text: #f0f0f0;
  --muted: #9b9ba4;
  --green: #62ff83;
  --amber: #ffb347;
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .16);
  --radius: 18px;
  --shadow: 0 18px 44px rgba(0, 0, 0, .5);
  --tg: #2aa3d9;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; min-height: 100%; max-width: 100%; }
html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: Montserrat, system-ui, sans-serif;
  overflow-x: hidden;
}

.bg {
  position: fixed; inset: 0; z-index: -3;
  background: url("assets/fundo-rt.jpg") center 18% / cover no-repeat;
  filter: brightness(.38) saturate(1.12);
}
.overlay {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 560px at 50% -8%, rgba(255, 77, 77, .28), transparent 62%),
    radial-gradient(640px 420px at 88% 88%, rgba(179, 0, 0, .18), transparent 55%),
    linear-gradient(to bottom, rgba(0,0,0,.72), rgba(0,0,0,.55) 42%, rgba(8,8,10,.94));
}
.dust { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.dust i {
  position: absolute; bottom: -40px;
  color: rgba(255, 255, 255, .14);
  animation: dustUp linear infinite;
}
@keyframes dustUp {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  12% { opacity: 1; }
  100% { transform: translateY(-112vh) rotate(300deg); opacity: 0; }
}

.wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 22px 14px 110px;
  overflow-x: hidden;
}

.brand {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 12px; margin-bottom: 22px;
  width: 100%; min-width: 0;
}
.logo-ring {
  position: relative;
  width: 86px; height: 86px;
}
.logo-ring img {
  width: 86px; height: 86px; border-radius: 50%; object-fit: cover;
  border: 2.5px solid var(--primary);
  box-shadow: 0 0 26px rgba(255, 77, 77, .5);
  background: #000;
}
.logo-ring::after {
  content: ""; position: absolute; right: 4px; bottom: 4px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--green); border: 2.5px solid #0e0e10;
  box-shadow: 0 0 10px var(--green);
}
.kicker {
  margin: 2px 0 0;
  font-size: .58rem; font-weight: 900; letter-spacing: 2.4px;
  text-transform: uppercase; color: var(--green);
}
.title {
  margin: 0;
  width: 100%;
  font-size: clamp(1.45rem, 6.2vw, 2.15rem);
  font-weight: 900; letter-spacing: .4px; line-height: 1.05;
}
.title span {
  display: block;
  background: linear-gradient(100deg, #fff 8%, #ff8f8f 34%, #fff 56%, #ff4d4d 78%, #fff 96%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.sub {
  margin: 0;
  max-width: 440px;
  padding: 0 8px;
  color: #b6b6be;
  font-size: .78rem; font-weight: 600; line-height: 1.55;
  overflow-wrap: anywhere;
}
.pills {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  gap: 8px;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
}
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  flex: 0 0 auto;
  white-space: nowrap;
  border: 1px solid rgba(255, 77, 77, .32);
  background: rgba(255, 77, 77, .1);
  color: #ffd9d9;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: .62rem; font-weight: 800; letter-spacing: .6px;
  text-transform: uppercase;
}
.pill.ok {
  border-color: rgba(98, 255, 131, .28);
  background: rgba(98, 255, 131, .08);
  color: #9dffb5;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: blip 1.8s ease-in-out infinite;
}
@keyframes blip {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.85); }
}
.verified {
  display: inline-flex; align-items: center; gap: 5px;
  color: #1d9bf0; font-size: .68rem; font-weight: 800;
}
.verified svg { width: 14px; height: 14px; }

.panel {
  background: var(--card);
  border: 1px solid rgba(255, 77, 77, .28);
  border-radius: 22px;
  padding: 20px 16px 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  min-width: 0;
}
.sec-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
}
.sec-head h2 {
  margin: 0;
  font-size: .72rem; font-weight: 800;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--primary);
}
.sec-head svg { color: var(--primary); }
.hint {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .7rem; font-weight: 600; line-height: 1.5;
  overflow-wrap: anywhere;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.card {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 7px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 16px 10px 13px;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0 auto auto 0;
  width: 140%; height: 70px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  transform: translateX(-70%);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 77, 77, .55);
  box-shadow: 0 10px 24px rgba(255, 77, 77, .12);
}
.card:hover::before { animation: shine .7s ease; }
@keyframes shine {
  to { transform: translateX(80%); }
}
.icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  transition: transform .22s ease;
}
.card:hover .icon { transform: scale(1.1); }
.icon svg { width: 26px; height: 26px; display: block; }
.name {
  font-size: .78rem; font-weight: 800; color: #fff;
}
.meta {
  font-size: .58rem; font-weight: 700; letter-spacing: .4px;
  color: var(--muted); text-transform: uppercase;
}
.status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .58rem; font-weight: 800; letter-spacing: .5px;
  color: #b4b4be;
}
.status .mini {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
}

.card.support {
  border-color: rgba(42, 163, 217, .45);
  background: linear-gradient(160deg, rgba(0, 136, 204, .18), rgba(255,255,255,.03));
}
.card.support:hover {
  border-color: #2aa3d9;
  box-shadow: 0 10px 24px rgba(0, 136, 204, .18);
}
.card.support .name { color: #7ad4ff; }
.card.support .status { color: #7ad4ff; }
.tg-icon {
  background: linear-gradient(45deg, #0088cc, #005f8f);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 136, 204, .35);
}

.cta-limit {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 12px; width: 100%; min-height: 96px;
  padding: 18px 16px; text-decoration: none; color: #fff !important;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: linear-gradient(120deg, #ff4d4d 0%, #c40000 48%, #7a0000 100%);
  box-shadow: 0 16px 34px rgba(255, 77, 77, .32);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta-limit:hover, .cta-limit:visited {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 77, 77, .42);
  color: #fff !important; text-decoration: none;
}
.cta-gem {
  flex: 0 0 48px; width: 48px; height: 48px; max-width: 48px; max-height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.14);
  overflow: hidden;
}
.cta-gem svg { width: 26px !important; height: 26px !important; max-width: 26px; display: block; }
.cta-copy { text-align: left; min-width: 0; }
.cta-copy strong {
  display: block;
  font-size: clamp(.82rem, 3.4vw, 1.02rem);
  font-weight: 900; letter-spacing: .3px;
  text-transform: uppercase; line-height: 1.2;
}
.cta-copy small {
  display: block; margin-top: 5px;
  font-size: .68rem; font-weight: 700; color: #ffd9d9;
}

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 14px;
  color: #c9c9d2; text-decoration: none;
  font-size: .72rem; font-weight: 800;
}
.back-link:hover { color: #fff; }

.token-box textarea {
  width: 100%; min-height: 110px; resize: vertical;
  border-radius: 14px; border: 1px solid var(--line-2);
  background: rgba(14, 14, 16, .7); color: #fff;
  padding: 14px; font-family: inherit; font-size: .82rem; font-weight: 600;
  outline: none;
}
.token-box textarea:focus { border-color: rgba(255, 77, 77, .7); }
.btn-check {
  margin-top: 12px; width: 100%; height: 52px;
  border: 0; border-radius: 14px; cursor: pointer;
  background: linear-gradient(120deg, #ff4d4d, #b30000);
  color: #fff; font-family: inherit;
  font-size: .86rem; font-weight: 900; letter-spacing: .4px;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(255, 77, 77, .28);
}
.btn-check:disabled { opacity: .6; cursor: wait; }

.player-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
  padding: 18px 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 77, 77, .38);
  background:
    radial-gradient(420px 160px at 90% -20%, rgba(255, 77, 77, .28), transparent 70%),
    linear-gradient(160deg, rgba(48, 18, 22, .96), rgba(14, 14, 16, .92));
  box-shadow: 0 16px 36px rgba(0, 0, 0, .35);
}
.player-kicker {
  margin: 0 0 6px;
  font-size: .55rem; font-weight: 900; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--green);
}
.player-nick {
  margin: 0 0 14px;
  font-size: clamp(1.15rem, 5vw, 1.55rem);
  font-weight: 900; line-height: 1.15; word-break: break-word;
  background: linear-gradient(100deg, #fff, #ffb4b4 55%, #fff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.player-meta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.player-chip {
  background: rgba(0, 0, 0, .32);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  min-width: 0;
}
.player-chip span {
  display: block;
  font-size: .52rem; font-weight: 800; letter-spacing: 1.1px;
  text-transform: uppercase; color: var(--muted);
}
.player-chip b {
  display: block; margin-top: 5px;
  font-size: .82rem; font-weight: 900; color: #fff;
  overflow-wrap: anywhere;
}

.pkg-list { display: grid; gap: 8px; }
.pkg {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(14,14,16,.55));
  border: 1px solid var(--line);
  border-radius: 14px; padding: 13px 14px;
}
.pkg b { font-size: .92rem; font-weight: 900; color: #fff; }
.pkg .ok {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); font-size: .62rem; font-weight: 900; letter-spacing: .7px;
}
.pkg .no {
  color: #ff6b6b; font-size: .62rem; font-weight: 900; letter-spacing: .7px;
}
.pkg .ok::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
}
.btn-ghost {
  margin-top: 14px; width: 100%; height: 46px;
  border-radius: 12px; cursor: pointer;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.04);
  color: #fff; font-family: inherit;
  font-size: .78rem; font-weight: 800;
}
.bonus {
  margin-top: 12px;
  background: rgba(14, 14, 16, .55);
  border: 1px solid var(--line);
  border-radius: 14px; padding: 14px;
}
.bonus h3 {
  margin: 0 0 8px;
  font-size: .68rem; font-weight: 900; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--primary);
}
.bonus p { margin: 0; font-size: .78rem; font-weight: 700; color: #d6d6de; line-height: 1.55; }
.bonus p + p { margin-top: 6px; }
.msg {
  margin-top: 14px; padding: 12px 14px; border-radius: 14px;
  font-size: .78rem; font-weight: 700; line-height: 1.5;
}
.msg.err { background: rgba(255, 77, 77, .12); border: 1px solid rgba(255, 77, 77, .35); color: #ffb4b4; }
.msg.ok { background: rgba(98, 255, 131, .08); border: 1px solid rgba(98, 255, 131, .28); color: #9dffb5; }
.hidden { display: none !important; }

.support-banner {
  margin-top: 12px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: linear-gradient(120deg, rgba(0, 136, 204, .16), rgba(22, 22, 26, .7));
  border: 1px solid rgba(42, 163, 217, .35);
  border-radius: 16px;
  padding: 14px;
}
.support-left {
  display: flex; align-items: center; gap: 12px; min-width: 0;
}
.support-ico {
  flex: 0 0 42px; width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(45deg, #0088cc, #005f8f);
  color: #fff;
  font-size: 1.25rem;
}
.support-left h3 {
  margin: 0; font-size: .82rem; font-weight: 900; color: #fff;
}
.support-left p {
  margin: 2px 0 0;
  font-size: .68rem; font-weight: 600; color: #a3a3ac;
}
.btn-tg {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 7px;
  height: 40px; padding: 0 16px;
  border-radius: 11px;
  background: linear-gradient(45deg, #0088cc, #005f8f);
  color: #fff !important;
  text-decoration: none;
  font-size: .72rem; font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 136, 204, .28);
  transition: transform .2s ease;
}
.btn-tg:hover { transform: translateY(-2px); color: #fff; }

.note {
  margin-top: 14px;
  display: flex; gap: 10px; align-items: flex-start;
  border-left: 3px solid var(--amber);
  background: rgba(255, 179, 71, .08);
  border-radius: 0 12px 12px 0;
  padding: 11px 12px;
}
.note svg { flex: 0 0 auto; color: var(--amber); margin-top: 1px; }
.note p {
  margin: 0;
  font-size: .7rem; font-weight: 600; color: #c9c9d2; line-height: 1.55;
}
.note b { color: #fff; }

.foot {
  margin-top: 22px;
  padding: 0 8px;
  text-align: center;
  color: #5f5f68;
  font-size: .64rem; font-weight: 800; letter-spacing: .4px;
}
.foot span { color: var(--primary); }
.legal {
  margin: 10px auto 0;
  max-width: 520px;
  font-size: .58rem; font-weight: 600; color: #5f5f68; line-height: 1.55;
}

.float-tg {
  position: fixed; right: 16px; bottom: 18px; z-index: 40;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(45deg, #0088cc, #005f8f);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 136, 204, .4);
  text-decoration: none;
  transition: transform .2s ease;
}
.float-tg:hover { transform: scale(1.08); color: #fff; }
.float-tg svg { width: 28px; height: 28px; }

.toast {
  position: fixed; left: 50%; bottom: 88px; z-index: 50;
  transform: translateX(-50%) translateY(16px);
  background: rgba(14, 14, 16, .92);
  border: 1px solid rgba(255, 77, 77, .4);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: .72rem; font-weight: 800;
  opacity: 0; pointer-events: none;
  transition: .25s ease;
  backdrop-filter: blur(10px);
}
.toast.show {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

@media (min-width: 640px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .panel { padding: 24px 22px 20px; }
  .wrap { padding-top: 36px; padding-left: 18px; padding-right: 18px; }
  .pills { display: flex; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 639px) {
  .support-banner { flex-direction: column; align-items: stretch; }
  .btn-tg { justify-content: center; width: 100%; }
  .card { padding: 14px 8px 12px; }
}

@media (max-width: 480px) {
  .wrap { padding: 16px 12px 110px; }
  .logo-ring, .logo-ring img { width: 74px; height: 74px; }
  .brand { gap: 8px; margin-bottom: 16px; }
  .pill { font-size: .55rem; padding: 5px 10px; letter-spacing: .35px; }
  .pills { gap: 6px; }
  .title { font-size: 1.42rem; }
  .panel { padding: 16px 12px 14px; }
  .cta-limit { flex-direction: column; text-align: center; min-height: 110px; }
  .cta-copy { text-align: center; }
  .player-meta { grid-template-columns: 1fr; }
}
