/* ============================================
   校花影视传媒 - 原创样式表
   品牌：校花 | 域名：817561.cn
   ============================================ */

/* === CSS Variables === */
:root {
  --xh-primary: #E8436F;
  --xh-primary-dark: #C73460;
  --xh-secondary: #FF7E5F;
  --xh-accent: #6C5CE7;
  --xh-dark: #1A1A2E;
  --xh-dark-light: #232342;
  --xh-light: #FFF5F7;
  --xh-text: #2D3436;
  --xh-text-light: #636E72;
  --xh-white: #FFFFFF;
  --xh-border: #F0E6E8;
  --xh-shadow: 0 4px 20px rgba(232,67,111,0.10);
  --xh-shadow-lg: 0 8px 40px rgba(26,26,46,0.12);
  --xh-radius: 12px;
  --xh-radius-sm: 8px;
  --xh-transition: all 0.3s ease;
  --xh-gradient: linear-gradient(135deg, #E8436F 0%, #FF7E5F 100%);
  --xh-gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #232342 100%);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  color: var(--xh-text);
  background: var(--xh-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--xh-primary); text-decoration: none; transition: var(--xh-transition); }
a:hover { color: var(--xh-primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* === Container === */
.xh-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.xh-section { padding: 70px 0; }
.xh-section-alt { background: var(--xh-light); }
.xh-section-dark { background: var(--xh-dark); color: var(--xh-white); }

/* === Section Headers === */
.xh-section-header { text-align: center; margin-bottom: 50px; }
.xh-section-header h2 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; color: var(--xh-dark); }
.xh-section-dark .xh-section-header h2 { color: var(--xh-white); }
.xh-section-header p { font-size: 1.05rem; color: var(--xh-text-light); max-width: 600px; margin: 0 auto; }
.xh-section-dark .xh-section-header p { color: rgba(255,255,255,0.7); }
.xh-tag { display: inline-block; background: var(--xh-gradient); color: #fff; padding: 4px 16px; border-radius: 20px; font-size: 0.85rem; margin-bottom: 12px; }

/* === Header / Navigation === */
.xh-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--xh-border);
  transition: var(--xh-transition);
}
.xh-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1200px; margin: 0 auto; padding: 0 20px;
}
.xh-logo { display: flex; align-items: center; gap: 10px; }
.xh-logo img { height: 42px; width: auto; }
.xh-logo-text { font-size: 1.4rem; font-weight: 700; color: var(--xh-primary); }
.xh-nav { display: flex; align-items: center; gap: 6px; }
.xh-nav a {
  padding: 8px 16px; border-radius: var(--xh-radius-sm);
  font-size: 0.95rem; color: var(--xh-text); font-weight: 500;
  transition: var(--xh-transition);
}
.xh-nav a:hover, .xh-nav a.active { color: var(--xh-primary); background: rgba(232,67,111,0.06); }
.xh-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.xh-mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--xh-text); margin: 5px 0; transition: var(--xh-transition); }

/* === Search Bar === */
.xh-search-bar {
  background: var(--xh-light); border-bottom: 1px solid var(--xh-border); padding: 12px 0;
}
.xh-search-inner { max-width: 680px; margin: 0 auto; padding: 0 20px; position: relative; }
.xh-search-input {
  width: 100%; padding: 12px 48px 12px 20px;
  border: 2px solid var(--xh-border); border-radius: 30px;
  font-size: 0.95rem; background: var(--xh-white);
  transition: var(--xh-transition); outline: none;
}
.xh-search-input:focus { border-color: var(--xh-primary); box-shadow: 0 0 0 3px rgba(232,67,111,0.1); }
.xh-search-btn {
  position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
  background: var(--xh-gradient); border: none; color: #fff;
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--xh-transition);
}
.xh-search-btn:hover { transform: translateY(-50%) scale(1.05); }

/* === Hero Banner === */
.xh-hero {
  position: relative; height: 520px; overflow: hidden;
  background: var(--xh-dark);
}
.xh-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.6; transition: transform 0.5s ease;
}
.xh-hero:hover .xh-hero-bg { transform: scale(1.03); }
.xh-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.3) 0%, rgba(26,26,46,0.8) 100%);
}
.xh-hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; color: #fff; padding: 0 20px;
}
.xh-hero-content h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.xh-hero-content h1 span { color: var(--xh-secondary); }
.xh-hero-content p { font-size: 1.15rem; opacity: 0.9; max-width: 600px; margin-bottom: 30px; }
.xh-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 30px; font-size: 1rem; font-weight: 600;
  transition: var(--xh-transition); cursor: pointer; border: none;
}
.xh-btn-primary { background: var(--xh-gradient); color: #fff; }
.xh-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,67,111,0.35); color: #fff; }
.xh-btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.xh-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.xh-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* === Breadcrumb === */
.xh-breadcrumb { padding: 14px 0; background: var(--xh-light); border-bottom: 1px solid var(--xh-border); }
.xh-breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--xh-text-light); }
.xh-breadcrumb-inner a { color: var(--xh-text-light); }
.xh-breadcrumb-inner a:hover { color: var(--xh-primary); }
.xh-breadcrumb-inner span { color: var(--xh-text); font-weight: 500; }

/* === Video Cards Grid === */
.xh-video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.xh-video-card {
  border-radius: var(--xh-radius); overflow: hidden;
  background: var(--xh-white); box-shadow: var(--xh-shadow);
  transition: var(--xh-transition); cursor: pointer;
}
.xh-video-card:hover { transform: translateY(-6px); box-shadow: var(--xh-shadow-lg); }
.xh-video-thumb {
  position: relative; padding-top: 56.25%; overflow: hidden;
}
.xh-video-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.xh-video-card:hover .xh-video-thumb img { transform: scale(1.08); }
.xh-video-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(26,26,46,0.4); opacity: 0; transition: var(--xh-transition);
}
.xh-video-card:hover .xh-video-play { opacity: 1; }
.xh-play-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--xh-gradient); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(232,67,111,0.4);
}
.xh-play-icon::after {
  content: ''; width: 0; height: 0;
  border-left: 18px solid #fff; border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.xh-video-duration {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,0.75); color: #fff; padding: 2px 8px;
  border-radius: 4px; font-size: 0.8rem;
}
.xh-video-info { padding: 16px; }
.xh-video-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.xh-video-meta { display: flex; align-items: center; gap: 16px; font-size: 0.82rem; color: var(--xh-text-light); }
.xh-video-meta span { display: flex; align-items: center; gap: 4px; }
.xh-video-tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.xh-video-tags span {
  padding: 2px 10px; border-radius: 12px; font-size: 0.75rem;
  background: rgba(232,67,111,0.08); color: var(--xh-primary);
}

/* === Service Cards === */
.xh-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.xh-service-card {
  padding: 36px 28px; border-radius: var(--xh-radius);
  background: var(--xh-white); box-shadow: var(--xh-shadow);
  transition: var(--xh-transition); text-align: center;
  border: 1px solid var(--xh-border);
}
.xh-service-card:hover { transform: translateY(-4px); box-shadow: var(--xh-shadow-lg); border-color: var(--xh-primary); }
.xh-service-icon {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 20px;
  background: var(--xh-gradient); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #fff;
}
.xh-service-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.xh-service-card p { font-size: 0.92rem; color: var(--xh-text-light); line-height: 1.6; }

/* === Expert Cards === */
.xh-expert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.xh-expert-card {
  border-radius: var(--xh-radius); overflow: hidden;
  background: var(--xh-white); box-shadow: var(--xh-shadow);
  transition: var(--xh-transition); text-align: center;
}
.xh-expert-card:hover { transform: translateY(-4px); box-shadow: var(--xh-shadow-lg); }
.xh-expert-avatar {
  width: 100px; height: 100px; border-radius: 50%; margin: 28px auto 16px;
  overflow: hidden; border: 3px solid var(--xh-primary);
}
.xh-expert-avatar img { width: 100%; height: 100%; object-fit: cover; }
.xh-expert-info { padding: 0 20px 24px; }
.xh-expert-info h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; }
.xh-expert-info .xh-role { font-size: 0.85rem; color: var(--xh-primary); margin-bottom: 8px; }
.xh-expert-info p { font-size: 0.85rem; color: var(--xh-text-light); line-height: 1.5; }
.xh-expert-btns { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.xh-btn-sm { padding: 6px 16px; font-size: 0.82rem; border-radius: 20px; }

/* === Partner Logos === */
.xh-partner-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; align-items: center;
}
.xh-partner-item {
  padding: 16px 28px; border-radius: var(--xh-radius-sm);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  font-size: 1.1rem; font-weight: 600; color: rgba(255,255,255,0.7);
  transition: var(--xh-transition);
}
.xh-partner-item:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* === Reviews === */
.xh-review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.xh-review-card {
  padding: 28px; border-radius: var(--xh-radius);
  background: var(--xh-white); box-shadow: var(--xh-shadow);
  border: 1px solid var(--xh-border);
}
.xh-review-stars { color: #FFB800; font-size: 1rem; margin-bottom: 12px; }
.xh-review-text { font-size: 0.95rem; color: var(--xh-text); line-height: 1.7; margin-bottom: 16px; }
.xh-review-author { display: flex; align-items: center; gap: 12px; }
.xh-review-author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--xh-gradient); display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 600; font-size: 0.9rem;
}
.xh-review-author-info .xh-name { font-weight: 600; font-size: 0.9rem; }
.xh-review-author-info .xh-date { font-size: 0.8rem; color: var(--xh-text-light); }

/* === FAQ === */
.xh-faq-list { max-width: 800px; margin: 0 auto; }
.xh-faq-item {
  border: 1px solid var(--xh-border); border-radius: var(--xh-radius-sm);
  margin-bottom: 12px; overflow: hidden; background: var(--xh-white);
}
.xh-faq-question {
  padding: 18px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 0.98rem; transition: var(--xh-transition);
}
.xh-faq-question:hover { color: var(--xh-primary); }
.xh-faq-arrow { transition: transform 0.3s ease; font-size: 1.2rem; color: var(--xh-text-light); }
.xh-faq-item.active .xh-faq-arrow { transform: rotate(180deg); }
.xh-faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  padding: 0 24px; font-size: 0.92rem; color: var(--xh-text-light); line-height: 1.7;
}
.xh-faq-item.active .xh-faq-answer { max-height: 300px; padding: 0 24px 18px; }

/* === Contact Section === */
.xh-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.xh-contact-card {
  padding: 32px 24px; border-radius: var(--xh-radius);
  background: var(--xh-white); box-shadow: var(--xh-shadow);
  text-align: center; border: 1px solid var(--xh-border);
}
.xh-contact-icon {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(232,67,111,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--xh-primary);
}
.xh-contact-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.xh-contact-card p { font-size: 0.9rem; color: var(--xh-text-light); }

/* === Footer === */
.xh-footer { background: var(--xh-dark); color: rgba(255,255,255,0.7); padding: 50px 0 0; }
.xh-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.xh-footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; }
.xh-footer h4 { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 16px; }
.xh-footer-links a { display: block; color: rgba(255,255,255,0.6); font-size: 0.9rem; padding: 4px 0; transition: var(--xh-transition); }
.xh-footer-links a:hover { color: var(--xh-secondary); }
.xh-footer-qr { display: flex; gap: 20px; }
.xh-footer-qr-item { text-align: center; }
.xh-footer-qr-item img { width: 100px; height: 100px; border-radius: 8px; margin-bottom: 6px; }
.xh-footer-qr-item span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.xh-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem;
}
.xh-footer-social { display: flex; gap: 12px; }
.xh-footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--xh-transition); font-size: 0.85rem;
}
.xh-footer-social a:hover { background: var(--xh-primary); color: #fff; }

/* === Share Buttons === */
.xh-share-bar { display: flex; gap: 10px; justify-content: center; padding: 20px 0; }
.xh-share-btn {
  padding: 8px 18px; border-radius: 20px; font-size: 0.85rem;
  color: #fff; border: none; cursor: pointer; transition: var(--xh-transition);
}
.xh-share-btn:hover { transform: translateY(-2px); }
.xh-share-wechat { background: #07C160; }
.xh-share-weibo { background: #E6162D; }
.xh-share-douyin { background: #161823; }
.xh-share-bilibili { background: #00A1D6; }

/* === How-To Guide === */
.xh-howto-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.xh-howto-step {
  text-align: center; padding: 28px 20px; border-radius: var(--xh-radius);
  background: var(--xh-white); box-shadow: var(--xh-shadow);
  position: relative; counter-increment: step;
}
.xh-howto-step::before {
  content: counter(step); display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: var(--xh-gradient);
  color: #fff; font-weight: 700; font-size: 1.1rem; margin: 0 auto 16px;
}
.xh-howto-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.xh-howto-step p { font-size: 0.88rem; color: var(--xh-text-light); }

/* === AI Feature Cards === */
.xh-ai-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.xh-ai-card {
  padding: 32px 24px; border-radius: var(--xh-radius);
  background: var(--xh-dark-light); border: 1px solid rgba(255,255,255,0.08);
  transition: var(--xh-transition);
}
.xh-ai-card:hover { border-color: var(--xh-accent); transform: translateY(-4px); }
.xh-ai-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.xh-ai-card p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.6; }
.xh-ai-badge {
  display: inline-block; background: var(--xh-accent); color: #fff;
  padding: 3px 12px; border-radius: 12px; font-size: 0.75rem; margin-bottom: 12px;
}

/* === Community Features === */
.xh-community-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.xh-community-card {
  display: flex; gap: 20px; padding: 24px; border-radius: var(--xh-radius);
  background: var(--xh-white); box-shadow: var(--xh-shadow);
  border: 1px solid var(--xh-border); transition: var(--xh-transition);
}
.xh-community-card:hover { border-color: var(--xh-primary); }
.xh-community-icon {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 12px;
  background: rgba(232,67,111,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.xh-community-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.xh-community-card p { font-size: 0.88rem; color: var(--xh-text-light); }

/* === Page Content (Inner Pages) === */
.xh-page-hero {
  padding: 60px 0; background: var(--xh-gradient); color: #fff; text-align: center;
}
.xh-page-hero h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 10px; }
.xh-page-hero p { font-size: 1.05rem; opacity: 0.9; }
.xh-content-section { padding: 50px 0; }
.xh-content-section h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 20px; color: var(--xh-dark); }
.xh-content-section h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 14px; color: var(--xh-dark); }
.xh-content-section p { margin-bottom: 16px; line-height: 1.8; color: var(--xh-text); }

/* === Responsive === */
@media (max-width: 1024px) {
  .xh-video-grid { grid-template-columns: repeat(2, 1fr); }
  .xh-expert-grid { grid-template-columns: repeat(2, 1fr); }
  .xh-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .xh-howto-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .xh-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; box-shadow: var(--xh-shadow-lg); gap: 4px; }
  .xh-nav.active { display: flex; }
  .xh-mobile-toggle { display: block; }
  .xh-hero { height: 420px; }
  .xh-hero-content h1 { font-size: 1.8rem; }
  .xh-video-grid { grid-template-columns: 1fr; }
  .xh-service-grid { grid-template-columns: 1fr; }
  .xh-ai-grid { grid-template-columns: 1fr; }
  .xh-community-grid { grid-template-columns: 1fr; }
  .xh-expert-grid { grid-template-columns: repeat(2, 1fr); }
  .xh-review-grid { grid-template-columns: 1fr; }
  .xh-contact-grid { grid-template-columns: 1fr; }
  .xh-footer-grid { grid-template-columns: 1fr; }
  .xh-howto-steps { grid-template-columns: 1fr; }
  .xh-section { padding: 50px 0; }
  .xh-section-header h2 { font-size: 1.6rem; }
  .xh-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .xh-hero { height: 360px; }
  .xh-hero-content h1 { font-size: 1.5rem; }
  .xh-hero-btns { flex-direction: column; align-items: center; }
  .xh-expert-grid { grid-template-columns: 1fr; }
}

/* === Hero Update Notice === */
.xh-hero-update {
  margin-top: 20px; padding: 8px 20px; border-radius: 20px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(4px);
}
.xh-hero-update h6 {
  font-size: 0.82rem; font-weight: 400; color: rgba(255,255,255,0.8);
  margin: 0;
}

/* === Today Picks Section === */
.xh-today-picks { background: var(--xh-white); }
.xh-today-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.xh-today-card {
  position: relative; padding: 28px 24px; border-radius: var(--xh-radius);
  background: var(--xh-white); box-shadow: var(--xh-shadow);
  border: 1px solid var(--xh-border); transition: var(--xh-transition);
  border-left: 4px solid var(--xh-primary);
}
.xh-today-card:hover { transform: translateY(-3px); box-shadow: var(--xh-shadow-lg); }
.xh-today-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 2px 10px; border-radius: 10px; font-size: 0.72rem; font-weight: 600;
  background: var(--xh-gradient); color: #fff;
}
.xh-today-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; color: var(--xh-dark); }
.xh-today-card p { font-size: 0.9rem; color: var(--xh-text-light); line-height: 1.6; margin-bottom: 10px; }
.xh-today-time { font-size: 0.78rem; color: var(--xh-text-light); }

/* === Entertainment Section === */
.xh-entertainment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.xh-ent-card {
  padding: 28px 20px; border-radius: var(--xh-radius);
  background: var(--xh-white); box-shadow: var(--xh-shadow);
  border: 1px solid var(--xh-border); text-align: center;
  transition: var(--xh-transition);
}
.xh-ent-card:hover { transform: translateY(-4px); box-shadow: var(--xh-shadow-lg); border-color: var(--xh-primary); }
.xh-ent-icon {
  width: 56px; height: 56px; border-radius: 14px; margin: 0 auto 16px;
  background: rgba(232,67,111,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.xh-ent-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; color: var(--xh-dark); }
.xh-ent-card p { font-size: 0.88rem; color: var(--xh-text-light); line-height: 1.6; }

/* === H5 & H6 Styles === */
.xh-section-header h5 {
  font-size: 0.92rem; font-weight: 400; color: var(--xh-text-light);
  margin-top: 8px;
}
.xh-section-dark .xh-section-header h5 { color: rgba(255,255,255,0.6); }

/* === Print Media Query === */
@media print {
  .xh-header, .xh-search-bar, .xh-mobile-toggle, .xh-share-bar, .xh-footer-social { display: none; }
  .xh-hero { height: auto; background: #fff; color: #000; }
  .xh-hero-overlay, .xh-hero-bg { display: none; }
  .xh-hero-content { color: #000; }
  .xh-hero-content h1 span { color: var(--xh-primary); }
  body { font-size: 12pt; color: #000; }
  .xh-section-dark { background: #fff; color: #000; }
  .xh-section-dark h2, .xh-section-dark h3, .xh-section-dark p { color: #000; }
}

/* === Responsive additions === */
@media (max-width: 1024px) {
  .xh-entertainment-grid { grid-template-columns: repeat(2, 1fr); }
  .xh-today-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .xh-entertainment-grid { grid-template-columns: 1fr; }
  .xh-today-grid { grid-template-columns: 1fr; }
}
