/* ============================
   龍神小梁的個人小天地 - Styles
   ============================ */

:root {
  --pink-light: #FFF0F5;
  --pink-100: #FFD6E7;
  --pink-200: #FFB3CC;
  --pink-300: #FF85A2;
  --pink-400: #FF5C8A;
  --pink-500: #E91E63;
  --pink-dark: #C2185B;
  --rose-gold: #B76E79;
  --text-dark: #3D2B35;
  --text-mid: #6B4C57;
  --text-light: #9B7E87;
  --white: #FFFFFF;
  --shadow: rgba(233, 30, 99, 0.15);
  --font-main: 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--pink-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--pink-100); }
::-webkit-scrollbar-thumb { background: var(--pink-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink-400); }

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(255, 240, 245, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pink-200);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 4px 20px var(--shadow);
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--pink-dark);
  letter-spacing: 0.5px;
  text-decoration: none;
}

.nav-logo span {
  color: var(--pink-300);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink-300);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--pink-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--pink-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: rgba(255, 240, 245, 0.97);
  backdrop-filter: blur(12px);
  z-index: 999;
  padding: 20px;
  border-bottom: 1px solid var(--pink-200);
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid var(--pink-100);
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('photos/img_9466.jpg') center center / cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

#hero:hover .hero-bg-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(60, 10, 30, 0.45) 0%,
    rgba(180, 40, 90, 0.35) 50%,
    rgba(60, 10, 30, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.4);
  animation: fadeInUp 0.8s ease both;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #FFB3CC, #FFD6E7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-300), var(--pink-500));
  color: white;
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(233, 30, 99, 0.4);
}

.btn-outline {
  background: white;
  color: var(--pink-dark);
  border: 2px solid var(--pink-300);
}

.btn-outline:hover {
  background: var(--pink-200);
  transform: translateY(-3px);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  animation: fadeIn 1s ease 1s both;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.7);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  transform: rotate(45deg);
  animation: bounce 1.5s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  background: var(--pink-200);
  color: var(--pink-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title .accent {
  color: var(--pink-400);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 500px;
  line-height: 1.7;
}

/* ===== DIVIDER ===== */
.full-width-section {
  width: 100%;
  max-width: 100%;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--pink-200) 0%, var(--pink-100) 100%);
}

/* ===== ABOUT ===== */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px var(--shadow);
  aspect-ratio: 3/4;
  background: var(--pink-200);
}

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

.about-deco {
  position: absolute;
  width: 80%;
  height: 80%;
  border: 3px solid var(--pink-300);
  border-radius: 24px;
  top: 20px;
  left: 20px;
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 30px var(--shadow);
  text-align: center;
}

.about-badge .num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--pink-400);
  display: block;
}

.about-badge .label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.about-content {
  padding: 20px 0;
}

.about-bio {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  background: white;
  color: var(--pink-dark);
  border: 1.5px solid var(--pink-200);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.about-social {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.social-twitch {
  background: #9146FF;
  color: white;
}

.social-twitch:hover {
  background: #7B2FBE;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(145, 70, 255, 0.35);
}

.social-ig {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
}

.social-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
}

.social-yt {
  background: #ff0000;
  color: white;
}
.social-yt:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
}

/* ===== SCHEDULE ===== */
.schedule-box {
  margin-top: 28px;
  background: white;
  border: 2px solid var(--pink-100);
  border-radius: 20px;
  padding: 20px 24px;
}

.schedule-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pink-dark);
  margin-bottom: 14px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  align-items: center;
}

.schedule-day {
  font-weight: 700;
  font-size: 0.9rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pink-300);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-day.off {
  background: var(--pink-100);
  color: var(--text-light);
}

.schedule-info {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.schedule-info.off {
  color: var(--text-light);
}

.schedule-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* ===== GALLERY ===== */
#gallery {
  max-width: 1400px;
  padding: 100px 40px;
}

.gallery-controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  border: 2px solid var(--pink-200);
  background: white;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-main);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--pink-300);
  border-color: var(--pink-300);
  color: white;
}

.gallery-grid {
  columns: 4 280px;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--pink-100);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(199, 24, 91, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .zoom-icon {
  opacity: 1;
}

.load-more-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 10, 20, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  font-size: 2rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.lightbox-nav:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* ===== CONTACT ===== */
#contact {
  text-align: center;
  padding: 100px 40px;
}

.contact-wrap {
  max-width: 700px;
  margin: 40px auto 0;
  background: white;
  border-radius: 32px;
  padding: 60px 50px;
  box-shadow: 0 20px 60px var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 30px 20px;
  border-radius: 20px;
  text-decoration: none;
  color: var(--text-dark);
  background: var(--pink-light);
  border: 2px solid var(--pink-100);
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow);
  border-color: var(--pink-300);
}

.contact-card .icon {
  font-size: 2.5rem;
}

.contact-card .c-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.contact-card .c-handle {
  font-size: 0.85rem;
  color: var(--text-light);
}

.contact-card.twitch { border-color: rgba(145, 70, 255, 0.2); }
.contact-card.twitch:hover { border-color: #9146FF; box-shadow: 0 16px 40px rgba(145,70,255,0.2); }

.contact-card.ig:hover { border-color: #dc2743; box-shadow: 0 16px 40px rgba(220,39,67,0.2); }

.contact-card.limnos,
.contact-card.email { grid-column: 1 / -1; }

.contact-divider {
  margin: 32px 0;
  border: none;
  border-top: 1px solid var(--pink-100);
}

.contact-email-text {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.contact-email a {
  color: var(--pink-400);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}

.contact-email a:hover {
  text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 36px 20px;
  font-size: 0.85rem;
}

footer .footer-name {
  color: var(--pink-300);
  font-weight: 700;
}

footer .footer-heart {
  color: var(--pink-300);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  #about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrap {
    max-width: 380px;
    margin: 0 auto;
  }

  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  section { padding: 70px 20px; }
  #gallery { padding: 70px 20px; }
  #contact { padding: 70px 20px; }
}

@media (max-width: 600px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .gallery-grid { columns: 2 140px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card.limnos { grid-column: 1; }
  .contact-wrap { padding: 40px 24px; }
  .about-social { flex-direction: column; }
}

/* ===== LUCKY MONEY ===== */
#lucky-money {
  padding: 100px 24px;
  background: linear-gradient(160deg, #fff8fa 0%, #fff0f5 100%);
  text-align: center;
}

.lucky-form-wrap {
  max-width: 480px;
  margin: 0 auto;
}

.lucky-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 40px;
  box-shadow: 0 8px 40px rgba(233, 30, 99, 0.12);
  border: 1px solid var(--pink-100);
  text-align: center;
}

.lucky-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.lucky-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.lucky-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-group {
  text-align: left;
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--pink-100);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-main);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
  background: #fffafc;
}

.form-group input:focus {
  border-color: var(--pink-300);
  background: #fff;
}

.lucky-btn {
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 1rem;
}

.lucky-success {
  background: var(--white);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 8px 40px rgba(233, 30, 99, 0.12);
  border: 1px solid var(--pink-100);
  text-align: center;
}

@media (max-width: 600px) {
  .lucky-card, .lucky-success { padding: 36px 24px; }
}

.lucky-img-wrap {
  max-width: 320px;
  margin: 0 auto 32px;
}

.lucky-photo {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(233, 30, 99, 0.15);
}

/* ===== LUCKY MONEY LIST ===== */
.lucky-list-wrap {
  max-width: 480px;
  margin: 40px auto 0;
  text-align: center;
}

.lucky-list-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.lucky-list {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--pink-100);
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
  overflow: hidden;
}

.lucky-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--pink-100);
  text-align: left;
}

.lucky-list-item:last-child {
  border-bottom: none;
}

.lucky-list-num {
  width: 24px;
  height: 24px;
  background: var(--pink-100);
  color: var(--pink-500);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lucky-list-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.lucky-list-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-left: auto;
}

.lucky-list-loading,
.lucky-list-empty {
  padding: 24px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.lucky-refresh-btn {
  margin-top: 12px;
  background: none;
  border: 1.5px solid var(--pink-200);
  border-radius: 20px;
  padding: 7px 20px;
  color: var(--text-light);
  font-size: 0.82rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.lucky-refresh-btn:hover {
  border-color: var(--pink-400);
  color: var(--pink-500);
}

/* ===== HERO SLIDESHOW ===== */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* ===== EMAIL CONTACT CARD ===== */
.contact-card.email {
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border-color: #a5d6a7;
}
.contact-card.email:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(76, 175, 80, 0.2);
}

/* ===== MANCAKE ===== */
#mancake {
  padding: 100px 24px;
  text-align: center;
  background: linear-gradient(160deg, #fff8f0 0%, #fff3e0 100%);
}

.mancake-desc {
  font-size: 1.3rem;
  margin: 0 auto 36px;
}

.mancake-desc strong {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
}

.mancake-img-wrap {
  max-width: 420px;
  margin: 0 auto;
}

.mancake-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(233, 30, 99, 0.15);
}

/* ===== LEGION TAB ===== */
#honor-board {
  padding: 100px 24px;
  background: linear-gradient(160deg, var(--pink-light) 0%, #fff 100%);
  text-align: center;
}

#legion-tab {
  padding: 100px 24px;
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%);
  text-align: center;
}

#legion-tab .section-label {
  color: #f6c90e;
}

#legion-tab .section-title {
  color: #fff;
}

.legion-wrap {
  max-width: 900px;
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  gap: 60px;
}

.legion-img-wrap {
  flex: 0 0 360px;
}

.legion-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.legion-info {
  flex: 1;
  text-align: left;
}

.legion-origin {
  font-size: 0.95rem;
  color: #a0aec0;
  margin-bottom: 8px;
}

.legion-name {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.legion-desc {
  font-size: 1.05rem;
  color: #cbd5e0;
  margin-bottom: 28px;
}

.legion-price-wrap {
  margin-bottom: 32px;
}

.legion-original {
  font-size: 0.95rem;
  color: #718096;
}

.legion-price {
  font-size: 1.6rem;
  color: #f6c90e;
  margin-top: 6px;
}

.legion-price strong {
  font-size: 2.2rem;
  font-weight: 900;
}

.legion-btn {
  font-size: 1rem;
  padding: 14px 28px;
}

@media (max-width: 768px) {
  .legion-wrap {
    flex-direction: column;
    gap: 32px;
  }
  .legion-img-wrap { flex: none; width: 100%; max-width: 360px; }
  .legion-info { text-align: center; }
}

/* ===== LUCKY RECEIVED ===== */
.lucky-received-wrap {
  max-width: 480px;
  margin: 40px auto 0;
  text-align: center;
}

.lucky-received-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.lucky-received-item img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--pink-100);
  box-shadow: 0 4px 16px rgba(233,30,99,.1);
}

.lucky-count {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light);
}

.lucky-show-more {
  margin-top: 8px;
  background: none;
  border: 1.5px solid var(--pink-200);
  border-radius: 20px;
  padding: 7px 20px;
  color: var(--pink-500);
  font-size: 0.82rem;
  font-family: var(--font-main);
  cursor: pointer;
  transition: background .2s, color .2s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.lucky-show-more:hover {
  background: var(--pink-light);
}
