/* ═══════════════════════════════════════════════════════════
   REALM-SPECIFIC STYLES
   Each realm has its own aura, color, and atmosphere
   ═══════════════════════════════════════════════════════════ */

/* ── DROPS REALM ── */
.drops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
}

.drop-card {
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(240, 230, 211, 0.06);
  background: rgba(5, 2, 8, 0.7);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: all 0.6s var(--ease-out);
}

.drop-card:hover {
  border-color: rgba(240, 230, 211, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.drop-card-featured {
  grid-column: 1 / -1;
}

.drop-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.drop-card-featured .drop-card-image {
  height: 400px;
}

.drop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}

.drop-card:hover .drop-card-image img {
  transform: scale(1.08);
}

.drop-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--void) 100%);
}

.drop-badge-new {
  position: absolute;
  top: 1rem; right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  padding: 0.3rem 0.8rem;
  background: var(--rose);
  color: var(--void);
  z-index: 2;
}

.drop-card-content {
  padding: var(--space-md);
}

.drop-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--realm-primary);
  display: block;
  margin-bottom: var(--space-xs);
}

.drop-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-xs);
}

.drop-tagline {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cream-dim);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.drop-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.tier-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(240, 230, 211, 0.1);
  color: var(--cream-dim);
}

.tier-badge.tier-elite {
  border-color: var(--gold-soft);
  color: var(--gold);
}

.drop-cta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--cream-dim);
  transition: color 0.3s, letter-spacing 0.4s;
}

.drop-card:hover .drop-cta {
  color: var(--cream);
  letter-spacing: 0.4em;
}

/* ── DROP GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.gallery-grid-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(240, 230, 211, 0.05);
  aspect-ratio: 3/4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease-out);
}

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

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem;
  background: linear-gradient(to top, rgba(5, 2, 8, 0.95) 0%, transparent 100%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--cream-dim);
  line-height: 1.8;
}

.gallery-label strong {
  color: var(--cream);
  font-weight: 500;
}

/* ── DROP LORE ── */
.drop-lore {
  text-align: center;
}

.lore-text {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 2;
  color: var(--cream-soft);
  max-width: 700px;
  margin: 0 auto var(--space-md);
}

.lore-text em {
  color: var(--cream);
  font-style: italic;
}

/* ── DOWNLOAD CHAMBER (Tiers) ── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--space-lg);
}

.tier-card {
  position: relative;
  border: 1px solid rgba(240, 230, 211, 0.06);
  background: rgba(10, 5, 15, 0.6);
  backdrop-filter: blur(8px);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
}

.tier-card:hover {
  border-color: rgba(240, 230, 211, 0.15);
  transform: translateY(-4px);
}

.tier-card-mid {
  border-color: rgba(180, 140, 232, 0.1);
}

.tier-card-elite {
  border-color: rgba(201, 168, 76, 0.15);
  background: rgba(201, 168, 76, 0.03);
}

.tier-card-elite:hover {
  border-color: var(--gold);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.1);
}

.tier-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.tier-card-elite .tier-glow {
  background: radial-gradient(ellipse at center bottom, rgba(201, 168, 76, 0.06), transparent);
}

.tier-card-elite:hover .tier-glow { opacity: 1; }

.tier-badge-elite {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.tier-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--cream-dim);
  display: block;
  margin-bottom: var(--space-xs);
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}

.tier-card-elite .tier-price {
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-soft);
}

.tier-includes {
  display: block;
  font-size: 0.75rem;
  color: var(--cream-dim);
  margin-bottom: var(--space-sm);
}

.tier-features {
  list-style: none;
  text-align: left;
  margin-bottom: var(--space-md);
}

.tier-features li {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cream-soft);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(240, 230, 211, 0.04);
  position: relative;
  padding-left: 1.2rem;
}

.tier-features li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--realm-primary);
  opacity: 0.6;
}

.tier-card-elite .tier-features li::before {
  color: var(--gold);
}

.btn-tier {
  width: 100%;
  padding: 0.8rem 1.5rem;
  font-size: 0.7rem;
}

.btn-tier-elite {
  border-color: rgba(201, 168, 76, 0.3);
}

.btn-tier-elite:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 30px var(--gold-soft);
}

/* ── BUNDLE ── */
.bundle-card {
  position: relative;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: rgba(201, 168, 76, 0.02);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}

.bundle-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 80px rgba(201, 168, 76, 0.08);
}

.bundle-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.04), transparent);
  pointer-events: none;
}

.bundle-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.bundle-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.bundle-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.bundle-pricing {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--space-sm);
}

.bundle-original {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  color: var(--cream-dim);
  text-decoration: line-through;
}

.bundle-arrow {
  color: var(--gold);
  font-size: 1.2rem;
}

.bundle-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-soft);
}

.bundle-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cream-dim);
  margin-bottom: var(--space-md);
}

.btn-bundle {
  border-color: rgba(201, 168, 76, 0.3);
  max-width: fit-content;
}

.btn-bundle:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 40px var(--gold-soft);
}

.bundle-image {
  position: relative;
  overflow: hidden;
}

.bundle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}

.bundle-card:hover .bundle-image img {
  transform: scale(1.05);
}

/* ── RELATED SIGNAL ── */
.related-signal {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.signal-preview {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream-soft);
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

/* ── BTC CONNECTION ── */
.btc-connection {
  text-align: center;
  border-top: 1px solid rgba(240, 230, 211, 0.05);
}

.connection-text {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream-soft);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

/* ── BE THE CHANGE REALM ── */
.btc-header {
  min-height: 80vh;
  padding: var(--space-xxl) var(--space-md);
}

.btc-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.3;
  color: var(--cream);
}

.btc-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--cream-dim);
  margin-top: var(--space-lg);
}

.btc-emphasis {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: var(--space-sm);
  text-shadow: 0 0 30px var(--gold-soft);
}

.btc-section {
  padding: var(--space-xl) var(--space-md);
}

.btc-text-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.btc-text-block p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--cream-soft);
  margin-bottom: var(--space-md);
}

.btc-quiet {
  color: var(--cream-dim) !important;
  font-style: italic;
}

.btc-coming {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--cream-dim);
  text-align: center;
  margin-bottom: var(--space-sm);
}

/* Actions Grid */
.actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.action-card {
  border: 1px solid rgba(201, 168, 76, 0.08);
  background: rgba(201, 168, 76, 0.02);
  padding: var(--space-md);
  text-align: center;
  transition: all 0.4s var(--ease-out);
}

.action-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

.action-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.action-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--cream-soft);
  line-height: 1.6;
}

/* Community Wall */
.wall-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: var(--space-md) auto 0;
}

.wall-card {
  border: 1px dashed rgba(240, 230, 211, 0.08);
  padding: var(--space-md);
  text-align: center;
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-style: italic;
  opacity: 0.4;
}

.btc-join {
  text-align: center;
  padding: var(--space-xxl) var(--space-md);
}

.btc-join .btc-text-block {
  text-align: center;
}

/* ── SIGNALS REALM ── */
.signals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
}

.signal-card {
  border: 1px solid rgba(100, 136, 255, 0.08);
  background: rgba(100, 136, 255, 0.02);
  padding: var(--space-lg) var(--space-md);
  cursor: pointer;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.signal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: #6488ff;
  transition: height 0.6s var(--ease-out);
}

.signal-card:hover {
  border-color: rgba(100, 136, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.signal-card:hover::before {
  height: 100%;
}

.signal-id {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: #6488ff;
  display: block;
  margin-bottom: var(--space-xs);
}

.signal-category {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--cream-dim);
  display: block;
  margin-bottom: var(--space-md);
}

.signal-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.signal-excerpt {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: var(--space-md);
}

.signal-cta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: #6488ff;
  opacity: 0.6;
  transition: opacity 0.3s, letter-spacing 0.4s;
}

.signal-card:hover .signal-cta {
  opacity: 1;
  letter-spacing: 0.4em;
}

.signals-note {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cream-dim);
  letter-spacing: 0.2em;
}

/* ── ABOUT REALM ── */
.about-section {
  padding: var(--space-xl) var(--space-md);
}

.about-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.about-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--cream-soft);
  margin-bottom: var(--space-md);
}

.about-text strong {
  color: var(--cream);
  font-weight: 500;
}

.about-text em {
  color: var(--cream);
}

.about-signature {
  text-align: center;
  margin-top: var(--space-lg);
}

.about-signature p {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
}

/* ── RESPONSIVE OVERRIDES ── */
@media (max-width: 900px) {
  .drops-grid { grid-template-columns: 1fr; }
  .drop-card-featured { grid-column: auto; }
  .tiers-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .bundle-card { grid-template-columns: 1fr; }
  .bundle-image { height: 250px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid-2 { grid-template-columns: 1fr; }
  .signals-grid { grid-template-columns: 1fr; }
  .actions-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .wall-placeholder { grid-template-columns: 1fr; }
}
