:root{
  --bg:#121614;
  --bg2:#1d2623;
  --bg3:#2b3733;
  --card:rgba(29,37,35,.94);
  --card2:rgba(202,170,107,.08);
  --line:rgba(202,170,107,.24);
  --line-strong:rgba(246,228,191,.46);
  --text:#fffaf1;
  --muted:rgba(236,226,206,.82);
  --gold:#caa96f;
  --gold2:#f1ddb4;
  --gold3:#fff9ee;
  --dark-gold:#5b4620;
  --accent:#1c302a;
  --accent-soft:rgba(40,73,62,.22);
  --shadow:rgba(0,0,0,.64);
}

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

body{
  min-height:100vh;
  padding:84px 12px 30px;
  font-family:"Trebuchet MS","PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 50% -16%,rgba(231,205,146,.28),transparent 28%),
    radial-gradient(circle at 14% 20%,rgba(63,99,86,.32),transparent 32%),
    radial-gradient(circle at 88% 74%,rgba(49,82,71,.28),transparent 32%),
    radial-gradient(circle at 50% 118%,rgba(170,139,84,.17),transparent 36%),
    linear-gradient(180deg,var(--bg),var(--bg2) 52%,var(--bg3));
}

body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(120deg,transparent 0%,rgba(246,228,191,.05) 42%,transparent 45%),
    linear-gradient(rgba(255,246,227,.011) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,246,227,.011) 1px,transparent 1px);
  background-size:100% 100%,48px 48px,48px 48px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.55),transparent 78%);
}

.fixed-bar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:99;
  padding:10px 12px;
  background:linear-gradient(180deg,rgba(28,35,33,.95),rgba(34,43,40,.93));
  border-bottom:1px solid rgba(202,170,107,.16);
  backdrop-filter:blur(14px);
  box-shadow:0 16px 40px var(--shadow),0 0 28px rgba(35,63,54,.12);
}

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

.bar-brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.brand-mark{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  color:#2a1d0a;
  font-weight:900;
  font-size:12px;
  background:linear-gradient(180deg,#fff9ed,#efd7a4 42%,#c5994a 78%,#8e6730);
  box-shadow:0 10px 22px rgba(0,0,0,.46),0 0 22px rgba(185,150,86,.2);
}

.bar-brand strong{
  display:block;
  color:var(--gold3);
  font-family:Georgia,"Times New Roman","Noto Serif SC","Songti SC",serif;
  font-size:15px;
  line-height:1.2;
  letter-spacing:.08em;
  font-weight:700;
  text-transform:uppercase;
  white-space:nowrap;
}

.bar-brand span{
  display:block;
  margin-top:2px;
  color:var(--muted);
  font-size:10px;
  letter-spacing:.2em;
  text-transform:uppercase;
  white-space:nowrap;
}

.lang-switch{
  position:relative;
  z-index:100;
  flex:0 0 auto;
}

.lang-current{
  min-width:168px;
  height:40px;
  padding:0 12px;
  border:1px solid rgba(202,170,107,.24);
  border-radius:999px;
  background:linear-gradient(180deg,rgba(255,246,227,.11),rgba(63,99,86,.22));
  color:var(--text);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  box-shadow:0 10px 24px rgba(0,0,0,.4),0 0 20px rgba(185,150,86,.08);
}

.lang-current:hover{
  border-color:rgba(231,207,155,.42);
}

.lang-label{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

.flag{
  width:22px;
  height:22px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,246,227,.08);
  font-size:15px;
  flex:0 0 auto;
}

.lang-name{
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
}

.lang-arrow{
  font-size:10px;
  color:var(--gold2);
}

.lang-menu{
  position:absolute;
  top:48px;
  right:0;
  width:230px;
  padding:8px;
  border-radius:16px;
  background:linear-gradient(180deg,rgba(35,43,40,.98),rgba(40,49,46,.98));
  border:1px solid rgba(202,170,107,.16);
  box-shadow:0 20px 48px rgba(0,0,0,.58),0 0 24px rgba(35,63,54,.12);
  backdrop-filter:blur(14px);
  display:none;
}

.lang-switch.open .lang-menu{
  display:block;
}

.lang-option{
  width:100%;
  border:none;
  padding:9px 10px;
  border-radius:12px;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:9px;
  text-align:left;
  transition:.18s ease;
}

.lang-option:hover,
.lang-option.active{
  background:linear-gradient(90deg,rgba(185,150,86,.12),rgba(28,48,42,.16));
  color:var(--text);
}

.lang-option.active{
  color:var(--gold3);
}

.lang-option span:last-child{
  font-size:12px;
  font-weight:700;
}

.wrap{
  width:100%;
  max-width:1040px;
  margin:0 auto;
  position:relative;
  z-index:1;
}

.top{
  margin-bottom:18px;
  padding:20px 22px 16px;
  border-radius:22px;
  background:
    linear-gradient(135deg,rgba(255,246,227,.07),rgba(63,99,86,.22) 55%,rgba(31,39,36,.96)),
    linear-gradient(180deg,#27312e,#1a211f);
  border:1px solid var(--line);
  box-shadow:0 18px 40px rgba(0,0,0,.28),0 0 0 1px rgba(255,246,227,.04) inset;
  position:relative;
  overflow:hidden;
  backdrop-filter:blur(10px);
}

.top:before{
  content:"";
  position:absolute;
  left:22px;
  width:88px;
  top:0;
  height:1px;
  background:linear-gradient(90deg,var(--gold3),rgba(231,207,155,.18));
  opacity:.78;
}

.top:after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:72px;
  background:linear-gradient(180deg,transparent,rgba(0,0,0,.14));
  pointer-events:none;
}

.top .notice{
  position:relative;
  z-index:2;
}

.top h1,
.top p{
  position:relative;
  z-index:2;
}

.top h1:before{
  content:"";
  position:absolute;
  left:0;
  top:-10px;
  width:52px;
  height:1px;
  background:linear-gradient(90deg,rgba(255,246,227,.8),rgba(231,207,155,0));
  opacity:.72;
}

.top h1:after{
  content:"";
  position:absolute;
  right:-8px;
  top:-18px;
  width:84px;
  height:84px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(231,207,155,.06),rgba(231,207,155,0) 68%);
  pointer-events:none;
}

.top h1{
  color:var(--gold3);
  font-family:Georgia,"Times New Roman","Noto Serif SC","Songti SC",serif;
  font-size:28px;
  line-height:1.14;
  letter-spacing:.05em;
  font-weight:700;
  text-transform:uppercase;
  text-shadow:none;
  max-width:680px;
  position:relative;
}

.top p{
  max-width:620px;
  color:var(--muted);
  margin-top:8px;
  font-size:11px;
  line-height:1.6;
  letter-spacing:.02em;
  opacity:.88;
}

.notice{
  margin-top:12px;
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}

.notice span{
  padding:5px 10px;
  border-radius:999px;
  background:linear-gradient(180deg,rgba(255,246,227,.07),rgba(63,99,86,.22));
  border:1px solid rgba(202,170,107,.16);
  color:rgba(255,246,230,.84);
  font-size:10px;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.grid{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:18px;
}

.item{
  display:block;
  border-radius:24px;
  overflow:hidden;
  background:#25302d;
  position:relative;
  border:1px solid rgba(202,170,107,.14);
  transition:.24s ease;
  box-shadow:0 20px 48px rgba(0,0,0,.36),0 0 28px rgba(63,99,86,.12);
}

.item:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:2;
  background:
    linear-gradient(90deg,rgba(241,221,180,.1),transparent 20%,transparent 78%,rgba(63,99,86,.2)),
    linear-gradient(180deg,rgba(255,246,227,.07),transparent 28%);
  opacity:.74;
}

.item::selection{
  background:rgba(202,169,111,.28);
}

.item:after{
  content:"";
  position:absolute;
  left:18px;
  right:18px;
  top:0;
  height:1px;
  z-index:4;
  background:linear-gradient(90deg,transparent,rgba(255,246,227,.9),rgba(202,170,107,.5),transparent);
}

.item:hover{
  transform:translateY(-2px);
  border-color:rgba(231,207,155,.32);
  box-shadow:0 20px 44px rgba(0,0,0,.3),0 0 36px rgba(202,169,111,.12);
}

.item img{
  width:100%;
  object-fit:fill;
  object-position:center;
  background:#1b221f;
  filter:sepia(.1) saturate(.84) contrast(1.02) brightness(.98);
}

.pc-img{
  aspect-ratio:5 / 1;
  display:block;
}

.mobile-img{
  aspect-ratio:16 / 6;
  display:none;
}

.badge{
  position:absolute;
  top:12px;
  right:12px;
  z-index:5;
  padding:6px 10px;
  border-radius:999px;
  background:linear-gradient(180deg,#fff7e8,#ecd39f 44%,#bf9851 78%,#8f6b32);
  color:#2a1a0f;
  font-size:11px;
  font-weight:900;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 0 24px rgba(202,169,111,.3);
}

.stats{
  margin-top:20px;
  margin-bottom:14px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.stat-box{
  padding:16px 10px;
  border-radius:16px;
  background:linear-gradient(180deg,rgba(202,169,111,.1),rgba(63,99,86,.12)),var(--card);
  border:1px solid rgba(202,170,107,.15);
  text-align:center;
  box-shadow:0 14px 32px rgba(0,0,0,.22),0 0 20px rgba(63,99,86,.12);
}

.stat-box strong{
  display:block;
  color:var(--gold2);
  font-size:24px;
  text-shadow:0 0 16px rgba(185,150,86,.18);
}

.stat-box span{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-size:12px;
}

.trust-section{
  margin-bottom:14px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.trust-card{
  padding:15px;
  border-radius:16px;
  background:linear-gradient(180deg,rgba(202,169,111,.09),rgba(255,246,227,.02)),var(--card);
  border:1px solid rgba(202,170,107,.14);
  box-shadow:0 14px 30px rgba(0,0,0,.2),0 0 18px rgba(63,99,86,.1);
}

.trust-card strong{
  display:block;
  color:var(--gold2);
  font-size:15px;
}

.trust-card p{
  margin-top:7px;
  color:var(--muted);
  font-size:12px;
  line-height:1.75;
}

.article{
  margin-bottom:0;
  padding:17px;
  border-radius:16px;
  background:linear-gradient(180deg,rgba(202,169,111,.09),rgba(63,99,86,.1)),var(--card);
  border:1px solid rgba(202,170,107,.14);
  box-shadow:0 14px 30px rgba(0,0,0,.2),0 0 18px rgba(63,99,86,.1);
}

.article h2{
  color:var(--gold2);
  font-size:18px;
}

.article p{
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
  line-height:1.9;
}

@media(min-width:1800px){
  .wrap,
  .bar-inner{
    max-width:1140px;
  }
}

@media(max-width:900px){
  body{
    padding:78px 10px 22px;
  }

  .top:after{
    display:none;
  }

  .trust-section{
    grid-template-columns:1fr;
  }

  .stats{
    grid-template-columns:repeat(2,1fr);
  }

  .top h1{
    font-size:22px;
  }

  .top p{
    max-width:640px;
  }
}

@media(max-width:600px){
  body{
    padding:76px 6px 16px;
  }

  .fixed-bar{
    padding:8px 6px;
  }

  .bar-inner{
    gap:8px;
  }

  .brand-mark{
    width:30px;
    height:30px;
    font-size:11px;
  }

  .bar-brand strong{
    font-size:12px;
  }

  .bar-brand span{
    display:none;
  }

  .lang-current{
    min-width:132px;
    height:36px;
    padding:0 9px;
  }

  .lang-name{
    font-size:11px;
  }

  .flag{
    width:20px;
    height:20px;
    font-size:14px;
  }

  .lang-menu{
    right:0;
    width:210px;
    top:44px;
  }

  .top{
    padding:14px 12px 12px;
    margin-bottom:8px;
    border-radius:14px;
  }

  .top h1{
    font-size:18px;
    line-height:1.2;
    max-width:none;
  }

  .top p{
    margin-top:6px;
    font-size:10px;
    line-height:1.45;
  }

  .notice{
    margin-top:8px;
    gap:5px;
  }

  .notice span{
    padding:4px 7px;
    font-size:9px;
    letter-spacing:.04em;
  }

  .grid{
    gap:9px;
    margin-bottom:14px;
  }

  .item{
    border-radius:14px;
  }

  .pc-img{
    display:none;
  }

  .mobile-img{
    display:block;
    aspect-ratio:16 / 5.2;
  }

  .badge{
    top:8px;
    right:8px;
    padding:4px 8px;
    font-size:10px;
  }

  .stats{
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-top:16px;
    margin-bottom:10px;
  }

  .stat-box{
    padding:12px 8px;
  }

  .stat-box strong{
    font-size:20px;
  }

  .trust-section{
    gap:9px;
    margin-bottom:10px;
  }

  .trust-card,
  .article{
    padding:12px;
  }
}
