/* roulang page: index */
:root{
  --primary:#C62828;
  --primary-hover:#B71C1C;
  --primary-light:#FCE4E4;
  --accent:#D4A53C;
  --accent-soft:#F8EFDC;
  --dark:#1C1714;
  --light:#F6F3EF;
  --card-bg:#FFFFFF;
  --text:#2D2926;
  --text-secondary:#6C645C;
  --border:#E7E1DA;
  --radius-sm:6px;
  --radius-md:10px;
  --radius-lg:16px;
  --shadow-sm:0 2px 8px rgba(23,12,6,0.06);
  --shadow-md:0 6px 18px rgba(23,12,6,0.08);
  --shadow-lg:0 12px 32px rgba(23,12,6,0.08);
  --container-w:1200px;
  --nav-h:48px;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:"PingFang SC","Microsoft YaHei","Source Han Sans SC","Noto Sans CJK SC",system-ui,sans-serif;background:var(--light);color:var(--text);line-height:1.75;font-size:16px;overflow-x:hidden;}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;transition:color .25s ease;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
input{font-family:inherit;}
ul,ol{list-style:none;}
.container{max-width:var(--container-w);margin:0 auto;padding:0 20px;}

/* Foundation grid fallback */
.grid-x{display:flex;flex-wrap:wrap;}
.align-middle{align-items:center;}
.grid-margin-x{margin-left:-12px;margin-right:-12px;}
.grid-margin-x>.cell{padding-left:12px;padding-right:12px;margin-bottom:24px;}
.cell.shrink{flex:0 0 auto;max-width:none;}
.cell.auto{flex:1 1 0%;min-width:0;}
@media(min-width:640px){
  .medium-3{flex:0 0 25%;max-width:25%;}
  .medium-6{flex:0 0 50%;max-width:50%;}
  .medium-up-3>.cell{flex:0 0 33.3333%;max-width:33.3333%;}
}
@media(min-width:1024px){
  .large-2{flex:0 0 16.6667%;max-width:16.6667%;}
  .large-4{flex:0 0 33.3333%;max-width:33.3333%;}
  .large-5{flex:0 0 41.6667%;max-width:41.6667%;}
  .large-7{flex:0 0 58.3333%;max-width:58.3333%;}
  .large-up-4>.cell{flex:0 0 25%;max-width:25%;}
}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-height:44px;padding:10px 28px;border-radius:var(--radius-md);font-size:15px;font-weight:600;transition:all .25s ease;border:1px solid transparent;}
.btn-primary{background:var(--primary);color:#fff;border-color:var(--accent);}
.btn-primary:hover{background:var(--primary-hover);transform:translateY(-2px);box-shadow:var(--shadow-md);}
.btn-outline-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.65);}
.btn-outline-light:hover{background:rgba(255,255,255,.12);transform:translateY(-2px);}
.btn-white-lg{background:#fff;color:var(--primary);min-width:240px;height:48px;font-size:17px;border-radius:8px;padding:0 30px;}
.btn-white-lg:hover{transform:rotate(-1deg);box-shadow:var(--shadow-lg);color:var(--primary);}
.btn-gold{background:var(--accent);color:var(--dark);min-height:44px;padding:10px 22px;border-radius:var(--radius-md);font-weight:600;font-size:15px;}
.btn-gold:hover{background:#C9972C;transform:translateY(-2px);color:var(--dark);}

/* Header */
.site-header{position:sticky;top:0;z-index:100;background:var(--dark);color:#fff;transition:background .25s ease,box-shadow .25s ease;border-bottom:1px solid rgba(255,255,255,.06);}
.site-header.scrolled{background:RGBA(28,23,20,0.96);box-shadow:var(--shadow-md);border-bottom:1px solid rgba(212,165,60,.3);}
.header-top{display:flex;align-items:center;gap:16px;padding:12px 0;border-bottom:1px solid rgba(255,255,255,.08);}
.logo-wrap{flex-shrink:0;}
.logo{display:flex;align-items:center;}
.logo-block{background:var(--primary);border:2px solid var(--accent);color:#fff;font-weight:800;font-size:20px;padding:4px 14px;border-radius:var(--radius-sm);letter-spacing:1px;line-height:1.2;display:inline-block;}
.logo-vii{color:var(--accent);}
.header-search{flex:1;max-width:520px;margin-left:20px;}
.search-form{display:flex;align-items:center;background:rgba(255,255,255,.12);border-radius:40px;padding:4px;border:1px solid rgba(255,255,255,.18);}
.search-input{flex:1;background:transparent;border:none;color:#fff;padding:6px 14px;font-size:14px;outline:none;min-width:0;}
.search-input::placeholder{color:rgba(255,255,255,.55);}
.search-btn{width:38px;height:38px;border-radius:50%;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;transition:background .25s;}
.search-btn:hover{background:var(--primary-hover);}
.header-meta{display:flex;align-items:center;gap:16px;flex-shrink:0;}
.user-entry{display:flex;align-items:center;gap:6px;font-size:14px;color:rgba(255,255,255,.85);}
.user-entry:hover{color:var(--accent);}
.issue-badge{background:rgba(212,165,60,.18);border:1px solid rgba(212,165,60,.4);color:var(--accent);font-size:12px;padding:4px 12px;border-radius:30px;white-space:nowrap;}
.header-bottom{display:flex;align-items:center;gap:16px;padding:6px 0;}
.nav-scroll{overflow-x:auto;scrollbar-width:none;flex-shrink:1;}
.nav-scroll::-webkit-scrollbar{display:none;}
.site-nav{display:flex;align-items:center;gap:4px;white-space:nowrap;}
.nav-link{display:block;padding:9px 14px;font-size:15px;color:rgba(255,255,255,.8);border-radius:var(--radius-sm);border-bottom:2px solid transparent;transition:all .25s;}
.nav-link:hover{color:var(--accent);background:rgba(255,255,255,.06);}
.nav-link.active{color:var(--accent);border-bottom-color:var(--primary);font-weight:600;}
.hot-tags{display:flex;align-items:center;gap:8px;margin-left:auto;flex-shrink:0;}
.hot-tag{font-size:12px;color:rgba(255,255,255,.65);background:rgba(255,255,255,.1);padding:4px 10px;border-radius:30px;white-space:nowrap;}
.mobile-search-toggle{display:none;color:#fff;font-size:18px;cursor:pointer;padding:6px;}

/* Hero */
.hero{position:relative;background-color:var(--dark);background-size:cover;background-position:center;color:#fff;padding:76px 0 84px;overflow:hidden;}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,RGBA(28,23,20,.94) 20%,RGBA(28,23,20,.74) 55%,RGBA(28,23,20,.45));}
.hero-overlay::after{content:"";position:absolute;inset:0;background:repeating-linear-gradient(45deg,transparent 0 18px,RGBA(212,165,60,.04) 18px 36px);}
.hero .container{position:relative;z-index:2;}
.hero-content{padding-right:24px;}
.hero h1{font-size:34px;line-height:1.35;font-weight:700;margin-bottom:16px;}
.hero-vii{color:var(--accent);font-size:1.15em;}
.hero-sub{font-size:18px;color:rgba(255,255,255,.82);max-width:520px;margin-bottom:28px;line-height:1.6;}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:26px;}
.hero-trust{display:flex;gap:20px;flex-wrap:wrap;font-size:13px;color:var(--accent);}
.hero-trust span{display:flex;align-items:center;gap:6px;}
.hero-visual{display:flex;justify-content:center;align-items:center;}
.glass-card{background:RGBA(255,255,255,0.08);border:1px solid rgba(255,255,255,.16);backdrop-filter:blur(8px);border-radius:var(--radius-lg);padding:24px;text-align:center;width:100%;max-width:370px;box-shadow:var(--shadow-lg);}
.hero-card-title{font-size:15px;color:var(--accent);margin-bottom:16px;letter-spacing:1px;}
.ball-row{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-bottom:14px;}
.ball{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border-radius:50%;font-weight:700;font-size:17px;background:var(--primary);color:#fff;box-shadow:0 3px 10px rgba(198,40,40,.4);}
.ball.gold{background:var(--accent);color:var(--dark);box-shadow:0 3px 10px rgba(212,165,60,.4);}
.hero-card-meta{font-size:12px;color:rgba(255,255,255,.55);}

/* Section */
.section{padding:68px 0;}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:32px;border-bottom:1px solid var(--border);padding-bottom:14px;}
.section-title-wrap h2{font-size:26px;font-weight:700;color:var(--text);position:relative;padding-left:16px;line-height:1.3;}
.section-title-wrap h2::before{content:"";position:absolute;left:0;top:4px;bottom:4px;width:4px;border-radius:3px;background:var(--accent);}
.section-title-wrap p{color:var(--text-secondary);font-size:14px;margin-top:4px;}
.section-more{font-size:14px;color:var(--primary);font-weight:600;white-space:nowrap;}
.section-more:hover{text-decoration:underline;}
.section-center-title{font-size:28px;font-weight:700;text-align:center;color:var(--text);margin-bottom:36px;position:relative;}
.section-center-title::before,.section-center-title::after{content:"—";color:var(--accent);margin:0 10px;font-weight:400;}

/* Game cards */
.game-card{background:var(--card-bg);border:1px solid #EBE4DC;border-radius:var(--radius-md);overflow:hidden;transition:all .25s ease;position:relative;height:100%;display:flex;flex-direction:column;box-shadow:var(--shadow-sm);}
.game-card:hover{transform:translateY(-4px);border-color:var(--primary);box-shadow:var(--shadow-md);}
.game-card::after{content:"";position:absolute;left:0;right:0;bottom:0;height:3px;background:linear-gradient(90deg,var(--primary),var(--accent));transform:scaleX(0);transform-origin:left;transition:transform .3s ease;}
.game-card:hover::after{transform:scaleX(1);}
.game-thumb{aspect-ratio:4/3;background-size:cover;background-position:center;background-color:var(--dark);position:relative;display:flex;align-items:flex-end;justify-content:flex-start;padding:12px;overflow:hidden;}
.game-thumb img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.game-badge{position:relative;background:var(--primary);color:#fff;font-size:12px;padding:3px 12px;border-radius:30px;font-weight:600;z-index:2;}
.game-badge.gold{background:var(--accent);color:var(--dark);}
.game-body{padding:16px;display:flex;flex-direction:column;gap:8px;flex:1;}
.game-body h3{font-size:16px;font-weight:600;line-height:1.4;min-height:44px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.game-desc{font-size:13px;color:var(--text-secondary);line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.game-foot{display:flex;align-items:center;justify-content:space-between;margin-top:auto;padding-top:10px;border-top:1px solid #F0EAE3;}
.game-price{font-size:15px;font-weight:700;color:var(--primary);}
.game-link{font-size:14px;color:var(--primary);font-weight:600;}
.game-link:hover{text-decoration:underline;}

/* Reviews */
.section-reviews{background:var(--light);}
.review-carousel{position:relative;display:flex;align-items:center;gap:12px;}
.carousel-viewport{overflow:hidden;flex:1;padding:8px 0;}
.carousel-track{display:flex;transition:transform .45s ease;}
.review-card{flex:0 0 100%;background:var(--card-bg);border-radius:var(--radius-md);padding:24px;box-shadow:var(--shadow-sm);border:1px solid var(--border);margin:0 6px;}
@media(min-width:640px){.review-card{flex-basis:50%;}}
@media(min-width:1024px){.review-card{flex-basis:33.333%;}}
.review-stars{color:var(--accent);font-size:15px;margin-bottom:12px;letter-spacing:2px;}
.review-text{font-size:14px;line-height:1.7;color:var(--text);margin-bottom:16px;font-style:italic;}
.review-user{display:flex;align-items:center;gap:10px;}
.review-avatar{width:36px;height:36px;border-radius:50%;background:var(--accent-soft);color:var(--accent);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:14px;}
.review-name{font-size:14px;font-weight:600;color:var(--text);}
.review-time{font-size:12px;color:var(--text-secondary);}
.carousel-arrow{width:42px;height:42px;border-radius:50%;background:#fff;border:1px solid var(--border);color:var(--text);display:flex;align-items:center;justify-content:center;flex-shrink:0;box-shadow:var(--shadow-sm);transition:all .25s;}
.carousel-arrow:hover{background:var(--primary);color:#fff;border-color:var(--primary);}
.carousel-dots{display:flex;justify-content:center;gap:8px;margin-top:20px;}
.carousel-dot{width:8px;height:8px;border-radius:50%;background:#D8D0C8;cursor:pointer;transition:all .25s;}
.carousel-dot.active{background:var(--primary);width:22px;border-radius:30px;}

/* Guarantee */
.section-guarantee{background:#FBF9F6;padding:52px 0;}
.guarantee-item{text-align:center;padding:24px 16px;border-radius:var(--radius-md);transition:all .25s;}
.guarantee-item:hover{background:#fff;box-shadow:var(--shadow-sm);}
.guarantee-icon{width:62px;height:62px;border-radius:50%;background:var(--accent-soft);color:var(--accent);display:flex;align-items:center;justify-content:center;font-size:24px;margin:0 auto 14px;border:1px solid rgba(212,165,60,.35);}
.guarantee-item h3{font-size:16px;font-weight:600;color:var(--text);margin-bottom:6px;}
.guarantee-item p{font-size:14px;color:var(--text-secondary);line-height:1.6;}

/* CTA */
.section-cta{background:linear-gradient(135deg,#C62828 0%,#7B1A1A 100%);color:#fff;text-align:center;padding:72px 0;}
.section-cta h2{font-size:28px;font-weight:700;margin-bottom:12px;color:#fff;position:relative;display:inline-block;padding-bottom:12px;}
.section-cta h2::after{content:"";position:absolute;left:50%;transform:translateX(-50%);bottom:0;width:60px;height:3px;background:var(--accent);border-radius:2px;}
.section-cta .cta-desc{font-size:16px;color:#F8E8D8;margin-bottom:26px;}
.section-cta .btn{margin-bottom:24px;}
.appointment-form{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;max-width:520px;margin:0 auto;background:rgba(255,255,255,.14);padding:16px;border-radius:var(--radius-lg);border:1px solid rgba(255,255,255,.2);}
.appointment-input{flex:1;min-width:220px;height:46px;border-radius:var(--radius-md);border:none;padding:0 16px;font-size:14px;outline:none;background:#fff;color:var(--text);}
.appointment-input:focus{box-shadow:0 0 0 3px rgba(212,165,60,.45);}

/* News */
.news-filters{display:flex;gap:8px;flex-wrap:wrap;}
.filter{font-size:13px;padding:5px 14px;border-radius:30px;border:1px solid var(--border);color:var(--text-secondary);background:#fff;cursor:pointer;transition:all .25s;}
.filter:hover{border-color:var(--primary);color:var(--primary);}
.filter.active{background:var(--primary);color:#fff;border-color:var(--primary);}
.news-list{display:flex;flex-direction:column;border-radius:var(--radius-md);overflow:hidden;}
.news-row{display:flex;align-items:flex-start;gap:20px;padding:22px 20px;background:#fff;border:1px solid var(--border);border-bottom:none;transition:all .25s;}
.news-row:last-child{border-bottom:1px solid var(--border);border-radius:0 0 var(--radius-md) var(--radius-md);}
.news-row:hover{background:#FFFBF4;border-color:var(--primary);z-index:1;position:relative;}
.news-row:hover .news-body h3{color:var(--primary);}
.news-date{flex-shrink:0;width:62px;text-align:center;background:var(--accent-soft);border-radius:var(--radius-sm);padding:8px 4px;border:1px solid rgba(212,165,60,.3);}
.news-day{display:block;font-size:24px;font-weight:700;color:var(--accent);line-height:1.2;font-family:"DIN Alternate","Oswald",sans-serif;}
.news-month{display:block;font-size:12px;color:var(--text-secondary);margin-top:2px;}
.news-body{flex:1;min-width:0;}
.news-body h3{font-size:18px;font-weight:600;color:var(--text);margin-bottom:6px;line-height:1.45;transition:color .25s;}
.news-body p{font-size:14px;color:var(--text-secondary);line-height:1.6;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin-bottom:8px;}
.news-meta{display:flex;align-items:center;gap:16px;font-size:12px;color:var(--text-secondary);flex-wrap:wrap;}
.news-cat{background:var(--primary-light);color:var(--primary);font-size:12px;padding:2px 10px;border-radius:20px;font-weight:600;}
.news-views{display:flex;align-items:center;gap:4px;}
.news-empty{background:var(--card-bg);border:1px dashed var(--border);border-radius:var(--radius-md);text-align:center;padding:42px 20px;color:var(--text-secondary);font-size:14px;}

/* FAQ */
.faq-list{max-width:820px;margin:0 auto;}
.faq-item{background:#fff;border:1px solid var(--border);border-radius:var(--radius-md);margin-bottom:12px;overflow:hidden;transition:box-shadow .25s;}
.faq-item.active{box-shadow:var(--shadow-sm);border-color:rgba(212,165,60,.4);}
.faq-question{display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;padding:16px 20px;font-size:16px;font-weight:600;color:var(--text);text-align:left;transition:color .25s;}
.faq-question i{transition:transform .3s ease;color:var(--accent);font-size:14px;}
.faq-item.active .faq-question{color:var(--primary);}
.faq-item.active .faq-question i{transform:rotate(45deg);}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .35s ease;border-top:1px solid transparent;}
.faq-item.active .faq-answer{max-height:300px;border-top-color:var(--border);}
.faq-answer p{padding:14px 20px;font-size:14px;color:var(--text-secondary);line-height:1.7;}
.faq-more{text-align:center;margin-top:20px;}
.faq-more a{color:var(--primary);font-size:14px;font-weight:600;}
.faq-more a:hover{text-decoration:underline;}

/* Footer */
.site-footer{background:var(--dark);color:rgba(255,255,255,.8);padding:56px 0 0;position:relative;}
.site-footer::before{content:"";position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,var(--accent) 30%,var(--accent) 70%,transparent);}
.footer-brand .logo-block{margin-bottom:16px;}
.footer-brand p{font-size:13px;line-height:1.75;color:rgba(255,255,255,.65);margin-top:16px;}
.site-footer h4{font-size:16px;color:var(--accent);font-weight:600;margin-bottom:16px;}
.site-footer ul li{margin-bottom:10px;}
.site-footer ul a{font-size:14px;color:rgba(255,255,255,.7);transition:color .25s;}
.site-footer ul a:hover{color:var(--accent);}
.footer-contact li{display:flex;align-items:center;gap:10px;font-size:14px;color:rgba(255,255,255,.7);}
.footer-contact i{color:var(--accent);width:16px;text-align:center;flex-shrink:0;}
.footer-bottom{margin-top:44px;border-top:1px solid rgba(255,255,255,.1);padding:20px 0;text-align:center;}
.footer-bottom p{font-size:13px;color:rgba(255,255,255,.55);margin-bottom:4px;}
.footer-bottom a{color:rgba(255,255,255,.6);}
.footer-bottom a:hover{color:var(--accent);}

/* Responsive */
@media(max-width:639px){
  .section{padding:44px 0;}
  .header-top{flex-wrap:wrap;padding:10px 0;}
  .header-search{order:3;flex-basis:100%;max-width:none;margin-left:0;display:none;}
  .header-search.open{display:block;}
  .header-search .search-form{background:rgba(255,255,255,.1);}
  .header-meta .user-entry span{display:none;}
  .issue-badge{display:none;}
  .mobile-search-toggle{display:block;}
  .hot-tags{display:flex;margin-left:0;padding:2px 0 6px;overflow-x:auto;white-space:nowrap;width:100%;}
  .hero{padding:48px 0 56px;}
  .hero h1{font-size:26px;}
  .hero-sub{font-size:16px;margin-bottom:20px;}
  .hero-actions{flex-direction:column;align-items:stretch;}
  .hero-actions .btn{width:100%;}
  .hero-trust{gap:10px;font-size:12px;}
  .hero-content{padding-right:0;margin-bottom:28px;}
  .section-head{flex-direction:column;align-items:flex-start;gap:10px;}
  .section-center-title{font-size:22px;}
  .news-row{flex-direction:column;gap:12px;padding:18px 14px;}
  .news-date{width:auto;display:inline-flex;align-items:center;gap:8px;padding:4px 12px;}
  .news-day{font-size:18px;}
  .news-meta{gap:10px;}
  .review-card{padding:20px;}
  .carousel-arrow{width:36px;height:36px;}
  .section-cta h2{font-size:22px;}
  .appointment-form{padding:14px;}
  .appointment-input{min-width:100%;}
  .btn-gold{width:100%;}
  .grid-margin-x>.cell{margin-bottom:20px;}
}
@media(min-width:640px) and (max-width:1023px){
  .hero h1{font-size:30px;}
  .issue-badge{display:none;}
  .header-search{max-width:320px;}
  .hero-content{padding-right:0;}
}

/* roulang page: article */
:root {
  --primary: #C62828;
  --primary-hover: #D73838;
  --primary-light: #FDECEC;
  --accent: #D4A53C;
  --accent-soft: #F7E9C8;
  --dark: #1C1714;
  --light: #F6F3EF;
  --card-bg: #FFFFFF;
  --text: #2D2926;
  --text-secondary: #6C645C;
  --border: #E7E1DA;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(23,12,6,0.06);
  --shadow-md: 0 4px 14px rgba(23,12,6,0.08);
  --shadow-lg: 0 10px 28px rgba(23,12,6,0.08);
  --container-w: 1200px;
  --nav-h: 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}

.grid-x {
  margin-left: -12px;
  margin-right: -12px;
}

.cell {
  padding-left: 12px;
  padding-right: 12px;
}

/* 通用按钮 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-align: center;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(198, 40, 40, .18);
}

.btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(198, 40, 40, .24);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: #D8D0C8;
}

.btn-outline:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-gold {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.btn-gold:hover {
  background: #E2B75A;
  border-color: #E2B75A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 165, 60, .28);
  color: var(--dark);
}

/* 标签徽章 */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  font-size: 13px;
  line-height: 1.4;
  border: 1px solid var(--accent);
  color: #8A6A1E;
  border-radius: 999px;
  background: #FFFBF2;
  transition: all .25s ease;
}

.tag:hover {
  background: var(--accent-soft);
  color: var(--dark);
  border-color: var(--accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  line-height: 1.3;
  border-radius: 999px;
  font-weight: 600;
}

.badge-hot {
  background: #FDECEC;
  color: var(--primary);
  border: 1px solid #F4C2C2;
}

.badge-new {
  background: #FFF5E0;
  color: #A57915;
  border: 1px solid #EDDCA6;
}

/* 站点头部 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--dark);
  box-shadow: var(--shadow-sm);
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.site-header.scrolled {
  background: rgba(28,23,20,.96);
  box-shadow: 0 4px 20px rgba(0,0,0,.28);
  border-bottom-color: rgba(212,165,60,.35);
}

.header-top {
  padding: 10px 0;
}

.top-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.logo-block {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 6px 14px 6px 10px;
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 0 2px rgba(212,165,60,.55), 0 2px 8px rgba(198,40,40,.25);
  letter-spacing: .5px;
}

.logo-block .logo-vii {
  color: var(--accent);
  font-weight: 900;
  margin-left: 2px;
}

.header-search {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 440px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  overflow: hidden;
  transition: background-color .25s ease, border-color .25s ease;
}

.header-search:focus-within {
  background: rgba(255,255,255,.12);
  border-color: var(--accent);
}

.header-search input {
  flex: 1;
  height: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0 16px;
  font-size: 14px;
  outline: none;
}

.header-search input::placeholder {
  color: rgba(255,255,255,.55);
}

.header-search button {
  width: 44px;
  height: 40px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease;
}

.header-search button:hover {
  color: var(--accent);
  background: rgba(255,255,255,.06);
}

.mobile-search-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-search-drop {
  display: none;
  padding: 10px 20px 14px;
}

.mobile-search-drop.open {
  display: block;
}

.mobile-search-drop .header-search {
  max-width: 100%;
}

.header-user {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  white-space: nowrap;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.header-user:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}

.header-user i {
  color: var(--accent);
  font-size: 16px;
}

.header-date {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  white-space: nowrap;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(0,0,0,.14);
}

.header-date .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #4BC47A;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.header-nav {
  background: rgba(0,0,0,.28);
  border-top: 1px solid rgba(255,255,255,.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--nav-h);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav .nav-link {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border-bottom: 2px solid transparent;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

.site-nav .nav-link:hover {
  color: var(--accent);
  background: rgba(255,255,255,.05);
}

.site-nav .nav-link.active {
  color: var(--accent);
  border-bottom-color: var(--primary);
  background: rgba(255,255,255,.04);
  font-weight: 600;
}

.hot-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hot-tags a {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.07);
  padding: 4px 12px;
  border-radius: 999px;
  transition: all .25s ease;
  border: 1px solid rgba(255,255,255,.08);
}

.hot-tags a:hover {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.2);
}

/* 页面主区 */
.site-main {
  padding: 32px 0 64px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .current {
  color: var(--text);
  font-weight: 600;
}

.article-layout {
  align-items: flex-start;
}

.article-main {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  margin-bottom: 24px;
  transition: box-shadow .25s ease;
}

.article-main:hover {
  box-shadow: var(--shadow-md);
}

.article-title {
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  font-size: 14px;
  color: var(--text-secondary);
  padding-bottom: 18px;
  border-bottom: 1px dashed #E8E0D8;
  margin-bottom: 24px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-meta i {
  color: var(--accent);
  font-size: 14px;
}

.article-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  word-break: break-word;
}

.article-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--accent);
  line-height: 1.4;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 26px 0 14px;
  color: var(--text);
  line-height: 1.4;
}

.article-content h4 {
  font-size: 17px;
  font-weight: 600;
  margin: 22px 0 12px;
  color: var(--text);
}

.article-content p {
  margin-bottom: 24px;
}

.article-content ul,
.article-content ol {
  margin: 0 0 24px 0;
  padding-left: 22px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  background: var(--light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.article-content img {
  border-radius: 10px;
  margin: 8px 0 24px;
  max-width: 100%;
  box-shadow: var(--shadow-sm);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.article-content th {
  background: var(--dark);
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
}

.article-content td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
}

.article-content tr:nth-child(even) td {
  background: #FCFAF7;
}

.article-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(198,40,40,.4);
}

.article-content a:hover {
  color: var(--primary-hover);
  text-decoration-color: var(--primary-hover);
}

.article-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px dashed #E8E0D8;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.article-tags .tag {
  font-size: 13px;
}

.post-nav-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* 评论预留 */
.comment-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
}

.comment-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 4px solid var(--accent);
  line-height: 1.4;
}

.comment-placeholder {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comment-placeholder textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: 14px;
  line-height: 1.6;
  resize: vertical;
  background: #FCFAF8;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.comment-placeholder textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(198,40,40,.08);
  background: #fff;
}

.not-found-card {
  text-align: center;
  padding: 60px 24px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.not-found-card i {
  font-size: 44px;
  color: var(--accent);
  margin-bottom: 16px;
}

.not-found-card p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* 侧边栏 */
.sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 130px;
}

.sidebar-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease;
}

.sidebar-card:hover {
  box-shadow: var(--shadow-md);
}

.sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  padding-left: 12px;
  border-left: 4px solid var(--accent);
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-title i {
  color: var(--primary);
  font-size: 14px;
  margin-left: auto;
}

.hot-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hot-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed #ECE5DF;
}

.hot-list li:last-child {
  border-bottom: 0;
  padding-bottom: 4px;
}

.hot-list li:first-child {
  padding-top: 2px;
}

.rank-num {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  font-family: "DIN Alternate", "Oswald", sans-serif;
  color: var(--accent);
  min-width: 28px;
  text-align: center;
  margin-top: 2px;
}

.hot-list li:nth-child(-n+3) .rank-num {
  color: var(--primary);
}

.hot-list a {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hot-list a:hover {
  color: var(--primary);
}

.hot-list .hot-cat {
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--light);
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
}

.related-games {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.game-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--light);
  border: 1px solid var(--border);
  transition: all .25s ease;
}

.game-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.game-card .game-cover {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 8px;
}

.game-card .game-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 10px 10px 12px;
  line-height: 1.4;
  background: #fff;
  border-top: 1px solid var(--border);
}

.game-card .game-title:hover {
  color: var(--primary);
}

.ad-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, #2A211B, #1C1714);
  background-size: cover;
  background-position: center;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
}

.ad-box .ad-content {
  text-align: center;
  color: #fff;
  padding: 24px;
  position: relative;
  z-index: 2;
}

.ad-box .ad-content .ad-sub {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.ad-box .ad-content .ad-main {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.ad-box .ad-content p {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

/* 页面头部小横幅 */
.page-head {
  background: var(--dark);
  background-image: radial-gradient(circle at 20% 40%, rgba(198,40,40,.18) 0%, transparent 46%), radial-gradient(circle at 80% 30%, rgba(212,165,60,.16) 0%, transparent 42%);
  background-repeat: no-repeat;
  padding: 38px 0 28px;
  border-bottom: 1px solid rgba(212,165,60,.18);
}

.page-head .head-kicker {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 8px;
  display: block;
}

.page-head h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 6px;
}

.page-head p {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  max-width: 760px;
}

/* 站点页脚 */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.75;
  margin-top: 40px;
  border-top: 1px solid transparent;
  background-image: linear-gradient(90deg, transparent, rgba(212,165,60,.55), transparent);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: top center;
}

.site-footer .container {
  padding-top: 48px;
  padding-bottom: 20px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand .logo-block {
  font-size: 16px;
  padding: 5px 12px 5px 8px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  max-width: 340px;
}

.site-footer h4 {
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul a {
  color: rgba(255,255,255,.58);
  font-size: 14px;
}

.site-footer ul a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.55);
}

.footer-contact i {
  color: var(--accent);
  width: 16px;
  text-align: center;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  margin-top: 24px;
}

.footer-bottom .container {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,.45);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* 焦点可见性 */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* 响应式断点 */
@media screen and (max-width: 1023px) {
  .header-date {
    display: none;
  }

  .sidebar-inner {
    position: static;
  }
}

@media screen and (max-width: 767px) {
  .site-main {
    padding-top: 20px;
  }

  .top-inner {
    gap: 12px;
  }

  .header-search:not(.mobile-search-drop .header-search) {
    display: none;
  }

  .mobile-search-toggle {
    display: inline-flex;
  }

  .header-user span {
    display: none;
  }

  .header-user {
    padding: 6px 10px;
  }

  .header-user i {
    font-size: 18px;
  }

  .nav-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 6px 0;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 2px;
  }

  .site-nav .nav-link {
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hot-tags {
    padding-bottom: 4px;
  }

  .article-main {
    padding: 22px 18px;
  }

  .article-title {
    font-size: 24px;
  }

  .article-meta {
    gap: 10px 16px;
    font-size: 13px;
  }

  .article-content {
    font-size: 15px;
  }

  .article-content h2 {
    font-size: 21px;
  }

  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    min-height: 44px;
    font-size: 14px;
    padding: 0 18px;
  }

  .related-games {
    grid-template-columns: 1fr 1fr;
  }

  .page-head {
    padding: 28px 0 22px;
  }

  .page-head h1 {
    font-size: 26px;
  }

  .site-footer .container {
    padding-top: 36px;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 520px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .site-main {
    padding-bottom: 40px;
  }

  .article-meta .meta-item {
    width: 100%;
  }

  .related-games {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .game-card .game-title {
    font-size: 12px;
    padding: 8px;
  }

  .article-content img {
    border-radius: 8px;
  }

  .comment-section {
    padding: 18px;
  }

  .breadcrumb {
    font-size: 12px;
  }
}

/* roulang page: category1 */
/* ===== 设计变量 ===== */
:root {
  --primary: #C62828;
  --primary-hover: #B71C1C;
  --primary-light: #EF5350;
  --accent: #D4A53C;
  --accent-soft: #F7ECD4;
  --dark: #1C1714;
  --light: #F6F3EF;
  --card-bg: #FFFFFF;
  --text: #2D2926;
  --text-secondary: #6C645C;
  --border: #E7E1DA;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(23,12,6,0.06);
  --shadow-md: 0 4px 16px rgba(23,12,6,0.08);
  --shadow-lg: 0 8px 24px rgba(23,12,6,0.08);
  --container-w: 1200px;
  --nav-h: 48px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", "Source Han Sans SC", "Noto Sans CJK SC", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease; }
ul { margin: 0; padding: 0; list-style: none; }
button, input { font-family: inherit; font-size: inherit; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== 导航 ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid rgba(212, 165, 60, 0.25);
  box-shadow: 0 2px 12px rgba(23, 12, 6, 0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(28, 23, 20, 0.96);
  box-shadow: 0 2px 20px rgba(23, 12, 6, 0.25);
}

/* 品牌行 */
.header-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 0;
}
.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-block {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--accent);
  box-shadow: 0 2px 10px rgba(198, 40, 40, 0.35);
  letter-spacing: 1px;
}
.logo-vii {
  color: var(--accent);
  font-weight: 800;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.search-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.search-form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 165, 60, 0.2);
}
.search-form input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 7px 14px;
  font-size: 14px;
  width: 180px;
  border-radius: 24px 0 0 24px;
}
.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.search-form button {
  background: var(--primary);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.search-form button:hover {
  background: var(--primary-hover);
  transform: scale(1.05);
}

.user-entry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  transition: background 0.25s ease, color 0.25s ease;
}
.user-entry:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}
.user-entry i {
  color: var(--accent);
}

.issue-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(212, 165, 60, 0.15);
  color: var(--accent);
  font-size: 13px;
  padding: 5px 12px;
  border-radius: 16px;
  border: 1px solid rgba(212, 165, 60, 0.3);
  white-space: nowrap;
}

/* 频道行 */
.header-bottom {
  background: rgba(0, 0, 0, 0.2);
}
.header-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: nowrap;
}
.site-nav::-webkit-scrollbar {
  display: none;
}
.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease, border-bottom 0.25s ease;
  border-bottom: 2px solid transparent;
  display: block;
}
.nav-link:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
}
.nav-link.active {
  color: var(--accent);
  border-bottom-color: var(--primary);
  background: rgba(212, 165, 60, 0.08);
  font-weight: 600;
}

.hot-tags {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.hot-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 12px;
  white-space: nowrap;
  cursor: default;
  transition: background 0.25s ease, color 0.25s ease;
}
.hot-tag:hover {
  background: rgba(212, 165, 60, 0.25);
  color: var(--accent);
}

/* ===== 面包屑 ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 20px 0 0;
}
.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.25s ease;
}
.breadcrumb a:hover {
  color: var(--primary);
}
.breadcrumb .sep {
  color: #B8B0A8;
}
.breadcrumb .current {
  color: var(--text);
  font-weight: 500;
}

/* ===== 分类页头部 ===== */
.category-head {
  padding: 24px 0 20px;
}
.category-head h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 10px;
  line-height: 1.3;
  position: relative;
  padding-left: 18px;
}
.category-head h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 5px;
  background: var(--accent);
  border-radius: 3px;
}
.category-desc {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0;
  line-height: 1.7;
}

/* ===== 头图 ===== */
.category-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
  min-height: 200px;
}
.category-banner img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.banner-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198, 40, 40, 0.35), rgba(28, 23, 20, 0.7));
}
.banner-text {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 24px;
  color: #fff;
  z-index: 2;
}
.banner-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 12px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.banner-text h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.banner-text p {
  font-size: 16px;
  margin: 0;
  opacity: 0.95;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ===== 区块标题 ===== */
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 20px;
}
.title-bar {
  width: 5px;
  height: 22px;
  background: var(--accent);
  border-radius: 3px;
  flex-shrink: 0;
}

/* ===== 资讯列表 ===== */
.category-list-section {
  margin-bottom: 36px;
}
.info-list {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 0 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.info-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px dashed #E8E0D8;
}
.info-item:last-child {
  border-bottom: none;
}
.info-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 58px;
  background: var(--light);
  border-radius: var(--radius-sm);
  padding: 6px 0;
  border: 1px solid var(--border);
}
.info-date .date-day {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}
.info-date .date-month {
  font-size: 11px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-body {
  flex: 1;
  min-width: 0;
}
.info-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.45;
}
.info-body h3 a {
  color: var(--text);
  transition: color 0.25s ease;
}
.info-body h3 a:hover {
  color: var(--primary);
}
.info-summary {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0 0 10px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.info-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.info-meta i {
  margin-right: 3px;
  color: #B8B0A8;
}
.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 10px;
  line-height: 1.6;
}
.badge-red {
  background: rgba(198, 40, 40, 0.1);
  color: var(--primary);
  border: 1px solid rgba(198, 40, 40, 0.2);
}
.badge-gold {
  background: rgba(212, 165, 60, 0.1);
  color: #A8842A;
  border: 1px solid rgba(212, 165, 60, 0.25);
}

/* ===== CTA 横条 ===== */
.category-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  border-radius: var(--radius-md);
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-md);
}
.category-cta .cta-text {
  color: #fff;
}
.category-cta .cta-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.category-cta .cta-text span {
  font-size: 14px;
  opacity: 0.85;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  line-height: 1.4;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid rgba(212, 165, 60, 0.5);
  box-shadow: 0 4px 12px rgba(198, 40, 40, 0.25);
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(198, 40, 40, 0.35);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.btn-white:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* ===== FAQ ===== */
.category-faq {
  margin-bottom: 40px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item:hover {
  border-color: rgba(198, 40, 40, 0.3);
  box-shadow: var(--shadow-md);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 12px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.25s ease;
}
.faq-question:hover {
  background: rgba(246, 243, 239, 0.5);
}
.faq-question i {
  color: var(--accent);
  font-size: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  border-top: 0 solid var(--border);
  background: rgba(246, 243, 239, 0.3);
}
.faq-item.open .faq-answer {
  max-height: 200px;
  border-top-width: 1px;
  padding: 14px 20px;
}
.faq-answer p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 14px;
  color: var(--primary);
  font-weight: 500;
  transition: gap 0.25s ease;
}
.faq-more:hover {
  gap: 8px;
  color: var(--primary-hover);
}

/* ===== 侧边栏 ===== */
.sidebar-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
  overflow: hidden;
}
.scan-card {
  padding: 28px 22px;
  text-align: center;
  background: linear-gradient(180deg, var(--dark), #2A221C);
  border: 1px solid rgba(212, 165, 60, 0.3);
}
.scan-card .logo-block {
  margin-bottom: 12px;
  display: inline-block;
}
.scan-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0 0 18px;
  line-height: 1.6;
}
.scan-card p strong {
  color: var(--accent);
}
.qr-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.qr-placeholder i {
  font-size: 64px;
  color: var(--dark);
  opacity: 0.8;
}
.scan-tip {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
}

.ad-card {
  padding: 0;
}
.ad-placeholder {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0ece6, #e4ded5);
  border: 1px dashed #cfc6bc;
  color: #9c948a;
  font-size: 14px;
  font-weight: 500;
}
.ad-placeholder span {
  background: rgba(255, 255, 255, 0.7);
  padding: 4px 14px;
  border-radius: 12px;
}

/* ===== 页脚 ===== */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(212, 165, 60, 0.2);
  padding: 50px 0 0;
  margin-top: 40px;
}
.site-footer .footer-brand {
  margin-bottom: 10px;
}
.site-footer .footer-brand .logo-block {
  background: var(--primary);
  border: 1px solid var(--accent);
  margin-bottom: 12px;
}
.site-footer p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}
.site-footer h4 {
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 14px;
}
.site-footer ul {
  margin: 0;
}
.site-footer ul li {
  margin-bottom: 8px;
}
.site-footer ul a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.25s ease, padding-left 0.25s ease;
}
.site-footer ul a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.footer-contact i {
  color: var(--accent);
  width: 18px;
  text-align: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 36px;
  padding: 18px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a:hover {
  color: var(--accent);
}

/* ===== 响应式 ===== */
@media (max-width: 1023px) {
  .sidebar-card {
    margin-bottom: 20px;
  }
  .header-tools {
    gap: 10px;
  }
  .search-form input {
    width: 140px;
  }
}

@media (max-width: 639px) {
  .header-top-inner {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .header-tools {
    width: 100%;
    order: 3;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 4px;
  }
  .search-form {
    flex: 1;
    min-width: 0;
  }
  .search-form input {
    width: auto;
    flex: 1;
  }
  .user-entry {
    font-size: 13px;
    padding: 5px 8px;
  }
  .issue-tag {
    font-size: 12px;
    padding: 4px 8px;
  }
  .header-bottom-inner {
    gap: 10px;
  }
  .nav-link {
    padding: 8px 12px;
    font-size: 14px;
  }
  .hot-tags {
    display: none;
  }
  .category-head h1 {
    font-size: 26px;
  }
  .category-head {
    padding: 16px 0 14px;
  }
  .category-banner img {
    height: 180px;
  }
  .banner-text {
    left: 18px;
    right: 18px;
    bottom: 14px;
  }
  .banner-text h2 {
    font-size: 18px;
  }
  .banner-text p {
    font-size: 13px;
  }
  .info-item {
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
  }
  .info-date {
    flex-direction: row;
    width: auto;
    gap: 8px;
    padding: 4px 12px;
  }
  .info-date .date-day {
    font-size: 18px;
  }
  .info-meta {
    gap: 10px;
  }
  .category-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }
  .category-cta .btn {
    width: 100%;
  }
  .faq-question {
    font-size: 15px;
    padding: 12px 14px;
  }
  .faq-item.open .faq-answer {
    padding: 12px 14px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-contact li {
    font-size: 13px;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .category-banner img {
    height: 220px;
  }
  .banner-text h2 {
    font-size: 22px;
  }
}
