/* =========================================
   style.css — World Within
   CONSOLIDATED — single source of truth
   Hero gap fixed. Atmosphere system added.
========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Poppins:wght@300;400;600;700&display=swap');

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

:root {
  --bg:           #030309;
  --text:         #fdf3e4;
  --text-soft:    rgba(253,243,228,0.68);
  --text-dim:     rgba(253,243,228,0.38);
  --gold:         #f7d98b;
  --rose:         #ffb4c8;
  --purple:       #c8b8ff;
  --radius-lg:    30px;
  --radius-xl:    40px;
  --max-width:    1280px;

  /* ── ATMOSPHERE — default (sacred/gold-rose) ── */
  --particle-1: rgba(247,217,139,0.90);
  --particle-2: rgba(255,180,200,0.55);
  --atmo-1: rgba(255,130,200,0.09);
  --atmo-2: rgba(200,184,255,0.07);
  --atmo-3: rgba(247,217,139,0.06);
}

/* =========================================
   ATMOSPHERE THEMES
   Selecting an emotion card sets
   body[data-emotion="..."] via JS.
   This shifts the particle colors and
   the ambient glow — without ever
   washing out the text.
========================================= */

body[data-emotion="calm"] {
  --particle-1: rgba(150,205,255,0.85);
  --particle-2: rgba(190,225,255,0.45);
  --atmo-1: rgba(120,180,255,0.10);
  --atmo-2: rgba(160,210,255,0.07);
  --atmo-3: rgba(200,230,255,0.05);
}

body[data-emotion="electric"] {
  --particle-1: rgba(190,150,255,0.90);
  --particle-2: rgba(220,180,255,0.50);
  --atmo-1: rgba(180,130,255,0.11);
  --atmo-2: rgba(220,160,255,0.08);
  --atmo-3: rgba(150,100,255,0.06);
}

body[data-emotion="dreamy"] {
  --particle-1: rgba(255,160,205,0.88);
  --particle-2: rgba(255,200,225,0.50);
  --atmo-1: rgba(255,140,200,0.10);
  --atmo-2: rgba(255,180,220,0.07);
  --atmo-3: rgba(220,160,255,0.05);
}

body[data-emotion="sacred"] {
  --particle-1: rgba(247,217,139,0.92);
  --particle-2: rgba(255,200,150,0.55);
  --atmo-1: rgba(247,217,139,0.10);
  --atmo-2: rgba(255,200,150,0.07);
  --atmo-3: rgba(255,180,200,0.05);
}

body[data-emotion="grounded"] {
  --particle-1: rgba(200,190,140,0.85);
  --particle-2: rgba(170,210,170,0.45);
  --atmo-1: rgba(180,160,110,0.09);
  --atmo-2: rgba(140,180,140,0.06);
  --atmo-3: rgba(200,180,140,0.05);
}


html {
 /* scroll-behavior: smooth;*/
  /*scroll-snap-type: y mandatory;*/
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* ── Atmospheric glow layers — shift with emotion ── */
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 50% 0%,   var(--atmo-1), transparent 55%),
    radial-gradient(ellipse at 15% 80%,  var(--atmo-2), transparent 50%),
    radial-gradient(ellipse at 85% 60%,  var(--atmo-3), transparent 48%);
  transition: background 1.8s ease;
}

body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
  mix-blend-mode: screen;
}

/* =========================================
   PARTICLES — color follows atmosphere
========================================= */

#particles-container {
  position: fixed; inset: 0;
  z-index: 1; pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: screen;
  background: radial-gradient(
    circle,
    var(--particle-1) 0%,
    var(--particle-2) 45%,
    transparent 100%
  ) !important;
  opacity: 0.75 !important;
  animation: floatUp linear infinite !important;
  transition: background 1.8s ease;
}


@keyframes floatUp {
  0%   { transform: translateY(0) scale(1);    opacity: 0; }
  10%  { opacity: 0.6; }
  80%  { opacity: 0.4; }
  100% { transform: translateY(-100vh) scale(0.6); opacity: 0; }
}

/* =========================================
   LAYOUT
========================================= */

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: auto;
  position: relative;
  z-index: 2;
}



section {
  padding: 50px 0;
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
/*  scroll-snap-align: start;*/
/*  scroll-snap-stop: always;*/
}
/* =========================================
   TYPOGRAPHY
========================================= */

h1,h2,h3,h4 { line-height: 1.1; font-weight: 700; color: var(--text); }

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p {
  color: var(--text-soft);
  line-height: 2.0;
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 300;
}

.serif {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
}

/* =========================================
   HERO TAG
========================================= */

.hero-tag {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(247,217,139,0.08);
  border: 1px solid rgba(247,217,139,0.22);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

/* =========================================
   HERO — single definition, no duplicates
   Text and images grouped close together
========================================= */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0 50px;
  position: relative;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(247,190,220,0.07), transparent 65%);
  pointer-events: none;
}

/* TWO COLUMN on desktop */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 22px;
  width: 100%;
}

/* LEFT — text */
.hero-left {
  position: relative;
  z-index: 3;
  text-align: left;
}

.hero-left h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  color: var(--text);
}

.hero-left h1 span {
  color: var(--rose);
  display: block;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 2.0;
  color: var(--text-soft);
  max-width: 480px;
}

/* RIGHT — image group: large image + logo TOGETHER */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.large-frame {
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 2;
}

.large-frame img,
.main-hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;

  filter:
    drop-shadow(0 0 30px rgba(247,217,139,0.25))
    drop-shadow(0 0 70px rgba(200,184,255,0.18))
    drop-shadow(0 0 120px rgba(255,180,200,0.12));

  animation: breatheImage 7s ease-in-out infinite;
  transition: filter 0.6s ease;
}

.large-frame img:hover,
.main-hero-image:hover {
  filter:
    drop-shadow(0 0 50px rgba(247,217,139,0.45))
    drop-shadow(0 0 100px rgba(200,184,255,0.32))
    drop-shadow(0 0 160px rgba(255,180,200,0.22));
}

/* MEDIUM LOGO — sits right beside/on the large image,
   NOT floating away to a separate corner of the screen */
.medium-frame {
  position: absolute;
  top: -4%;
  right: 2%;
  width: clamp(56px, 11vw, 96px);
  height: auto;
  z-index: 5;
  opacity: 0.94;

  filter:
    drop-shadow(0 0 14px rgba(247,217,139,0.55))
    drop-shadow(0 0 32px rgba(255,160,220,0.38));

  animation: floatMedium 5s ease-in-out infinite;
}

.medium-frame img,
.floating-symbol {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.visual-frame {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  overflow: visible !important;
  padding: 0 !important;
}

/* =========================================
   GLASS CARDS
========================================= */


.glass-card {
  
  background: linear-gradient(160deg,
    rgba(255,255,255,0.13),
    rgba(255,255,255,0.07)
  );
   border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: var(--radius-lg);
  

   box-shadow:
    0 8px 40px rgba(0,0,0,0.70),
    0 1px 0 rgba(255,255,255,0.30) inset,
    0 0 0 1px rgba(255,255,255,0.10);
  padding: clamp(28px, 5vw, 50px);
  transition: transform 0.6s ease, border-color 0.6s ease, box-shadow 0.6s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.28);
  box-shadow:
    0 35px 100px rgba(0,0,0,0.60),
    0 0 50px rgba(180,130,255,0.15) inset,
    0 1px 0 rgba(255,255,255,0.18) inset;
}

/* =========================================
   PROMPT TEXT
========================================= */

.prompt-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 28px;
  color: var(--text);
  text-shadow: 0 0 40px rgba(247,217,139,0.12);
}

/* =========================================
   EMOTION GRID — visible color, persistent
   selection via .selected class
========================================= */

.emotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.emotion-card {
  position: relative;
  min-height: 200px;
  padding: 36px 28px;
  border-radius: var(--radius-lg);

  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  backdrop-filter: blur(16px);
  cursor: pointer;
  overflow: hidden;

  transition:
    transform 0.5s ease,
    background 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}

.emotion-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: var(--card-bg, rgba(247,217,139,0.06));
}

.emotion-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-glow, rgba(247,217,139,0.15)) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.emotion-card:hover,
.emotion-card.selected {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--card-border, rgba(255,255,255,0.18));
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--card-shadow, rgba(247,217,139,0.12));
}

.emotion-card:hover::before,
.emotion-card:hover::after,
.emotion-card.selected::before,
.emotion-card.selected::after { opacity: 1; }

/* Small "selected" checkmark badge */
.emotion-card.selected::after {
  opacity: 1;
}

/* Per-card colors — by data-feel attribute (preferred) or nth-child fallback */
.emotion-card[data-feel="calm"],
.emotion-card[onclick*="calm"],
.emotion-card:nth-child(1) {
  --card-bg:     rgba(120,180,255,0.08);
  --card-glow:   rgba(120,180,255,0.20);
  --card-border: rgba(120,180,255,0.35);
  --card-shadow: rgba(120,180,255,0.18);
}
.emotion-card[data-feel="calm"]:hover,
.emotion-card[onclick*="calm"]:hover,
.emotion-card[data-feel="calm"].selected,
.emotion-card[onclick*="calm"].selected,
.emotion-card:nth-child(1):hover {
  background: rgba(120,180,255,0.10);
}

.emotion-card[data-feel="electric"],
.emotion-card[onclick*="electric"],
.emotion-card:nth-child(2) {

--card-bg:     rgba(100,220,255,0.08);
--card-glow:   rgba(80,200,255,0.28);
--card-border: rgba(100,220,255,0.45);
--card-shadow: rgba(80,200,255,0.25);

}
.emotion-card[data-feel="electric"]:hover,
.emotion-card[onclick*="electric"]:hover,
.emotion-card[data-feel="electric"].selected,
.emotion-card[onclick*="electric"].selected,
.emotion-card:nth-child(2):hover {
  background: rgba(180,130,255,0.12);
}

.emotion-card[data-feel="dreamy"],
.emotion-card[onclick*="dreamy"],
.emotion-card:nth-child(3) {
  --card-bg:     rgba(255,140,200,0.09);
  --card-glow:   rgba(255,140,200,0.22);
  --card-border: rgba(255,140,200,0.38);
  --card-shadow: rgba(255,140,200,0.20);
}
.emotion-card[data-feel="dreamy"]:hover,
.emotion-card[onclick*="dreamy"]:hover,
.emotion-card[data-feel="dreamy"].selected,
.emotion-card[onclick*="dreamy"].selected,
.emotion-card:nth-child(3):hover {
  background: rgba(255,140,200,0.11);
}

.emotion-card[data-feel="sacred"],
.emotion-card[onclick*="sacred"],
.emotion-card:nth-child(4) {
  --card-bg:     rgba(247,217,139,0.09);
  --card-glow:   rgba(247,217,139,0.22);
  --card-border: rgba(247,217,139,0.38);
  --card-shadow: rgba(247,217,139,0.18);
}
.emotion-card[data-feel="sacred"]:hover,
.emotion-card[onclick*="sacred"]:hover,
.emotion-card[data-feel="sacred"].selected,
.emotion-card[onclick*="sacred"].selected,
.emotion-card:nth-child(4):hover {
  background: rgba(247,217,139,0.11);
}

.emotion-card[data-feel="grounded"],
.emotion-card[onclick*="grounded"] {
  --card-bg:     rgba(180,200,140,0.09);
  --card-glow:   rgba(180,200,140,0.22);
  --card-border: rgba(180,200,140,0.38);
  --card-shadow: rgba(180,200,140,0.18);
}
.emotion-card[data-feel="grounded"]:hover,
.emotion-card[onclick*="grounded"]:hover,
.emotion-card[data-feel="grounded"].selected,
.emotion-card[onclick*="grounded"].selected {
  background: rgba(180,200,140,0.11);
}

.emotion-card h3 {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}

.emotion-card p {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  line-height: 1.75;
  color: var(--text-dim);
  position: relative; z-index: 1;
}

/* Small selection badge */
.emotion-card .selected-badge {
  position: absolute;
  top: 16px; right: 16px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--card-border, rgba(247,217,139,0.5));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #0a0612;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
  z-index: 2;
}
.emotion-card.selected .selected-badge {
  opacity: 1;
  transform: scale(1);
}

/* =========================================
   INPUTS
========================================= */

textarea, input[type="text"], input[type="email"], input[type="tel"] {
  width: 100%;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  resize: none;
  outline: none;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

textarea::placeholder, input::placeholder { color: rgba(253,243,228,0.28); }

textarea:focus, input:focus {
  border-color: rgba(247,217,139,0.32);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 0 0 3px rgba(247,217,139,0.08);
}

/* =========================================
   BUTTONS
========================================= */

button, .cta-button {
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.07);
  color: var(--text);
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

button:hover, .cta-button:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 30px rgba(247,217,139,0.12);
}

/* =========================================
   SUPPORTIVE MESSAGE
========================================= */

.supportive-message {
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  color: var(--text-dim);
  animation: floatSoft 6s ease-in-out infinite;
}

/* =========================================
   PROGRESS INDICATOR (experience.html)
========================================= */

.progress-bar {
  position: sticky;
  top: 16px;
  z-index: 50;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 0;
  pointer-events: none;
}

.progress-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: all 0.5s ease;
}

.progress-dot.active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(247,217,139,0.6);
  width: 22px;
  border-radius: 5px;
}

.progress-dot.done {
  background: rgba(247,217,139,0.45);
}

/* =========================================
   FOOTER
========================================= */

footer {
  padding: 70px 0;
  text-align: center;
  border-top: 1px solid rgba(247,217,139,0.05);
}

footer p { font-size: 0.8rem; color: var(--text-dim); letter-spacing: 0.14em; }

/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: rgba(247,217,139,0.16); border-radius: 999px; }
::-webkit-scrollbar-track { background: transparent; }

/* =========================================
   KEYFRAMES
========================================= */

@keyframes breatheImage {
  0%,100% { transform: scale(1);     }
  50%      { transform: scale(1.035); }
}

@keyframes floatMedium {
  0%,100% { transform: translateY(0px);  }
  50%      { transform: translateY(-10px); }
}

@keyframes floatSoft {
  0%,100% { transform: translateY(0px); opacity: 0.75; }
  50%      { transform: translateY(-7px); opacity: 1;  }
}

/* ── SECTION ENTRANCE — each world arrives ── */






@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0);    }
}

.fade-up         { opacity:0; animation: fadeUp 1.2s ease forwards; }
.fade-up.delay-1 { animation-delay: 0.2s; }
.fade-up.delay-2 { animation-delay: 0.5s; }
.fade-up.delay-3 { animation-delay: 0.8s; }



/* =========================================
   MOBILE — single consolidated block
   Text and images close together, no gap
========================================= */

@media (max-width: 860px) {

  
   
   section {
  padding: 50px 0;
  min-height: 100dvh;
 /* scroll-snap-align: start;*/
  justify-content: center;
   }
  /* No forced full-screen height — content
     determines height. This removes the
     "two pages" empty-gap feeling. */
  .hero {
    min-height: auto;
    height: auto;
    padding: 36px 0 30px;
    align-items: flex-start;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 24px;              /* tight — text and image feel together */
    text-align: center;
  }

  .hero-left { text-align: center; }

  .hero-left h1 {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
    letter-spacing: -1px;
    margin-bottom: 18px;
  }

  .hero-left h1 span { display: inline; }

  .hero-description {
    margin: 0 auto;
    max-width: 100%;
    font-size: clamp(0.95rem, 3.4vw, 1.1rem);
    line-height: 1.9;
  }

  .hero-right {
    width: 100%;
    margin-top: 4px;
  }

  .large-frame {
    width: min(320px, 84vw);
    max-width: 100%;
    margin: 0 auto;
  }

  /* Logo sits ON the image group — close together */
  .medium-frame {
    top: -2%;
    right: 4%;
    width: clamp(50px, 13vw, 70px);
  }

  .emotion-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .emotion-card { min-height: 160px; padding: 24px 18px; }

  .progress-bar { top: 10px; }
}

@media (max-width: 480px) {

  .hero-left h1 { font-size: clamp(2.4rem, 13vw, 3.5rem); }

  .emotion-grid { grid-template-columns: 1fr; gap: 12px; }

  .glass-card { padding: 26px 20px; }

  .prompt-text { font-size: clamp(1.5rem, 7vw, 2.2rem); }

  .large-frame { width: min(280px, 88vw); }

  .medium-frame {
    width: clamp(46px, 12vw, 60px);
    top: -2%;
    right: 4%;
  }
  }















/* ===== FLOATING DOOR NAV ===== */
#world-door-nav {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  font-family: 'Poppins', sans-serif;
}

#world-door-toggle {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(247,217,139,0.35);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  background: radial-gradient(circle at 35% 30%, rgba(255,255,255,0.12), rgba(20,10,30,0.55));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 18px rgba(247,217,139,0.35), 0 0 40px rgba(168,85,247,0.18);
  animation: doorPulse 3.5s ease-in-out infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#world-door-toggle:hover,
#world-door-toggle:focus-visible {
  transform: scale(1.08);
  box-shadow: 0 0 26px rgba(247,217,139,0.55), 0 0 60px rgba(168,85,247,0.3);
}

.world-door-icon {
  width: 38px; height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(247,217,139,0.5));
}

@keyframes doorPulse {
  0%, 100% { box-shadow: 0 0 18px rgba(247,217,139,0.35), 0 0 40px rgba(168,85,247,0.18); }
  50%      { box-shadow: 0 0 28px rgba(247,217,139,0.6), 0 0 60px rgba(168,85,247,0.32); }
}

#world-door-panel {
  position: absolute;
  bottom: 78px; right: 0;
  width: 230px;
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(10,6,18,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 50px rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

#world-door-nav.open #world-door-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0) scale(1);
}

.world-door-link {
  display: flex; flex-direction: column;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: rgba(253,243,228,0.85);
  transition: background 0.25s ease, transform 0.25s ease;
}

.world-door-link:hover { background: rgba(255,255,255,0.06); transform: translateX(-4px); }

.world-door-link-title { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; }

.world-door-link-sub {
  font-size: 0.72rem; opacity: 0.55; margin-top: 2px;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
}

.world-door-link-featured {
  border: 1px solid rgba(247,217,139,0.4);
  background: rgba(247,217,139,0.06);
}

.world-door-link-featured .world-door-link-title { color: #f7d98b; }

@media (max-width: 480px) {
  #world-door-nav { bottom: 18px; right: 18px; }
  #world-door-toggle { width: 56px; height: 56px; }
  .world-door-icon { width: 32px; height: 32px; }
  #world-door-panel { width: 200px; bottom: 68px; }
}


.form-status { margin-top: 16px; font-size: 0.9rem; min-height: 1.2em; }
.form-status.success { color: #9ee6b8; }
.form-status.error { color: #f4a3a3; }
