* { box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, Helvetica, "PingFang SC", "Hiragino Sans GB", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  color: #e8eaed;
  background: #0b0f14;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.hero-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: saturate(0.9) brightness(0.7);
}

.overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(5,10,20,0.2) 0%, rgba(5,10,20,0.6) 60%, rgba(5,10,20,0.85) 100%);
  pointer-events: none;
}

.map-wrapper {
  width: min(92vw, 1100px);
  margin: 18px auto 24px auto;
  flex-shrink: 0;
}

.map-toolbar { display: flex; justify-content: flex-end; margin-bottom: 10px; }

.map-card {
  position: relative;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 12px 38px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.18), inset 0 0 0 1px rgba(255,255,255,0.12);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.12) 18%, rgba(255,255,255,0.04) 36%, rgba(255,255,255,0) 50%);
  pointer-events: none;
}

.map-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), inset 0 20px 40px rgba(255,255,255,0.05);
  pointer-events: none;
}

.map-card:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.22), inset 0 0 0 1px rgba(255,255,255,0.14); }

#map {
  width: 100%;
  height: clamp(260px, 42vh, 500px);
}

.market-wrapper { width: min(92vw, 1100px); margin: 18px auto 24px auto; flex-shrink: 0; }
.rewards-wrapper { width: min(92vw, 1100px); margin: 18px auto 24px auto; flex-shrink: 0; }
.about-wrapper { width: min(92vw, 1100px); margin: 18px auto 24px auto; flex-shrink: 0; }
.mechanisms-wrapper { width: min(92vw, 1100px); margin: 18px auto 24px auto; flex-shrink: 0; }
.roadmap-wrapper { width: min(92vw, 1100px); margin: 18px auto 24px auto; flex-shrink: 0; }

/* Full-screen mode - hide other hero content */
.hero.fullscreen-mode .brand-logo,
.hero.fullscreen-mode h1,
.hero.fullscreen-mode .tagline,
.hero.fullscreen-mode .cta {
  display: none;
}

.hero.fullscreen-mode .market-wrapper,
.hero.fullscreen-mode .about-wrapper,
.hero.fullscreen-mode .mechanisms-wrapper,
.hero.fullscreen-mode .roadmap-wrapper {
  width: min(96vw, 1400px);
  margin: 12px auto;
}

.hero.fullscreen-mode .market-scroll {
  max-height: none;
}

.hero.fullscreen-mode .hero-content {
  padding-top: 20px;
}
.roadmap-timeline { position: relative; }
.timeline-steps { list-style: none; padding: 0; margin: 0; }
.timeline-step { position: relative; display: grid; grid-template-columns: 80px 1fr; gap: 12px; padding: 14px 8px; }
.timeline-step + .timeline-step { border-top: 1px dashed rgba(255,255,255,0.18); }
.timeline-node {
  position: relative; width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(12,18,28,0.5), rgba(12,18,28,0.28)) padding-box,
              linear-gradient(135deg, rgba(34,211,238,0.6), rgba(99,102,241,0.6)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.16);
}
.timeline-node span { font-weight: 900; color: #e8eaed; letter-spacing: 0.06em; }
.timeline-content { padding: 8px 8px 8px 0; }
@media (max-width: 720px) { .timeline-step { grid-template-columns: 64px 1fr; } .timeline-node { width: 52px; height: 52px; } }

.roadmap-card {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(12,18,28,0.5), rgba(12,18,28,0.28)) padding-box,
              linear-gradient(135deg, rgba(34,211,238,0.5), rgba(99,102,241,0.5)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.16);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.roadmap-card:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(0,0,0,0.5); }
.roadmap-step {
  position: absolute;
  top: 10px; left: 12px;
  width: 36px; height: 36px; border-radius: 999px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 12px; letter-spacing: 0.06em;
  color: #0b1020;
  background: linear-gradient(135deg, #22d3ee 0%, #6366f1 100%);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}
.roadmap-body { padding: 16px; }
.roadmap-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 6px; }
.badge-status { padding: 4px 8px; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; }
.badge-status.progress { background: rgba(250,204,21,0.25); color: #facc15; border: 1px solid rgba(250,204,21,0.55); }
.badge-status.planned { background: rgba(147,197,253,0.25); color: #93c5fd; border: 1px solid rgba(147,197,253,0.55); }
.roadmap-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; font-size: 12px; color: #c9d1d9; }
.rm-date { opacity: 0.95; }
.rm-tags { opacity: 0.85; }
.mechanisms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  counter-reset: mech;
}
.mechanism-card {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(12,18,28,0.5), rgba(12,18,28,0.28)) padding-box,
              linear-gradient(135deg, rgba(34,211,238,0.6), rgba(99,102,241,0.6)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 14px 36px rgba(0,0,0,0.48), inset 0 1px 0 rgba(255,255,255,0.18);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  counter-increment: mech;
}
.mechanism-card:hover { transform: translateY(-2px); box-shadow: 0 22px 56px rgba(0,0,0,0.56); }
.mechanism-body { padding: 16px; }
.mechanism-icon { position: relative; width: 40px; height: 40px; border-radius: 12px; display: inline-grid; place-items: center; margin-bottom: 10px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); box-shadow: inset 0 1px 0 rgba(255,255,255,0.25); }
.mechanism-icon::after { content: ''; position: absolute; inset: -3px; border-radius: inherit; background: linear-gradient(135deg, #22d3ee, #6366f1); filter: blur(8px); opacity: 0.55; z-index: -1; }

/* Number badge */
.mechanism-card::before {
  content: counter(mech, decimal-leading-zero);
  position: absolute;
  top: 10px; left: 12px;
  font-weight: 800; font-size: 12px; letter-spacing: 0.06em;
  color: #0b1020;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22d3ee 0%, #6366f1 100%);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

/* Animated sheen */
.mechanism-card::after {
  content: '';
  position: absolute; inset: -1px;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-120%);
  animation: mechSheen 3.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mechSheen {
  0% { transform: translateX(-120%); }
  55% { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

/* Title size tweak for mechanisms */
.mechanism-card .market-title { font-size: 18px; }
.mechanism-card .market-meta { opacity: 0.92; }

@media (max-width: 960px) { .mechanisms-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .mechanisms-grid { grid-template-columns: 1fr; } }
.about-intro {
  margin: 0 12px 12px 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #d8dee9;
  font-size: 14px;
  line-height: 1.6;
}
.market-head { text-align: center; margin-bottom: 12px; }
.market-title-hero { 
  margin: 0; 
  font-size: clamp(24px, 3.5vw, 32px); 
  font-weight: 700;
  background: linear-gradient(135deg, #22d3ee 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}
.market-subtitle { 
  margin: 8px 0 14px 0; 
  padding: 8px 16px;
  display: inline-block;
  background: linear-gradient(135deg, 
    rgba(34, 211, 238, 0.12) 0%, 
    rgba(99, 102, 241, 0.12) 100%);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 8px;
  color: #94a3b8; 
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(34, 211, 238, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Main VR Tour Button in Market Header */
.vr-tour-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  margin: 14px auto 0 auto;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(236,72,153,0.85), rgba(168,85,247,0.85));
  border: 1px solid rgba(236,72,153,0.6);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(236,72,153,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.vr-tour-btn-main::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}
.vr-tour-btn-main:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(236,72,153,0.95), rgba(168,85,247,0.95));
  box-shadow: 0 12px 32px rgba(236,72,153,0.45), inset 0 1px 0 rgba(255,255,255,0.4);
}
.vr-tour-btn-main:hover::before {
  left: 100%;
}
.vr-tour-btn-main:active {
  transform: translateY(0);
}
.vr-tour-btn-main svg {
  flex-shrink: 0;
}
.market-card-surface {
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.16);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  overflow: hidden;
}
.market-scroll { overflow: visible; padding: 12px; }
.market-scroll::-webkit-scrollbar { width: 10px; }
.market-scroll::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.06);
  border-left: 1px solid rgba(255,255,255,0.12);
}
.market-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(34,211,238,0.6), rgba(99,102,241,0.6));
  border: 2px solid rgba(0,0,0,0.25);
  border-radius: 10px;
}
.market-scroll { scrollbar-width: thin; scrollbar-color: rgba(99,102,241,0.7) rgba(255,255,255,0.06); }
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.market-card {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 14px 36px rgba(0,0,0,0.48), inset 0 1px 0 rgba(255,255,255,0.16);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.market-card:hover { 
  transform: translateY(-4px); 
  box-shadow: 0 24px 56px rgba(0,0,0,0.58), 0 0 0 1px rgba(34,211,238,0.3);
  border-color: rgba(34,211,238,0.4);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
}
.market-media { position: relative; width: 100%; height: 160px; overflow: hidden; }
.market-media img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
  filter: saturate(105%);
  transition: opacity 0.3s ease;
}

/* Photo Gallery Carousel */
.property-gallery { position: relative; width: 100%; height: 100%; }
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.market-card:hover .gallery-nav {
  opacity: 1;
}
.gallery-nav:hover {
  background: rgba(34, 211, 238, 0.8);
  border-color: rgba(34, 211, 238, 1);
  transform: translateY(-50%) scale(1.1);
}
.gallery-prev {
  left: 8px;
}
.gallery-next {
  right: 8px;
}
.gallery-indicator {
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.market-body { padding: 16px; position: relative; }
.market-body::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
}
/* Property Header with Rating */
.property-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.market-title { 
  font-weight: 700; 
  margin: 0; 
  font-size: 16px; 
  line-height: 1.4; 
  flex: 1;
}
.property-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}
.rating-stars {
  color: #fbbf24;
  font-size: 14px;
}
.rating-value {
  font-weight: 700;
  color: #f1f5f9;
}
.rating-reviews {
  color: #94a3b8;
  font-size: 12px;
}

.market-meta { color: #c9d1d9; font-size: 13px; margin-bottom: 14px; line-height: 1.5; opacity: 0.95; }

/* Property Info Section (Insurance & Tax) */
.property-info-section {
  margin: 12px 0;
  padding: 10px 12px;
  background: linear-gradient(135deg, 
    rgba(34, 211, 238, 0.05) 0%, 
    rgba(99, 102, 241, 0.05) 100%);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-item-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.4;
}
.info-item-row svg {
  flex-shrink: 0;
  color: #22d3ee;
}
.info-item-row span {
  flex: 1;
}

/* Stats grid layout */
.market-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
  padding: 10px;
  background: rgba(0,0,0,0.15);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 6px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  transition: background 0.2s ease;
}
.stat-item:hover {
  background: rgba(255,255,255,0.06);
}
.stat-label {
  font-size: 11px;
  color: #9aa4af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-align: center;
}

/* Limits row */
.market-limits {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.market-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.market-row.stack { flex-direction: column; align-items: flex-start; gap: 4px; }
.market-hash { 
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; 
  font-size: 11px; 
  color: #9aa4af; 
  white-space: nowrap; 
  overflow: hidden; 
  text-overflow: ellipsis; 
  margin-top: 0; 
  margin-bottom: 4px;
  background: rgba(0,0,0,0.20); 
  padding: 7px 12px; 
  border-radius: 8px; 
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.25);
  width: 100%;
  text-align: center;
}
.location-btn {
  width: 100%;
  padding: 10px 14px;
  margin: 8px 0;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(139,92,246,0.25), rgba(99,102,241,0.20));
  border: 1px solid rgba(139,92,246,0.5);
  color: #c4b5fd;
  box-shadow: 0 4px 12px rgba(139,92,246,0.15), inset 0 1px 0 rgba(255,255,255,0.15);
}
.location-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(139,92,246,0.35), rgba(99,102,241,0.28));
  box-shadow: 0 6px 18px rgba(139,92,246,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  border-color: rgba(139,92,246,0.65);
}
.location-btn svg {
  flex-shrink: 0;
}
.market-cta { margin-top: 14px; display: flex; }
.market-cta .btn { width: 100%; pointer-events: auto; opacity: 1; }
.badge { 
  padding: 6px 12px; 
  border-radius: 10px; 
  font-size: 12px; 
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, rgba(34,211,238,0.25), rgba(34,211,238,0.15));
  color: #22d3ee; 
  border: 1px solid rgba(34,211,238,0.5);
  box-shadow: 0 4px 12px rgba(34,211,238,0.15), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.badge::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}
.price { font-weight: 800; color: #e8eaed; }
.cap { 
  font-weight: 700; 
  color: #c4b5fd; 
  font-size: 12px; 
  background: linear-gradient(135deg, rgba(99,102,241,0.25), rgba(99,102,241,0.15));
  border: 1px solid rgba(99,102,241,0.5);
  border-radius: 10px; 
  padding: 6px 12px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(99,102,241,0.15), inset 0 1px 0 rgba(255,255,255,0.15);
}
.market-value { 
  padding: 10px 12px; 
  border-radius: 10px; 
  font-size: 16px; 
  font-weight: 900; 
  letter-spacing: 0.01em; 
  background: linear-gradient(135deg, rgba(16,185,129,0.35), rgba(5,150,105,0.25));
  color: #86efac; 
  border: 1px solid rgba(16,185,129,0.55);
  box-shadow: 0 6px 18px rgba(16,185,129,0.25), inset 0 1px 1px rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  width: 100%;
}
.market-value::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.market-value::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.market-rate { 
  padding: 10px 12px; 
  border-radius: 10px; 
  font-size: 16px; 
  font-weight: 900; 
  letter-spacing: 0.01em; 
  background: linear-gradient(135deg, rgba(250,204,21,0.35), rgba(245,158,11,0.25));
  color: #fde68a; 
  border: 1px solid rgba(250,204,21,0.55);
  box-shadow: 0 6px 18px rgba(250,204,21,0.25), inset 0 1px 1px rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  width: 100%;
}
.market-rate::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.market-rate::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.progress { margin-top: 12px; margin-bottom: 12px; }
.progress-track { 
  position: relative; 
  width: 100%; 
  height: 10px; 
  border-radius: 999px; 
  background: rgba(0,0,0,0.25); 
  border: 1px solid rgba(255,255,255,0.15); 
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}
.progress-fill { 
  position: absolute; 
  left: 0; 
  top: 0; 
  bottom: 0; 
  background: linear-gradient(90deg, #22d3ee 0%, #6366f1 100%);
  box-shadow: 0 0 16px rgba(99,102,241,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
  border-radius: 999px;
}
.progress-fill::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  animation: progressShine 2s ease-in-out infinite;
}
@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.progress-text { 
  margin-top: 8px; 
  font-size: 12px; 
  color: #c9d1d9; 
  font-weight: 600;
  text-align: center;
}
.about-icon { width: 32px; height: 32px; border-radius: 8px; display: inline-grid; place-items: center; margin-bottom: 6px; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20); box-shadow: inset 0 1px 0 rgba(255,255,255,0.16); }

/* Upcoming card hint */
.market-card.upcoming .market-media::after {
  content: 'UPCOMING';
  position: absolute;
  right: 8px; top: 8px;
  padding: 4px 8px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.06em;
  color: #0b1020;
  background: linear-gradient(135deg, #22d3ee 0%, #6366f1 100%);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}
.market-note { margin-top: 8px; font-size: 12px; color: #c9d1d9; opacity: 0.9; }

@media (max-width: 960px) { .market-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .market-grid { grid-template-columns: 1fr; } }

/* Keep market container height in sync with map */
@media (max-width: 560px) {
  .market-scroll { overflow: visible; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 40px;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo {
  width: clamp(64px, 10vw, 120px);
  height: auto;
  display: inline-block;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
  flex-shrink: 0;
}

.hero-content h1 {
  margin: 0 0 12px 0;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.section-nav {
  display: inline-flex;
  gap: 10px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.18), inset 0 0 0 1px rgba(255,255,255,0.10);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.section-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.1) 22%, rgba(255,255,255,0.04) 44%, rgba(255,255,255,0) 60%);
  pointer-events: none;
}

.section-link {
  padding: 8px 12px;
  border-radius: 10px;
  color: #e8eaed;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.section-link:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }
.section-link:focus { outline: 2px solid #22d3ee; outline-offset: 2px; }
.section-link.current { background: rgba(255,255,255,0.24); color: #0b1020; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22); }

/* Dark mode tuning for glass components */
body.dark .section-nav { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.20); }
body.dark .map-card { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.20); }

/* Wallet bar */
.wallet-bar { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 10px auto 8px auto; flex-shrink: 0; }
.btn.wallet {
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(34,211,238,0.9), rgba(99,102,241,0.9)) padding-box,
              linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.15)) border-box;
  border: 1px solid transparent;
  color: #0b1020; font-weight: 800; letter-spacing: 0.02em;
  box-shadow: 0 12px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn.wallet:hover { transform: translateY(-1px); }
.btn.wallet:active { transform: translateY(0); }
.wallet-info { align-items: center; gap: 14px; padding: 12px 16px; border-radius: 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); box-shadow: inset 0 1px 0 rgba(255,255,255,0.12); }
.wallet-info[hidden] { display: none !important; }
.wallet-info:not([hidden]) { display: inline-flex; }
.wallet-info .addr { font-family: ui-monospace, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 14px; color: #c9d1d9; }
.token-row { display: inline-flex; align-items: center; gap: 8px; padding-left: 10px; border-left: 1px solid rgba(255,255,255,0.14); }
/* hide token row by default; shown after connect */
.wallet-info .token-row { display: none; }
.token-icon { width: 20px; height: 20px; border-radius: 6px; }
.token-name { font-size: 13px; color: #e8eaed; }
.token-balance { font-size: 13px; color: #c9d1d9; font-weight: 700; }

/* Responsive tuning */
@media (max-width: 768px) {
  .hero-content h1 { font-size: clamp(36px, 8vw, 56px); }
  .hero-content p { font-size: 15px; }
}

@media (max-width: 560px) {
  .map-wrapper { width: min(96vw, 1100px); margin: 12px auto 14px auto; }
  #map { height: clamp(200px, 36vh, 360px); }
  .map-toolbar { justify-content: center; }

  .section-nav {
    max-width: 96vw;
    margin-left: auto; margin-right: auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    white-space: nowrap;
    gap: 8px;
    padding: 6px;
  }
  .section-nav::-webkit-scrollbar { display: none; }
  .section-nav { scrollbar-width: none; }
  .section-link { flex: 0 0 auto; padding: 10px 12px; font-size: 14px; }
}

.hero-content p {
  margin: 0 0 24px 0;
  font-size: clamp(16px, 2vw, 20px);
  color: #c9d1d9;
}

.tagline {
  font-weight: 700;
  letter-spacing: 0.015em;
  background: linear-gradient(90deg, #e5f4ff, #22d3ee 30%, #6366f1 70%, #e5f4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(99,102,241,0.35);
  animation: taglineSheen 6s ease-in-out infinite;
  margin: 0;
  flex-shrink: 0;
}

@keyframes taglineSheen {
  0% { filter: drop-shadow(0 0 0 rgba(99,102,241,0)); opacity: 0.95; }
  50% { filter: drop-shadow(0 0 10px rgba(99,102,241,0.45)); opacity: 1; }
  100% { filter: drop-shadow(0 0 0 rgba(99,102,241,0)); opacity: 0.95; }
}

.cta {
  display: inline-flex;
  gap: 12px;
  margin: 20px 0;
  flex-shrink: 0;
}

/* Social icon buttons flanking Whitepaper */
.cta .icon-link {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: #e8eaed;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.16);
  transition: transform 0.2s ease, background 0.2s ease;
}
.cta .icon-link:hover { background: rgba(255,255,255,0.16); transform: translateY(-1px); }
.cta .icon-link svg { width: 20px; height: 20px; display: block; }

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #22d3ee 0%, #6366f1 100%);
  color: #0b1020;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(99,102,241,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.btn.primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.btn.primary:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 12px 32px rgba(99,102,241,0.45), inset 0 1px 0 rgba(255,255,255,0.4);
}

.btn.primary:hover::before {
  left: 100%;
}

.btn.primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(99,102,241,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn.ghost {
  background: rgba(255,255,255,0.08);
  color: #e8eaed;
  border: 1px solid rgba(255,255,255,0.12);
}

.btn.ghost:hover { background: rgba(255,255,255,0.14); }

/* Leaflet overrides for dark theme harmony */
.leaflet-tile, .leaflet-pane, .leaflet-control-container { filter: none; }
.leaflet-control-zoom a {
  background: rgba(0,0,0,0.55);
  color: #e8eaed;
  border: 1px solid rgba(255,255,255,0.12);
}
.leaflet-control-zoom a:hover { background: rgba(0,0,0,0.7); }

/* Screen-reader-only utility */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}


/* Custom Leaflet Marker Styles */
.leaflet-marker-icon {
  filter: drop-shadow(0 4px 12px rgba(34,211,238,0.45));
  transition: transform 0.2s ease;
}
.leaflet-marker-icon:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 6px 16px rgba(34,211,238,0.65));
}
.leaflet-popup-content-wrapper {
  background: rgba(11,15,20,0.95);
  color: #e8eaed;
  border-radius: 12px;
  border: 1px solid rgba(34,211,238,0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
}
.leaflet-popup-content {
  margin: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
}
.leaflet-popup-tip {
  background: rgba(11,15,20,0.95);
  border: 1px solid rgba(34,211,238,0.35);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}
.leaflet-popup-close-button {
  color: #c9d1d9 !important;
  font-size: 24px !important;
  padding: 4px 8px !important;
}
.leaflet-popup-close-button:hover {
  color: #22d3ee !important;
}

/* Dark tiles hint when dark mode is active */
body.dark .hero-video { filter: saturate(0.9) brightness(0.55); }
body.dark .map-card { background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); border-color: rgba(255,255,255,0.14); }

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .hero-video { filter: saturate(0.9) brightness(0.75); }
}

/* Modal (in-page) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: grid;
  place-items: center;
  z-index: 50;
}
.modal-overlay[hidden] { display: none !important; }
.modal-card {
  width: min(92vw, 420px);
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.20);
  box-shadow: 0 18px 48px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.16);
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
}
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.modal-title { margin: 0; font-size: 18px; }
.modal-close { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #e8eaed; border-radius: 8px; width: 32px; height: 32px; cursor: pointer; }
.modal-close:hover { background: rgba(255,255,255,0.14); }
.modal-body { padding: 14px 16px; }
.field label { display: block; font-size: 13px; color: #c9d1d9; margin-bottom: 6px; }
.input { width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: #e8eaed; }
.input:focus { outline: 2px solid #22d3ee; outline-offset: 2px; }
.helper { font-size: 12px; color: #9aa4af; margin-top: 6px; }
.error { font-size: 12px; color: #fca5a5; margin-top: 6px; min-height: 16px; }
.success { font-size: 14px; color: #a7f3d0; }
.success-hero { display: grid; justify-items: center; gap: 10px; padding: 8px 0 4px 0; }
.success-logo { width: 64px; height: 64px; border-radius: 16px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 8px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.18); }
.success-headline { font-size: 18px; font-weight: 900; letter-spacing: 0.02em; color: #e8eaed; }
.success-detail { font-size: 14px; color: #c9d1d9; text-align: center; }
.quick-actions { display: flex; gap: 8px; margin: 8px 0 6px 0; }
.btn.small { padding: 6px 10px; font-size: 12px; }
.modal-actions { display: flex; gap: 10px; padding: 0 16px 16px 16px; }
#warnModal .modal-actions { justify-content: center; }
#currencyModal .modal-actions { justify-content: center; }
#successModal .modal-actions { justify-content: center; }
.processing-card { width: min(88vw, 360px); }
.processing-block { display: grid; justify-items: center; gap: 12px; padding: 24px 16px; }
.spinner { width: 36px; height: 36px; border-radius: 999px; border: 3px solid rgba(255,255,255,0.18); border-top-color: #22d3ee; animation: spin 0.9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.processing-text { font-size: 14px; color: #c9d1d9; }
.success-meta { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.12); }
.meta-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 12px; color: #c9d1d9; }
.meta-label { opacity: 0.9; }
.meta-value.ok { color: #86efac; font-weight: 800; }
.hash-badge { font-family: ui-monospace, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 12px; color: #9aa4af; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); padding: 4px 8px; border-radius: 8px; }
/* Portfolio-specific media adjustments */
.hero[aria-label="Shorai portfolio"] .market-media { height: 180px; }
.hero[aria-label="Shorai portfolio"] .market-media img { object-fit: contain; background: rgba(0,0,0,0.18); }
/* Enlarge portfolio assets container */
.hero[aria-label="Shorai portfolio"] .market-wrapper { width: min(96vw, 1240px); }
.hero[aria-label="Shorai portfolio"] .market-scroll { max-height: clamp(360px, 56vh, 720px); }
/* Summary cards */
.summary-row { width: min(92vw, 1100px); margin: 8px auto 12px auto; display: grid; grid-template-columns: repeat(2, minmax(260px, 340px)); justify-content: center; gap: 12px; }
.summary-card { border-radius: 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.20); box-shadow: 0 12px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.16); backdrop-filter: blur(16px) saturate(120%); -webkit-backdrop-filter: blur(16px) saturate(120%); padding: 14px; }
.summary-title { color: #c9d1d9; font-size: 13px; margin-bottom: 6px; text-align: center; }
.summary-value { font-size: 22px; font-weight: 900; letter-spacing: 0.02em; text-align: center; color: #e8eaed; }
@media (max-width: 560px) { .summary-row { grid-template-columns: 1fr; } }

/* Warning content */
.warn-row { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; }
.warn-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: inline-grid; place-items: center; font-weight: 900;
  color: #0b1020; background: linear-gradient(135deg, #fde68a, #facc15);
  box-shadow: 0 8px 20px rgba(250,204,21,0.25), inset 0 1px 0 rgba(255,255,255,0.3);
}
.warn-text { color: #fde68a; font-weight: 700; }
/* Currency select */
.currency-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.currency-item {
  display: grid; grid-template-rows: 56px auto; align-items: center; justify-items: center;
  padding: 12px; border-radius: 12px; cursor: pointer;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #e8eaed;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.16);
}
.currency-item:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }
.currency-item img { width: 56px; height: 56px; object-fit: contain; border-radius: 12px; background: rgba(0,0,0,0.2); }
.currency-name { margin-top: 8px; font-weight: 800; letter-spacing: 0.02em; }

/* Location Map Modal */
.location-modal-card {
  width: min(92vw, 700px);
  max-height: 90vh;
}
.location-address {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 12px;
  background: rgba(139,92,246,0.15);
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: 10px;
  color: #c4b5fd;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}
.location-address::before {
  content: '📍';
  font-size: 18px;
  flex-shrink: 0;
}
.location-map {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
@media (max-width: 560px) {
  .location-map {
    height: 300px;
  }
}

/* Rewards Page Styles */
.rewards-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.rewards-announcement {
  text-align: center;
  padding: 24px 20px;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.7) 0%, 
    rgba(30, 41, 59, 0.6) 100%);
  border: 1px solid rgba(100, 116, 139, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rewards-announcement h3 {
  margin: 0 0 10px 0;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  background: linear-gradient(135deg, #22d3ee 0%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.rewards-announcement p {
  margin: 0;
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
}

.rewards-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.benefit-card {
  position: relative;
  padding: 24px;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.6) 0%, 
    rgba(15, 23, 42, 0.4) 100%);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(34, 211, 238, 0.6) 50%, 
    transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 12px 40px rgba(34, 211, 238, 0.18),
              0 0 0 1px rgba(34, 211, 238, 0.12),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.benefit-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, 
    rgba(34, 211, 238, 0.15) 0%, 
    rgba(99, 102, 241, 0.15) 100%);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 10px;
  color: #22d3ee;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon-wrapper {
  background: linear-gradient(135deg, 
    rgba(34, 211, 238, 0.25) 0%, 
    rgba(99, 102, 241, 0.25) 100%);
  border-color: rgba(34, 211, 238, 0.4);
  transform: scale(1.05);
}

.benefit-badge {
  padding: 6px 14px;
  background: linear-gradient(135deg, #22d3ee 0%, #6366f1 100%);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
}

.benefit-title {
  font-size: 18px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.benefit-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

.benefit-desc strong {
  color: #22d3ee;
  font-weight: 600;
}

.rewards-mechanism {
  padding: 24px;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.5) 0%, 
    rgba(15, 23, 42, 0.3) 100%);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.rewards-mechanism h3 {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 600;
  color: #f1f5f9;
  text-align: center;
  letter-spacing: -0.02em;
}

.mechanism-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.step-card {
  position: relative;
  padding: 20px;
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.08) 0%, 
    rgba(99, 102, 241, 0.04) 100%);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #6366f1 0%, #22d3ee 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.15) 0%, 
    rgba(99, 102, 241, 0.08) 100%);
  border-color: rgba(99, 102, 241, 0.35);
  transform: translateX(4px);
}

.step-card:hover::before {
  opacity: 1;
}

.step-number {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, 
    rgba(99, 102, 241, 0.2) 0%, 
    rgba(34, 211, 238, 0.2) 100%);
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #a5b4fc;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step-detail {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
}

.step-detail .highlight {
  color: #22d3ee;
  font-weight: 600;
}

.rewards-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: linear-gradient(135deg, 
    rgba(34, 211, 238, 0.06) 0%, 
    rgba(99, 102, 241, 0.06) 100%);
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-message {
  font-size: 15px;
  color: #94a3b8;
  text-align: center;
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}

.rewards-cta-btn {
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .rewards-content {
    padding: 16px;
    gap: 24px;
  }
  
  .rewards-announcement {
    padding: 20px 16px;
  }
  
  .rewards-announcement h3 {
    font-size: 20px;
  }
  
  .rewards-benefits {
    grid-template-columns: 1fr;
  }
  
  .benefit-card {
    padding: 20px;
  }
  
  .rewards-mechanism {
    padding: 20px 16px;
  }
  
  .rewards-mechanism h3 {
    font-size: 18px;
  }
  
  .mechanism-steps {
    grid-template-columns: 1fr;
  }
  
  .rewards-footer {
    padding: 20px 16px;
  }
}

/* 360° VR Tour Modal */
.vr-modal-card {
  width: min(95vw, 1000px);
  max-height: 95vh;
}
.vr-modal-body {
  padding: 16px !important;
}
.vr-tour-info {
  margin-bottom: 12px;
  text-align: center;
}
.vr-hint {
  display: inline-block;
  padding: 8px 14px;
  background: linear-gradient(135deg, rgba(236,72,153,0.25), rgba(168,85,247,0.20));
  border: 1px solid rgba(236,72,153,0.4);
  border-radius: 10px;
  color: #fbb6ce;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(236,72,153,0.15), inset 0 1px 0 rgba(255,255,255,0.12);
}
.vr-tour-container {
  width: 100%;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.3);
  position: relative;
}
/* Pannellum styles override */
.vr-tour-container .pnlm-container {
  border-radius: 12px;
}
.vr-tour-container .pnlm-load-box {
  background: rgba(11,15,20,0.95);
  color: #c9d1d9;
}
.vr-tour-container .pnlm-load-box p {
  color: #c9d1d9;
}
.vr-tour-container .pnlm-controls {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
}
.vr-tour-container .pnlm-zoom-controls {
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border-radius: 8px;
}
.vr-tour-container .pnlm-fullscreen-toggle-button,
.vr-tour-container .pnlm-zoom-in,
.vr-tour-container .pnlm-zoom-out {
  background: rgba(236,72,153,0.2);
  border: 1px solid rgba(236,72,153,0.4);
}
.vr-tour-container .pnlm-fullscreen-toggle-button:hover,
.vr-tour-container .pnlm-zoom-in:hover,
.vr-tour-container .pnlm-zoom-out:hover {
  background: rgba(236,72,153,0.4);
}
@media (max-width: 768px) {
  .vr-tour-container {
    height: 450px;
  }
}
@media (max-width: 560px) {
  .vr-tour-container {
    height: 350px;
  }
  .vr-hint {
    font-size: 11px;
    padding: 6px 10px;
  }
}

/* Footer Styles */
.site-footer {
  margin-top: 80px;
  padding: 60px 40px 40px;
  width: 100%;
  background: linear-gradient(180deg, 
    rgba(15, 23, 42, 0.6) 0%, 
    rgba(15, 23, 42, 0.8) 50%,
    rgba(15, 23, 42, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  display: inline-block;
}

.footer-links li a:hover {
  color: #22d3ee;
  transform: translateX(4px);
}

.footer-social-icons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  margin-bottom: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(34, 211, 238, 0.15);
  border-color: rgba(34, 211, 238, 0.4);
  color: #22d3ee;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 211, 238, 0.2);
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.footer-brand {
  text-align: center;
  padding-top: 20px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 10px 0;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 600px;
  margin: 12px auto 0;
  line-height: 1.6;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 40px 20px 30px;
    margin-top: 60px;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-social-icons {
    padding: 25px 0;
    margin-bottom: 25px;
  }
  
  .footer-logo {
    width: 40px;
    height: 40px;
  }
  
  .footer-copyright {
    font-size: 13px;
  }
  
  .footer-disclaimer {
    font-size: 10px;
    padding: 0 10px;
  }
}

