*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --pink: #ff2d78;
  --purple: #b44dff;
  --red: #ff1744;
  --bg: #0a0a0f;
  --card: #111119;
  --card-hover: #18182a;
  --border: #1e1e30;
  --gold: #ffd700;
  --silver: #c0c0c0;
  --bronze: #cd7f32;
  --text: #e0e0e8;
  --muted: #8888a0;
  --dim: #55556a;
  --nav-h: 60px;
  --max-w: 900px;
}
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* scrollbar */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(180,77,255,.3); border-radius: 4px; }

/* ========== ANIMATIONS ========== */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px rgba(255,45,120,.25); }
  50% { box-shadow: 0 0 35px rgba(255,45,120,.5); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== BODY BG ========== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255,45,120,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(180,77,255,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255,45,120,.02) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ========== CONTAINER ========== */
.wrap {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(10,10,15,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: all .25s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}
.nav-links a.active {
  color: #f9a8d4;
  background: rgba(255,45,120,.1);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-btn-rating {
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
}
.nav-btn-rating:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,45,120,.35);
}
.nav-profile { position: relative; }
.nav-profile-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(180,77,255,.2), rgba(255,45,120,.2));
  border: 2px solid rgba(180,77,255,.25);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  font-size: 14px;
  color: #d8b4fe;
}
.nav-profile-btn:hover {
  border-color: var(--purple);
  box-shadow: 0 0 12px rgba(180,77,255,.25);
}
.nav-profile-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 240px;
  background: #15151f;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,.6);
  animation: fadeIn .2s ease;
}
.nav-profile-dropdown.open { display: block; }
.nav-dd-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.nav-dd-avatar img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.nav-dd-info { flex: 1; min-width: 0; }
.nav-dd-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-dd-role { font-size: 11px; color: var(--dim); }
.nav-dd-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--muted);
  transition: all .2s;
  cursor: pointer;
}
.nav-dd-link:hover {
  background: rgba(255,255,255,.05);
  color: #fff;
}
.nav-dd-link .dd-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

/* Mobile hamburger */
.nav-burger {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--muted);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,15,.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 16px;
  overflow-y: auto;
  animation: fadeIn .2s ease;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  transition: all .2s;
  margin-bottom: 4px;
}
.mobile-menu a:hover { background: rgba(255,255,255,.05); color: #fff; }
.mobile-menu a.mm-active { color: #f9a8d4; background: rgba(255,45,120,.08); }
.mobile-menu .mm-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: rgba(180,77,255,.1);
  border: 1px solid rgba(180,77,255,.15);
}
.mobile-menu .mm-divider { height: 1px; background: var(--border); margin: 10px 0; }
.mobile-menu .mm-profile-section {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 14px;
}
.mobile-menu .mm-avatar img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.mobile-menu .mm-name { font-size: 14px; font-weight: 600; color: #fff; }
.mobile-menu .mm-role { font-size: 11px; color: var(--dim); }
.mobile-menu .mm-rating-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 14px;
  transition: all .3s;
}
.mobile-menu .mm-rating-btn:hover { box-shadow: 0 4px 20px rgba(255,45,120,.35); }

/* ========== HERO ========== */
.hero {
  position: relative;
  text-align: center;
  padding: 84px 16px 48px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,45,120,.1) 0%, rgba(180,77,255,.05) 40%, transparent 70%);
  pointer-events: none;
}
.hero-date {
  display: inline-block;
  background: rgba(255,45,120,.1);
  border: 1px solid rgba(255,45,120,.25);
  color: #f9a8d4;
  border-radius: 9999px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}
.hero h1 { line-height: 1.15; margin-bottom: 18px; }
.hero-title {
  font-size: 38px;
  font-weight: 900;
  background: linear-gradient(90deg, #ff2d78, #b44dff, #ff2d78);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
.hero-sub {
  display: block;
  font-size: 34px;
  font-weight: 900;
  color: #fff;
}
.hero-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 20px;
}
.hero-desc strong { color: #fff; }
.hero-desc em { color: #f9a8d4; font-style: normal; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.hero-badge {
  border-radius: 9999px;
  padding: 5px 14px;
  font-size: 13px;
}

/* ========== SECTION TITLES ========== */
.sec-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 6px;
}
.sec-sub {
  color: var(--dim);
  text-align: center;
  margin-bottom: 32px;
  font-size: 14px;
}

/* ========== TOP-3 GRID ========== */
.top3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 35px;
}

/* ========== CARD ========== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: rgba(180,77,255,.3);
  box-shadow: 0 0 24px rgba(180,77,255,.12), 0 0 48px rgba(255,45,120,.06);
}
.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Top card variants */
.card-gold { border-color: rgba(255,215,0,.3); background: linear-gradient(160deg, rgba(255,215,0,.04), rgba(255,45,120,.04), var(--card)); }
.card-silver { border-color: rgba(255,215,0,.3); background: linear-gradient(160deg, rgba(255,215,0,.04), rgba(255,45,120,.04), var(--card)); }
.card-bronze { border-color: rgba(205,127,50,.3); background: linear-gradient(160deg, rgba(205,127,50,.04), rgba(255,45,120,.04), var(--card)); }

/* ========== IMAGE BANNER ========== */
.img-banner {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.card:hover .img-banner img { transform: scale(1.05); }
.img-banner .overlay {
  position: absolute;
  inset: 0;
}
.img-banner .badge-tl {
  position: absolute;
  top: 10px;
  left: 10px;
}
.img-banner .crown-tr {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  filter: drop-shadow(0 0 6px rgba(255,215,0,.5));
}
.img-banner .name-bl {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
}

/* Small image in grid cards */
.img-sm {
  position: relative;
  height: 120px;
  overflow: hidden;
}
.img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.card:hover .img-sm img { transform: scale(1.06); }
.img-sm .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,25,.85) 0%, rgba(17,17,25,.35) 50%, transparent 100%);
}
.img-sm .rank-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgb(80 0 138);
  backdrop-filter: blur(4px);
  font-size: 11px;
  font-weight: 700;
  color: #d8b4fe;
  border: 1px solid rgba(180,77,255,.2);
}
.img-sm .plat-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 10px;
  color: #d1d5db;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  border-radius: 9999px;
  padding: 2px 7px;
}

/* Card header (no image) */
.card-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.card-hdr-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.rank-circle {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(180,77,255,.2);
  font-size: 12px;
  font-weight: 700;
  color: #d8b4fe;
  flex-shrink: 0;
}

/* ========== PILLS / TAGS ========== */
.pill {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,45,120,.1), rgba(180,77,255,.1));
  border: 1px solid rgba(255,45,120,.18);
  border-radius: 9999px;
  padding: 2px 9px;
  font-size: 10px;
  color: #f9a8d4;
  white-space: nowrap;
}
.medal-pill {
  display: inline-block;
  border-radius: 9999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
}
.medal-gold { background: rgb(0 0 0 / 58%); color: #ffd700; border: 1px solid rgba(255,215,0,.3); }
.medal-silver { background: #ff00b1; color: #ffffff; border: 1px solid rgba(192,192,192,.3); }
.medal-bronze { background: #000; color: #fb923c; border: 1px solid rgba(205,127,50,.3); }

/* ========== STARS ========== */
.stars { display: flex; align-items: center; gap: 1px; }
.star-on { color: #ffd700; font-size: 12px; }
.star-off { color: #333; font-size: 12px; }
.star-val { color: var(--muted); font-size: 12px; margin-left: 4px; }

.name-bl h3 {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .7);
}

/* ========== SPECS ========== */
.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  font-size: 11px;
  color: var(--dim);
  margin-bottom: 12px;
}
.specs b { color: #d1d5db; font-weight: 500; }

/* ========== BUTTON ========== */
.btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  background: linear-gradient(135deg, #ff2d78, #b44dff);
  border: none;
  cursor: pointer;
  transition: all .3s;
}
.btn:hover {
  background: linear-gradient(135deg, #ff4d90, #c570ff);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,45,120,.35);
  color: #fff;
}
.btn-lg {
  display: inline-block;
  width: auto;
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 14px;
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ========== FILTER BUTTONS ========== */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.fbtn {
  border-radius: 9999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  cursor: pointer;
  transition: all .3s;
}
.fbtn:hover { color: #fff; border-color: #555; }
.fbtn.on {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 3px 12px rgba(255,45,120,.2);
}
 
.bot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.bot-grid .card-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  line-height: 1.3;
}
.bot-grid .card-desc { 
  font-size: 12px;
  line-height: 1.5;
  flex-grow: 1;
  margin: 6px 0 8px;
}
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}

/* ========== COMPARISON TABLE ========== */
.sort-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
}
.sbtn {
  border-radius: 10px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--dim);
  cursor: pointer;
  transition: all .3s;
}
.sbtn:hover { color: #d1d5db; }
.sbtn.on { background: rgba(180,77,255,.15); color: #d8b4fe; border-color: rgba(180,77,255,.3); }

.tbl-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 64px;
}
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 600px;
}
.tbl thead { background: var(--card); }
.tbl th {
  padding: 12px 14px;
  text-align: left;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  font-size: 12px;
}
.tbl td {
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}
.tbl tbody tr { transition: background .2s; }
.tbl tbody tr:hover { background: rgba(180,77,255,.06); }
.tbl .btn-sm {
  display: inline-block;
  width: auto;
  padding: 5px 12px;
  font-size: 11px;
  border-radius: 8px;
}

/* ========== HOW-TO — 2 columns at 900px ========== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 64px;
}
.how-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  transition: border-color .3s, box-shadow .3s;
}
.how-card:hover {
  border-color: rgba(180,77,255,.2);
  box-shadow: 0 0 24px rgba(180,77,255,.08);
}
.how-card .how-icon { font-size: 24px; margin-bottom: 10px; }
.how-card h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.how-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ========== FAQ ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto 64px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #f9a8d4; }
.faq-item .arrow {
  font-size: 16px;
  color: var(--purple);
  transition: transform .3s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item[open] .arrow { transform: rotate(180deg); }
.faq-body {
  padding: 0 20px 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ========== CTA ========== */
.cta-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,45,120,.12), rgba(180,77,255,.12), rgba(255,45,120,.12));
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
}
.cta-inner h2 { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-inner p { color: #d1d5db; font-size: 14px; line-height: 1.65; max-width: 600px; margin: 0 auto 24px; }
.cta-inner strong { color: #f9a8d4; }

/* ========== WARNING ========== */
.warn-box {
  background: rgba(127,29,29,.2);
  border: 1px solid rgba(153,27,27,.35);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 16px;
}
.warn-box h3 { font-size: 18px; font-weight: 700; color: #f87171; margin: 10px 0; }
.warn-box p { font-size: 13px; color: rgba(252,165,165,.75); line-height: 1.65; max-width: 680px; margin: 0 auto; }

/* ========== FOOTER ========== */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  text-align: center;
}
footer p { font-size: 12px; color: var(--dim); margin-bottom: 5px; }
footer .copy { font-size: 11px; color: #3a3a50; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-btn-rating { display: none; }
  .nav-burger { display: flex; }
  .top3-grid { grid-template-columns: 1fr; }
  .bot-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 25px; }
  .hero-sub { font-size: 22px; }
  .sec-title { font-size: 18px; }
  .hero { padding: 76px 12px 36px; }
  .filters { gap: 6px; }
  .fbtn { padding: 5px 7px;font-size: 12px; }
  .nav-profile-btn { display: none; }
.hero-desc {font-size: 12px;line-height: 1.4;}
.hero-date {font-size: 10px;}
  .hero-badge {padding: 5px 10px;font-size: 10px;}
  .btn {padding: 10px 9px; font-size: 19px;}
}

.mb-30 {
    margin-bottom: 30px;
}