/* HABBO PULSE — Full Habbo Fansite Portal Design System */

:root {
  --habbo-blue: #0b1d48;
  --habbo-blue-dark: #050e26;
  --habbo-card: #0e2456;
  --habbo-card-border: #234380;
  --cyan: #00e5ff;
  --amber: #ffc107;
  --coral: #ff3b5c;
  --green: #00e676;
  --purple: #7c4dff;
  --text-main: #ffffff;
  --text-muted: #95a9d0;
  --text-dark: #121c33;
}

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

html {
  scroll-behavior: smooth;
}

body.habbo-fansite-portal {
  background-color: var(--habbo-blue-dark);
  background-image: url('assets/rooftop.png?v=20260802-2');
  background-image: image-set(
    url('assets/rooftop.webp?v=20260802-2') type('image/webp'),
    url('assets/rooftop.png?v=20260802-2') type('image/png')
  );
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body.habbo-fansite-portal::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 14, 38, 0.76) 0%, rgba(11, 29, 72, 0.88) 100%);
  pointer-events: none;
  z-index: -1;
}

/* LAYOUT 2: DASHBOARD & 3-COL GRID */
.master-dashboard-box {
  background: var(--habbo-card);
  border: 1px solid var(--habbo-card-border);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.dash-grid-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr;
  gap: 24px;
}

.portal-3col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

/* LAYOUT 4: SPLIT DUAL-STUDIO DECK */
.split-deck-container {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  max-width: 1400px;
  margin: 20px auto;
  padding: 0 24px;
}

.left-studio-deck {
  position: sticky;
  top: 20px;
  height: calc(100vh - 40px);
  overflow-y: auto;
}

.deck-brand h1 { font-size: 24px; color: #fff; }
.deck-brand small { font: 7px 'Silkscreen', monospace; color: var(--amber); display: block; margin-bottom: 16px; }

/* TOP ANNOUNCEMENT TICKER */
.top-ticker-bar {
  background: #030816;
  border-bottom: 1px solid #1a3363;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}

.ticker-badge {
  font: 7px 'Silkscreen', monospace;
  background: var(--coral);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 59, 92, 0.4);
}

.ticker-text b { color: #fff; }
.ticker-text i { color: var(--amber); font-style: normal; }

.ticker-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.online-users {
  color: var(--green);
  font-weight: 600;
}

.join-room-btn {
  background: var(--amber);
  color: #000;
  border: 0;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 2px 2px 0px #b38600;
}

.join-room-btn:hover {
  background: #ffcd38;
}

/* PORTAL HEADER */
.portal-header {
  background: rgba(11, 29, 72, 0.92);
  border-bottom: 1px solid var(--habbo-card-border);
  backdrop-filter: blur(12px);
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.portal-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(145deg,#102756,#07142f);
  border: 2px solid #214979;
  box-shadow: inset -3px -3px #040d24, 4px 4px 0px #020716;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.brand-icon img { display:block; width:40px; height:40px; object-fit:contain; object-position:center; image-rendering:pixelated; }

.brand-text h1 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.brand-text h1 b { color: var(--cyan); }

.brand-text small {
  font: 7px 'Silkscreen', monospace;
  color: var(--amber);
  display: block;
  margin-top: 4px;
}

/* NAV LINKS */
.portal-nav {
  display: flex;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(89, 131, 201, 0.28);
  border-radius: 10px;
  background: rgba(3, 10, 27, 0.38);
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 11px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(0, 229, 255, 0.15);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.user-action-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.listener-counter-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 14, 38, 0.8);
  border: 1px solid var(--habbo-card-border);
  padding: 6px 14px;
  border-radius: 20px;
}

.red-pulse {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--coral);
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot { 50% { opacity: 0.4; } }

.counter-num {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.listener-counter-pill small {
  font: 7px 'Silkscreen', monospace;
  color: var(--cyan);
}

.login-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid var(--habbo-card-border);
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.login-btn:hover {
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.15);
}

/* LOGGED IN USER PILL */
.logged-in-user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(5, 14, 38, 0.85);
  border: 1px solid var(--amber);
  padding: 4px 12px 4px 6px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(255, 193, 7, 0.2);
}

.user-avatar-head {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #142854;
  border: 1px solid var(--amber);
  overflow: hidden;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.user-avatar-head img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  object-position: center;
  transform: none;
  image-rendering: pixelated;
}

.user-meta-info {
  display: flex;
  flex-direction: column;
}

.user-name-title {
  font-size: 13px;
  color: #fff;
  line-height: 1.1;
}

.user-role-badge {
  font: 6px 'Silkscreen', monospace;
  color: var(--amber);
}

.logout-sm-btn {
  background: rgba(255, 59, 92, 0.2);
  border: 1px solid var(--coral);
  color: var(--coral);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
  margin-left: 4px;
}

.logout-sm-btn:hover {
  background: var(--coral);
  color: #fff;
}

/* STICKY AUDIO RADIO PLAYER BAR */
.radio-sticky-bar {
  background: rgba(14, 36, 86, 0.95);
  border-bottom: 2px solid var(--cyan);
  padding: 12px 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 90;
}

.player-bar-container {
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dj-head-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-head-box {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: radial-gradient(circle, #254988, #0e1e44);
  border: 2px solid var(--amber);
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
}

.avatar-head-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  image-rendering: pixelated;
  transform: none;
}

.avatar-head-box img.autodj-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 27%;
  transform: none;
  image-rendering: pixelated;
}

.portal-empty-state {
  width: 100%;
  padding: 24px;
  color: var(--text-muted);
  text-align: center;
  border: 1px dashed var(--habbo-card-border);
  border-radius: 8px;
  background: rgba(4, 12, 33, 0.45);
}

.article-title-button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  font-weight: inherit;
  text-align: left;
  cursor: pointer;
}

.article-title-button:hover { color: var(--cyan); }

.event-interest {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}
.event-room-link{display:inline-flex;align-items:center;padding:7px 10px;border-radius:5px;background:var(--cyan);color:#031020;text-decoration:none;font-size:11px;font-weight:900;box-shadow:2px 2px #007f91}

.live-dot-indicator {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
}

.onair-label {
  font: 7px 'Silkscreen', monospace;
  color: var(--coral);
}

.dj-name-title {
  display: block;
  font-size: 17px;
  color: #fff;
}

.player-main-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.play-pause-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--amber);
  color: #000;
  border: 0;
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4), 3px 3px 0px #b38600;
  transition: transform 0.15s;
}

.play-pause-btn:hover {
  transform: scale(1.05);
}

.track-details small {
  font: 7px 'Silkscreen', monospace;
  color: var(--cyan);
}

.track-details h3 {
  font-size: 17px;
  color: #fff;
  margin: 2px 0;
}

.stream-url-tag {
  font-size: 11px;
  color: var(--text-muted);
}

/* EQ VISUALIZER BARS (WEB AUDIO API FREQUENCY ENGINE) */
.player-eq-visualizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 36px;
  min-width: 130px;
  padding: 4px 6px;
  background: rgba(5, 14, 38, 0.6);
  border: 1px solid var(--habbo-card-border);
  border-radius: 8px;
}

.player-eq-visualizer i {
  flex: 1;
  background: var(--cyan);
  border-radius: 2px 2px 0 0;
  height: 15%;
  min-height: 4px;
  transition: height 0.08s ease, background 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 0 6px var(--cyan);
}

.player-eq-visualizer.paused i {
  height: 10% !important;
  box-shadow: none !important;
  opacity: 0.3 !important;
  background: var(--cyan) !important;
}

.player-right-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.timer-box small {
  font: 6px 'Silkscreen', monospace;
  color: var(--text-muted);
}

.timer-box strong {
  display: block;
  font-family: monospace;
  font-size: 16px;
  color: var(--amber);
}

.volume-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 14, 38, 0.6);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--habbo-card-border);
}

.vol-btn {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.vol-slider {
  width: 75px;
  accent-color: var(--coral);
}

.vol-num {
  font-size: 11px;
  color: var(--text-muted);
}

.request-modal-btn {
  background: var(--coral);
  color: #fff;
  border: 0;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 3px 3px 0px #b8233e;
}

.request-modal-btn:hover {
  background: #ff5270;
}

/* PORTAL MAIN BODY */
.portal-main-body {
  padding: 30px 24px 60px;
}

.portal-container {
  max-width: 1280px;
  margin: auto;
}

/* HERO SECTION GRID */
.hero-portal-section {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 24px;
  margin-bottom: 30px;
}

.featured-news-card {
  background: linear-gradient(135deg, rgba(14, 36, 86, 0.4), rgba(7, 20, 50, 0.85)), url('assets/dragon-rare.jpg') center/cover;
  border: 1px solid var(--habbo-card-border);
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.featured-news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #071432 0%, rgba(7, 20, 50, 0.4) 60%, transparent 100%);
}

.news-category-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  font: 8px 'Silkscreen', monospace;
  background: var(--amber);
  color: #000;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  box-shadow: 2px 2px 0px #000;
}
.news-category-badge span{margin-right:6px;font-size:13px}

.news-content {
  position: relative;
  z-index: 2;
}

.news-date {
  font: 8px 'Silkscreen', monospace;
  color: var(--cyan);
}

.news-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 8px 0 10px;
  line-height: 1.2;
}

.news-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 20px;
}

.news-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.read-article-btn {
  background: var(--cyan);
  color: #000;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  font-size: 13px;
  box-shadow: 3px 3px 0px #0099ab;
}

.comments-count {
  font-size: 13px;
  color: var(--text-muted);
}

/* DJ SPOTLIGHT CARD */
.dj-spotlight-card {
  background: var(--habbo-card);
  border: 1px solid var(--habbo-card-border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.dj-spotlight-card[data-card-style="rooftop"] {
  border-color: #365e9f;
  background: linear-gradient(180deg, rgba(12, 33, 78, .96), rgba(6, 18, 45, .97));
}
.dj-spotlight-card[data-card-style="rooftop"] .dj-avatar-stage {
  background: linear-gradient(rgba(4, 13, 38, .18), rgba(4, 13, 38, .66)), url('assets/rooftop.webp?v=20260802-2') center/cover;
}
.dj-spotlight-card[data-card-style="hotel"] { border-color:#b47a38;background:linear-gradient(180deg,#68182f,#2d0d1d) }
.dj-spotlight-card[data-card-style="hotel"] .dj-avatar-stage { background:radial-gradient(circle at 50% 70%,#ffd66a55,transparent 45%),repeating-linear-gradient(90deg,#6f1832 0 30px,#861e38 30px 60px);border-color:#d19a43 }
.dj-spotlight-card[data-card-style="hotel"] .spotlight-tag { color:#ffd36c }
.dj-spotlight-card[data-card-style="neon"] { border-color:#d84fc1;background:linear-gradient(180deg,#1e0d45,#080c2d);box-shadow:0 20px 40px #0009,0 0 22px #ff41d326 }
.dj-spotlight-card[data-card-style="neon"] .dj-avatar-stage { background:radial-gradient(circle at 25% 40%,#ff38d555,transparent 36%),radial-gradient(circle at 75% 55%,#00e5ff55,transparent 42%),#130932;border-color:#00e5ff }
.dj-spotlight-card[data-card-style="gold"] { border:2px solid #d6a430;background:linear-gradient(160deg,#4e3510,#171005);box-shadow:0 20px 40px #0009,0 0 22px #ffc10726 }
.dj-spotlight-card[data-card-style="gold"] .dj-avatar-stage { background:radial-gradient(circle,#926820,#251604);border:5px double #d6a430 }
.dj-spotlight-card[data-card-style="gold"] .spotlight-tag { color:var(--amber) }
.dj-spotlight-card[data-card-style="arcade"] { border-color:#ff3b8d;background:#190d3a }
.dj-spotlight-card[data-card-style="arcade"] .dj-avatar-stage { background-color:#25124d;background-image:linear-gradient(45deg,#371b6b 25%,transparent 25%),linear-gradient(-45deg,#371b6b 25%,transparent 25%),linear-gradient(45deg,transparent 75%,#371b6b 75%),linear-gradient(-45deg,transparent 75%,#371b6b 75%);background-size:30px 30px;background-position:0 0,0 15px,15px -15px,-15px 0;border-color:#ff3b8d }
.dj-spotlight-card[data-card-style="minimal"] { border-color:#819bc4;background:linear-gradient(180deg,#edf4ff,#b9cce8);color:#102442 }
.dj-spotlight-card[data-card-style="minimal"] .dj-avatar-stage { background:linear-gradient(135deg,#dceaff,#a9c2e6);border-color:#7897c2 }
.dj-spotlight-card[data-card-style="minimal"] .dj-name-row h3 { color:#102442 }
.dj-spotlight-card[data-card-style="minimal"] .dj-habbo-user,.dj-spotlight-card[data-card-style="minimal"] .schedule-time { color:#526b8e }
.dj-spotlight-card[data-card-style="minimal"] .spotlight-tag { color:#1c5d9a }
.dj-spotlight-card[data-card-style="poolside"]{border-color:#43cbe5;background:linear-gradient(180deg,#0d6e91,#06344f)}.dj-spotlight-card[data-card-style="poolside"] .dj-avatar-stage{background:linear-gradient(#62cdec 0 54%,#d7f1ef 54% 63%,#168db6 63%);border-color:#8cecff}
.dj-spotlight-card[data-card-style="hclounge"]{border-color:#d7ad4c;background:linear-gradient(180deg,#442067,#1d0d35)}.dj-spotlight-card[data-card-style="hclounge"] .dj-avatar-stage{background:radial-gradient(circle at 50% 55%,#b88cff44,transparent 38%),repeating-linear-gradient(90deg,#32184f 0 24px,#442067 24px 48px);border-color:#d7ad4c}.dj-spotlight-card[data-card-style="hclounge"] .spotlight-tag{color:#e5c45d}
.dj-spotlight-card[data-card-style="winter"]{border-color:#b9ddf2;background:linear-gradient(180deg,#365d78,#183149)}.dj-spotlight-card[data-card-style="winter"] .dj-avatar-stage{background:radial-gradient(circle at 18% 70%,#ff9d3d99,transparent 24%),linear-gradient(#9bc8e8 0 48%,#eff9ff 48%);border:6px solid #70482e}
.dj-spotlight-card[data-card-style="space"]{border-color:#765ddd;background:#030822}.dj-spotlight-card[data-card-style="space"] .dj-avatar-stage{background:radial-gradient(circle at 75% 32%,#7459d8 0 9%,transparent 10%),radial-gradient(circle at 30% 25%,#fff 0 1px,transparent 2px),radial-gradient(circle at 65% 55%,#72e5ff 0 1px,transparent 2px),#030822;border-color:#765ddd}
.dj-spotlight-card[data-card-style="beach"]{border-color:#ffc66c;background:linear-gradient(180deg,#bd5d5d,#07566d)}.dj-spotlight-card[data-card-style="beach"] .dj-avatar-stage{background:linear-gradient(#ff916f 0,#ffc66c 45%,#37b6d5 46% 67%,#eecb72 68%);border-color:#ffdf8d}
.dj-spotlight-card[data-card-style="forest"]{border-color:#5fae72;background:linear-gradient(180deg,#123d31,#061e1b)}.dj-spotlight-card[data-card-style="forest"] .dj-avatar-stage{background:radial-gradient(circle at 50% 45%,#86ff9b44,transparent 35%),repeating-linear-gradient(75deg,#092f28 0 35px,#124434 35px 70px);border-color:#72ce83}
.dj-spotlight-card[data-card-style="cyber"]{border-color:#00e5ff;background:#021b24;box-shadow:0 20px 40px #0009,0 0 22px #00e5ff2c}.dj-spotlight-card[data-card-style="cyber"] .dj-avatar-stage{background-color:#021b24;background-image:linear-gradient(#00e5ff22 1px,transparent 1px),linear-gradient(90deg,#00e5ff22 1px,transparent 1px);background-size:20px 20px;border-color:#00e5ff}
.dj-spotlight-card[data-card-style="diner"]{border-color:#ff4f94;background:linear-gradient(180deg,#155b6a,#282238)}.dj-spotlight-card[data-card-style="diner"] .dj-avatar-stage{background:linear-gradient(#60d4df 0 56%,transparent 56%),repeating-conic-gradient(#f7eff2 0 25%,#31364b 0 50%) 0 0/32px 32px;border-color:#ff4f94}
.dj-spotlight-card[data-card-style="gothic"]{border-color:#811b34;background:linear-gradient(180deg,#251925,#09080d)}.dj-spotlight-card[data-card-style="gothic"] .dj-avatar-stage{background:radial-gradient(circle at 50% 65%,#ff334433,transparent 34%),repeating-linear-gradient(90deg,#16141c 0 34px,#25202c 34px 68px);border-color:#811b34}
.dj-spotlight-card[data-card-style="candy"]{border-color:#ff8bca;background:linear-gradient(180deg,#ad4d8a,#356e89)}.dj-spotlight-card[data-card-style="candy"] .dj-avatar-stage{background:radial-gradient(circle at 20% 35%,#fff 0 5px,transparent 6px),radial-gradient(circle at 75% 28%,#fff 0 7px,transparent 8px),linear-gradient(135deg,#ff9fd6,#8ee8f3);border-color:#fff}.dj-spotlight-card[data-card-style="candy"] .spotlight-tag{color:#ffd9ee}
.dj-spotlight-card[data-card-style="radiobooth"]{border-color:#d13b4b;background:linear-gradient(180deg,#203b50,#0b1823)}.dj-spotlight-card[data-card-style="radiobooth"] .dj-avatar-stage{background:repeating-linear-gradient(135deg,#172b3c 0 14px,#203b50 14px 28px);border-color:#d13b4b}.dj-spotlight-card[data-card-style="radiobooth"] .spotlight-tag{padding:4px 7px;background:#d82f40;color:#fff;box-shadow:0 0 9px #ff3b5c}
.dj-spotlight-card[data-card-style="sunrise"]{border-color:#ffb062;background:linear-gradient(180deg,#743f51,#222348)}.dj-spotlight-card[data-card-style="sunrise"] .dj-avatar-stage{background:linear-gradient(#ff8c6766,#ffd16a77),url('assets/rooftop.webp?v=20260802-2') center/cover;border-color:#ffbd70}.dj-spotlight-card[data-card-style="sunrise"] .spotlight-tag{color:#ffd27a}
.dj-spotlight-card[data-card-style="autodj-concierge"]{border-color:#bd8636;background:linear-gradient(180deg,#701d34,#2d0d1b)}.dj-spotlight-card[data-card-style="autodj-concierge"] .dj-avatar-stage{background:radial-gradient(circle at 50% 65%,#d9ae5544,transparent 35%),repeating-linear-gradient(90deg,#701d34 0 34px,#8a2740 34px 68px);border-color:#bd8636}.dj-spotlight-card[data-card-style="autodj-concierge"] .spotlight-tag{color:#ffd16a}
.dj-spotlight-card[data-card-style="autodj-controlroom"]{border-color:#2f7791;background:#07192d}.dj-spotlight-card[data-card-style="autodj-controlroom"] .dj-avatar-stage{background-color:#10233c;background-image:linear-gradient(#00e5ff19 1px,transparent 1px),linear-gradient(90deg,#00e5ff19 1px,transparent 1px);background-size:18px 18px;border-color:#00e5ff}
.dj-spotlight-card[data-card-style="autodj-nightshift"]{border-color:#365e9f;background:#07152f}.dj-spotlight-card[data-card-style="autodj-nightshift"] .dj-avatar-stage{background:linear-gradient(#06133033,#06133099),url('assets/rooftop.webp?v=20260802-2') center/cover;border-color:#527fc1}
.dj-spotlight-card[data-card-style="autodj-jukebox"]{border-color:#ff36d8;background:#180b38;box-shadow:0 20px 40px #0009,0 0 22px #ff36d82c}.dj-spotlight-card[data-card-style="autodj-jukebox"] .dj-avatar-stage{background:radial-gradient(circle at 25% 45%,#ff36d855,transparent 35%),radial-gradient(circle at 75% 45%,#00e5ff55,transparent 35%),#180b38;border-color:#00e5ff}
.dj-spotlight-card[data-card-style="autodj-clockwork"]{border-color:#d8a64c;background:linear-gradient(180deg,#4a3013,#1c1107)}.dj-spotlight-card[data-card-style="autodj-clockwork"] .dj-avatar-stage{background:radial-gradient(circle at 20% 40%,transparent 0 28px,#b98534 29px 34px,transparent 35px),radial-gradient(circle at 78% 60%,transparent 0 38px,#d8a64c 39px 45px,transparent 46px),#39250f;border-color:#d8a64c}.dj-spotlight-card[data-card-style="autodj-clockwork"] .spotlight-tag{color:#ffd16a}
.dj-spotlight-card[data-card-style="autodj-broadcast"]{border-color:#d83b4d;background:linear-gradient(180deg,#163963,#07152d)}.dj-spotlight-card[data-card-style="autodj-broadcast"] .dj-avatar-stage{background:linear-gradient(155deg,#163963,#07152d);border-color:#d83b4d}.dj-spotlight-card[data-card-style="autodj-broadcast"] .spotlight-tag{padding:4px 7px;background:#d82f40;color:#fff;box-shadow:0 0 9px #ff3b5c}

.spotlight-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.spotlight-tag {
  font: 7px 'Silkscreen', monospace;
  color: var(--coral);
}

.schedule-time {
  font-size: 12px;
  color: var(--text-muted);
}

.dj-avatar-stage {
  position: relative;
  height: 200px;
  background: radial-gradient(circle at 50% 70%, rgba(0, 229, 255, 0.2), #050e26);
  border: 1px solid var(--habbo-card-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
}

.main-habbo-avatar {
  height: 180px;
  image-rendering: pixelated;
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.7));
  z-index: 2;
}

.main-habbo-avatar.autodj-spotlight-avatar {
  height: 190px;
  width: auto;
  image-rendering: pixelated;
}

.avatar-pose-bar {
  position: absolute;
  bottom: 10px;
  display: flex;
  gap: 6px;
  z-index: 5;
}

.pose-btn {
  background: rgba(5, 14, 38, 0.85);
  border: 1px solid var(--habbo-card-border);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.pose-btn:hover {
  border-color: var(--cyan);
  background: rgba(0, 229, 255, 0.2);
}

.dj-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dj-name-row h3 {
  font-size: 22px;
  color: #fff;
}

.habbo-verify-badge {
  font: 7px 'Silkscreen', monospace;
  color: var(--green);
  background: rgba(0, 230, 118, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
}

.dj-habbo-user {
  font-size: 13px;
  color: var(--cyan);
  margin-bottom: 10px;
}

.dj-badges-wrap {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.badge-tag {
  font-size: 10px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--habbo-card-border);
}

.badge-tag.head-dj { color: var(--coral); border-color: var(--coral); }
.badge-tag.gold-badge { color: var(--amber); border-color: var(--amber); }
.badge-tag.staff-tag { color: var(--cyan); border-color: var(--cyan); }

.quick-request-btn {
  width: 100%;
  background: var(--coral);
  color: #fff;
  border: 0;
  padding: 12px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 3px 3px 0px #b8233e;
}

/* PORTAL TWO-COLUMN GRID */
.portal-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
}

.portal-section {
  background: var(--habbo-card);
  border: 1px solid var(--habbo-card-border);
  border-radius: 18px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.section-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--habbo-card-border);
  padding-bottom: 12px;
}

.section-header-bar h2 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.view-all-link, .sub-header-tag {
  font-size: 12px;
  color: var(--cyan);
  text-decoration: none;
  font-weight: bold;
}

/* NEWS ARTICLES LIST */
.news-list-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-item-card {
  display: flex;
  gap: 16px;
  background: rgba(5, 14, 38, 0.5);
  border: 1px solid var(--habbo-card-border);
  border-radius: 12px;
  padding: 16px;
  transition: transform 0.2s, border-color 0.2s;
}

.news-item-card:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
}

.news-thumb {
  width: 74px;
  height: 74px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--habbo-card-border);
  overflow: hidden;
  position:relative;
}
.news-category-icon{width:48px;height:48px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.18);border-radius:9px;background:rgba(3,10,27,.58);box-shadow:inset -3px -3px rgba(0,0,0,.2),3px 3px rgba(0,0,0,.22);font-size:25px;z-index:2}.news-category-icon span{filter:drop-shadow(2px 2px rgba(0,0,0,.35))}.news-brand-watermark{position:absolute;right:-5px;bottom:-5px;width:29px;height:29px;object-fit:contain;image-rendering:pixelated;opacity:.72;z-index:3}

.news-thumb.coral-bg { background: rgba(255, 59, 92, 0.15); border-color: var(--coral); }
.news-thumb.teal-bg { background: rgba(0, 229, 255, 0.15); border-color: var(--cyan); }
.news-thumb.violet-bg { background: rgba(142, 68, 173, 0.15); border-color: #8e44ad; }

.author-avatar-img {
  width: 48px;
  height: 48px;
  transform: translateY(4px);
  image-rendering: pixelated;
}

.news-meta-row {
  display: flex;
  gap: 10px;
  font-size: 11px;
}

.tag-cat {
  font: 6px 'Silkscreen', monospace;
  color: var(--amber);
}

.news-meta-row time {
  color: var(--text-muted);
}

.news-item-body h3 {
  font-size: 17px;
  margin: 4px 0 6px;
}

.news-item-body h3 a {
  color: #fff;
  text-decoration: none;
}

.news-item-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.news-author-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

.news-author-row b { color: var(--cyan); }

/* EVENTS GRID */
.events-portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.event-card-box {
  background: rgba(5, 14, 38, 0.5);
  border: 1px solid var(--habbo-card-border);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.event-card-box:focus-visible{outline:2px solid var(--cyan);outline-offset:3px}.event-details-modal{max-width:680px}.event-details-body{padding:20px}.event-details-body h2{margin:7px 0 10px;font-size:27px}.event-details-body>p{color:var(--text-muted);line-height:1.6}.event-room-hero{display:block;width:100%;height:210px;object-fit:cover;border:1px solid var(--habbo-card-border);border-radius:9px;margin-bottom:15px}.event-popup-facts{display:grid;grid-template-columns:repeat(2,1fr);gap:9px;margin:16px 0}.event-popup-facts div{padding:11px;border:1px solid var(--habbo-card-border);border-radius:7px;background:#07152f}.event-popup-facts small,.event-popup-facts strong{display:block}.event-popup-facts small{color:var(--cyan);font:7px Silkscreen;margin-bottom:5px}.event-popup-join{display:block;margin-top:16px;padding:12px;text-align:center;border-radius:7px;background:var(--amber);color:#171007;font-weight:900;text-decoration:none}.event-room-description{padding:11px;border-left:3px solid var(--cyan);background:rgba(0,229,255,.06)}
.event-image-credit{display:block;margin:-10px 0 14px;text-align:right;color:var(--text-muted);font-size:9px}

.event-card-box.highlight {
  border-color: var(--coral);
}
.event-card-heading{display:flex;align-items:center;gap:12px;margin-bottom:10px}.event-card-heading h3{margin-bottom:0}.event-pixel-icon{width:48px;height:48px;display:grid;place-items:center;flex:none;border:1px solid rgba(255,193,7,.65);border-radius:8px;background:rgba(255,193,7,.11);box-shadow:inset -3px -3px rgba(0,0,0,.22),3px 3px rgba(0,0,0,.2);font-size:23px}.event-card-heading .event-time-badge{margin-bottom:5px}

.event-time-badge {
  font: 7px 'Silkscreen', monospace;
  color: var(--amber);
  margin-bottom: 8px;
}

.event-card-box h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 6px;
}

.event-card-box p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.host-info {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.host-info img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.rsvp-btn {
  background: var(--amber);
  color: #000;
  border: 0;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 11px;
  cursor: pointer;
}

.rsvp-btn.active {
  background: var(--green);
}

/* LIVE HABBO FURNI CATALOGUE */
.furni-section-header { align-items: flex-end; }

.furni-section-intro {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 5px;
}

.furni-market-link {
  flex: 0 0 auto;
  color: var(--amber);
}

.furni-source-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 9px 12px;
  border: 1px solid rgba(54, 219, 163, 0.25);
  border-radius: 8px;
  background: rgba(54, 219, 163, 0.07);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.furni-source-strip small {
  margin-left: auto;
  color: var(--text-muted);
  font-weight: 500;
}

.furni-source-pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.furni-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.furni-catalog-grid .portal-empty-state { grid-column: 1 / -1; }

.furni-catalog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--habbo-card-border);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(17, 40, 84, 0.96), rgba(5, 15, 40, 0.96));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.rare-market-preview{text-decoration:none;color:inherit}.rare-credit-price{color:var(--amber)!important;font-size:22px!important;font-weight:900!important;margin:8px 0!important}.rare-credit-price small{font-size:8px;letter-spacing:.08em}.rare-market-preview .furni-card-meta{color:var(--text-muted);font-size:10px}
.rare-market-preview .furni-preview-stage{height:142px;border-bottom:1px solid rgba(80,126,198,.18);background:transparent;background-image:none;overflow:visible}.rare-market-preview .furni-preview-stage::after{content:"";position:absolute;left:25%;right:25%;bottom:17px;height:9px;border-radius:50%;background:rgba(0,0,0,.28);filter:blur(5px)}.rare-market-preview .furni-api-image{position:relative;z-index:1;width:118px;height:118px;filter:drop-shadow(4px 7px 1px rgba(0,0,0,.28))}.rare-market-preview .furni-rare-flag{z-index:2;background:rgba(7,21,47,.9);border:1px solid rgba(255,200,87,.55);color:var(--amber);box-shadow:none}
.rare-market-preview .furni-rare-flag.price-up{color:#55f2a1;border-color:rgba(85,242,161,.72);background:rgba(5,45,37,.94)}
.rare-market-preview .furni-rare-flag.price-down{color:#ff718a;border-color:rgba(255,113,138,.75);background:rgba(57,12,29,.94)}
.rare-market-preview .furni-rare-flag.price-up-small{color:#ffe16a;border-color:rgba(255,225,106,.78);background:rgba(57,46,9,.94)}
.rare-market-preview .furni-rare-flag.price-down-small{color:#ffad55;border-color:rgba(255,173,85,.8);background:rgba(62,30,8,.94)}
.official-room-card{display:flex;align-items:center;gap:10px;margin:12px 0;padding:9px;border:1px solid rgba(0,229,255,.25);border-radius:8px;background:rgba(5,21,47,.75)}.official-room-card img{width:72px;height:48px;object-fit:cover;border-radius:5px;image-rendering:auto}.official-room-card div{min-width:0}.official-room-card small,.official-room-card strong,.official-room-card span{display:block}.official-room-card small{color:var(--cyan);font:7px Silkscreen}.official-room-card strong{margin:3px 0;color:#fff}.official-room-card span{color:var(--text-muted);font-size:10px}

.furni-catalog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 229, 255, 0.58);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.36), 0 0 16px rgba(0, 229, 255, 0.1);
}

.furni-preview-stage {
  position: relative;
  height: 126px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(80, 126, 198, 0.3);
  background-color: #8fc6db;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.13) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.13) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,.13) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.13) 75%);
  background-size: 16px 16px;
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
}

.furni-api-image {
  width: 104px;
  height: 104px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(0 7px 2px rgba(28, 55, 74, 0.24));
  transition: transform 0.18s ease;
}

.furni-catalog-card:hover .furni-api-image { transform: scale(1.08); }

.furni-fallback-icon { font-size: 50px; }

.furni-rare-flag {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 4px 6px;
  border-radius: 4px;
  background: var(--amber);
  color: #171007;
  font: 7px 'Silkscreen', monospace;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
}

.furni-card-body { padding: 13px; }

.furni-category-tag {
  display: inline-block;
  color: var(--cyan);
  font: 7px 'Silkscreen', monospace;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.furni-card-body h3 {
  min-height: 38px;
  color: #fff;
  font-size: 16px;
  line-height: 1.18;
}

.furni-card-body p {
  height: 38px;
  margin-top: 7px;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.furni-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(67, 106, 169, 0.28);
}

.furni-card-meta code {
  min-width: 0;
  overflow: hidden;
  color: #8da9d5;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.furni-trade-state {
  flex: 0 0 auto;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 700;
}

.furni-trade-state.is-tradeable { color: var(--green); }

/* SIDEBAR WIDGETS */
.sidebar-widget {
  background: var(--habbo-card);
  border: 1px solid var(--habbo-card-border);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--habbo-card-border);
  padding-bottom: 10px;
}

.widget-header h3 {
  font-size: 18px;
  color: #fff;
}

.tz-label, .active-tag {
  font: 7px 'Silkscreen', monospace;
  color: var(--cyan);
}

/* SIDEBAR SCHEDULE */
.sidebar-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sched-item {
  display: grid;
  grid-template-columns: 85px 32px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(5, 14, 38, 0.4);
  border: 1px solid rgba(35, 67, 128, 0.4);
  border-radius: 8px;
}

.sched-item.live-now {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--amber);
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.2);
}

.sched-item time {
  font-size: 11px;
  font-weight: bold;
  color: var(--cyan);
}

.sched-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  image-rendering: pixelated;
}

.bot-icon-circle {
  width: 40px;
  height: 40px;
  background: #050e26;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.sched-item strong {
  display: block;
  font-size: 13px;
  color: #fff;
}

.sched-item small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.status-pill {
  font: 6px 'Silkscreen', monospace;
  padding: 3px 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.status-pill.on-air { background: var(--coral); color: #fff; box-shadow: 0 0 6px var(--coral); }
.status-pill.next { color: var(--cyan); }

/* SIDEBAR SHOUTBOX & HABBO SPEECH BUBBLES */
.shoutbox-feed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 240px;
  overflow-y: auto;
  margin-bottom: 14px;
}

.habbo-speech-bubble {
  background: rgba(5, 14, 38, 0.8);
  border: 1px solid var(--habbo-card-border);
  border-radius: 10px;
  padding: 10px 12px;
}

.habbo-speech-bubble.grease-bubble {
  border-color: var(--amber);
  background: rgba(255, 193, 7, 0.08);
}

.bubble-user {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 4px;
}

.bubble-user b { color: var(--coral); }
.bubble-user b.dj-username { color: var(--amber); }
.bubble-user time { font-size: 10px; color: var(--text-muted); }

.habbo-speech-bubble p {
  font-size: 13px;
  color: #fff;
  line-height: 1.4;
}

.sidebar-shout-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-shout-form input, .sidebar-shout-form textarea {
  background: #040c21;
  border: 1px solid var(--habbo-card-border);
  border-radius: 6px;
  padding: 8px 10px;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
}

.sidebar-shout-form textarea {
  height: 50px;
  resize: none;
}
.community-login-required{padding:11px 12px;border:1px solid rgba(0,229,255,.28);border-radius:7px;background:rgba(0,229,255,.06);color:var(--text-muted);font-size:12px;text-align:center}.community-login-required a{color:var(--cyan);font-weight:800}

.submit-shout-btn {
  background: var(--coral);
  color: #fff;
  border: 0;
  padding: 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
  box-shadow: 2px 2px 0px #b8233e;
}

/* POLL WIDGET */
.poll-question {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.poll-option-btn {
  background: rgba(5, 14, 38, 0.6);
  border: 1px solid var(--habbo-card-border);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
}

.poll-option-btn.active {
  border-color: var(--amber);
  background: rgba(255, 193, 7, 0.1);
}

.poll-option-btn small {
  color: var(--cyan);
}

/* FOOTER */
.portal-footer {
  background: #030816;
  border-top: 1px solid var(--habbo-card-border);
  padding: 40px 24px;
}

.footer-container {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
}

.footer-logo b { color: var(--cyan); }

.brand-col p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 10px 0;
  line-height: 1.6;
}

.brand-col small {
  font-size: 11px;
  color: #5d74a1;
}

.footer-col h4 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 12px;
}

.footer-col a, .footer-col span {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--cyan);
}

/* REQUEST SONG MODAL & INTERACTIVE MODALS */
.request-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.request-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--habbo-card);
  border: 1px solid var(--cyan);
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  padding: 26px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 229, 255, 0.2);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.article-modal-card {
  max-width: 680px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.modal-header h3 {
  font-size: 20px;
  color: #fff;
}

.close-modal-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--habbo-card-border);
  color: var(--text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.close-modal-btn:hover {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}

/* ARTICLE READER MODAL */
.article-modal-body h2 {
  font-size: 26px;
  color: #fff;
  margin: 10px 0 6px;
}

.article-meta-bar {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  border-bottom: 1px solid var(--habbo-card-border);
  padding-bottom: 10px;
}

.article-meta-bar b {
  color: var(--cyan);
}

.article-full-text {
  font-size: 15px;
  line-height: 1.65;
  color: #d1dfed;
  margin-bottom: 24px;
}

.article-comments-section {
  background: rgba(5, 14, 38, 0.6);
  border: 1px solid var(--habbo-card-border);
  border-radius: 12px;
  padding: 18px;
}

.article-comments-section h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 12px;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 160px;
  overflow-y: auto;
  margin-bottom: 12px;
}

.comment-bubble {
  background: rgba(14, 36, 86, 0.8);
  border: 1px solid var(--habbo-card-border);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  color: #fff;
}

.comment-bubble b {
  color: var(--amber);
}

.comment-input-form {
  display: flex;
  gap: 8px;
}

.comment-input-form input {
  background: #040c21;
  border: 1px solid var(--habbo-card-border);
  border-radius: 6px;
  padding: 8px 10px;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
}

.comment-input-form input[type="text"]:first-child { width: 130px; }
.comment-input-form input[type="text"]:nth-child(2) { flex: 1; }

.submit-comment-btn {
  background: var(--cyan);
  color: #000;
  border: 0;
  padding: 8px 14px;
  font-weight: 800;
  border-radius: 6px;
  cursor: pointer;
}

/* RARE DETAIL MODAL */
.rare-detail-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(5, 14, 38, 0.6);
  border: 1px solid var(--habbo-card-border);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.rare-big-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid var(--amber);
  display: grid;
  place-items: center;
  font-size: 28px;
}

.rare-price-val {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--amber);
}

.rare-trend-badge {
  font: 7px 'Silkscreen', monospace;
  color: var(--green);
}

.rare-row-clickable {
  cursor: pointer;
  transition: background 0.2s;
}

.rare-row-clickable:hover {
  background: rgba(0, 229, 255, 0.1);
}

.table-action-btn {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
  cursor: pointer;
}

.table-action-btn:hover {
  background: var(--cyan);
  color: #000;
}

/* ROOM NAVIGATOR MODAL */
.room-banner-box {
  background: rgba(5, 14, 38, 0.7);
  border: 1px solid var(--amber);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 14px;
}

.room-banner-box h2 {
  font-size: 20px;
  color: #fff;
}

.room-banner-box p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 4px 0 8px;
}

.room-banner-box b {
  color: var(--amber);
}

.modal-form label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.modal-form input, .modal-form textarea {
  display: block;
  width: 100%;
  background: #040c21;
  border: 1px solid var(--habbo-card-border);
  border-radius: 6px;
  padding: 10px;
  color: #fff;
  font-family: inherit;
  margin-top: 6px;
}

.modal-form textarea {
  height: 80px;
  resize: vertical;
}

.submit-modal-btn {
  width: 100%;
  background: var(--coral);
  color: #fff;
  border: 0;
  padding: 12px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 3px 3px 0px #b8233e;
}

/* PORTAL TOAST */
.portal-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 80px);
  opacity: 0;
  background: var(--amber);
  color: #000;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 3px 3px 0px #000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
}

.portal-toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* RESPONSIVE DESIGN */
@media (max-width: 980px) {
  .portal-nav { display: none; }
  .hero-portal-section, .portal-grid, .events-portal-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .player-bar-container { flex-wrap: wrap; }
  .player-eq-visualizer { display: none; }
}

@media (max-width: 720px) {
  .furni-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .furni-source-strip { align-items: flex-start; flex-wrap: wrap; }
  .furni-source-strip small { width: 100%; margin-left: 16px; }
  .furni-section-header { align-items: flex-start; gap: 12px; }
}

@media (max-width: 460px) {
  .furni-catalog-grid { grid-template-columns: 1fr; }
}
