/* ========== BULLETIN BOARD STYLING ========== */

.weekly-obsession {
  background: rgba(112, 108, 108, 0.1);
  border: .1px solid rgb(208, 226, 184);
  padding: 16px;
  margin-top: 24px;
  position: relative;
  box-shadow:
  0 0 50px rgba(255, 140, 90, 0.15),
  inset 0 0 0 1px rgba(255, 200, 170, 0.12);
}

/* Digital cork texture overlay */
.weekly-obsession::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(208, 226, 184, 0.02) 3px, rgba(208, 226, 184, 0.02) 6px),
    repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(208, 226, 184, 0.02) 3px, rgba(208, 226, 184, 0.02) 6px);
  background-size: 120px 120px;
  opacity: 0.6;
  pointer-events: none;
}

.weekly-obsession .right-sidebar-title {
  font-family: 'Jacquard 12', sans-serif;
  font-size: 22px;
  color: rgb(208, 226, 184);
  text-shadow:
    0 0 8px rgba(208, 226, 184, 0.4),
    1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.obsession-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.obsession-item {
  background: rgba(115, 108, 134, 0.25);
  border: .1px solid rgba(208, 226, 184, 0.3);
  padding: 10px 12px;
  border-radius: 2px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(208, 226, 184, 0.05),
    0 0 15px rgba(255, 140, 90, 0.08);
  position: relative;
  font-family: 'DotGothic16', sans-serif;
  font-size: 11px;
  line-height: 1.4;
}

/* Scanline texture overlay */
.obsession-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(208, 226, 184, 0.02) 2px, rgba(208, 226, 184, 0.02) 3px);
  opacity: 0.4;
  pointer-events: none;
  border-radius: 2px;
}

/* Slight rotation variations for each note */
.obsession-item:nth-child(1) {
  transform: rotate(-0.5deg);
}

.obsession-item:nth-child(2) {
  transform: rotate(0.8deg);
}

.obsession-item:nth-child(3) {
  transform: rotate(-0.3deg);
}

.obsession-item:nth-child(4) {
  transform: rotate(0.6deg);
}

/* Neon pushpin styling */
.obsession-item::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: radial-gradient(circle at 30% 30%, #ff4fd8, #d63ba8);
  border-radius: 50%;
  box-shadow:
    0 0 10px rgba(255, 79, 216, 0.7),
    0 0 20px rgba(255, 79, 216, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.5),
    inset -1px -1px 2px rgba(0, 0, 0, 0.3),
    inset 1px 1px 2px rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
  z-index: 10;
}

/* Pushpin shadow on note */
.obsession-item > * {
  position: relative;
}

.obsession-item strong {
  color: rgb(208, 226, 184);
  display: inline;
  font-weight: bold;
  margin-right: 4px;
  text-shadow: 0 0 4px rgba(208, 226, 184, 0.3);
}

.obsession-item span {
  color: rgba(208, 226, 184, 0.85);
}

/* Hover effect for notes */
.obsession-item:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.5),
    inset 0 0 30px rgba(208, 226, 184, 0.08),
    0 0 20px rgba(255, 140, 90, 0.12);
  border-color: rgba(208, 226, 184, 0.5);
  transition: all 0.2s ease;
}
