/* ========================================
   KY Template - 仿KY体育风格企业站模板
   ======================================== */

/* -------- Reset & Base -------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Microsoft YaHei", "Hiragino Sans GB", "Helvetica Neue", Arial, sans-serif;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: #333; text-decoration: none; transition: color 0.3s; }
a:hover { color: #c9a962; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; padding: 0; margin: 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* -------- Header (Fixed/Sticky) -------- */
.ky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #1a1a2e;
  border-bottom: 2px solid #c9a962;
  transition: all 0.3s ease;
}
.ky-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.ky-header .logo-area {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ky-header .logo-area a {
  display: flex;
  align-items: center;
}
.ky-header .logo-area img {
  height: 42px;
  width: auto;
}
.ky-header .logo-area .site-name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-left: 10px;
  white-space: nowrap;
}

/* Nav Menu */
.ky-nav { display: flex; align-items: center; }
.ky-nav > li { position: relative; margin: 0 2px; }
.ky-nav > li > a {
  display: block;
  color: #ccc;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: 3px;
  transition: all 0.3s;
  white-space: nowrap;
}
.ky-nav > li > a:hover,
.ky-nav > li.active > a {
  color: #c9a962;
  background: rgba(201,169,98,0.1);
}

/* Dropdown */
.ky-nav .dropdown { position: relative; }
.ky-nav .dropdown .dropdown-toggle::after {
  content: ' ▾';
  font-size: 10px;
  margin-left: 3px;
}
.ky-nav .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 160px;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  padding: 6px 0;
  z-index: 10000;
}
.ky-nav .dropdown:hover .dropdown-menu { display: block; }
.ky-nav .dropdown .dropdown-menu li a {
  display: block;
  padding: 8px 18px;
  color: #333;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.2s;
}
.ky-nav .dropdown .dropdown-menu li a:hover {
  color: #c9a962;
  background: #faf5eb;
}

/* Header CTA */
.ky-header .header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ky-btn {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  white-space: nowrap;
}
.ky-btn-gold {
  background: linear-gradient(135deg, #c9a962, #d4b86a);
  color: #1a1a2e;
}
.ky-btn-gold:hover { background: linear-gradient(135deg, #d4b86a, #c9a962); color: #1a1a2e; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,169,98,0.3); }
.ky-btn-outline {
  background: transparent;
  color: #c9a962;
  border: 1px solid #c9a962;
}
.ky-btn-outline:hover { background: #c9a962; color: #1a1a2e; }
.ky-btn-white {
  background: #fff;
  color: #1a1a2e;
}
.ky-btn-white:hover { background: #c9a962; color: #fff; }
.ky-btn-lg { padding: 14px 36px; font-size: 16px; border-radius: 6px; }

/* Mobile Menu Button */
.ky-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.ky-menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}

/* -------- Hero Section -------- */
.ky-hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  background: #1a1a2e url() center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}
.ky-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,10,30,0.85) 0%, rgba(20,20,50,0.75) 100%);
  z-index: 1;
}
.ky-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 20px 80px;
}
.ky-hero .hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.ky-hero .hero-content h1 span { color: #c9a962; }
.ky-hero .hero-content .hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}
.ky-hero .hero-content .hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* -------- Section Common -------- */
.ky-section {
  padding: 80px 0;
}
.ky-section.bg-light { background: #f8f6f1; }
.ky-section.bg-dark { background: #1a1a2e; color: #fff; }
.ky-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}
.ky-section .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.ky-section .section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #c9a962;
  margin: 12px auto 0;
}
.ky-section.bg-dark .section-header h2 { color: #fff; }
.ky-section .section-header .section-subtitle {
  font-size: 16px;
  color: #888;
  margin-top: 8px;
}
.ky-section.bg-dark .section-header .section-subtitle { color: #aaa; }

/* -------- About Section (imgpeo) -------- */
.ky-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ky-about-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.ky-about-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.ky-about-card .card-icon {
  width: 240px;
  height: 240px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: #faf5eb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ky-about-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ky-about-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
}
.ky-about-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

/* About content (text) */
.ky-about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.ky-about-content .about-img img {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.ky-about-content .about-text h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}
.ky-about-content .about-text p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* -------- Games Section (imggame) -------- */
.ky-games-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.ky-games-tabs .tab-btn {
  padding: 10px 24px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  color: #666;
  transition: all 0.3s;
}
.ky-games-tabs .tab-btn:hover,
.ky-games-tabs .tab-btn.active {
  background: #1a1a2e;
  color: #c9a962;
  border-color: #1a1a2e;
}
.ky-games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ky-game-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s;
  cursor: pointer;
}
.ky-game-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12); }
.ky-game-card .game-img {
  height: 140px;
  overflow: hidden;
  background: #f0ece6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ky-game-card .game-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.ky-game-card:hover .game-img img { transform: scale(1.08); }
.ky-game-card .game-info {
  padding: 15px;
  text-align: center;
}
.ky-game-card .game-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
}
.ky-game-card .game-info p {
  font-size: 13px;
  color: #999;
  margin-top: 4px;
}
.game-tab-content { display: none; }
.game-tab-content.active { display: block; }

/* -------- Esports Section (imgdj) -------- */
.ky-esports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ky-esport-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a2e;
}
.ky-esport-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0.7;
  transition: all 0.4s;
}
.ky-esport-card:hover img { opacity: 1; transform: scale(1.05); }
.ky-esport-card .esport-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: #c9a962;
  font-size: 18px;
  font-weight: 600;
}

/* -------- Partners Carousel (imgzz) -------- */
.ky-partners-carousel {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.ky-partners-track {
  display: flex;
  animation: partners-scroll 28s linear infinite;
  width: fit-content;
}
.ky-partners-track:hover {
  animation-play-state: paused;
}
.ky-partner-item {
  flex-shrink: 0;
  background: #fff;
  border-radius: 8px;
  padding: 20px 24px;
  margin: 0 8px;
  text-align: center;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
}
.ky-partner-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.ky-partner-item img {
  height: 200px;
  width: auto;
  object-fit: contain;
}
@keyframes partners-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -------- FAQ Section -------- */
.ky-faq-list { max-width: 800px; margin: 0 auto; }
.ky-faq-item {
  background: #fff;
  border-radius: 6px;
  margin-bottom: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  overflow: hidden;
}
.ky-faq-item .faq-question {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.ky-faq-item .faq-question:hover { background: #faf5eb; }
.ky-faq-item .faq-question::after { content: '+'; font-size: 20px; color: #c9a962; transition: transform 0.3s; }
.ky-faq-item.open .faq-question::after { content: '−'; }
.ky-faq-item .faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  color: #666;
  font-size: 14px;
  line-height: 1.7;
}
.ky-faq-item.open .faq-answer { padding: 0 24px 18px; max-height: 300px; }

/* -------- Footer -------- */
.ky-footer {
  background: #1a1a2e;
  color: #aaa;
  padding: 50px 0 30px;
}
.ky-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}
.ky-footer .footer-info h4 {
  color: #c9a962;
  font-size: 18px;
  margin-bottom: 15px;
}
.ky-footer .footer-info p {
  font-size: 14px;
  line-height: 1.8;
  color: #888;
}
.ky-footer .friend-link-area h4 {
  color: #c9a962;
  font-size: 18px;
  margin-bottom: 15px;
}
.ky-footer .friend-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ky-footer .friend-link-list a {
  color: #aaa;
  font-size: 13px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  transition: all 0.3s;
}
.ky-footer .friend-link-list a:hover {
  color: #c9a962;
  border-color: #c9a962;
}
.ky-footer .footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #666;
}
.ky-footer .footer-bottom a { color: #888; }
.ky-footer .footer-bottom a:hover { color: #c9a962; }

/* -------- Responsive -------- */
@media (max-width: 992px) {
  .ky-header .container { height: 56px; }
  .ky-menu-toggle { display: block; }
  .ky-nav {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1a1a2e;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
    z-index: 9998;
  }
  .ky-nav.open { display: flex; }
  .ky-nav > li { margin: 4px 0; }
  .ky-nav > li > a { font-size: 16px; padding: 12px 14px; }
  .ky-nav .dropdown .dropdown-menu {
    position: static;
    background: rgba(255,255,255,0.05);
    box-shadow: none;
    border-radius: 0;
    padding-left: 20px;
  }
  .ky-nav .dropdown .dropdown-menu li a { color: #ccc; }
  .ky-header .header-cta { display: none; }
  .ky-header .header-cta.mobile-cta { display: flex; margin-top: 20px; }

  .ky-hero { min-height: 300px; }
  .ky-hero .hero-content h1 { font-size: 32px; }
  .ky-hero .hero-content .hero-desc { font-size: 15px; }

  .ky-about-grid { grid-template-columns: 1fr 1fr; }
  .ky-about-content { grid-template-columns: 1fr; }
  .ky-games-grid { grid-template-columns: repeat(2, 1fr); }
  .ky-esports-grid { grid-template-columns: 1fr 1fr; }
  .ky-partner-item { padding: 14px 16px; min-width: 150px; }
  .ky-partner-item img { height: 120px; }
}

@media (max-width: 576px) {
  .ky-hero { min-height: 280px; }
  .ky-hero .hero-content h1 { font-size: 26px; }
  .ky-hero .hero-content .hero-desc { font-size: 14px; }
  .ky-hero .hero-content .hero-btns { flex-direction: column; align-items: center; }
  .ky-hero .hero-content .hero-btns .ky-btn { width: 80%; }

  .ky-about-grid { grid-template-columns: 1fr; }
  .ky-games-grid { grid-template-columns: 1fr 1fr; }
  .ky-esports-grid { grid-template-columns: 1fr; }
  .ky-partner-item { padding: 10px 12px; min-width: 110px; }
  .ky-partner-item img { height: 90px; }

  .ky-footer .footer-top { grid-template-columns: 1fr; }

  .ky-section { padding: 50px 0; }
  .ky-section .section-header h2 { font-size: 26px; }
  .ky-games-tabs { gap: 6px; }
  .ky-games-tabs .tab-btn { padding: 8px 14px; font-size: 13px; }
}

/* ========================================
   Inner Pages Common
   ======================================== */

/* Grid Layout */
.ky-row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.ky-main { flex: 0 0 66.66%; max-width: 66.66%; padding: 0 15px; }
.ky-side { flex: 0 0 33.33%; max-width: 33.33%; padding: 0 15px; }

/* Card Box */
.ky-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  margin-bottom: 24px;
  overflow: hidden;
}
.ky-card-header {
  padding: 18px 24px;
  border-bottom: 1px solid #f0ece6;
}
.ky-card-header h2, .ky-card-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
}
.ky-card-body { padding: 24px; }

/* Breadcrumb */
.ky-breadcrumb {
  padding: 16px 0;
  font-size: 14px;
  color: #999;
}
.ky-breadcrumb a { color: #666; }
.ky-breadcrumb a:hover { color: #c9a962; }
.ky-breadcrumb span { margin: 0 6px; color: #ccc; }

/* Article List Item */
.ky-article-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f0ece6;
}
.ky-article-item:last-child { border-bottom: none; }
.ky-article-item .article-thumb {
  flex-shrink: 0;
  width: 220px;
  height: 140px;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f6f1;
}
.ky-article-item .article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.ky-article-item .article-thumb:hover img { transform: scale(1.08); }
.ky-article-item .article-info { flex: 1; min-width: 0; }
.ky-article-item .article-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.ky-article-item .article-info h4 a { color: #1a1a2e; }
.ky-article-item .article-info h4 a:hover { color: #c9a962; }
.ky-article-item .article-info .article-desc {
  font-size: 14px;
  color: #999;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 8px;
}
.ky-article-item .article-info .article-meta {
  font-size: 13px;
  color: #bbb;
}

/* Article Simple List */
.ky-list-item {
  padding: 10px 0;
  border-bottom: 1px solid #f8f6f1;
}
.ky-list-item:last-child { border-bottom: none; }
.ky-list-item a {
  display: block;
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ky-list-item a:hover { color: #c9a962; }
.ky-list-item .list-time {
  font-size: 12px;
  color: #bbb;
  margin-top: 2px;
}

/* Tags */
.ky-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ky-tags a {
  display: inline-block;
  padding: 4px 12px;
  background: #f8f6f1;
  color: #666;
  border-radius: 4px;
  font-size: 13px;
  transition: all 0.3s;
}
.ky-tags a:hover { background: #c9a962; color: #fff; }

/* Pagination */
.ky-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 30px 0 10px;
  flex-wrap: wrap;
}
.ky-pagination a, .ky-pagination span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 4px;
  background: #fff;
  color: #666;
  font-size: 14px;
  border: 1px solid #e8e4da;
  transition: all 0.3s;
}
.ky-pagination a:hover { background: #c9a962; color: #fff; border-color: #c9a962; }
.ky-pagination .active span { background: #1a1a2e; color: #c9a962; border-color: #1a1a2e; }
.ky-pagination .disabled span { color: #ccc; cursor: not-allowed; }

/* Article Detail */
.ky-article-detail { font-size: 16px; line-height: 1.9; color: #444; word-wrap: break-word; }
.ky-article-detail img { max-width: 100%; height: auto; border-radius: 4px; margin: 16px 0; }
.ky-article-detail h2, .ky-article-detail h3 { margin: 24px 0 14px; color: #1a1a2e; }
.ky-article-detail p { margin-bottom: 14px; }
.ky-article-detail a { color: #c9a962; }
.ky-article-detail blockquote {
  border-left: 4px solid #c9a962;
  padding: 10px 16px;
  margin: 16px 0;
  background: #faf9f5;
  color: #666;
}

/* Article Meta */
.ky-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #999;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0ece6;
  margin-bottom: 20px;
}
.ky-article-meta span { white-space: nowrap; }

/* Prev/Next */
.ky-prev-next {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid #f0ece6;
  margin-top: 30px;
}
.ky-prev-next > div { flex: 1; min-width: 0; }
.ky-prev-next .label { font-size: 12px; color: #bbb; margin-bottom: 4px; }
.ky-prev-next a {
  color: #333;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}
.ky-prev-next a:hover { color: #c9a962; }

/* 404 Page */
.ky-404 {
  text-align: center;
  padding: 100px 20px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ky-404 .code { font-size: 120px; font-weight: 700; color: #f0ece6; line-height: 1; }
.ky-404 .msg { font-size: 20px; color: #999; margin: 16px 0 30px; }

/* Search Page */
.ky-search-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
}
.ky-search-form input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid #ddd;
  border-radius: 6px 0 0 6px;
  font-size: 15px;
  outline: none;
}
.ky-search-form input:focus { border-color: #c9a962; }
.ky-search-form button {
  padding: 12px 28px;
  background: #c9a962;
  color: #1a1a2e;
  border: none;
  border-radius: 0 6px 6px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.ky-search-form button:hover { background: #d4b86a; }

/* Tag Page */
.ky-tag-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0ece6;
}
.ky-tag-header .tag-icon {
  width: 56px;
  height: 56px;
  background: #f8f6f1;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #c9a962;
  flex-shrink: 0;
}
.ky-tag-header h2 { font-size: 20px; margin: 0 0 4px; color: #1a1a2e; }
.ky-tag-header p { font-size: 14px; color: #999; margin: 0; }

/* Search Header */
.ky-search-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  z-index: 9998;
  border-bottom: 1px solid #f0ece6;
  padding: 12px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.ky-search-main { padding-top: 80px; }

/* Content area (for articlePage) */
.ky-content-body {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* Responsive for inner pages */
@media (max-width: 768px) {
  .ky-main, .ky-side { flex: 0 0 100%; max-width: 100%; }
  .ky-article-item { flex-direction: column; }
  .ky-article-item .article-thumb { width: 100%; height: 180px; }
  .ky-404 .code { font-size: 80px; }
  .ky-search-form { max-width: 100%; }
  .ky-prev-next { flex-direction: column; gap: 10px; }
}
