 /* 原神启动区域通用样式，与旅行历程风格保持统一 */
 .guide-content-block#gd-start {
   width: 100%;
   padding: 10px;
 }

 /* 区域置顶居中大标题 */
 .start-main-title {
   text-align: center;
   font-size: 28px;
   margin: 0 auto 22px;
   background: linear-gradient(135deg, #63b8ff, #9470ff, #ffdd77);
   -webkit-background-clip: text;
   background-clip: text;
   color: transparent;
   letter-spacing: 1px;
 }

 /* 内容文本容器，居中约束宽度，和旅行历程最大宽度一致 */
 .start-text-wrap {
   max-width: 940px;
   margin: 0 auto;
 }

 /* 正文文本样式，适配深色页面 */
 .start-content-text {
   color: #c2c2e0;
   line-height: 1.8;
   font-size: 20px;
   text-align: justify;
   margin-bottom: 14px;
 }

 /* 视频卡片 */
 .card-row {
   display: flex;
   gap: 20px;
   justify-content: center;
   margin: 30px 0;
 }

 .mini-card {
   width: 200px;
   text-align: center;
   padding: 12px;
   border-radius: 10px;
   transition: 0.25s ease;
 }

 .mini-card:hover {
   box-shadow: 0 0 15px #7c5cff77;
   transform: translateY(-4px);
 }

 .mini-card img {
   width: 100%;
   height: auto;
   border-radius: 6px;
   cursor: pointer;
 }

 .card-title {
   color: #e6e6ff;
   margin-top: 10px;
   font-size: 15px;
 }

 /* 卡片独有样式 */
 .special-card {
   background: linear-gradient(145deg, #2b2442, #3a3058);
   border: 1px solid #ffd70060;
 }

 .special-card:hover {
   box-shadow: 0 0 18px rgba(255, 215, 0, 0.45);
 }

 /* 官方网站 */
 .btn-center-wrap {
   text-align: center;
   margin: 30px 0;
 }

 .official-genshin-btn {
   padding: 12px 28px;
   background: linear-gradient(135deg, #5b37cc, #2963d9);
   color: #fff;
   border: none;
   border-radius: 8px;
   font-size: 16px;
   letter-spacing: 1px;
   transition: all 0.3s ease;
   box-shadow: 0 0 12px rgba(120, 90, 255, 0.4);
 }

 .official-genshin-btn:hover {
   background: linear-gradient(135deg, #7b56ee, #4380ff);
   box-shadow: 0 0 20px rgba(160, 120, 255, 0.6);
   transform: translateY(-2px);
 }

 .official-genshin-btn:active {
   transform: translateY(0px);
 }

 /* 移动端适配 */
 @media screen and (max-width: 980px) {
   .start-text-wrap {
     max-width: unset;
     width: 100%;
   }
 }

 @media screen and (max-width: 768px) {
   .start-main-title {
     font-size: 24px;
   }

   .start-content-text {
     font-size: 14px;
   }
 }