.banner_img {
  width: 100%;
}

/* 資訊模塊樣式 */
.info-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23e0e7ff" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%238a33ff" opacity="0.05"/><circle cx="40" cy="80" r="1" fill="%23f55bba" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

.info-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.info-header {
  text-align: center;
  margin-bottom: 60px;
}

.info-title {
  font-size: 48px;
  font-weight: bold;
  color: #2d2d2d;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #8a33ff, #f55bba);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(138, 51, 255, 0.1);
}

.info-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  opacity: 0.8;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8a33ff, #f55bba);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(138, 51, 255, 0.15);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card-primary {
  border-left: 4px solid #8a33ff;
}

.info-card-secondary {
  border-left: 4px solid #f55bba;
}

.info-card-accent {
  border-left: 4px solid #00d4aa;
}

.info-card-neutral {
  border-left: 4px solid #6366f1;
}

.info-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  transition: all 0.3s ease;
}

.info-card-primary .info-card-icon {
  background: linear-gradient(135deg, #8a33ff, #a855f7);
  color: white;
}

.info-card-secondary .info-card-icon {
  background: linear-gradient(135deg, #f55bba, #ec4899);
  color: white;
}

.info-card-accent .info-card-icon {
  background: linear-gradient(135deg, #00d4aa, #10b981);
  color: white;
}

.info-card-neutral .info-card-icon {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
}

.info-card:hover .info-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.info-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0;
}

.info-card-content {
  margin-bottom: 24px;
}

.info-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.info-item:last-child {
  border-bottom: none;
}

.info-item:hover {
  background: rgba(138, 51, 255, 0.02);
  padding-left: 8px;
  border-radius: 8px;
}

.info-item-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 4px;
}

.info-item-title {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
}

.info-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-highlight-image {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.info-highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-highlight-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0 0 4px 0;
}

.info-highlight-content p {
  font-size: 14px;
  color: #666;
  margin: 0 0 8px 0;
}

.info-status {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #00d4aa, #10b981);
  color: white;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 500;
}

.info-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 20px;
  text-align: center;
}

.info-stat-item {
  padding: 16px 8px;
  border-radius: 12px;
  background: rgba(138, 51, 255, 0.05);
  transition: all 0.3s ease;
}

.info-stat-item:hover {
  background: rgba(138, 51, 255, 0.1);
  transform: scale(1.05);
}

.info-stat-number {
  font-size: 24px;
  font-weight: bold;
  color: #8a33ff;
  margin-bottom: 4px;
}

.info-stat-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.info-quick-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.info-quick-link:hover {
  background: rgba(138, 51, 255, 0.05);
  border-color: rgba(138, 51, 255, 0.1);
  transform: translateX(4px);
  color: #8a33ff;
}

.info-quick-link svg {
  transition: transform 0.3s ease;
}

.info-quick-link:hover svg {
  transform: translateX(4px);
}

.info-card-footer {
  margin-top: 20px;
}

.info-more-link {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #8a33ff, #f55bba);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(138, 51, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.info-more-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.info-more-link:hover::before {
  left: 100%;
}

.info-more-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 51, 255, 0.4);
}

.info-more-link:active {
  transform: translateY(0);
}

/* 響應式設計 */
@media (max-width: 768px) {
  .info-section {
    padding: 60px 0;
  }
  
  .info-container {
    width: 95%;
  }
  
  .info-title {
    font-size: 36px;
  }
  
  .info-subtitle {
    font-size: 16px;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .info-card-icon {
    width: 40px;
    height: 40px;
  }
  
  .info-card-title {
    font-size: 18px;
  }
  
  .info-highlight {
    flex-direction: column;
    text-align: center;
  }
  
  .info-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .info-stat-number {
    font-size: 20px;
  }
  
  .info-stat-label {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .info-section {
    padding: 40px 0;
  }
  
  .info-title {
    font-size: 28px;
  }
  
  .info-card {
    padding: 16px;
  }
  
  .info-card-header {
    margin-bottom: 16px;
  }
  
  .info-card-icon {
    width: 36px;
    height: 36px;
    margin-right: 12px;
  }
  
  .info-card-title {
    font-size: 16px;
  }
  
  .info-more-link {
    padding: 10px 20px;
    font-size: 13px;
  }
}
/* 一番賞简介样式 */
.intro_section {
  position: relative;
  width: 100%;
  min-height: 850px;
  margin-top: 99px;
  overflow: hidden;
  padding-bottom: 50px;
}

.intro_section .intro_text_box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.intro_section .intro_text_box .intro_text_title {
  width: 33%;
  height: 158px;
  font-weight: bold;
  font-size: 60px;
  color: #222222;
  line-height: 70px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-right: 13%;
  opacity: 0;
}
.intro_section .intro_text_box .intro_text_content {
  width: 54%;
  height: 96px;
  font-weight: 500;
  font-size: 24px;
  color: #777777;
  line-height: 28px;
  text-align: justified;
  font-style: normal;
  text-transform: none;
  margin-top: 19px;
  opacity: 0;
}
.intro_section .intro_img_box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 145px;
}
.intro_section .intro_img_box .intro_item_box {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.intro_section .intro_img_box .intro_img_item {
  width: 16%;
  /* height: 547px; */
  position: relative;
  z-index: 10;
}
.intro_section .intro_img_box .intro_img_item_top {
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

.intro_section .intro_img_box .intro_img_line_left {
  position: absolute;
  width: 80%;
  height: 104px;
  background: #2a2a2a;
  z-index: 2;
  left: 0;

  top: 42%;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

.intro_section .intro_img_box .intro_img_line_right {
  position: absolute;
  width: 20%;
  height: 104px;
  background: #2a2a2a;
  z-index: 2;
  right: 0;
  top: 32.4%;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

/* 買賣自由！打造專屬玩家市集！ */
.freedom_section {
  position: relative;
  width: 100%;
  min-height: 860px;
  margin-top: 100px;
  overflow: hidden;
  padding-bottom: 50px;
}

.freedom_section .freedom_text_box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
}
.freedom_section .freedom_text_box .freedom_text_title {
  width: 100%;
  height: 79px;
  font-weight: bold;
  font-size: 60px;
  color: #222222;
  line-height: 70px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 25px;
}
.freedom_section .freedom_text_box .freedom_text_content {
  font-weight: 500;
  font-size: 24px;
  color: #777777;
  line-height: 28px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  text-transform: none;
}
.freedom_section .freedom_img_box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 145px;
}
.freedom_section .freedom_img_box .freedom_item_box {
  display: flex;
  justify-content: center;
  width: 100%;
}
.freedom_section .freedom_img_box .freedom_img_item {
  /* height: 547px; */
  width: 19%;
  position: relative;
  z-index: 10;
}
.freedom_section .freedom_img_box .freedom_img_item_top {
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

.freedom_section .freedom_img_box .freedom_img_line_left {
  position: absolute;
  width: 25%;
  height: 104px;
  background: #a9e023;
  z-index: 2;
  left: 0;
  top: calc(50% - 52px);
}
.freedom_section .freedom_img_box .freedom_img_line_center {
  position: absolute;
  width: 48%;
  height: 104px;
  background: #a9e023;
  z-index: 2;
  left: 50%;
  top: calc(50% - 52px);
  transform: translateX(-50%);
}

.freedom_section .freedom_img_box .freedom_img_line_right {
  position: absolute;
  width: 27%;
  height: 104px;
  background: #a9e023;
  z-index: 2;
  right: 0;
  top: calc(50% - 52px);
}

/* 消費就送抽！福利賞屋開抽囖~ */
.consume_section {
  position: relative;
  width: 100%;
  min-height: 900px;
  overflow: hidden;
  margin-top: 110px;
  padding-bottom: 50px;
}

.consume_section .consume_text_box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
}
.consume_section .consume_text_box .consume_text_title {
  width: 100%;
  font-weight: bold;
  font-size: 60px;
  color: #222222;
  line-height: 70px;
  font-style: normal;
  text-transform: none;
  margin-bottom: 25px;
}
.consume_section .consume_text_box .consume_text_content {
  font-weight: 500;
  font-size: 24px;
  color: #777777;
  line-height: 28px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}
.consume_section .consume_img_box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 144px;
}
.consume_section .consume_img_box .consume_item_box {
  display: flex;
  justify-content: center;
  width: 100%;
}
.consume_section .consume_img_box .consume_img_item {
  width: 16.5%;
  /* height: 547px; */
  position: relative;
  z-index: 10;
}
.consume_section .consume_img_box .consume_img_item_top {
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

.consume_section .consume_img_box .consume_img_line_left {
  position: absolute;
  width: 20%;
  height: 104px;
  background: #ff9e0b;
  z-index: 2;
  left: 0;
  top: calc(50% - 52px);
}
.consume_section .consume_img_box .consume_img_line_center {
  position: absolute;
  width: 60%;
  height: 104px;
  background: #ff9e0b;
  z-index: 2;
  left: 50%;
  top: calc(50% - 52px);
  transform: translateX(-50%);
}

.consume_section .consume_img_box .consume_img_line_right {
  position: absolute;
  width: 20%;
  height: 104px;
  background: #ff9e0b;
  z-index: 2;
  right: 0;
  top: calc(50% - 52px);
}

/* 平台特色 */
.feature-section {
  width: 100%;
}
.feature-section .feature-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  transform: translateY(-57px);
}
.feature-section .feature-title .feature_title_text {
  font-weight: bold;
  font-size: 60px;
  color: #000000;
  line-height: 70px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 21px;
}
.feature-section .feature-title .feature_title_logo {
  width: 79px;
  height: 79px;
  margin: 0 20px;
}

.feature-section .feature_list {
  display: flex; /* 启用 Flexbox 布局 */
  margin: 0;
  padding: 0; /* 清除默认间距 */
  gap: 0; /* 关闭 flex gap */
  width: 100%;
  overflow: hidden;
}

.feature-section .feature_list .feature_item {
  flex: 1; /* 等分两列，各占 50% */
  display: block; /* 使 img 无默认行内间隙 */
  width: auto; /* 交给 flex 控制宽度 */
  margin: 0; /* 清除可能的默认外边距 */
  min-width: 0; /* 允许子项在必要时缩小为 0 宽度 */
  opacity: 0;
}
.feature-section .feature_list .feature_item img {
  display: block; /* 去除行内元素空隙 */
  max-width: 100%; /* 最大宽度不超过父元素 */
  height: auto; /* 高度自动，保持纵横比 */
  object-fit: cover; /* 按需裁剪或充满容器 */
}

/* 响应式设计 */
@media (max-width: 768px) {
  /* 一番賞简介样式 - 平板响应式 */
  .intro_section {
    height: auto;
    min-height: auto;
    margin-top: 50px;
    padding: 30px 0 40px 0;
  }
  
  .intro_section .intro_text_box {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .intro_section .intro_text_box .intro_text_title {
    width: 100%;
    font-size: 36px;
    line-height: 42px;
    margin-right: 0;
    margin-bottom: 20px;
    height: auto;
  }
  
  .intro_section .intro_text_box .intro_text_content {
    width: 100%;
    font-size: 18px;
    line-height: 24px;
    height: auto;
    margin-top: 0;
  }
  
  .intro_section .intro_img_box {
    margin-top: 20px;
  }
  
  .intro_section .intro_img_box .intro_img_item {
    width: 20%;
  }
  
  /* 移動端動畫元素初始位置 */
  .intro_section .intro_img_box .intro_img_item_top {
    transform: translateY(0) !important;
  }
  
  /* 買賣自由 - 平板响应式 */
  .freedom_section {
    height: auto;
    min-height: auto;
    margin-top: 60px;
    padding: 30px 0 40px 0;
  }
  
  .freedom_section .freedom_text_box .freedom_text_title {
    font-size: 36px;
    line-height: 42px;
  }
  
  .freedom_section .freedom_text_box .freedom_text_content {
    font-size: 18px;
    line-height: 24px;
  }
  
  .freedom_section .freedom_img_box {
    margin-top: 50px;
  }
  
  .freedom_section .freedom_img_box .freedom_img_item {
    width: 22%;
  }
  
  /* 平板端動畫元素初始位置控制 */
  .freedom_section .freedom_img_box .freedom_img_item_top,
  .freedom_section .freedom_img_box .freedom_img_line_left,
  .freedom_section .freedom_img_box .freedom_img_line_right {
    transform: translateY(0) !important;
  }
  
  .consume_section .consume_img_box .consume_img_item_top {
    transform: translateY(0) !important;
  }
  
  .consume_section .consume_img_box .consume_img_line_center {
    transform: translateY(0) translateX(-50%) !important;
  }
  
  /* 消費就送抽 - 平板响应式 */
  .consume_section {
    height: auto;
    min-height: auto;
    margin-top: 60px;
    padding: 30px 0 40px 0;
  }
  
  .consume_section .consume_text_box .consume_text_title {
    font-size: 36px;
    line-height: 42px;
  }
  
  .consume_section .consume_text_box .consume_text_content {
    font-size: 18px;
    line-height: 24px;
  }
  
  .consume_section .consume_img_box {
    margin-top: 50px;
  }
  
  .consume_section .consume_img_box .consume_img_item {
    width: 20%;
  }
  
  /* 平台特色 - 平板响应式 */
  .feature-section .feature-title .feature_title_text {
    font-size: 36px;
    line-height: 42px;
  }
  
  .feature-section .feature_list {
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-section .feature_list .feature_item {
    width: 100%;
  }
}

@media (max-width: 480px) {
  /* 一番賞简介样式 - 手机响应式 */
  .intro_section {
    height: auto;
    min-height: auto;
    margin-top: 30px;
    padding: 25px 0 35px 0;
  }
  
  .intro_section .intro_text_box {
    margin-bottom: 20px;
  }
  
  .intro_section .intro_text_box .intro_text_title {
    font-size: 28px;
    line-height: 32px;
    height: auto;
    margin-bottom: 15px;
  }
  
  .intro_section .intro_text_box .intro_text_content {
    font-size: 16px;
    line-height: 22px;
    height: auto;
    margin-top: 0;
  }
  
  .intro_section .intro_img_box {
    margin-top: 15px;
  }
  
  .intro_section .intro_img_box .intro_img_item {
    width: 25%;
  }
  
  /* 手機端動畫元素初始位置 */
  .intro_section .intro_img_box .intro_img_item_top {
    transform: translateY(0) !important;
  }
  
  .freedom_section .freedom_img_box .freedom_img_item_top,
  .freedom_section .freedom_img_box .freedom_img_line_left,
  .freedom_section .freedom_img_box .freedom_img_line_right {
    transform: translateY(0) !important;
  }
  
  .consume_section .consume_img_box .consume_img_item_top {
    transform: translateY(0) !important;
  }
  
  .consume_section .consume_img_box .consume_img_line_center {
    transform: translateY(0) translateX(-50%) !important;
  }
  
  /* 買賣自由 - 手机响应式 */
  .freedom_section {
    height: auto;
    min-height: auto;
    margin-top: 40px;
    padding: 25px 0 35px 0;
  }
  
  .freedom_section .freedom_text_box .freedom_text_title {
    font-size: 28px;
    line-height: 32px;
    height: auto;
  }
  
  .freedom_section .freedom_text_box .freedom_text_content {
    font-size: 16px;
    line-height: 22px;
  }
  
  .freedom_section .freedom_img_box {
    margin-top: 30px;
  }
  
  .freedom_section .freedom_img_box .freedom_img_item {
    width: 28%;
  }
  
  /* 消費就送抽 - 手机响应式 */
  .consume_section {
    height: auto;
    min-height: auto;
    margin-top: 40px;
    padding: 25px 0 35px 0;
  }
  
  .consume_section .consume_text_box .consume_text_title {
    font-size: 28px;
    line-height: 32px;
  }
  
  .consume_section .consume_text_box .consume_text_content {
    font-size: 16px;
    line-height: 22px;
  }
  
  .consume_section .consume_img_box {
    margin-top: 30px;
  }
  
  .consume_section .consume_img_box .consume_img_item {
    width: 25%;
  }
  
  /* 平台特色 - 手机响应式 */
  .feature-section .feature-title .feature_title_text {
    font-size: 28px;
    line-height: 32px;
  }
  
  .feature-section .feature-title .feature_title_logo {
    width: 50px;
    height: 50px;
    margin: 0 10px;
  }
}
