:root {
    --bg: #070a18;
    --paper: #0c1026;
    --paper2: #0e1634;
    --text: #e9ecff;
    --muted: #9aa6d6;
    --line: rgba(255, 255, 255, .08);
    --blue: #3b82f6;
    --violet: #7c3aed;
    --cyan: #22d3ee;
    --good: #22c55e;
    --warn: #f59e0b;
    --bad: #ef4444;
    --radius: 18px;
    --shadow: 0 18px 50px rgba(0, 0, 0, .45);
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background:
        radial-gradient(900px 520px at 15% -10%, rgba(124, 58, 237, .35), transparent 60%),
        radial-gradient(820px 520px at 85% 0%, rgba(59, 130, 246, .30), transparent 58%),
        radial-gradient(900px 520px at 60% 120%, rgba(34, 211, 238, .16), transparent 55%),
        linear-gradient(180deg, #050615 0%, #070a18 60%, #050615 100%);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none
}

.wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 18px 14px 46px
}

/* Topbar */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--blue), var(--violet));
    box-shadow: 0 10px 30px rgba(124, 58, 237, .28);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 用 contain，logo 不会被裁 */
    display: block;
}


.brand b {
    letter-spacing: .6px
}

.nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 13px;
    color: var(--muted);
}

.nav a {
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
}

.nav a:hover {
    border-color: rgba(255, 255, 255, .16)
}


/* Hero */
.hero .banner {
    margin-top: 14px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

.hero .banner img {
    width: 100%;
    height: auto;
    display: block;
}

.hero .banner .cap {
    padding: 10px 12px;
    color: rgba(154, 166, 214, .95);
    font-size: 12.5px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(0, 0, 0, .18);
}

.hero {
    margin-top: 14px;
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--line);
    background:
        radial-gradient(900px 500px at 20% 20%, rgba(124, 58, 237, .35), transparent 60%),
        radial-gradient(900px 520px at 90% 10%, rgba(59, 130, 246, .30), transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    box-shadow: var(--shadow);
    padding: 26px 18px;
}

.hero .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .10);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.hero h1 {
    margin: 12px 0 8px;
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -.6px;
}

.hero p {
    margin: 0;
    color: rgba(233, 236, 255, .86);
    max-width: 740px;
    font-size: 15px;
}

.hero .bm {
    margin-top: 10px;
    color: rgba(154, 166, 214, .95);
    font-size: 13px;
}

.hero .cta {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero .note {
    margin-top: 14px;
    color: rgba(154, 166, 214, .92);
    font-size: 12.5px;
}

/* Grid */
.section {
    margin-top: 18px
}

.section .head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.section h2 {
    margin: 0;
    font-size: 16px
}

.section .sub {
    color: var(--muted);
    font-size: 13px;
    margin: 0
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}

.card {
    grid-column: span 6;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
    transition: transform .15s ease, border-color .15s ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .16)
}

.thumb {
    height: 90px;
    background:
        radial-gradient(320px 120px at 20% 0%, rgba(124, 58, 237, .55), transparent 70%),
        radial-gradient(320px 120px at 80% 0%, rgba(59, 130, 246, .45), transparent 70%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.thumb .mini {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 11px;
    color: rgba(233, 236, 255, .85);
}

.thumb .brandlogo {
    position: absolute;
    left: 12px;
    top: 10px;
    height: 66px;
    width: auto;
    min-width: 100px;
    max-width: 310px;
    padding: 6px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, .30);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.thumb .brandlogo img {
    height: 50px;
    padding: 3px 3px;
    width: auto;
    max-width: 160px;
    display: block;

    /* 关键：在图片后面垫一个浅底 */
    background: rgba(255,255,255,.30);
    border-radius: 10px;
    padding: 6px 8px;

    /* 轻微边框 + 阴影，让白底在亮/暗都立起来 */
    box-shadow: 0 6px 18px rgba(0,0,0,.35);
    outline: 1px solid rgba(0,0,0,.10);
    
}

.thumb .brandlogo span {
    font-weight: 900;
    font-size: 13px;
    color: rgba(233, 236, 255, .92);
}


.content {
    padding: 12px 12px 14px
}

.title {
    font-weight: 900;
    margin: 0 0 6px;
    font-size: 14px
}

.meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 0 0 10px
}

.pill {
    font-size: 11px;
    font-weight: 800;
    padding: 5px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(0, 0, 0, .18);
    color: rgba(233, 236, 255, .88);
}

.pill.good {
    border-color: rgba(34, 197, 94, .35);
    color: #bfffd6
}

.pill.warn {
    border-color: rgba(245, 158, 11, .35);
    color: #ffe4b0
}

.pill.bad {
    border-color: rgba(239, 68, 68, .35);
    color: #ffd1d1
}

.desc {
    margin: 0;
    color: rgba(154, 166, 214, .96);
    font-size: 13px;
    line-height: 1.45
}

.actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

/* Authority block */
.authority {
    padding: 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
}

.authority h3 {
    margin: 0 0 8px;
    font-size: 16px
}

.authority p {
    margin: 0;
    color: rgba(154, 166, 214, .96);
    font-size: 13.5px;
    line-height: 1.55
}

/* FAQ */
details {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 12px 12px;
}

details+details {
    margin-top: 10px
}

summary {
    cursor: pointer;
    font-weight: 900;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none
}

.ans {
    margin-top: 8px;
    color: rgba(154, 166, 214, .96);
    font-size: 13.5px;
    line-height: 1.55
}

.faqgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px
}

/* Advertise */

.ad {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .10);
    background:
        radial-gradient(560px 240px at 20% 0%, rgba(34, 211, 238, .18), transparent 60%),
        radial-gradient(560px 240px at 90% 0%, rgba(124, 58, 237, .22), transparent 60%),
        linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .02));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.ad h3 {
    margin: 0;
    font-size: 18px
}

.ad p {
    margin: 6px 0 0;
    color: rgba(154, 166, 214, .96);
    max-width: 680px;
    font-size: 13.5px;
    line-height: 1.55
}

/* Footer */
footer {
    margin-top: 20px;
    padding: 16px 0 0;
    color: rgba(154, 166, 214, .9);
    font-size: 12.5px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

footer a {
    color: rgba(233, 236, 255, .9);
    text-decoration: underline;
    text-underline-offset: 3px
}

@media (max-width: 860px) {
    .hero h1 {
        font-size: 30px
    }

    .card {
        grid-column: span 12
    }
}

/* Force card CTA to look like a button (even if some styles override .btn) */
.card .actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(135deg, rgba(59, 130, 246, .92), rgba(124, 58, 237, .92));
    box-shadow: 0 14px 40px rgba(59, 130, 246, .18);
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.card .actions a:hover {
    filter: brightness(1.05);
}

.brand {
  cursor: pointer;
}

.brand:hover {
  opacity: 0.9;
}

.brand:hover .logo {
  transform: scale(1.05);
}

/* About page: bigger thumbnail cards (do NOT affect homepage review cards) */
.about-grid .card {
  min-height: 240px;
}

.about-grid .thumb {
  height: 160px;              /* 你想更大就 180~220 */
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,.18);
}

/* Make thumbnail image fill nicely */
.about-grid .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;           /* 关键：避免拉伸 */
  object-position: top;
  transform: scale(1.02);      /* 轻微放大，边缘更“满” */
}

/* Add a readable overlay so badge/text stands out */
.about-grid .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

/* Mini badge (HUB/SAFE/TOP/R) */
.about-grid .thumb .mini {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
  backdrop-filter: blur(8px);
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.16);
}

/* Make title/desc spacing nicer */
.about-grid .content {
  padding: 14px 14px 16px;
}

.about-grid .title {
  font-size: 15px;
  margin: 0 0 6px;
}

.about-grid .desc {
  font-size: 13.5px;
  line-height: 1.55;
}

/* Button: full width looks cleaner for these cards */
.about-grid .actions a {
  width: 100%;
  justify-content: center;
}

/* Global button */
a.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:12px 18px;
  border-radius:16px;

  font-size:14px;
  font-weight:800;
  letter-spacing:.2px;

  color:#fff;
  text-decoration:none;

  background: linear-gradient(135deg, rgba(59,130,246,.95), rgba(124,58,237,.95));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 40px rgba(59,130,246,.25);

  cursor:pointer;
  white-space:nowrap;
  transition: transform .15s ease, filter .15s ease;
}

a.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.08);
}

/* Group titles */
.contact-group .group-title{
  font-size:13px;
  font-weight:900;
  letter-spacing:.4px;
  text-transform:uppercase;
  color: var(--muted);
  margin-bottom:10px;
}

/* Base grid */
.social-grid{
  display:grid;
  gap:14px;
}

/* Column variants */
.social-grid.two-col{
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.social-grid.three-col{
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Button */
.social-btn{
  display:flex;
  align-items:center;
  gap:14px;

  padding:14px 16px;
  border-radius:18px;

  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);

  color: var(--text);
  text-decoration:none;

  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}

.social-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}

/* Icon */
.social-btn .icon{
  font-size:22px;
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.14);
}

/* Text */
.social-btn .text strong{
  display:block;
  font-size:14px;
  font-weight:900;
}

.social-btn .text small{
  display:block;
  font-size:12px;
  color: var(--muted);
  margin-top:2px;
}

/* Platform accents */
.social-btn.telegram.primary{
  background: linear-gradient(
    135deg,
    rgba(34,211,238,.18),
    rgba(59,130,246,.22)
  );
  border-color: rgba(34,211,238,.45);
}

.social-btn.telegram.primary .icon{
  background: rgba(34,211,238,.25);
}

.social-btn.telegram .icon{
  background: rgba(34,211,238,.18);
}

.social-btn.email .icon{
  background: rgba(124,58,237,.25);
}

.social-btn.facebook .icon{
  background: rgba(59,130,246,.25);
}

.social-btn.twitter .icon{
  background: rgba(255,255,255,.18);
}



/* Contact page card images: show more content */
.contact-cards .thumb{
  height: 180px;              /* 比原本 90px 高 */
}

.contact-cards .thumb img{
  object-fit: contain;        /* 不裁图 */
  background: radial-gradient(
    400px 120px at 50% 0%,
    rgba(124,58,237,.35),
    rgba(0,0,0,.15)
  );
}

/* Withdraw Fail: make cards tighter + more "pro" */
.wf-grid .wf-card{
  min-height: 0;                 /* cancel tall feel */
  overflow: hidden;
}

/* Compact header instead of empty thumb */
.wf-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(520px 180px at 20% 0%, rgba(124,58,237,.28), transparent 60%),
    radial-gradient(520px 180px at 80% 0%, rgba(59,130,246,.24), transparent 60%),
    rgba(255,255,255,.02);
}

/* Icon badge (consistent, not emoji-floating) */
.wf-ico{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

/* # badge on the right */
.wf-no{
  font-size: 12px;
  font-weight: 900;
  color: rgba(233,236,255,.88);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
}

/* Body spacing */
.wf-body{
  padding: 12px 12px 14px;
}

.wf-body .title{
  margin: 0 0 6px;
  font-size: 14px;
}

.wf-body .desc{
  margin: 0;
  color: rgba(154,166,214,.96);
  font-size: 13px;
  line-height: 1.5;
}

/* Tip line for "pro" feel */
.wf-tip{
  margin: 10px 0 0;
  font-size: 12.5px;
  color: rgba(233,236,255,.78);
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
}

/* Left accent line by tone (subtle) */
.wf-card{
  position: relative;
}
.wf-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: 3px;
  opacity: .9;
  background: rgba(59,130,246,.55); /* default */
}

/* Tone variants */
.wf-card[data-tone="info"]::before{ background: rgba(34,211,238,.55); }
.wf-card[data-tone="warn"]::before{ background: rgba(245,158,11,.55); }
.wf-card[data-tone="lock"]::before{ background: rgba(124,58,237,.55); }
.wf-card[data-tone="time"]::before{ background: rgba(59,130,246,.55); }
.wf-card[data-tone="mix"]::before{ background: rgba(239,68,68,.45); }

/* Hover feels more premium */
.wf-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
}

/* best-free-credit-no-deposit page card images: show more content */
.bestpick-cards .thumb{
  height: 280px;              /* 比原本 90px 高 */
}

.bestpick-cards .thumb img{
  object-fit: contain;        /* 不裁图 */
  background: radial-gradient(
    400px 120px at 50% 0%,
    rgba(124,58,237,.35),
    rgba(0,0,0,.15)
  );
}

/* Scam Patterns: compact header + strong warning style */
.sc-card{
  min-height: 0;
  position: relative;
  overflow: hidden;
}

.sc-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(520px 180px at 20% 0%, rgba(239,68,68,.18), transparent 60%),
    radial-gradient(520px 180px at 80% 0%, rgba(245,158,11,.14), transparent 60%),
    rgba(255,255,255,.02);
}

.sc-ico{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
}

.sc-tag{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .4px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(233,236,255,.9);
}

.sc-body{
  padding: 12px 12px 14px;
}

.sc-tip{
  margin: 10px 0 0;
  font-size: 12.5px;
  color: rgba(233,236,255,.78);
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.08);
}

/* Left accent by tone */
.sc-card::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 3px;
  opacity: .95;
  background: rgba(245,158,11,.55);
}

.sc-card[data-tone="danger"]::before{ background: rgba(239,68,68,.62); }
.sc-card[data-tone="warn"]::before{ background: rgba(245,158,11,.58); }
.sc-card[data-tone="info"]::before{ background: rgba(34,211,238,.52); }

/* Hover */
.sc-card:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.16);
}

/* List inside withdraw-fail cards */
.wf-list{
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 13px;
  color: rgba(154,166,214,.96);
  line-height: 1.55;
}

.wf-list li{
  margin: 4px 0;
}

/* Mobile Topbar fix (stack + 2x2 nav grid) */
@media (max-width: 520px) {
  .wrap{
    padding-top: 14px; /* 稍微更紧凑 */
  }

  .topbar{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 20px;
  }

  .brand{
    width: 100%;
    gap: 10px;
  }

  .logo{
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
  }

  /* 让品牌文字不要太大、避免换行乱跳 */
  .brand b{
    font-size: 14px;
    letter-spacing: .2px;
  }

  /* nav 改成 2x2，更像手机 UI */
  .nav{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    justify-content: initial; /* 取消右对齐 */
    flex-wrap: initial;       /* 取消换行逻辑，交给 grid */
  }

  .nav a{
    text-align: center;
    padding: 10px 0;
    border-radius: 14px;
  }
}







