
@import url('https://fonts.googleapis.com/css2?family=VT323&family=Inter:wght@300;400&display=swap');

body {
  background: hotpink ;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0b1020;
  color: #e6e1d8;
  font-family: 'Inter', sans-serif;
}

/* room */
.room {
  max-width: 820px;
  margin: 12vh auto;
  padding: 1.5rem;
  background: #121b33;
  border: 1px solid #2a355c;
}

/* fairy lights */
.fairylights {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.fairylights span {
  width: 8px;
  height: 8px;
  background: #f2c879;
  border-radius: 50%;
  box-shadow:
    0 0 6px rgba(242,200,121,0.8),
    0 0 12px rgba(242,200,121,0.5);
  animation: twinkle 6s ease-in-out infinite;
}

.fairylights span:nth-child(even) { animation-delay: 2s; }
.fairylights span:nth-child(3n) { animation-delay: 1s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* header */
.bed-header {
  background: #1a2442;
  border: 1px solid #2a355c;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.bed-header h1 {
  font-family: 'VT323', monospace;
  font-size: 3rem;
  color: #f2c879;
}

.bed-header p {
  color: #b8b2a7;
}

/* layout */
.floor {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* boxes */
.box {
  background: #0f1629;
  border: 1px solid #2a355c;
  padding: 1.2rem;
}

.box h2 {
  font-family: 'VT323', monospace;
  color: #f2c879;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

/* memory box */
.memory-box {
  background: #0d1426;
}

.memory-box .subtitle {
  font-style: italic;
  color: #b8b2a7;
  margin-bottom: 0.8rem;
}

.memories {
  list-style: disc;
  padding-left: 1.2rem;
}

.open-box {
  display: inline-block;
  margin-top: 0.8rem;
  color: #b084ff;
  text-decoration: none;
}

/* ===== BRACELET DIVIDER (FINAL, WORKING) ===== */

.bracelet-divider {
  padding: 0;          /* override .box padding */
  border: none;        /* divider shouldn't look like a box */
  background: none;
}

.bracelet-tile {
  height: 40px;
  width: 100%;
  background-image: url("https://placehold.co/600x40/ffcc00/000000");
  background-repeat: repeat-x;
  background-size: auto 100%;
}
