
:root{--blue:#003a92;--red:#dc2626;--bg:#f3f4f6;--text:#0f172a;--muted:#6b7280;--card:#ffffff;--line:#e5e7eb;}
*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;background:var(--bg);color:var(--text)}
a{text-decoration:none;color:inherit}
img{max-width:100%;height:auto;display:block}
.container{width:min(430px, calc(100% - 10px));margin:0 auto}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* fixed header (compact) */
.fixedHeader{position:fixed;top:0;left:0;right:0;z-index:50;border-bottom:1px solid var(--line)}
.topbar{background:var(--blue);color:#fff}
.topbar .row{display:flex;align-items:center;justify-content:space-between;padding:6px 6px}
.brand{display:flex;align-items:center;gap:8px}
.brand img{width:28px;height:28px;border-radius:7px}
.brand strong{font-weight:900;letter-spacing:.2px}
.actions{display:flex;align-items:center;gap:8px}
.joinBtn{display:inline-flex;align-items:center;gap:6px;background:#16a34a;border:2px solid rgba(255,255,255,.4);color:#fff;padding:6px 10px;border-radius:999px;font-weight:900;font-size:12px}
.menuBtn{width:34px;height:34px;border-radius:10px;border:1px solid rgba(255,255,255,.25);display:grid;place-items:center;cursor:pointer}
.subbar{background:#fff}
.subbar .tabs{display:flex}
.subbar a,.subbar span{flex:1;text-align:center;padding:8px 0;font-weight:900;border-right:1px solid #374151;cursor:pointer}
.subbar a:last-child,.subbar span:last-child{border-right:0}
.subbar a.active{color:#7f1d1d;border-bottom:2px solid #7f1d1d}

.main{padding-top:86px}

/* hero + overlay cta */
.heroWrap{position:relative;border-radius:10px;overflow:hidden;background:#000}
.heroWrap img{width:100%}
.heroCta{position:absolute;left:0;right:0;bottom:210px;margin:auto;width:86%;height:0}
.heroCta .download{position:absolute;left:0;right:0;margin:auto;display:block;text-align:center;background:linear-gradient(#ffd27a,#f59e0b);border:3px solid #000;border-radius:999px;padding:14px 0;font-size:22px;font-weight:1000;color:#fff;text-shadow:0 2px 0 rgba(0,0,0,.55)}
.heroBadges{display:flex;gap:10px;justify-content:space-between;align-items:center;margin:8px 0}
.badge{flex:1;background:linear-gradient(#2b1247,#120a24);color:#fff;border-radius:12px;padding:10px;border:1px solid rgba(255,255,255,.14)}
.badge strong{display:block;font-size:14px}
.badge small{opacity:.85;font-weight:800}

.claim {
    display: flex;             /* 外层用 flex */
    justify-content: center;   /* 水平居中 */
}

.claim button {
    display: inline-flex;      /* 内部 flex 方便文字居中 */
    justify-content: center;   /* 文字水平居中 */
    align-items: center;       /* 文字垂直居中 */
    white-space: nowrap;       /* 强制单行文字 */
    width: 95%;              /* 固定宽度，防止换行 */
    padding: 14px 20px;        /* 内边距 */
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(45deg, #ff4c4c, #ff9c3c); /* 红橙渐变 */
    border: 2px solid #ffd700; /* 金色边框 */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(255, 76, 76, 0.7), 0 6px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    gap: 8px;
    transition: all 0.2s ease-in-out;
    animation: pulse 2s infinite;
}

/* 呼吸动画 */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(255,76,76,0.7), 0 6px 15px rgba(0,0,0,0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255,120,0,0.9), 0 8px 20px rgba(0,0,0,0.35);
    }
}

/* section title */
.sectionTitle{margin:10px 0 6px 0;background:#b91c1c;color:#fff;border:2px solid #fff;border-radius:10px;padding:8px;text-align:center;font-weight:1000}

/* list */
.list .row{display:flex;align-items:center;gap:10px;padding:10px 6px}
.rank{width:22px;text-align:center;color:#9ca3af;font-weight:1000}
.icon{width:56px;height:56px;border-radius:12px;border:1px solid var(--line);background:#fff}
.meta{flex:1}
.meta .name{font-weight:1000;font-size:14px;color:#374151}
.meta .sub{font-weight:900;color:#4b5563;font-size:12px}
.meta .min{font-weight:1000;color:#15803d;font-size:12px}
.dlBtn{background:var(--red);color:#fff;border-radius:12px;padding:10px 14px;font-weight:1000;display:inline-flex;align-items:center;gap:6px;box-shadow:0 10px 18px rgba(220,38,38,.18)}
.hr{height:1px;background:rgba(229,231,235,.9)}

/* search + category buttons */
.searchBar{margin:8px 0;display:flex;gap:8px}
.searchBar input{flex:1;padding:10px 12px;border:1px solid #6b7280;border-radius:12px;background:rgb(225 239 254);outline:none;font-weight:800}
.cats{display:flex;gap:8px;margin:8px 0}
.cats button{flex:1;border-radius:12px;border:1px solid #cbd5e1;background:#fff;padding:10px 8px;font-weight:1000;cursor:pointer}
.cats button.active{background:#2563eb;color:#fff;border-color:#1d4ed8}

/* game icon grid */
.gameGrid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin:10px 0}
.gameGrid img{border-radius:12px;border:2px solid rgba(255,255,255,.25)}

/* floating join */
.floatJoin{position:fixed;right:10px;top:52%;transform:translateY(-50%);z-index:45}
.floatJoin img{width:72px}

/* footer */
.footer{background:var(--blue);color:#fff;margin-top:12px;padding:14px 10px}
.footer .btns{display:flex;flex-wrap:wrap;gap:8px;justify-content:center;margin:8px 0}
.footer .btns a{background:#0b4aa0;border:1px solid rgba(255,255,255,.2);padding:10px 12px;border-radius:12px;font-weight:1000}
.footer small{display:block;text-align:center;opacity:.85}

/* modal */
.modalOverlay{position:fixed;inset:0;background:rgba(0,0,0,.55);display:none;z-index:90}
.modalOverlay.open{display:block}
.modal{position:fixed;inset:0;display:none;z-index:95;align-items:center;justify-content:center;padding:14px}
.modal.open{display:flex}
.modalBox{width:min(420px,100%);background:#fff;border-radius:14px;overflow:hidden;border:1px solid var(--line)}
.modalHead{background:#0f172a;color:#fff;display:flex;align-items:center;justify-content:space-between;padding:12px;font-weight:1000}
.modalBody{padding:12px;color:#111827;max-height:70vh;overflow:auto}
.modalClose{background:transparent;border:0;color:#fff;font-size:18px;font-weight:1000;cursor:pointer}
/*
Theme Name: Teen Patti APK Pakistan Pro
Theme URI: https://example.com/
Author: ChatGPT
Description: Mobile-first Pakistan Teen Patti / 3 Patti APK download theme with high-CTR bonus and payment signals.
Version: 2.0.0
Requires at least: 5.8
Tested up to: 6.6
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: teen-patti-apk-pakistan-pro
*/
.app-faq {
  margin: 20px 0;
}

.app-faq h2 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 12px;
}

.faq-item {
  border: 2px solid #111;
  border-radius: 14px;
  margin-bottom: 10px;
  background: #fff;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: bold;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 16px 14px;
  font-size: 14px;
  line-height: 1.6;
}
/* Sticky Bottom CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.96);
  padding: 10px 12px;
  z-index: 999;
  box-shadow: 0 -6px 20px rgba(0,0,0,.35);
}

.sticky-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-left img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.sticky-text strong {
  display: block;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
}

.sticky-text span {
  font-size: 12px;
  color: #cbd5f5;
}

.sticky-btn {
  background: #22c55e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}

/* 防止挡住正文 */

.meta h3 { font-size:16px; margin:0; }
.meta h4 { font-size:14px; margin:2px 0; font-weight:500; }
.meta h5 { font-size:12px; margin:0; font-weight:400; color:#555; }
.faq-item summary h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  display: inline;
}
.sectionTitle.subtle {
  font-size:14px;
  font-weight:500;
  opacity:.75;
  margin-top:10px;
}
.list .meta h3 { font-size:15px; font-weight:500; }
.list .meta h4 { font-size:13px; font-weight:400; opacity:.85; }
.list .meta h5 { font-size:12px; font-weight:400; opacity:.7; }
/* 让它属于 main 内容，但视觉不占空间（不要 display:none） */
.legal-inline{
  max-height: 1px;
  overflow: hidden;
  opacity: 0.01;
  pointer-events: none;
}
.page-title {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;          /* 灰色 */
  margin: 35px auto 8px;
  text-align: center;
  max-width: 480px;
}
/* === SEO structural content (Pakistan Patti APK style) === */
.seo-content{
  max-height: 8px;        /* 关键：极小高度 */
  overflow: hidden;      /* 裁剪 */
  line-height: 1px;      /* 行距压缩 */
  font-size: 1px;        /* 字体压缩 */
  color: transparent;    /* 不显示文字 */
}
/* ===== Play Responsibly / Disclaimer strip (Pakistan Patti APK style) ===== */
.play-responsibly {
  background: #0b3c8d;          /* 深蓝但不发亮 */
  color: rgba(255,255,255,.85); /* 不要纯白 */
  font-size: 12px;              /* 明显小于正文 */
  line-height: 1.4;             /* 紧凑 */
  padding: 14px 16px 18px;
  margin-top: 12px;
}

/* 段落之间不要太开 */
.play-responsibly p {
  margin: 0 0 6px;
}

/* 18+ Only 强调，但别太大 */
.play-responsibly strong {
  font-weight: 600;
}

/* 手机端进一步压缩（对标站就是这样） */
@media (max-width: 480px) {
  .play-responsibly {
    font-size: 11px;
    line-height: 1.35;
  }
}
.searchBox {
  max-width: 720px;
  margin: 20px auto 30px;
  padding: 0 12px;
}

.searchBox input {
  width: 100%;
  height: 54px;
  font-size: 18px;
  padding: 0 16px;
  border-radius: 12px;
  border: 2px solid #ddd;
  outline: none;
}

.searchBox input:focus {
  border-color: #ff4d4f;
  box-shadow: 0 0 0 3px rgba(255,77,79,.15);
}
.list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 12px;
}
.heroWrap.slider{
  max-width: 900px;
  margin: 0 auto 18px;
  position: relative;
}
.heroWrap.slider img{
  width: 100%;
  border-radius: 18px;
  display: none;
}
.heroWrap.slider img:first-child{
  display: block;
}
.home-title {
  font-size: 20px;
  font-weight: 500;
  color: #222;          
  margin: 12px auto 8px;
  text-align: center;
  max-width: 480px;
}



/* ===== Pakistan Teen Patti high-CTR skin overrides ===== */
:root{
  --blue:#14102f;
  --red:#ff1744;
  --bg:#090512;
  --text:#f8fafc;
  --muted:#a7b0c3;
  --card:#151127;
  --line:rgba(255,255,255,.12);
  --gold:#ffd166;
  --green:#00e676;
}
body{
  background:radial-gradient(circle at 50% 0,#3a145f 0,#12071f 38%,#07030d 100%);
  color:var(--text);
}
.fixedHeader{border-bottom:1px solid rgba(255,209,102,.22);box-shadow:0 12px 30px rgba(0,0,0,.35)}
.topbar{background:linear-gradient(135deg,#1e093c,#4c0d68 46%,#9d174d);}
.brand strong{font-size:15px;text-transform:uppercase;text-shadow:0 1px 0 rgba(0,0,0,.45)}
.subbar{background:#12081f;border-bottom:1px solid rgba(255,255,255,.08)}
.subbar a,.subbar span{color:#f8fafc;border-right:1px solid rgba(255,255,255,.1);font-size:12px;letter-spacing:.2px}
.subbar a.active{color:var(--gold);border-bottom:2px solid var(--gold)}
.container{width:min(460px, calc(100% - 12px));}
.heroWrap{border-radius:20px;border:1px solid rgba(255,209,102,.28);box-shadow:0 18px 40px rgba(0,0,0,.45),0 0 0 1px rgba(255,255,255,.05) inset;background:linear-gradient(135deg,#17082f,#32104f)}
.heroWrap img{filter:saturate(1.12) contrast(1.04)}
.page-title,.home-title{color:#ffd166;font-weight:900;font-size:18px;letter-spacing:.2px;text-shadow:0 2px 12px rgba(255,209,102,.25)}
.heroBadges{gap:8px;margin:10px 0 8px}
.badge{background:linear-gradient(160deg,#241146,#10071f);border:1px solid rgba(255,209,102,.28);box-shadow:0 12px 26px rgba(0,0,0,.25);padding:12px 9px;text-align:center}
.badge strong{color:#ffd166;text-transform:uppercase;font-size:11px;letter-spacing:.45px}
.badge small{display:block;margin-top:4px;color:#fff;font-size:14px;font-weight:1000}
.claim{margin:12px 0 14px}
.claim button{
  width:98%;min-height:54px;border:0;border-radius:18px;
  color:#1b0b00;background:linear-gradient(135deg,#ffe27a 0%,#ffb000 35%,#ff3d00 100%);
  box-shadow:0 12px 34px rgba(255,61,0,.44),0 0 0 3px rgba(255,255,255,.08) inset,0 0 18px rgba(255,209,102,.55);
  font-size:15px;font-weight:1000;letter-spacing:.35px;text-transform:uppercase;text-shadow:0 1px 0 rgba(255,255,255,.35);
  animation:pattiPulse 1.55s infinite;
}
@keyframes pattiPulse{0%,100%{transform:scale(1)}50%{transform:scale(1.035)}}
.sectionTitle{background:linear-gradient(135deg,#ff1744,#ff7a00);border:1px solid rgba(255,255,255,.18);border-radius:16px;box-shadow:0 12px 26px rgba(255,23,68,.28);color:#fff;text-shadow:0 2px 8px rgba(0,0,0,.4)}
.sectionTitle h2{margin:0;font-size:16px}.sectionTitle.subtle{opacity:1;font-size:13px;color:#fff;background:linear-gradient(135deg,#25104d,#3b125f);border-color:rgba(255,209,102,.25)}
.list{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:18px;overflow:hidden;box-shadow:0 12px 30px rgba(0,0,0,.22)}
.list .row{padding:11px 8px;background:linear-gradient(90deg,rgba(255,255,255,.06),rgba(255,255,255,.02))}
.rank{width:26px;height:26px;border-radius:999px;display:grid;place-items:center;background:#ff1744;color:#fff;font-size:12px;box-shadow:0 6px 18px rgba(255,23,68,.35)}
.icon{width:58px;height:58px;border-radius:16px;border:2px solid rgba(255,209,102,.38);background:#110821;box-shadow:0 10px 18px rgba(0,0,0,.25)}
.meta .name,.list .meta h3{color:#fff;font-size:15px;font-weight:900}.meta .sub,.list .meta h4{color:#ffd166;font-size:12px;font-weight:800}.meta .min,.list .meta h5{color:#35ff8f;font-size:12px;font-weight:900;opacity:1}
.dlBtn{background:linear-gradient(135deg,#00c853,#00e676);color:#06160b;border-radius:14px;padding:10px 13px;box-shadow:0 8px 22px rgba(0,230,118,.28);font-weight:1000}
.hr{background:rgba(255,255,255,.08)}
.searchBox input,.searchBar input{background:#160a28;color:#fff;border:1px solid rgba(255,209,102,.38);box-shadow:0 10px 24px rgba(0,0,0,.2)}
.searchBox input::placeholder,.searchBar input::placeholder{color:#b8adc7}.searchBox input:focus,.searchBar input:focus{border-color:#ffd166;box-shadow:0 0 0 3px rgba(255,209,102,.16)}
.app-faq h2{color:#ffd166}.faq-item{background:#151127;border:1px solid rgba(255,209,102,.26);box-shadow:0 10px 26px rgba(0,0,0,.18)}.faq-item summary{color:#fff}.faq-answer{color:#cbd5e1}.faq-item summary::after{color:#ffd166}
.sticky-cta{background:linear-gradient(135deg,rgba(14,7,30,.98),rgba(49,12,76,.98));border-top:1px solid rgba(255,209,102,.25);box-shadow:0 -10px 35px rgba(0,0,0,.45)}.sticky-left img{border:1px solid rgba(255,209,102,.35)}.sticky-text span{color:#ffd166}.sticky-btn{background:linear-gradient(135deg,#00e676,#00c853);color:#06160b;box-shadow:0 8px 22px rgba(0,230,118,.3)}
.footer{background:#0b0614;border-top:1px solid rgba(255,209,102,.2);padding-bottom:82px}.footer .btns a{background:#1c1030;border:1px solid rgba(255,209,102,.18);color:#f8fafc}.play-responsibly{background:#10091d;color:#cbd5e1;border-top:1px solid rgba(255,255,255,.08)}
/* Keep the original rummy-style structure: supporting SEO blocks stay present but visually compressed. */
.seo-content{max-height:8px;overflow:hidden;line-height:1px;font-size:1px;color:transparent;background:transparent;border:0;padding:0;margin:0}.seo-content *{line-height:1px;font-size:1px;color:transparent}.seo-content a{color:transparent;text-decoration:none}.legal-inline{max-height:1px;overflow:hidden;opacity:.01;pointer-events:none}
.floatJoin img{filter:drop-shadow(0 10px 22px rgba(255,23,68,.4))}


/* ===== Pakistan 3 Patti / Teen Patti neon download skin v4 ===== */
body{background:radial-gradient(circle at 50% -10%,#5b127b 0,#1b0630 36%,#05020a 100%) fixed;}
.fixedHeader{box-shadow:0 12px 34px rgba(255,23,68,.22),0 1px 0 rgba(255,209,102,.2)}
.topbar{background:linear-gradient(135deg,#08051a 0%,#33115d 42%,#ff1744 100%)}
.brand img{border-radius:10px;box-shadow:0 0 0 2px rgba(255,209,102,.28),0 0 18px rgba(255,23,68,.35)}
.brand strong{color:#fff;font-weight:1000;line-height:1.05;text-shadow:0 2px 10px rgba(0,0,0,.55)}
.subbar{background:linear-gradient(90deg,#10071f,#1d0a33);}
.subbar a,.subbar span{font-weight:900;text-transform:uppercase;font-size:11px;color:#fff}.subbar a.active{color:#ffd166}
.page-title{font-size:15px;color:#ffd166;font-weight:1000;text-transform:uppercase;letter-spacing:.25px;text-shadow:0 0 16px rgba(255,209,102,.35)}
.heroWrap{border-radius:18px;overflow:hidden;border:1px solid rgba(255,209,102,.35);box-shadow:0 18px 45px rgba(0,0,0,.58),0 0 30px rgba(255,23,68,.18)}
.heroWrap img{display:block;width:100%;}
.heroBadges{display:grid;grid-template-columns:repeat(3,1fr);gap:7px;margin:10px 0 8px}.badge{border-radius:14px;background:linear-gradient(180deg,#25114d,#10071f);border:1px solid rgba(255,209,102,.30);box-shadow:0 12px 24px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.08)}
.badge strong{font-size:10px;color:#ffd166;letter-spacing:.45px;font-weight:1000}.badge small{color:#fff;font-size:13px;font-weight:1000}.claim button{height:56px;border-radius:15px;border:1px solid rgba(255,255,255,.25);background:linear-gradient(90deg,#ff1744 0%,#ff6b00 48%,#ffd166 100%);color:#210300;font-size:13px;font-weight:1000;letter-spacing:.38px;text-transform:uppercase;box-shadow:0 14px 32px rgba(255,23,68,.42),0 0 0 4px rgba(255,209,102,.10);animation:pattiPulse 1.35s infinite;}
.sectionTitle{border-radius:14px;background:linear-gradient(90deg,#ff1744,#ff6b00);font-size:13px;font-weight:1000;letter-spacing:.2px;color:#fff;box-shadow:0 12px 26px rgba(255,23,68,.30)}.sectionTitle.subtle{background:linear-gradient(90deg,#24124e,#4b1372);border:1px solid rgba(255,209,102,.23)}
.list{border-radius:16px;background:rgba(13,5,27,.84);border:1px solid rgba(255,209,102,.16);box-shadow:0 14px 36px rgba(0,0,0,.32);}
.row{min-height:78px}.list .row{background:linear-gradient(90deg,rgba(255,255,255,.06),rgba(255,255,255,.015));}.rank{background:linear-gradient(135deg,#ff1744,#ff6b00);color:#fff;border-radius:999px;width:24px;height:24px;font-weight:1000;box-shadow:0 0 18px rgba(255,23,68,.4)}
.icon{width:56px;height:56px;border-radius:15px;border:2px solid rgba(255,209,102,.34);box-shadow:0 8px 20px rgba(0,0,0,.38);}.meta .name,.list .meta h3{font-size:14px;font-weight:1000;color:#fff}.meta .sub,.list .meta h4{color:#ffd166;font-size:11px;font-weight:900}.meta .min,.list .meta h5{font-size:11px;color:#00ff88;font-weight:1000;opacity:1}.dlBtn{border-radius:14px;background:linear-gradient(135deg,#00ff88,#00c853);color:#031409;font-weight:1000;font-size:12px;padding:10px 12px;box-shadow:0 9px 24px rgba(0,255,136,.28);}
.app-faq{margin-top:16px}.app-faq h2{font-size:18px;color:#ffd166;text-shadow:0 2px 10px rgba(255,209,102,.2)}.faq-item{border-radius:14px;background:#130920;border:1px solid rgba(255,209,102,.25);box-shadow:0 10px 24px rgba(0,0,0,.25)}.faq-item summary h3,.faq-item summary{color:#fff;font-weight:900}.faq-item summary::after{color:#ffd166}.faq-answer{color:#cbd5e1}
.sticky-cta{background:linear-gradient(135deg,rgba(10,4,18,.98),rgba(57,13,78,.98));border-top:1px solid rgba(255,209,102,.30);box-shadow:0 -12px 32px rgba(0,0,0,.55)}.sticky-text strong{color:#fff}.sticky-text span{color:#ffd166}.sticky-btn{background:linear-gradient(135deg,#00ff88,#00c853);color:#02140a;border-radius:14px;font-weight:1000;box-shadow:0 10px 24px rgba(0,255,136,.28)}
.footer{background:#080511;border-top:1px solid rgba(255,209,102,.16);}.footer .btns a{background:#170b29;border:1px solid rgba(255,209,102,.18);color:#fff;border-radius:12px}.play-responsibly{background:#0c0616;color:rgba(255,255,255,.72);font-size:10.5px;line-height:1.35}.floatJoin img{filter:drop-shadow(0 10px 24px rgba(0,188,255,.45))}
/* ===== Only crop homepage slider image, do NOT touch carousel display ===== */
.heroWrap.slider{
  max-width: 430px !important;
  height: 240px !important;
  max-height: 240px !important;
  margin: 8px auto 10px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 14px !important;
}

/* 不写 display / position / opacity / animation，避免破坏原轮播 */
.heroWrap.slider img{
  width: 100% !important;
  height: 240px !important;
  max-height: 240px !important;
  object-fit: cover !important;
  object-position: center 46% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* 搜索框向上收紧 */
.searchBox{
  margin: 8px auto 16px !important;
  padding: 0 10px !important;
}

.searchBox input{
  height: 50px !important;
}

@media (max-width:480px){
  .heroWrap.slider{
    height: 230px !important;
    max-height: 230px !important;
    margin: 20px auto 20px !important;
  }
}

  .heroWrap.slider img{
    height: 230px !important;
    max-height: 230px !important;
    object-fit: cover !important;
    object-position: center 46% !important;
  }
}