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

html, body {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FFB7D5, #7BB8FF, #6DFCBF); /* 粉蓝绿渐变 */
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}




/* 如果你有 overlay、遮罩、背景特效，这里只改颜色不改结构 */

.background-effect {
  background: linear-gradient(180deg, #FFB7D5aa, #7BB8FFaa, #6DFCBFaa);
}

.page-wrapper {
  width: 100%;
  min-height: 100vh;
}

/* === HEADER（导航栏保持原色，不修改!!!）=== */

.main-header {
    width: 100%;
    background: linear-gradient(90deg, #FF66CC, #C8A2FF, #66CCFF);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-container {
    width: 100%;
    max-width: min(30rem, 100vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem clamp(0.5rem, 3vw, 1rem);
    box-sizing: border-box;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    flex: 1;
}

.logo-img {
    height: 100%;
    width: auto;
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 6px #FF77E9);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px #FF99DD);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 0;
    transition: 0.3s ease;
    position: relative;
    white-space: nowrap;
}
/* 顶部图片轮播区域样式 */
.page-content {
width: 100%;
max-width: 100vw;
padding: 1.1rem clamp(0.5rem, 2vw, 1rem) 1.8rem;
background: linear-gradient(180deg, rgba(45, 28, 70, 0.85) 0%, rgba(25, 14, 38, 0.92) 100%);
box-shadow: 0 20px 60px rgba(4, 1, 10, 0.55);
box-sizing: border-box;
overflow-x: hidden;
}

.top-carousel-section,
.logo-content-section,
.image-text-section {
background: rgba(33, 21, 49, 0.92);
border: 1px solid rgba(255, 255, 255, 0.07);
border-radius: 20px;
box-shadow: 0 18px 48px rgba(5, 2, 15, 0.3);
}

.top-carousel-section {
width: 100%;
max-width: min(32rem, calc(100vw - 2rem));
margin: 1.1rem auto;
padding: 1rem clamp(0.75rem, 3vw, 1.25rem);
box-sizing: border-box;
}

.carousel-container {
position: relative;
width: 100%;
max-width: 100%;
margin: 0 auto;
overflow: hidden;
border-radius: 12px;
background-color: rgba(177, 156, 217, 0.1);
box-sizing: border-box;
}

.carousel-wrapper {
position: relative;
width: 100%;
aspect-ratio: 732 / 320;
min-height: clamp(180px, 25vw, 220px);
max-height: 100%;
overflow: hidden;
box-sizing: border-box;
}

.carousel-slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 0.6s ease-in-out;
z-index: 1;
display: block;
text-decoration: none;
}

.carousel-slide.active {
opacity: 1;
z-index: 2;
}

.carousel-image {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

/* 轮播指示器 */
.carousel-indicators {
position: absolute;
bottom: 15px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 8px;
z-index: 10;
}

.indicator {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
cursor: pointer;
transition: background-color 0.3s ease, transform 0.3s ease;
}

.indicator.active {
background-color: #ffffff;
transform: scale(1.2);
}

.indicator:hover {
background-color: rgba(255, 255, 255, 0.8);
}

/* 轮播切换按钮 */
.carousel-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 40px;
height: 40px;
background-color: rgba(45, 27, 61, 0.7);
border: none;
border-radius: 50%;
color: #ffffff;
font-size: 24px;
font-weight: bold;
cursor: pointer;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
transition: background-color 0.3s ease, transform 0.3s ease;
user-select: none;
-webkit-user-select: none;
}

.carousel-btn:hover {
background-color: rgba(177, 156, 217, 0.6);
transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
left: 15px;
}

.carousel-next {
right: 15px;
}

.carousel-thumb-row {
width: 100%;
max-width: min(32rem, calc(100vw - 2rem));
margin: 0.65rem auto 0;
padding: 0 clamp(0.5rem, 2vw, 0);
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: clamp(0.4rem, 2vw, 0.6rem);
box-sizing: border-box;
}

.carousel-thumb {
display: block;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 8px 18px rgba(5, 2, 15, 0.4);
border: 1px solid rgba(255, 255, 255, 0.1);
transition: transform 0.25s ease, box-shadow 0.25s ease;
aspect-ratio: 116 / 70;
}

.carousel-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.carousel-thumb:hover {
transform: translateY(-3px) scale(1.02);
box-shadow: 0 12px 24px rgba(5, 2, 15, 0.5);
}

/* logo-card 渐变背景替换 */
.logo-card {
  border-radius: 16px;
  padding: 14px;
  background: linear-gradient(
    180deg,
    #FFB7D522,
    #7BB8FF22,
    #6DFCBF22
  );
  border: 1px solid rgba(123, 184, 255, 0.45);
  box-shadow: 0 10px 32px rgba(109, 252, 191, 0.25);
}

.logo-card:hover {
  background: linear-gradient(
    180deg,
    #FFB7D5aa,
    #7BB8FFaa,
    #6DFCBFaa
  );
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(109, 252, 191, 0.35);
}

/* logo action 按钮粉蓝绿 */

.logo-action {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 8px 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #FFB7D5, #7BB8FF, #6DFCBF);
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(255, 183, 213, 0.5);
}

.logo-action:hover {
  filter: brightness(1.15);
  box-shadow: 0 6px 14px rgba(109, 252, 191, 0.6);
}



/* === Popular sites section — 渐变粉蓝绿 === */

.popular-sites-section {
  padding: 20px 0;
  width: 100%;
  max-width: 900px;
  margin: auto;
}

.popular-sites-title {
  text-align: center;
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}

.popular-sites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.popular-site-card {
  display: block;
  padding: 14px;
  border-radius: 16px;
  background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  border: 1px solid rgba(123, 184, 255, 0.45);
  box-shadow: 0 10px 25px rgba(109, 252, 191, 0.25);
  color: #ffffff;
  text-align: center;
  transition: 0.3s ease;
}

.popular-site-card:hover {
  background: linear-gradient(180deg, #FFB7D5aa, #7BB8FFaa, #6DFCBFaa);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(109, 252, 191, 0.45);
}

.site-name {
  font-size: 18px;
  font-weight: bold;
}

.site-tag {
  margin-top: 6px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(255, 183, 213, 0.25);
  border: 1px solid rgba(123, 184, 255, 0.4);
  color: #ffffff;
  font-size: 13px;
}


/* === Image + text cards（内容区）粉蓝绿渐变 === */

.image-text-section {
  padding: 20px 0;
}

.image-text-container {
  width: 100%;
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.image-text-item {
  display: block;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  border: 1px solid rgba(123, 184, 255, 0.45);
  box-shadow: 0 10px 28px rgba(109, 252, 191, 0.25);
  color: #ffffff;
  transition: 0.3s ease;
}

.image-text-item:hover {
  background: linear-gradient(180deg, #FFB7D5aa, #7BB8FFaa, #6DFCBFaa);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(109, 252, 191, 0.4);
}

.content-image {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 12px;
}

.image-text-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #ffffff;
}

.image-text-item p {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}


/* === Social Section（社交媒体图标区）粉蓝绿渐变 === */

.social-section {
  padding: 30px 0;
}

.social-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-icon {
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFB7D5aa, #7BB8FFaa, #6DFCBFaa);
  border: 1px solid rgba(123, 184, 255, 0.65);
  box-shadow: 0 10px 20px rgba(109, 252, 191, 0.35);
  transition: 0.3s;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.social-icon:hover {
  transform: translateY(-4px);
  filter: brightness(1.12);
  box-shadow: 0 14px 28px rgba(109, 252, 191, 0.55);
}


/* === Modal（弹窗）区域 — 重点粉蓝绿渐变主题 === */

.entry-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 25, 37, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;


.entry-modal.active {
opacity: 1;
pointer-events: auto;
}

}

.entry-modal__content {
  width: min(92vw, 360px);
  border-radius: 18px;
  padding: clamp(1rem, 4vw, 1.4rem);
  position: relative;
  text-align: center;

  /* ⚠️ 将原背景换成粉蓝绿渐变 */
  background: linear-gradient(180deg, #FFB7D5dd, #7BB8FFdd, #6DFCBFdd);

  /* 渐变边框强化 */
  border: 1px solid rgba(123, 184, 255, 0.7);

  /* 阴影粉蓝绿柔光 */
  box-shadow: 0 25px 70px rgba(109, 252, 191, 0.45);

  color: #ffffff;
}

.entry-modal__image img {
  width: 100%;
  border-radius: 14px;
}

.entry-modal__close {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 26px;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
}

.entry-modal__close:hover {
  filter: brightness(1.25);
}


/* === Buttons — 统一粉蓝绿渐变按钮风格 === */

button,
.btn {
  background: linear-gradient(180deg, #FFB7D5, #7BB8FF, #6DFCBF);
  border: none;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(109, 252, 191, 0.4);
  transition: 0.3s ease;
}

button:hover,
.btn:hover {
  filter: brightness(1.12);
  box-shadow: 0 8px 20px rgba(109, 252, 191, 0.55);
}








/* === Logo Content Section（LOGO 区）粉蓝绿渐变 === */

.logo-content-section {
  width: 100%;
  max-width: min(32rem, calc(100vw - 2rem));
  margin: 1.4rem auto;
  padding: 1.1rem clamp(0.75rem, 3vw, 1rem);
  background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  border-radius: 20px;
  border: 1px solid rgba(123, 184, 255, 0.4);
  box-shadow: 0 18px 48px rgba(109, 252, 191, 0.28);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(128px, 30vw), 1fr));
  gap: clamp(0.75rem, 3vw, 1.25rem);
  justify-items: center;
  align-items: center;
  width: 100%;
}

.logo-card {
  width: 100%;
  max-width: min(140px, 28vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  border-radius: 16px;
  padding: clamp(0.5rem, 2vw, 0.6rem) clamp(0.4rem, 2vw, 0.5rem) clamp(0.7rem, 2vw, 0.8rem);
  transition: 0.25s ease;
  border: 1px solid rgba(123, 184, 255, 0.35);
}

.logo-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, #FFB7D5aa, #7BB8FFaa, #6DFCBFaa);
  border-color: rgba(123, 184, 255, 0.55);
  box-shadow: 0 10px 24px rgba(109, 252, 191, 0.4);
}

.logo-thumb {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(15, 5, 28, 0.4);
  padding: 0.35rem;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
  transition: 0.3s ease;
}

.logo-card:hover .logo-image {
  transform: scale(1.06);
}

.logo-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.32rem 0.42rem;
  background: linear-gradient(180deg, #FFB7D5, #7BB8FF, #6DFCBF);
  color: #120924;
  font-size: 0.76rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  min-height: 1.65rem;
  transition: 0.2s ease;
}

.logo-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(109, 252, 191, 0.4);
}


.scroll-banner {
  width: 100%;
  max-width: min(32rem, calc(100vw - 2rem));
  margin: 0.75rem auto 1rem;
  padding: 0.45rem clamp(0.6rem, 3vw, 0.9rem);
  background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  border-radius: 999px;
  border: 1px solid rgba(123, 184, 255, 0.35);
  box-shadow: 0 12px 26px rgba(109, 252, 191, 0.28);
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}


/* === 无缝滚动轨道 === */
.scroll-track {
  display: inline-flex;
  gap: 3rem;
  padding-right: 3rem; /* 让两轨衔接更自然 */
  color: #ffffff;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  animation: marquee 28s linear infinite;  /* 放慢速度：28 秒 */
  will-change: transform;
}

/* 第二轨道延迟时间 = 动画时长一半 */
.track-duplicate {
  animation-delay: 14s;
}

@keyframes marquee {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(-100%) translateY(-50%);
  }
}

/* === Entry Modal（弹窗）粉蓝绿渐变） === */

.entry-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 2, 19, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.entry-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.entry-modal__content {
  width: min(88vw, 320px);
  max-width: calc(100vw - 2rem);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  
  /* 粉蓝绿新背景 */
  background: linear-gradient(180deg, #FFB7D5dd, #7BB8FFdd, #6DFCBFdd);

  border-radius: 18px;
  border: 1px solid rgba(123, 184, 255, 0.55);
  box-shadow: 0 22px 60px rgba(109, 252, 191, 0.45);
  padding: clamp(0.9rem, 4vw, 1.2rem);
  position: relative;
  text-align: center;
  color: #ffffff;
}

.entry-modal__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.1rem;
  border-radius: 999px;

  background: linear-gradient(180deg, #FFB7D5, #7BB8FF, #6DFCBF);
  color: #140621;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.entry-modal__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(109, 252, 191, 0.45);
}

.entry-modal__close {
  position: absolute;
  right: 0.9rem;
  top: 0.6rem;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 1.4rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.entry-modal__close:hover {
  color: #ffffff;
}







/* === Popular Sites（热门网站）粉蓝绿主题 === */

.popular-sites-section {
  width: 100%;
  max-width: min(32rem, calc(100vw - 2rem));
  margin: 0.8rem auto 1.2rem;
  padding: 0.85rem clamp(0.75rem, 3vw, 1rem) 1.1rem;
  background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  border-radius: 18px;
  border: 1px solid rgba(123, 184, 255, 0.35);
  box-shadow: 0 15px 36px rgba(109, 252, 191, 0.25);
}

.popular-sites-title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.popular-sites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.popular-site-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  text-decoration: none;

  background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  color: #ffffff;
  border: 1px solid rgba(123, 184, 255, 0.35);

  transition: 0.25s ease;
}

.popular-site-card:hover {
  transform: translateY(-3px);
  border-color: rgba(123, 184, 255, 0.55);
  background: linear-gradient(180deg, #FFB7D5aa, #7BB8FFaa, #6DFCBFaa);
}

.site-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.site-tag {
  font-size: 0.78rem;
  opacity: 0.9;
}

/* === Social Section（社交媒体）粉蓝绿主题 === */

.social-section {
  width: 100%;
  max-width: min(32rem, calc(100vw - 2rem));
  margin: 0.8rem auto 1.5rem;
  padding: 0.9rem clamp(0.75rem, 3vw, 1rem) 1.1rem;

  background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  border-radius: 18px;
  border: 1px solid rgba(123, 184, 255, 0.35);
  box-shadow: 0 18px 40px rgba(109, 252, 191, 0.25);
}

.social-title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;

  background: linear-gradient(180deg, #FFB7D533, #7BB8FF33, #6DFCBF33);
  border: 1px solid rgba(123, 184, 255, 0.35);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: #ffffff;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #FFB7D5aa, #7BB8FFaa, #6DFCBFaa);
  border-color: rgba(123, 184, 255, 0.55);
}

.social-contact {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #ffffff;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.social-contact a {
  color: #dff;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}


/* === Entry Modal（旧版重复区域，统一粉蓝绿）=== */

.entry-modal__content {
  width: min(92vw, 360px);

  background: linear-gradient(180deg, #FFB7D5cc, #7BB8FFcc, #6DFCBFcc);

  border-radius: 18px;
  border: 1px solid rgba(123, 184, 255, 0.55);
  box-shadow: 0 25px 70px rgba(109, 252, 191, 0.38);

  padding: clamp(1rem, 4vw, 1.4rem);
  position: relative;
  text-align: center;
  color: #ffffff;
}













/* === Image Text Section（图片＋文字内容区）粉蓝绿渐变 === */

.image-text-section {
  width: 100%;
  max-width: min(32rem, calc(100vw - 2rem));
  margin: 1.4rem auto;
  padding: 1.1rem clamp(0.75rem, 3vw, 1rem);

  background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  border-radius: 20px;
  border: 1px solid rgba(123, 184, 255, 0.35);
  box-shadow: 0 20px 50px rgba(109, 252, 191, 0.25);
}

.image-text-container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.image-text-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);

  border-radius: 12px;
  padding: 1.1rem;
  transition: 0.25s ease;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(123, 184, 255, 0.28);
}

.image-text-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(180deg, #FFB7D5aa, #7BB8FFaa, #6DFCBFaa);
  border-color: rgba(123, 184, 255, 0.55);
  box-shadow: 0 14px 32px rgba(109, 252, 191, 0.35);
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  transition: 0.3s ease;
}

.image-text-item:hover .content-image {
  transform: scale(1.02);
}

.content-text {
  color: #ffffff;
}

.content-text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
}

.content-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
}


/* === Responsive（响应式）区域开始 === */
/* —— 均保留原有结构，仅调整背景为粉蓝绿渐变 —— */


/* 平板设备 (768px - 1024px) */
@media (max-width: 1024px) {

  .top-images-section,
  .logo-content-section,
  .image-text-section {
    padding: 0.875rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.35);
  }

  .logo-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.875rem;
  }

  .logo-item {
    width: 120px;
    height: 120px;
  }
}


/* 移动设备 (481px - 768px) */
@media (max-width: 768px) {

  .main-header {
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    /* ⚠️ 导航栏颜色不变 */
  }

.main-header {
    width: 100%;
    background: linear-gradient(90deg, #FF66CC, #C8A2FF, #66CCFF);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-container {
    width: 100%;
    max-width: min(30rem, 100vw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem clamp(0.5rem, 3vw, 1rem);
    box-sizing: border-box;
}

.header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    flex: 1;
}

.logo-img {
    height: 100%;
    width: auto;
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 6px #FF77E9);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px #FF99DD);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 0;
    transition: 0.3s ease;
    position: relative;
    white-space: nowrap;
}







/* === 小屏移动设备 (最大600px) === */

@media (max-width: 600px) {

  .header-container {
    padding: 0.4rem 0.6rem;
  }

  .header-logo {
    height: 32px;
  }

  .logo-img {
    max-height: 32px;
  }

  .top-carousel-section {
    padding: 0.875rem;
    margin-top: 0.75rem;
  }

  .carousel-btn {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .carousel-prev {
    left: 8px;
  }

  .carousel-next {
    right: 8px;
  }

  .carousel-indicators {
    bottom: 8px;
    gap: 6px;
  }

  .carousel-thumb-row {
    gap: clamp(0.3rem, 2vw, 0.35rem);
    padding: 0 clamp(0.35rem, 2vw, 0);
  }

  .indicator {
    width: 7px;
    height: 7px;
  }

  .logo-content-section {
    margin: 1.1rem auto;
    padding: 0 0.75rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.35);
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.5rem, 2vw, 0.75rem);
  }

  .logo-card {
    padding: 0.5rem clamp(0.3rem, 2vw, 0.35rem) 0.65rem;
    gap: 0.45rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  }

  .logo-thumb {
    padding: 0.25rem;
  }

  .logo-action {
    min-height: 1.4rem;
    font-size: 0.7rem;
    padding: 0.28rem 0.38rem;
    background: linear-gradient(180deg, #FFB7D5, #7BB8FF, #6DFCBF);
  }

  .image-text-section {
    margin: 1.1rem auto;
    padding: 0 0.75rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.35);
  }

  .image-text-container {
    gap: 1.3rem;
  }

  .image-text-item {
    padding: 0.9rem;
    gap: 0.9rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.28);
  }

  .content-text h3 {
    font-size: 1.05rem;
    margin-bottom: 0.375rem;
  }

  .content-text p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .scroll-banner {
    margin: 0.6rem auto 0.85rem;
    padding: 0.45rem 0.65rem;
    border-radius: 22px;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.35);
  }

  .scroll-track {
    font-size: 0.5rem;
    animation-duration: 13s;
  }

  .popular-sites-section {
    margin: 0.6rem auto 0.9rem;
    padding: 0.65rem 0.7rem 0.85rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.35);
  }

  .popular-sites-grid {
    gap: 0.45rem;
  }

  .site-name {
    font-size: 0.86rem;
  }

  .site-tag {
    font-size: 0.72rem;
  }
}


/* === 超小屏设备 (最大360px) === */

@media (max-width: 360px) {

  .header-container {
    padding: 0.5rem;
  }

  .header-logo {
    height: 28px;
  }

  .logo-img {
    max-height: 28px;
  }

  .top-carousel-section {
    padding: clamp(0.5rem, 2vw, 0.75rem);
    margin: 0.75rem auto;
  }

  .logo-content-section,
  .image-text-section {
    padding: clamp(0.5rem, 2vw, 0.75rem);
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.35);
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.4rem, 2vw, 0.5rem);
  }

  .logo-card {
    padding: 0.4rem clamp(0.25rem, 2vw, 0.3rem) 0.55rem;
    gap: 0.35rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  }

  .logo-thumb {
    padding: 0.2rem;
  }

  .carousel-thumb-row {
    gap: clamp(0.2rem, 2vw, 0.25rem);
    padding: 0 clamp(0.3rem, 2vw, 0);
  }

  .logo-action {
    min-height: 1.3rem;
    font-size: 0.66rem;
    padding: 0.25rem 0.35rem;
    background: linear-gradient(180deg, #FFB7D5, #7BB8FF, #6DFCBF);
  }

  .image-text-item {
    padding: 0.625rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.28);
  }

  .content-text h3 {
    font-size: 1rem;
  }

  .content-text p {
    font-size: 0.75rem;
  }

  .scroll-track {
    font-size: 0.5rem;
    animation-duration: 12s;
  }

  .popular-sites-section {
    padding: 0.45rem 0.5rem 0.7rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.35);
  }

  .popular-sites-grid {
    gap: 0.35rem;
  }

  .popular-site-card {
    padding: 0.5rem 0.55rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  }

  .site-name {
    font-size: 0.8rem;
  }

  .site-tag {
    font-size: 0.68rem;
  }
}








/* === 横屏模式优化 === */
@media (max-width: 900px) and (orientation: landscape) {

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
  }

  .logo-card {
    padding: 0.5rem 0.35rem 0.6rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.28);
  }
}


/* === 触摸设备优化 === */
@media (hover: none) and (pointer: coarse) {

  .logo-card,
  .image-text-item {
    cursor: pointer;
  }

  .logo-card:active {
    transform: translateY(-2px) scale(0.98);
  }

  .image-text-item:active {
    transform: translateY(-2px);
  }
}


/* === Entry Modal（绿色改为粉蓝绿渐变版本）=== */

.entry-modal__content {
  width: min(92vw, 360px);
  background: linear-gradient(180deg, #FFB7D5AA, #7BB8FFAA, #6DFCBFAA);
  border-radius: 18px;
  border: 1px solid rgba(123, 184, 255, 0.45);
  box-shadow: 0 25px 70px rgba(123, 184, 255, 0.55);
  padding: clamp(1rem, 4vw, 1.4rem);
  position: relative;
  text-align: center;
  color: #FFECAA; /* 柔黄字体，与渐变协调 */
}

/* Modal 图片 */
.entry-modal__image {
  display: block;
  margin-bottom: 0.9rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.20);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.entry-modal__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Modal 按钮 */
.entry-modal__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #FFB7D5, #7BB8FF, #6DFCBF);
  color: #1C0B22;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.entry-modal__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(123, 184, 255, 0.4);
}

/* Modal 关闭按钮 */
.entry-modal__close {
  position: absolute;
  right: 0.9rem;
  top: 0.6rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.entry-modal__close:hover {
  color: #ffffff;
}


/* === Logo 区动作效果 === */
.logo-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(123, 184, 255, 0.38);
}

.logo-action:active {
  transform: translateY(0);
  box-shadow: none;
}


/* === 图片文字内容区（渐变粉蓝绿主题）=== */

.image-text-section {
  width: 100%;
  max-width: min(32rem, calc(100vw - 2rem));
  margin: 1.4rem auto;
  padding: 1.1rem clamp(0.75rem, 3vw, 1rem);
  box-sizing: border-box;
  background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  border: 1px solid rgba(123, 184, 255, 0.35);
}

.image-text-container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.image-text-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  border-radius: 12px;
  padding: 1.1rem;
  box-sizing: border-box;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(123, 184, 255, 0.30);
}

.image-text-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(180deg, #FFB7D533, #7BB8FF33, #6DFCBF33);
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.image-text-item:hover .content-image {
  transform: scale(1.02);
}

.content-text {
  color: #ffffff;
}

.content-text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
}

.content-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
}












/* ========== 响应式设计（继续） ========== */

/* 平板设备 (768px - 1024px) */
@media (max-width: 1024px) {

  .top-images-section,
  .logo-content-section,
  .image-text-section {
    padding: 0.875rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.3);
  }

  .logo-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.875rem;
  }

  .logo-item {
    width: 120px;
    height: 120px;
  }
}


/* 移动设备 (481px - 768px) */
@media (max-width: 768px) {

  .main-header {
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); /* 导航栏保持不改色 */
  }

  .header-container {
    padding: 0.625rem 1rem;
  }

  .header-logo {
    height: 36px;
  }

  .logo-img {
    max-height: 36px;
  }

  .top-carousel-section {
    padding: 1rem;
    margin-top: 1rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.35);
  }

  .carousel-container {
    max-width: 100%;
  }

  .carousel-wrapper {
    height: auto;
    aspect-ratio: 732 / 320;
    min-height: clamp(160px, 22vw, 200px);
    width: 100%;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 20px;
    background: linear-gradient(180deg, #FFB7D5AA, #7BB8FFAA, #6DFCBFAA);
    border: 1px solid rgba(123, 184, 255, 0.38);
  }

  .carousel-btn:hover {
    background: linear-gradient(180deg, #FFB7D5CC, #7BB8FFCC, #6DFCBFCC);
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-indicators {
    bottom: 10px;
  }

  .carousel-thumb-row {
    gap: clamp(0.35rem, 2vw, 0.45rem);
    padding: 0 clamp(0.4rem, 2vw, 0);
  }

  .indicator {
    width: 8px;
    height: 8px;
    background: linear-gradient(180deg, #FFB7D5, #7BB8FF, #6DFCBF);
  }

  .indicator.active {
    background: #ffffff;
  }

  .logo-content-section {
    margin: 1.2rem auto;
    padding: 0 0.9rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.32);
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(0.5rem, 2vw, 0.875rem);
  }

  .logo-card {
    max-width: 100%;
    padding: 0.55rem clamp(0.35rem, 2vw, 0.45rem) 0.7rem;
    gap: 0.5rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.3);
  }

  .logo-thumb {
    padding: 0.3rem;
  }

  .logo-action {
    min-height: 1.5rem;
    font-size: 0.72rem;
    padding: 0.3rem 0.4rem;
    background: linear-gradient(180deg, #FFB7D5, #7BB8FF, #6DFCBF);
  }

  .image-text-section {
    margin: 1.2rem auto;
    padding: 0 0.9rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.28);
  }

  .image-text-container {
    gap: 1.5rem;
  }

  .image-text-item {
    padding: 0.9rem;
    gap: 0.9rem;
    border: 1px solid rgba(123, 184, 255, 0.25);
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
  }

  .content-text h3 {
    font-size: 1.15rem;
  }

  .content-text p {
    font-size: 0.85rem;
  }

  .scroll-banner {
    margin: 0.6rem auto 0.9rem;
    padding: 0.45rem 0.75rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.3);
  }

  .scroll-track {
    font-size: 0.5rem;
    animation-duration: 16s;
  }

  .social-section {
    margin: 0.7rem auto 1.1rem;
    padding: 0.8rem 0.9rem 1rem;
    background: linear-gradient(180deg, #FFB7D515, #7BB8FF15, #6DFCBF15);
    border: 1px solid rgba(123, 184, 255, 0.25);
  }

  .social-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(180deg, #FFB7D533, #7BB8FF33, #6DFCBF33);
    border: 1px solid rgba(123, 184, 255, 0.35);
  }

  .social-icon:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #FFB7D5AA, #7BB8FFAA, #6DFCBFAA);
  }

  .popular-sites-section {
    margin: 0.7rem auto 1rem;
    padding: 0.75rem 0.85rem 0.95rem;
    background: linear-gradient(180deg, #FFB7D520, #7BB8FF20, #6DFCBF20);
    border: 1px solid rgba(123, 184, 255, 0.28);
  }

  .popular-sites-grid {
    gap: 0.5rem;
  }

  .popular-site-card {
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.3);
  }

  .site-name {
    font-size: 0.9rem;
  }

  .site-tag {
    font-size: 0.75rem;
  }
}













/* ========== 小屏设备 (≤480px) ========== */
@media (max-width: 600px) {

  .top-carousel-section {
    margin-top: 0.8rem;
    padding: 0.75rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.30);
  }

  .carousel-wrapper {
    height: auto;
    aspect-ratio: 732 / 320;
    min-height: 150px;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 18px;
    background: linear-gradient(180deg, #FFB7D5AA, #7BB8FFAA, #6DFCBFAA);
    border: 1px solid rgba(123, 184, 255, 0.38);
  }

  .indicator {
    width: 7px;
    height: 7px;
    background: linear-gradient(180deg, #FFB7D5, #7BB8FF, #6DFCBF);
  }

  .logo-content-section {
    padding: 0 0.75rem;
    margin: 1rem auto;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.28);
  }

  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .logo-card {
    padding: 0.5rem 0.3rem 0.7rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.28);
  }

  .logo-action {
    padding: 0.28rem 0.35rem;
    font-size: 0.68rem;
    background: linear-gradient(180deg, #FFB7D5, #7BB8FF, #6DFCBF);
  }

  .image-text-section {
    margin: 1rem auto;
    padding: 0 0.75rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.26);
  }

  .image-text-container {
    gap: 1.2rem;
  }

  .image-text-item {
    padding: 0.8rem;
    gap: 0.8rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.22);
  }

  .content-text h3 {
    font-size: 1.05rem;
  }

  .content-text p {
    font-size: 0.78rem;
  }

  .scroll-banner {
    margin: 0.5rem auto 0.8rem;
    padding: 0.38rem 0.65rem;
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.2);
  }

  .social-section {
    padding: 0.7rem 0.75rem 0.9rem;
    margin: 0.5rem auto 0.9rem;
    background: linear-gradient(180deg, #FFB7D515, #7BB8FF15, #6DFCBF15);
    border: 1px solid rgba(123, 184, 255, 0.22);
  }

  .social-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(180deg, #FFB7D533, #7BB8FF33, #6DFCBF33);
    border: 1px solid rgba(123, 184, 255, 0.28);
  }

  .popular-sites-section {
    padding: 0.65rem 0.7rem 0.85rem;
    background: linear-gradient(180deg, #FFB7D520, #7BB8FF20, #6DFCBF20);
    border: 1px solid rgba(123, 184, 255, 0.26);
  }

  .popular-site-card {
    background: linear-gradient(180deg, #FFB7D522, #7BB8FF22, #6DFCBF22);
    border: 1px solid rgba(123, 184, 255, 0.25);
  }

  .entry-modal__content {
    background: linear-gradient(180deg, #FFB7D566, #7BB8FF66, #6DFCBF66);
    border: 1px solid rgba(123, 184, 255, 0.35);
    color: #ffffff;
  }

  .entry-modal__close {
    background: linear-gradient(180deg, #FFB7D5AA, #7BB8FFAA, #6DFCBFAA);
    border: 1px solid rgba(123, 184, 255, 0.38);
  }
}










/* ========== 额外动态过渡与动效增强（颜色套用粉蓝绿主题） ========== */

/* Hover 时的全局柔光效果 */
.hover-glow:hover {
  box-shadow: 0 0 16px rgba(123, 184, 255, 0.45),
              0 0 32px rgba(109, 252, 191, 0.35),
              0 0 48px rgba(255, 183, 213, 0.25);
  transition: box-shadow 0.35s ease;
}

/* 统一按钮主题（除导航栏外） */
button,
.btn,
a.button {
  background: linear-gradient(180deg, #FFB7D5, #7BB8FF, #6DFCBF);
  border: 1px solid rgba(123, 184, 255, 0.45);
  color: #1b1b1b;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

button:hover,
.btn:hover,
a.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(123, 184, 255, 0.45);
}

button:active,
.btn:active,
a.button:active {
  transform: translateY(0px) scale(0.97);
}

/* List / Card 渐变风格一致化 */
.card,
.list-item,
.block {
  background: linear-gradient(180deg, #FFB7D52A, #7BB8FF2A, #6DFCBF2A);
  border: 1px solid rgba(123, 184, 255, 0.35);
  transition: transform 0.22s ease, background-color 0.22s ease;
}

.card:hover,
.list-item:hover,
.block:hover {
  background: linear-gradient(180deg, #FFB7D53F, #7BB8FF3F, #6DFCBF3F);
  transform: translateY(-4px);
}

/* 图片圆角一致优化 */
img {
  border-radius: 4px;
}

/* 淡入效果 */
.fade-in {
  animation: fadeIn 0.65s ease both;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 缩放出现 */
.zoom-in {
  animation: zoomIn 0.45s ease both;
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1.0); }
}

/* Modal 背景遮罩（保持不变） */
.entry-modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
}

/* Modal 动画 */
.entry-modal__content {
  animation: popupFade 0.45s ease;
}
@keyframes popupFade {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* 遮罩消失 */
.entry-modal.hide {
  animation: fadeOut 0.4s ease both;
}
@keyframes fadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}




.main-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background-color: #fff !important;
}





/* 强制弹窗始终显示 */
#entryModal {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    position: fixed !important;
    inset: 0 !important;
    z-index: 999999 !important;

    background: rgba(0,0,0,0.75) !important;
}

/* 禁止任何隐藏动画 */
#entryModal.hidden,
#entryModal[style*="display:none"],
#entryModal[style*="opacity:0"] {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* 弹窗内容 */
.entry-modal__content {
    position: relative;
    margin: auto;
    animation: none !important;
    transform: none !important;
}

/* 允许点击关闭按钮 */
.entry-modal__close {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* 禁止点遮罩关闭 */
#entryModal::before {
    content: "";
    position: absolute;
    inset: 0;
}








