body {
  background-color: #0b1120;
  background-image: radial-gradient(circle at 15% 15%, rgba(56, 189, 248, 0.08) 0%, transparent 40%), radial-gradient(circle at 85% 85%, rgba(139, 92, 246, 0.08) 0%, transparent 40%), radial-gradient(circle at 50% 50%, #1e293b 0%, #0b1120 100%);
  background-attachment: fixed;
  min-height: 100vh;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding-bottom: 70px;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 16px;
}

.ui-card, .bottom-cta-banner, .terms-section .terms-card, .rental-section .pricing-container, .feature-banner, .video-section .video-container, .story-section .story-content {
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00b900;
  color: #0f172a;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.btn-line:hover {
  background: #0bdb0b;
  transform: translateY(-1px);
}
.btn-line.center-btn {
  display: flex;
  max-width: 340px;
  margin: 24px auto 0;
}

.section-block {
  margin-bottom: 48px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.section-header .swipe-hint {
  font-size: 0.8rem;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 12px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  color: #ffffff;
  border-left: 4px solid #38bdf8;
  padding-left: 12px;
}

.hero-section {
  display: flex;
  align-items: stretch;
  gap: 36px;
  padding: 32px 0;
}
.hero-section .hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-section .hero-content .main-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 8px 0;
  letter-spacing: -1px;
  color: #ffffff;
}
.hero-section .hero-content .subtitle {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 0 8px 0;
  color: #e2e8f0;
}
.hero-section .hero-content .desc {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.hero-section .hero-content .tags {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.hero-section .hero-content .tags span {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-section .hero-content .game-meta {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  font-size: 0.9rem;
  color: #94a3b8;
}
.hero-section .hero-image {
  flex: 1;
  display: flex;
  width: 100%;
  min-height: 100%;
}
.hero-section .hero-image img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  -o-object-position: center !important;
     object-position: center !important;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.story-section .story-content {
  line-height: 1.8;
  color: #e2e8f0;
  font-size: 1rem;
  padding: 24px;
}
.story-section .story-content p {
  margin: 0 0 4px 0;
}

.video-section .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.video-section .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.role-section {
  position: relative;
}
.role-section .role-carousel .role-slide {
  padding: 8px;
  outline: none;
}
.role-section .role-carousel .role-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}
.role-section .role-carousel .role-card img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.role-section .role-carousel .role-card .role-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 20%, rgba(15, 23, 42, 0.6) 70%, transparent 100%);
  color: #ffffff;
  transition: all 0.3s ease;
}
.role-section .role-carousel .role-card .role-info h3 {
  font-size: 1.3rem;
  margin: 0 0 4px 0;
  color: #ffffff;
}
.role-section .role-carousel .role-card .role-info .role-meta {
  font-size: 0.85rem;
  color: #38bdf8;
  margin-bottom: 8px;
}
.role-section .role-carousel .role-card .role-info p {
  font-size: 0.88rem;
  color: #e2e8f0;
  line-height: 1.5;
  margin: 0;
}
.role-section .role-carousel .role-card:hover img {
  transform: scale(1.03);
}
.role-section .role-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.role-section .role-arrow.role-prev {
  left: -15px;
}
.role-section .role-arrow.role-next {
  right: -15px;
}

.feature-banner {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.feature-banner .feature-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  min-width: 230px;
  line-height: 1.4;
  color: #ffffff;
}
.feature-banner .feature-title .brain-icon {
  font-size: 1.8rem;
}
.feature-banner .feature-content {
  display: flex;
  gap: 20px;
  flex: 1;
}
.feature-banner .feature-content .f-box {
  flex: 1;
  font-size: 0.9rem;
  color: #e2e8f0;
}
.feature-banner .feature-content .f-box p {
  margin: 0 0 6px 0;
}
.feature-banner .feature-content .f-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-banner .feature-content .f-box ul li {
  margin-bottom: 4px;
  color: #38bdf8;
}

.rental-section .pricing-container {
  padding: 24px;
}
.rental-section .pricing-container .pricing-cards {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.rental-section .pricing-container .pricing-cards .price-card {
  flex: 1;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
}
.rental-section .pricing-container .pricing-cards .price-card .p-name {
  font-size: 0.95rem;
  font-weight: bold;
  color: #ffffff;
}
.rental-section .pricing-container .pricing-cards .price-card .p-amount {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 6px;
  color: #ffffff;
}
.rental-section .pricing-container .pricing-cards .price-card .p-amount span {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: normal;
}
.rental-section .pricing-container .resource-block {
  background: rgba(15, 23, 42, 0.4);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.rental-section .pricing-container .resource-block .res-title {
  font-size: 1rem;
  margin: 0 0 16px 0;
  text-align: center;
  color: #ffffff;
}
.rental-section .pricing-container .resource-block .res-grid {
  display: flex;
  gap: 16px;
}
.rental-section .pricing-container .resource-block .res-grid .res-item {
  flex: 1;
  background: rgba(30, 41, 59, 0.8);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.rental-section .pricing-container .resource-block .res-grid .res-item h4 {
  margin: 0 0 6px 0;
  font-size: 0.95rem;
  color: #38bdf8;
}
.rental-section .pricing-container .resource-block .res-grid .res-item p {
  margin: 0;
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
}
.rental-section .pricing-container .steps-block h3 {
  font-size: 1.1rem;
  color: #ffffff;
  margin: 0 0 8px 0;
}
.rental-section .pricing-container .steps-block .steps-intro {
  font-size: 0.9rem;
  color: #e2e8f0;
  margin-bottom: 12px;
}
.rental-section .pricing-container .steps-block .template-copy-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px dashed #38bdf8;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}
.rental-section .pricing-container .steps-block .template-copy-card .copy-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.rental-section .pricing-container .steps-block .template-copy-card .copy-box pre {
  margin: 0;
  font-family: inherit;
  font-size: 0.9rem;
  color: #ffffff;
  line-height: 1.6;
  white-space: pre-wrap;
}
.rental-section .pricing-container .steps-block .template-copy-card .copy-box .btn-copy {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid #38bdf8;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.rental-section .pricing-container .steps-block .template-copy-card .copy-box .btn-copy:hover {
  background: #38bdf8;
  color: #0f172a;
}
.rental-section .pricing-container .steps-block .phone-notice {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
}
.rental-section .pricing-container .steps-block .phone-notice a {
  color: #38bdf8;
  text-decoration: underline;
}

.terms-section .terms-card {
  padding: 24px 28px;
}
.terms-section .terms-card .terms-list {
  margin: 0 0 16px 0;
  padding-left: 20px;
  color: #e2e8f0;
}
.terms-section .terms-card .terms-list li {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 8px;
}
.terms-section .terms-card .terms-list li:last-child {
  margin-bottom: 0;
}
.terms-section .terms-card .terms-notice {
  font-size: 0.85rem;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  margin-top: 12px;
}

.bottom-cta-banner {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.bottom-cta-banner .cta-info h3 {
  margin: 0 0 4px 0;
  font-size: 1.2rem;
  color: #ffffff;
}
.bottom-cta-banner .cta-info p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.9rem;
}

.copyright {
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.copyright a {
  color: #94a3b8;
  text-decoration: none;
}

.mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only-btn {
    display: none !important;
  }
  .mobile-sticky-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    z-index: 999;
  }
  .mobile-sticky-bar .btn-line {
    width: 100%;
    box-sizing: border-box;
    padding: 14px;
    font-size: 1rem;
  }
  .hero-section {
    position: relative;
    padding: 50px 20px 36px;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    background: url("https://www.walei.tw/page/larp_page/images/header-bg2.jpg") center center/cover no-repeat;
    margin-top: 10px;
  }
  .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 1;
  }
  .hero-section .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero-section .hero-content .main-title {
    font-size: 2.8rem;
  }
  .hero-section .hero-content .tags, .hero-section .hero-content .game-meta {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-section .hero-image {
    display: none !important;
  }
  .role-section .role-carousel .role-card img {
    height: 320px;
  }
  .role-section .role-carousel .role-card .role-info p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
  }
  .role-section .role-slide.slick-center .role-card .role-info,
  .role-section .role-card.active .role-info {
    background: rgba(15, 23, 42, 0.95);
  }
  .role-section .role-slide.slick-center .role-card .role-info p,
  .role-section .role-card.active .role-info p {
    max-height: 120px;
    opacity: 1;
    margin-top: 6px;
  }
  .feature-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .feature-banner .feature-content {
    flex-direction: column;
    gap: 16px;
  }
  .rental-section .pricing-container {
    padding: 16px;
  }
  .rental-section .pricing-container .pricing-cards, .rental-section .pricing-container .resource-block .res-grid {
    flex-direction: column;
  }
  .rental-section .pricing-container .steps-block .template-copy-card .copy-box {
    flex-direction: column;
    align-items: stretch;
  }
  .rental-section .pricing-container .steps-block .template-copy-card .copy-box .btn-copy {
    width: 100%;
    margin-top: 8px;
    text-align: center;
  }
  .terms-section .terms-card {
    padding: 18px;
  }
  .terms-section .terms-card .terms-list {
    padding-left: 18px;
  }
  .terms-section .terms-card .terms-list li {
    font-size: 0.88rem;
  }
  .bottom-cta-banner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}/*# sourceMappingURL=index.css.map */