@font-face {
  font-family: 'ChillKai';
  src: url('ChillKai.3da9d86b.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg: #f5eed7;
  --bg-dark: #ede4cc;
  --gold: #c8a96e;
  --gold-light: #d4b87a;
  --gold-dark: #a08040;
  --red: #c4453a;
  --dark: #2a1a0a;
  --text: #3d2b1a;
  --text-light: #8a7a6a;
  --border: #d4c9a8;
  --white: #fff;
  --shadow: rgba(42, 26, 10, 0.1);
  --font-kai: 'ChillKai', 'KaiTi', serif;
  --font-base: -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', sans-serif;
  --max-w: 1200px;
}

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

body {
  font-family: var(--font-base);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--text); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-dark); }
img { max-width: 100%; display: block; }
button { font-family: var(--font-base); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(42,26,10,0.95), rgba(42,26,10,0.85));
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-family: var(--font-kai);
  font-size: 24px;
  color: var(--gold);
  font-weight: bold;
  letter-spacing: 4px;
  cursor: pointer;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 6px;
}

.nav-list a {
  color: #e8dcc8;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--gold);
  background: rgba(200,169,110,0.1);
}

.nav-list a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.banner {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-top: 60px;
}

.banner-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.banner-slide.active { opacity: 1; }

.banner-slide img,
.banner-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 80px 0 50px;
  background: linear-gradient(transparent, rgba(42,26,10,0.85));
  text-align: center;
}

.banner-title {
  font-family: var(--font-kai);
  font-size: 38px;
  color: var(--gold);
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
  margin-bottom: 8px;
  letter-spacing: 4px;
}

.banner-desc {
  color: #e8dcc8;
  font-size: 16px;
  opacity: 0.85;
}

.banner-nav {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
}

.banner-dot.active { background: var(--gold); }

.banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(200,169,110,0.4);
  border-radius: 50%;
  background: rgba(42,26,10,0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.banner-arrow:hover {
  border-color: var(--gold);
  background: rgba(42,26,10,0.7);
}

.banner-arrow svg { width: 22px; height: 22px; fill: var(--gold); }
.banner-arrow.prev { left: 30px; }
.banner-arrow.next { right: 30px; }

.section {
  padding: 70px 0;
  position: relative;
  background-size: cover;
  background-position: center;
}

.section-even {
  background-color: var(--bg-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 45px;
}

.section-title {
  font-family: var(--font-kai);
  font-size: 44px;
  color: var(--dark);
  display: inline-block;
  position: relative;
  padding: 0 50px;
  letter-spacing: 8px;
}

.section-title::before,
.section-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 80px;
  height: 2px;
}

.section-title::before {
  right: 100%;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title::after {
  left: 100%;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.news-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 30px;
  align-items: start;
}

.news-featured {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 320px;
  box-shadow: 0 4px 20px var(--shadow);
}

.news-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-featured-title {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 50px 20px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
  font-size: 16px;
  font-weight: bold;
}

.news-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border);
  margin-bottom: 15px;
}

.news-tab {
  padding: 8px 22px;
  cursor: pointer;
  font-size: 14px;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  background: transparent;
  color: var(--text-light);
  transition: all 0.3s;
}

.news-tab:hover { color: var(--text); }

.news-tab.active {
  color: var(--gold-dark);
  background: var(--white);
  border-color: var(--border);
  font-weight: bold;
}

.news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}

.news-item:last-child { border-bottom: none; }

.news-item-cat {
  color: var(--gold-dark);
  margin-right: 8px;
  font-size: 12px;
  flex-shrink: 0;
}

.news-item-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.news-item-title:hover { color: var(--gold-dark); }

.news-item-date {
  color: var(--text-light);
  font-size: 12px;
  margin-left: 15px;
  flex-shrink: 0;
}

.news-more {
  display: inline-block;
  margin-top: 15px;
  padding: 7px 24px;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  border-radius: 3px;
  font-size: 13px;
  transition: all 0.3s;
}

.news-more:hover {
  background: var(--gold);
  color: var(--white);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.data-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  transition: all 0.3s;
}

.data-card:hover {
  box-shadow: 0 6px 20px var(--shadow);
  transform: translateY(-4px);
}

.data-card-title {
  font-family: var(--font-kai);
  font-size: 20px;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.data-card-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.data-card-item {
  font-size: 13px;
  color: var(--text);
  padding: 5px 0;
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
  padding-left: 14px;
}

.data-card-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.data-card-item:hover { color: var(--gold-dark); }

.data-more { text-align: right; margin-top: 20px; }

.feature-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  margin-bottom: 30px;
  box-shadow: 0 6px 25px var(--shadow);
}

.feature-card:last-child { margin-bottom: 0; }

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.feature-card:hover img { transform: scale(1.05); }

.feature-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 80px 35px 35px;
  background: linear-gradient(transparent, rgba(42,26,10,0.9));
}

.feature-title {
  font-family: var(--font-kai);
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 4px;
}

.feature-desc {
  color: #e8dcc8;
  font-size: 15px;
  opacity: 0.85;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.video-card {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow);
  transition: transform 0.3s;
}

.video-card:hover { transform: translateY(-5px); }

.video-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-card:hover .video-thumb img { transform: scale(1.08); }

.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255,255,255,0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42,26,10,0.4);
  transition: all 0.3s;
}

.video-card:hover .video-play {
  background: rgba(200,169,110,0.8);
  border-color: var(--gold);
}

.video-play svg { width: 24px; height: 24px; fill: var(--white); margin-left: 4px; }

.video-info {
  padding: 15px;
  background: var(--white);
}

.video-title { font-size: 15px; font-weight: bold; margin-bottom: 4px; }
.video-desc { font-size: 13px; color: var(--text-light); }

.footer {
  background: var(--dark);
  color: #e8dcc8;
  padding: 45px 0 25px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #e8dcc8;
  font-size: 13px;
  opacity: 0.65;
  transition: all 0.3s;
}

.footer-links a:hover { opacity: 1; color: var(--gold); }

.footer-copyright {
  font-size: 12px;
  opacity: 0.45;
  margin-bottom: 6px;
}

.page-header {
  background: linear-gradient(rgba(42,26,10,0.85), rgba(42,26,10,0.95));
  padding: 100px 0 35px;
  text-align: center;
  margin-top: 60px;
}

.page-title {
  font-family: var(--font-kai);
  font-size: 38px;
  color: var(--gold);
  letter-spacing: 8px;
}

.news-page-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 35px 20px;
}

.news-filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--border);
}

.filter-btn {
  padding: 7px 22px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s;
}

.filter-btn:hover { border-color: var(--gold); }

.filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.news-article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 15px;
  transition: all 0.3s;
  cursor: pointer;
}

.news-article:hover {
  box-shadow: 0 4px 15px var(--shadow);
  transform: translateY(-2px);
}

.news-article-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.news-article-cat {
  background: var(--gold);
  color: var(--white);
  padding: 2px 12px;
  border-radius: 3px;
  font-size: 12px;
}

.news-article-date { color: var(--text-light); font-size: 12px; }
.news-article-title { font-size: 17px; font-weight: bold; margin-bottom: 8px; }
.news-article-content { font-size: 13px; color: var(--text-light); line-height: 1.8; }

.news-detail-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(0,0,0,0.6);
  align-items: center;
  justify-content: center;
}

.news-detail-modal.show { display: flex; }

.news-detail-box {
  background: var(--bg);
  border-radius: 12px;
  max-width: 700px;
  width: 92%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.news-detail-close {
  position: absolute;
  top: 15px; right: 15px;
  width: 34px;
  height: 34px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-detail-close svg { width: 22px; height: 22px; fill: var(--text-light); }
.news-detail-close:hover svg { fill: var(--red); }

.news-detail-cat {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 3px 14px;
  border-radius: 3px;
  font-size: 12px;
  margin-bottom: 12px;
}

.news-detail-title {
  font-family: var(--font-kai);
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.news-detail-date {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.news-detail-body {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}

.news-detail-body img {
  border-radius: 8px;
  margin: 15px 0;
}

.admin-layout {
  display: flex;
  min-height: 100vh;
  padding-top: 60px;
}

.admin-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  padding: 0 24px;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}

.admin-header-title {
  font-family: var(--font-kai);
  font-size: 20px;
  letter-spacing: 3px;
}

.admin-header-right {
  margin-left: auto;
  display: flex;
  gap: 18px;
  align-items: center;
}

.admin-header-right a {
  color: #e8dcc8;
  font-size: 13px;
  opacity: 0.7;
  transition: all 0.3s;
}

.admin-header-right a:hover { opacity: 1; color: var(--gold); }

.admin-sidebar {
  width: 220px;
  background: #1a1208;
  border-right: 1px solid rgba(200,169,110,0.15);
  padding: 15px 0;
  flex-shrink: 0;
  min-height: calc(100vh - 60px);
}

.admin-menu { list-style: none; }

.admin-menu-item {
  padding: 13px 22px;
  cursor: pointer;
  font-size: 14px;
  color: #e8dcc8;
  opacity: 0.55;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.admin-menu-item:hover {
  opacity: 0.8;
  background: rgba(200,169,110,0.08);
}

.admin-menu-item.active {
  opacity: 1;
  color: var(--gold);
  background: rgba(200,169,110,0.1);
  border-left-color: var(--gold);
}

.admin-menu-item svg { width: 18px; height: 18px; fill: currentColor; }

.admin-main {
  flex: 1;
  padding: 28px;
  background: #f0ead5;
  overflow-y: auto;
  min-height: calc(100vh - 60px);
}

.admin-panel { display: none; }
.admin-panel.active { display: block; }

.admin-panel-title {
  font-family: var(--font-kai);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  letter-spacing: 3px;
}

.admin-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  margin-bottom: 20px;
}

.admin-card-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
  color: var(--dark);
}

.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 5px;
  font-weight: bold;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: var(--font-base);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-textarea { min-height: 100px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn {
  padding: 9px 22px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn svg { width: 14px; height: 14px; fill: currentColor; }

.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); }

.btn-danger { background: var(--red); color: var(--white); }
.btn-danger:hover { background: #a53830; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
}

.btn-outline:hover { background: var(--gold); color: var(--white); }

.btn-sm { padding: 5px 14px; font-size: 12px; }

.btn-group { display: flex; gap: 10px; margin-top: 16px; }

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.admin-table th {
  background: var(--bg-dark);
  font-weight: bold;
  color: var(--dark);
}

.admin-table tr:hover { background: rgba(200,169,110,0.05); }
.admin-actions { display: flex; gap: 6px; }

.toast {
  position: fixed;
  top: 80px;
  right: 20px;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 6px;
  font-size: 14px;
  z-index: 1000;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.toast.show { opacity: 1; transform: translateX(0); }

@media (max-width: 768px) {
  .banner { height: 320px; }
  .banner-title { font-size: 24px; }
  .banner-arrow { display: none; }
  .news-wrap { grid-template-columns: 1fr; }
  .news-featured { height: 200px; }
  .data-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { height: 260px; }
  .videos-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 30px; padding: 0 30px; }
  .section-title::before, .section-title::after { width: 40px; }
  .nav-list { display: none; }
  .admin-sidebar { width: 60px; overflow: hidden; }
  .admin-menu-item span { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .page-header { padding: 80px 0 25px; }
  .page-title { font-size: 28px; }
}

body {
  background:
    radial-gradient(circle at 8% 18%, rgba(212,184,122,0.2), transparent 26%),
    radial-gradient(circle at 92% 42%, rgba(164,128,64,0.14), transparent 30%),
    linear-gradient(180deg, rgba(245,238,215,0.92), rgba(237,228,204,0.96)),
    url('../images/basemap-second-footer.b359cd00.png') center bottom / 100% auto no-repeat fixed;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    url('../images/basemap-second-footer.b359cd00.png') center bottom / 100% auto no-repeat;
  opacity: 0.14;
}

.header {
  background:
    linear-gradient(90deg, rgba(15,10,5,0.96), rgba(44,28,11,0.92), rgba(15,10,5,0.96)),
    url('../images/nav-bg.5cd0c520.png') center / auto 100% repeat-x;
  border-bottom: 1px solid rgba(220,184,102,0.65);
  box-shadow: 0 12px 38px rgba(0,0,0,0.35);
}

.header-inner {
  height: 68px;
}

.logo {
  position: relative;
  font-size: 30px;
  color: #f1d28c;
  text-shadow: 0 0 18px rgba(218,170,77,0.5), 0 2px 0 rgba(0,0,0,0.5);
}

.logo::after {
  content: '';
  position: absolute;
  left: -14px;
  right: -14px;
  bottom: -7px;
  height: 8px;
  background: url('../images/line.e93e23e7.png') center / 100% 100% no-repeat;
  opacity: 0.55;
}

.nav-list {
  gap: 4px;
}

.nav-list a {
  padding: 10px 20px;
  color: rgba(248,233,200,0.85);
  letter-spacing: 2px;
}

.nav-list a:hover,
.nav-list a.active {
  color: #f7d996;
  background: linear-gradient(180deg, rgba(205,161,77,0.24), rgba(205,161,77,0.04));
}

.banner {
  height: 730px;
  margin-top: 68px;
  background: #160d05;
}

.banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 150px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(245,238,215,0.78) 55%, var(--bg));
  z-index: 4;
}

.banner-slide img,
.banner-slide video {
  filter: saturate(1.06) contrast(1.06);
  transform: scale(1.02);
}

.banner-slide.active img,
.banner-slide.active video {
  transform: scale(1.08);
  transition: transform 7s ease;
}

.banner-overlay {
  top: 0;
  bottom: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(20,12,5,0.9) 0%, rgba(20,12,5,0.35) 42%, rgba(20,12,5,0.62) 100%),
    radial-gradient(circle at 52% 46%, rgba(244,198,94,0.28), transparent 25%);
  z-index: 3;
}

.hero-role {
  position: absolute;
  bottom: 82px;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,0.45));
}

.hero-role img {
  width: 190px;
  opacity: 0.96;
}

.hero-role-left {
  left: max(28px, calc((100vw - var(--max-w)) / 2 - 18px));
}

.hero-role-right {
  right: max(330px, calc((100vw - var(--max-w)) / 2 + 300px));
}

.hero-role-right img {
  width: 150px;
}

.hero-content {
  width: min(620px, calc(100% - 520px));
  margin-right: 330px;
  padding-top: 20px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  color: #f4d994;
  border: 1px solid rgba(228,187,103,0.55);
  background: rgba(32,18,8,0.55);
  box-shadow: inset 0 0 16px rgba(228,187,103,0.12);
  letter-spacing: 4px;
  font-size: 14px;
  margin-bottom: 20px;
}

.banner-title {
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.08;
  color: #f8df9d;
  text-align: left;
  letter-spacing: 8px;
  text-shadow: 0 4px 0 rgba(76,36,8,0.7), 0 0 32px rgba(238,183,72,0.55);
}

.banner-desc {
  max-width: 480px;
  text-align: left;
  color: rgba(255,244,220,0.9);
  font-size: 19px;
  letter-spacing: 3px;
  margin-top: 18px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.hero-btn {
  min-width: 150px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: bold;
  letter-spacing: 3px;
  transition: all 0.35s;
}

.hero-btn-primary {
  color: #291600;
  background: linear-gradient(180deg, #f8dc93, #b88736);
  box-shadow: 0 10px 30px rgba(183,125,34,0.35);
}

.hero-btn-primary:hover {
  color: #291600;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(224,164,61,0.45);
}

.hero-btn-ghost {
  color: #f1d28c;
  border: 1px solid rgba(241,210,140,0.72);
  background: rgba(25,14,6,0.48);
}

.hero-btn-ghost:hover {
  color: #291600;
  background: #f1d28c;
}

.hero-download {
  position: absolute;
  right: max(55px, calc((100vw - var(--max-w)) / 2 + 20px));
  bottom: 105px;
  width: 280px;
  padding: 24px 22px 20px;
  border: 1px solid rgba(232,195,113,0.6);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(44,25,10,0.88), rgba(22,12,4,0.92)),
    url('../images/basemap-orderdialog.889097e6.png') center / cover no-repeat;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), inset 0 0 40px rgba(220,172,80,0.12);
}

.hero-download::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 24px;
  border: 1px solid rgba(255,231,170,0.16);
  pointer-events: none;
}

.hero-download-title {
  font-family: var(--font-kai);
  color: #f8df9d;
  font-size: 28px;
  letter-spacing: 6px;
  text-align: center;
  margin-bottom: 18px;
}

.download-btn {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 10px;
  color: #2d1702;
  font-weight: bold;
  letter-spacing: 3px;
  background: linear-gradient(180deg, #ffe8a7, #be8634);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 8px 18px rgba(0,0,0,0.28);
  overflow: hidden;
}

.download-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.28) 46%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s;
}

.download-btn.mobile {
  color: #f8df9d;
  background: linear-gradient(180deg, rgba(96,52,17,0.9), rgba(42,22,8,0.95));
  border: 1px solid rgba(232,195,113,0.45);
}

.download-btn:hover {
  color: #2d1702;
  transform: translateY(-2px);
}

.download-btn:hover::after {
  transform: translateX(120%);
}

.hero-download-note {
  text-align: center;
  color: rgba(255,244,220,0.66);
  font-size: 12px;
  letter-spacing: 2px;
}

.banner-dot {
  width: 36px;
  height: 4px;
  border-radius: 0;
  border: none;
  background: rgba(249,221,157,0.35);
}

.banner-dot.active {
  background: #f8df9d;
  box-shadow: 0 0 14px rgba(248,223,157,0.8);
}

.quick-entry {
  position: relative;
  z-index: 8;
  margin-top: -54px;
  padding-bottom: 20px;
}

.quick-entry-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quick-card {
  min-height: 108px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(193,153,81,0.34);
  color: #4b2c0b;
  background:
    linear-gradient(135deg, rgba(255,250,233,0.96), rgba(238,220,174,0.88)),
    url('../images/utils-basemap.df9424ad.png') center / cover no-repeat;
  box-shadow: 0 18px 45px rgba(88,60,20,0.15);
  overflow: hidden;
  position: relative;
}

.quick-card::after {
  content: '';
  position: absolute;
  inset: auto -25px -38px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(196,145,54,0.12);
}

.quick-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(88,60,20,0.24);
}

.quick-card.primary {
  background:
    linear-gradient(135deg, rgba(87,39,10,0.96), rgba(188,126,42,0.92)),
    url('../images/button-01.a5ac0e0c.png') center / cover no-repeat;
  color: #fff4d6;
}

.quick-card.admin-link {
  background:
    linear-gradient(135deg, rgba(45,29,14,0.94), rgba(111,74,27,0.9)),
    url('../images/basemap-dialog.c0525e05.png') center / cover no-repeat;
  color: #f8df9d;
}

.quick-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.45);
  flex: 0 0 auto;
}

.quick-card.primary .quick-icon,
.quick-card.admin-link .quick-icon {
  background: rgba(255,239,191,0.15);
}

.quick-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.quick-card strong,
.quick-card em {
  display: block;
  font-style: normal;
}

.quick-card strong {
  font-family: var(--font-kai);
  font-size: 22px;
  letter-spacing: 3px;
}

.quick-card em {
  margin-top: 3px;
  font-size: 12px;
  opacity: 0.72;
  letter-spacing: 1px;
}

.float-tools {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-tool {
  width: 62px;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #f8df9d;
  border: 1px solid rgba(232,195,113,0.46);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(44,25,10,0.88), rgba(20,11,4,0.94)),
    url('../images/anchor-button.bc4b5032.png') center / cover no-repeat;
  box-shadow: 0 12px 32px rgba(0,0,0,0.28);
  backdrop-filter: blur(6px);
}

.float-tool:hover {
  color: #2b1704;
  background: linear-gradient(180deg, #f9df99, #b98736);
  transform: translateX(-4px);
}

.float-tool svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.float-tool span {
  font-size: 12px;
  line-height: 1;
}

.float-tool.image-tool {
  width: auto;
  min-height: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.float-tool.image-tool:hover {
  background: transparent;
  transform: translateX(-4px);
}

.float-tool.image-tool img {
  width: 132px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.22));
}

.float-tool.image-tool-large img {
  width: 96px;
}

.gift-strip {
  position: relative;
  z-index: 2;
  padding: 34px 0 24px;
}

.gift-inner {
  position: relative;
  min-height: 178px;
  display: grid;
  grid-template-columns: 1fr 1.32fr;
  gap: 28px;
  align-items: center;
  padding: 28px 34px;
  border: 1px solid rgba(198,153,72,0.36);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(53,30,10,0.94), rgba(130,82,25,0.86), rgba(245,234,201,0.92)),
    url('../images/basemap-orderlink-code-01.c65ffb00.png') left center / auto 125% no-repeat;
  box-shadow: 0 26px 65px rgba(70,42,8,0.18);
  overflow: hidden;
}

.gift-inner::after {
  content: '';
  position: absolute;
  right: 5%;
  top: -48px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255,224,143,0.32), transparent 58%);
  pointer-events: none;
}

.gift-label {
  display: inline-block;
  padding: 5px 16px;
  color: #2b1704;
  background: linear-gradient(180deg, #ffe6a3, #c7923c);
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 3px;
}

.gift-main h2 {
  margin-top: 12px;
  font-family: var(--font-kai);
  font-size: 42px;
  color: #f8df9d;
  letter-spacing: 7px;
  text-shadow: 0 3px 0 rgba(47,21,3,0.7);
}

.gift-main p {
  max-width: 520px;
  margin-top: 6px;
  color: rgba(255,244,220,0.74);
  font-size: 14px;
  letter-spacing: 1px;
}

.gift-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gift-card {
  min-height: 126px;
  padding: 16px 12px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(179,129,49,0.28);
  background: rgba(255,251,235,0.82);
  box-shadow: inset 0 0 22px rgba(203,154,67,0.12), 0 12px 30px rgba(63,38,7,0.08);
}

.gift-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 22px rgba(203,154,67,0.16), 0 18px 38px rgba(63,38,7,0.14);
}

.gift-card img {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.gift-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5b1c;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255,233,170,0.9), rgba(209,160,72,0.62));
  box-shadow: inset 0 0 14px rgba(255,255,255,0.4), 0 8px 18px rgba(89,54,12,0.12);
}

.gift-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.gift-card strong {
  display: block;
  font-family: var(--font-kai);
  color: #51300d;
  font-size: 20px;
  letter-spacing: 2px;
}

.gift-card span {
  display: block;
  margin-top: 3px;
  color: #8a6b3e;
  font-size: 12px;
}

.section {
  padding: 86px 0;
}

#news-section,
#data-section,
#features-section,
#videos-section {
  overflow: hidden;
}

#features-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
  opacity: 0.22;
}

#features-section::after {
  right: -32px;
  top: 90px;
  width: 260px;
  height: 260px;
  background: url('../images/line.e93e23e7.png') center / contain no-repeat;
}

#data-section::after,
#videos-section::after {
  content: '';
  position: absolute;
  pointer-events: none;
  opacity: 0.16;
  background: url('../images/line.e93e23e7.png') center / contain no-repeat;
}

#data-section::after {
  right: 18px;
  bottom: 40px;
  width: 210px;
  height: 210px;
}

#videos-section::after {
  left: 20px;
  top: 60px;
  width: 190px;
  height: 190px;
  transform: rotate(-12deg);
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 20%, transparent 80%, rgba(255,255,255,0.18)),
    url('../images/base-map1.fbae9d64.png') center / cover no-repeat;
  opacity: 0.08;
}

.section .container {
  position: relative;
  z-index: 1;
}

.section-even {
  background:
    linear-gradient(180deg, rgba(237,228,204,0.94), rgba(245,238,215,0.94)),
    url('../images/base-map.210f89bf.png') center / cover no-repeat;
}

.section-title {
  color: #3b2309;
  text-shadow: 0 2px 0 rgba(255,255,255,0.72);
}

.section-title::before,
.section-title::after {
  height: 10px;
  top: 56%;
  background: url('../images/line.e93e23e7.png') center / 100% 100% no-repeat;
  opacity: 0.72;
}

.news-wrap {
  grid-template-columns: 470px 1fr;
  padding: 24px;
  border: 1px solid rgba(193,153,81,0.28);
  border-radius: 22px;
  background: rgba(255,250,233,0.72);
  box-shadow: 0 26px 70px rgba(76,49,13,0.12);
  backdrop-filter: blur(6px);
}

.news-featured {
  height: 356px;
  border: 8px solid rgba(255,255,255,0.58);
  border-radius: 18px;
}

.news-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(199,151,61,0.45);
  border-radius: 10px;
  pointer-events: none;
}

.news-right {
  padding: 8px 4px 0;
}

.news-tabs {
  border-bottom-color: rgba(193,153,81,0.35);
}

.news-tab {
  border-radius: 999px;
  margin-bottom: 12px;
  background: rgba(255,255,255,0.55);
}

.news-tab.active {
  color: #fff8dc;
  background: linear-gradient(180deg, #c79b52, #8f6222);
  border-color: #b18036;
  box-shadow: 0 8px 18px rgba(143,98,34,0.2);
}

.news-item {
  padding: 13px 0;
}

.news-item-cat {
  color: #b47a28;
  font-weight: bold;
}

.news-item-title {
  font-size: 15px;
}

.news-more {
  border-radius: 999px;
  padding: 9px 28px;
  background: rgba(255,255,255,0.4);
}

.data-grid {
  gap: 26px;
}

.data-card {
  position: relative;
  min-height: 210px;
  border-radius: 18px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,251,236,0.95), rgba(239,223,181,0.9)),
    url('../images/basemap-data-def.b9e9588c.png') center / cover no-repeat;
  border-color: rgba(190,148,73,0.35);
  box-shadow: 0 18px 45px rgba(81,51,12,0.12);
}

.data-card::before {
  content: '';
  position: absolute;
  right: -35px;
  bottom: -45px;
  width: 150px;
  height: 150px;
  background: url('../images/basemap-data-active.44b6c162.png') center / contain no-repeat;
  opacity: 0.24;
}

.data-card:hover {
  border-color: rgba(180,122,40,0.75);
  background:
    linear-gradient(180deg, rgba(255,246,220,0.95), rgba(231,202,135,0.92)),
    url('../images/basemap-data-active.44b6c162.png') center / cover no-repeat;
}

.data-card-title {
  position: relative;
  z-index: 1;
  font-size: 28px;
}

.data-card-title::after {
  content: '';
  display: block;
  width: 58px;
  height: 6px;
  margin-top: 8px;
  background: url('../images/line.e93e23e7.png') center / 100% 100% no-repeat;
  opacity: 0.55;
}

.data-card-items {
  position: relative;
  z-index: 1;
}

.feature-card {
  height: 460px;
  border-radius: 24px;
  border: 10px solid rgba(255,249,229,0.66);
  box-shadow: 0 28px 70px rgba(61,39,12,0.18);
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255,232,170,0.42);
  border-radius: 16px;
  pointer-events: none;
}

.feature-card:nth-child(even) .feature-overlay {
  text-align: right;
  background: linear-gradient(90deg, transparent, rgba(42,26,10,0.88));
}

.feature-overlay {
  padding: 130px 46px 42px;
  background: linear-gradient(90deg, rgba(42,26,10,0.88), rgba(42,26,10,0.15));
}

.feature-title {
  font-size: 40px;
}

.feature-desc {
  max-width: 520px;
  font-size: 16px;
}

.feature-card:nth-child(even) .feature-desc {
  margin-left: auto;
}

.videos-grid {
  gap: 30px;
}

.video-card {
  border-radius: 18px;
  background: #fff8e8;
  border: 1px solid rgba(190,148,73,0.32);
  box-shadow: 0 20px 55px rgba(70,45,13,0.13);
}

.video-card:nth-child(1) {
  transform: skewX(-6deg);
}

.video-card:nth-child(1) > * {
  transform: skewX(6deg) scale(1.06);
}

.video-card:nth-child(2) {
  transform: translateY(-18px);
}

.video-card:nth-child(3) {
  transform: skewX(6deg);
}

.video-card:nth-child(3) > * {
  transform: skewX(-6deg) scale(1.06);
}

.video-card:hover {
  box-shadow: 0 28px 70px rgba(70,45,13,0.22);
}

.video-thumb {
  height: 230px;
}

.video-info {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255,250,235,0.96), rgba(239,221,174,0.92)),
    url('../images/basemap-media.ed4d8041.png') center / cover no-repeat;
}

.video-title {
  font-family: var(--font-kai);
  font-size: 23px;
  color: #4d2a07;
}

.footer {
  position: relative;
  padding-top: 90px;
  background:
    linear-gradient(180deg, rgba(42,26,10,0.9), rgba(16,10,5,0.98)),
    url('../images/basemap-second-footer.b359cd00.png') center top / cover no-repeat;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 920px);
  height: 76px;
  background: url('../images/line.e93e23e7.png') center / 100% 100% no-repeat;
  opacity: 0.3;
}

.page-header {
  margin-top: 68px;
  padding: 130px 0 58px;
  background:
    linear-gradient(90deg, rgba(20,12,5,0.92), rgba(70,39,12,0.62), rgba(20,12,5,0.92)),
    url('../images/basemap-second-header.b7447906.png') center / cover no-repeat;
  box-shadow: inset 0 -90px 90px rgba(245,238,215,0.85);
}

.page-title {
  font-size: 52px;
  text-shadow: 0 0 24px rgba(232,188,95,0.55);
}

.news-page-content {
  padding-top: 50px;
}

.news-filter-bar {
  justify-content: center;
  border-bottom: none;
}

.filter-btn {
  min-width: 88px;
  border-radius: 999px;
  padding: 10px 26px;
  box-shadow: 0 10px 26px rgba(80,52,16,0.08);
}

.news-article {
  border-radius: 18px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,251,238,0.96), rgba(245,234,202,0.92)),
    url('../images/basemap-news.66ee6913.png') right center / auto 100% no-repeat;
  border-color: rgba(193,153,81,0.28);
  box-shadow: 0 16px 42px rgba(78,50,14,0.1);
}

.news-article-title {
  font-family: var(--font-kai);
  font-size: 25px;
  letter-spacing: 2px;
}

.news-detail-box {
  border: 1px solid rgba(193,153,81,0.45);
  background:
    linear-gradient(180deg, rgba(255,250,234,0.98), rgba(238,224,186,0.98)),
    url('../images/basemap-dialog.c0525e05.png') center / cover no-repeat;
}

.admin-header {
  height: 68px;
  background:
    linear-gradient(90deg, #130c06, #30200f, #130c06),
    url('../images/nav-bg.5cd0c520.png') center / auto 100% repeat-x;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

.admin-layout {
  padding-top: 68px;
}

.admin-sidebar {
  min-height: calc(100vh - 68px);
  background:
    linear-gradient(180deg, rgba(25,14,6,0.98), rgba(52,31,12,0.96)),
    url('../images/utils-basemap.df9424ad.png') center / cover no-repeat;
}

.admin-main {
  min-height: calc(100vh - 68px);
  background:
    linear-gradient(180deg, rgba(240,234,213,0.94), rgba(229,216,178,0.94)),
    url('../images/base-map1.fbae9d64.png') center / cover fixed no-repeat;
}

.admin-card {
  border-radius: 16px;
  background: rgba(255,250,236,0.92);
  box-shadow: 0 16px 40px rgba(74,48,14,0.09);
  border-color: rgba(193,153,81,0.26);
}

.admin-panel-title {
  position: relative;
}

.admin-panel-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 120px;
  height: 7px;
  background: url('../images/line.e93e23e7.png') center / 100% 100% no-repeat;
  opacity: 0.55;
}

.form-input,
.form-textarea,
.form-select {
  border-radius: 9px;
  background: rgba(255,255,255,0.86);
}

.btn {
  border-radius: 999px;
}

.admin-table th {
  background: rgba(232,211,160,0.6);
}

@media (max-width: 1024px) {
  .hero-content {
    width: calc(100% - 80px);
    margin: 0;
    padding: 0 20px;
  }

  .hero-download {
    display: none;
  }

  .quick-entry-inner,
  .data-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-wrap {
    grid-template-columns: 1fr;
  }

  .hero-role,
  .float-tools {
    display: none;
  }

  .gift-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    height: 60px;
  }

  .logo {
    font-size: 24px;
  }

  .banner {
    height: 520px;
    margin-top: 60px;
  }

  .banner-title {
    font-size: 36px;
    text-align: center;
  }

  .banner-desc {
    text-align: center;
    font-size: 15px;
  }

  .hero-content {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .gift-cards {
    grid-template-columns: 1fr;
  }

  .gift-main h2 {
    font-size: 30px;
  }

  .video-card:nth-child(1),
  .video-card:nth-child(2),
  .video-card:nth-child(3),
  .video-card:nth-child(1) > *,
  .video-card:nth-child(3) > * {
    transform: none;
  }

  .quick-entry {
    margin-top: -34px;
  }

  .quick-entry-inner,
  .data-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    height: 300px;
  }

  .feature-title {
    font-size: 28px;
  }

  .page-header {
    margin-top: 60px;
    padding: 96px 0 42px;
  }
}

.news-featured::before {
  content: '推荐';
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 5px 16px;
  color: #2b1704;
  background: linear-gradient(180deg, #ffe9aa, #c28a36);
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  box-shadow: 0 8px 18px rgba(72,43,8,0.22);
}

.news-featured-title {
  font-family: var(--font-kai);
  font-size: 24px;
  letter-spacing: 3px;
}

.news-right {
  position: relative;
}

.news-right::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -12px;
  width: 120px;
  height: 80px;
  background: url('../images/icon-picture.61730c9c.png') center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.section-header {
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 140px;
  height: 18px;
  background: radial-gradient(ellipse, rgba(149,91,22,0.28), transparent 70%);
}

.admin-menu-item.active {
  box-shadow: inset 0 0 24px rgba(211,172,91,0.08);
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: min(260px, 86vw);
  }

  .gift-inner {
    padding: 24px 18px;
  }

  .news-wrap {
    padding: 14px;
  }
}

.login-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #2a1a0a 0%, #3d2b1a 50%, #2a1a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-box {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 36px 32px;
  width: 380px;
  max-width: 90vw;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.login-logo {
  text-align: center;
  margin-bottom: 12px;
}

.login-title {
  text-align: center;
  font-family: var(--font-kai);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 24px;
}

.login-error {
  color: var(--red);
  font-size: 13px;
  min-height: 20px;
  margin-bottom: 8px;
  text-align: center;
}

.pwd-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
}
