/* =============================================
   PULSEROOM — SCREEN-SPECIFIC STYLES
   ============================================= */

/* ── SPLASH ──────────────────────────────── */
#screen-splash {
  background: #05070A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.splash-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(139,92,246,0.2) 0%, transparent 70%);
  animation: radialGlow 4s ease-in-out infinite;
}

.splash-orb-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  animation: breathe 3s ease-in-out infinite;
}

.splash-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.splash-title {
  font-size: 48px;
  font-weight: 800;
  color: white;
  text-align: center;
  text-shadow: 0 0 30px #8B5CF6, 0 0 60px rgba(139,92,246,0.5);
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.splash-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-bottom: 60px;
}

.splash-btn {
  width: 280px;
  height: 56px;
  font-size: 17px;
  font-weight: 600;
  color: white;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  cursor: pointer;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.splash-btn:active {
  transform: scale(0.95);
  background: rgba(255,255,255,0.12);
}

/* ── LOGIN ──────────────────────────────── */
#screen-login {
  background: #05070A;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.login-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.login-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.login-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 80px 28px 40px;
}

.login-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.login-logo-orb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #c084fc, #8B5CF6, #4c1d95);
  box-shadow: 0 0 40px rgba(139,92,246,0.6);
  margin-bottom: 16px;
  animation: breathe 3s ease-in-out infinite;
}

.login-app-name {
  font-size: 32px;
  font-weight: 800;
  color: white;
  text-shadow: 0 0 20px rgba(139,92,246,0.6);
}

.login-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.input-group {
  position: relative;
}

.input-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  display: block;
}

.input-field {
  width: 100%;
  height: 54px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 0 50px 0 18px;
  color: white;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input-field::placeholder {
  color: rgba(255,255,255,0.3);
}

.input-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0,242,255,0.15);
}

.input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.3);
  cursor: pointer;
  font-size: 18px;
}

.login-hint {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.login-hint span {
  color: var(--primary);
  font-weight: 600;
}

.login-btn {
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--purple));
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0,242,255,0.3);
  position: relative;
  overflow: hidden;
}

.login-btn:active { transform: scale(0.97); }

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.login-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.login-divider-text {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.login-social {
  display: flex;
  gap: 12px;
}

.login-social-btn {
  flex: 1;
  height: 50px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}

.login-social-btn:active { background: rgba(255,255,255,0.1); }

.login-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.login-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.login-error {
  background: rgba(255,51,51,0.1);
  border: 1px solid rgba(255,51,51,0.3);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: #ff6b6b;
  text-align: center;
  display: none;
}

.login-error.show { display: block; }

/* ── ONBOARDING ──────────────────────────── */
#screen-onboarding {
  background: #05070A;
  min-height: 100%;
}

.onboarding-bg-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.onboarding-inner {
  padding: 70px 24px 40px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.onboarding-title {
  font-size: 28px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 6px;
}

.onboarding-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 40px;
}

.onboarding-hero {
  width: 280px;
  height: 280px;
  position: relative;
  margin: 0 auto 48px;
  animation: spinSlow 20s linear infinite;
}

.onboarding-center-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #fff, #FFD700, #FF6B9D);
  box-shadow: 0 0 40px rgba(255,215,0,0.7), 0 0 80px rgba(255,215,0,0.3);
  animation: spinSlow 20s linear infinite reverse;
  z-index: 5;
}

.onboarding-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  animation: onboardingRipple var(--dur, 3s) ease-out infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes onboardingRipple {
  0% { width: 80px; height: 80px; opacity: 0.8; }
  100% { width: 280px; height: 280px; opacity: 0; }
}

.hand-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  animation: spinSlow 20s linear infinite reverse;
}

.onboarding-tagline {
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: white;
  text-align: center;
  text-shadow: 0 0 20px rgba(255,255,255,0.4);
  line-height: 1.4;
  margin-bottom: 48px;
}

.onboarding-btn {
  width: 280px;
  height: 56px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  border: none;
  border-radius: 50px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 0 30px rgba(255,215,0,0.4);
  transition: all 0.3s ease;
}

.onboarding-btn:active { transform: scale(0.95); }

/* ── MOOD SELECTION ──────────────────────── */
#screen-mood {
  background: var(--bg-navy);
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.mood-bg-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background 0.5s ease;
}

.mood-title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  text-align: center;
  padding: 80px 24px 48px;
  line-height: 1.15;
}

.mood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 24px 120px;
  justify-items: center;
}

.mood-btn {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(10,13,26,0.7);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.mood-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2.5px solid var(--color);
  box-shadow: 0 0 20px var(--color), 0 0 40px var(--color, transparent);
  animation: glowPulse 2s ease-in-out infinite;
}

.mood-btn:active {
  transform: scale(0.95) !important;
}

.mood-btn.selected {
  transform: scale(1.15);
}

.mood-emoji {
  font-size: 44px;
  line-height: 1;
}

.mood-name {
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-align: center;
}

.mood-bottom-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(5,7,10,0.8);
  border-top: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-bottom: 8px;
}

.mood-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  padding: 8px 16px;
}

.mood-tab.active {
  color: white;
}

/* ── LIVE ROOM ───────────────────────────── */
#screen-liveroom {
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.room-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.room-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.room-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  padding-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  background: rgba(5,7,10,0.5);
  backdrop-filter: blur(20px);
  z-index: 10;
}

.room-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
}

.room-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.online-badge {
  position: absolute;
  top: 100px;
  right: 16px;
  background: rgba(5,7,10,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: white;
  backdrop-filter: blur(20px);
  z-index: 10;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: glowPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px #22c55e;
}

.room-avatar {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  z-index: 8;
  transition: transform 0.3s ease;
}

.room-avatar:active { transform: scale(0.95) !important; }

.room-avatar-inner {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  border: 2.5px solid;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: white;
  backdrop-filter: blur(10px);
  animation: float var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.room-avatar-name {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.ripple-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  animation: ripple 1.5s ease-out forwards;
  pointer-events: none;
  z-index: 20;
}

.room-dock {
  position: absolute;
  bottom: 85px;
  left: 16px;
  right: 16px;
  background: rgba(5,7,10,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  padding: 14px 20px;
  z-index: 10;
}

.equalizer {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
  margin-bottom: 8px;
}

.eq-bar {
  width: 5px;
  background: linear-gradient(to top, var(--primary), var(--purple));
  border-radius: 3px;
}

.eq-bar:nth-child(1) { animation: eq1 1.2s ease-in-out infinite; }
.eq-bar:nth-child(2) { animation: eq2 1.0s ease-in-out infinite; }
.eq-bar:nth-child(3) { animation: eq3 1.4s ease-in-out infinite; }
.eq-bar:nth-child(4) { animation: eq4 0.9s ease-in-out infinite; }
.eq-bar:nth-child(5) { animation: eq5 1.1s ease-in-out infinite; }

.room-mood-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* ── COLLECTIVE CANVAS ─────────────────── */
#screen-canvas {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  background: #000;
}

.canvas-art {
  position: absolute;
  inset: 0;
}

.vortex-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform-origin: center;
}

.canvas-top-overlay {
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: rgba(5,7,10,0.5);
  backdrop-filter: blur(20px);
  z-index: 10;
}

.canvas-title {
  font-size: 32px;
  font-weight: 800;
  color: white;
  text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.canvas-feel-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 4px 0;
}

.canvas-desc {
  font-size: 20px;
  font-style: italic;
  color: white;
  line-height: 1.4;
  transition: opacity 0.5s ease;
}

.canvas-bottom-overlay {
  position: absolute;
  bottom: 85px;
  left: 0;
  right: 0;
  padding: 0 24px 16px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.canvas-user-dots {
  display: flex;
  gap: 10px;
}

.canvas-user-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}

.save-btn {
  width: 220px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(20px);
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.save-btn:active { transform: scale(0.95); }

/* ── ROOM DISCOVERY ─────────────────────── */
#screen-roomDiscovery {
  background: #05070A;
  min-height: 100%;
}

.discovery-inner {
  padding: 60px 20px 100px;
}

.discovery-title {
  font-size: 36px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}

.create-room-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background 0.2s;
}

.create-room-card:active { background: rgba(255,255,255,0.08); }

.create-room-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.create-room-text h3 {
  font-size: 17px;
  font-weight: 700;
  color: white;
}

.create-room-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.create-room-arrow {
  margin-left: auto;
  font-size: 20px;
  color: rgba(255,255,255,0.3);
}

.room-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  cursor: pointer;
}

.room-orb-thumb {
  width: 70px;
  height: 70px;
  border-radius: 14px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.room-card-info {
  flex: 1;
}

.room-card-name {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.room-card-count {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 10px;
}

.join-btn {
  height: 38px;
  padding: 0 20px;
  border-radius: 50px;
  border: 1.5px solid;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.join-btn:active {
  transform: scale(0.95);
}

/* ── TRENDING ───────────────────────────── */
#screen-trending {
  background: #05070A;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.neon-streak {
  position: absolute;
  height: 1px;
  width: 300px;
  opacity: 0.3;
  pointer-events: none;
  animation: neonStreak var(--dur, 8s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.trending-inner {
  padding: 60px 20px 100px;
  position: relative;
  z-index: 2;
}

.trending-title {
  font-size: 32px;
  font-weight: 800;
  color: white;
  text-shadow: 0 0 20px rgba(0,242,255,0.4);
  margin-bottom: 24px;
}

.trending-pulse-card {
  min-width: 170px;
  max-width: 170px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.pulse-card-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 120px;
}

.pulse-card-tile {
  height: 60px;
}

.pulse-card-info {
  padding: 10px 12px;
}

.pulse-card-tag {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 2px;
}

.pulse-card-count {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.see-art-btn {
  height: 30px;
  padding: 0 14px;
  border-radius: 50px;
  border: 1px solid var(--primary);
  color: var(--primary);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.live-room-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
}

.live-pulse-icon {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  width: 28px;
  height: 24px;
}

.pulse-bar {
  width: 4px;
  border-radius: 2px;
}

.live-room-info {
  flex: 1;
}

.live-room-name {
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.live-soul-count {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ── MY PULSE PROFILE ──────────────────── */
#screen-profile {
  background: #05070A;
  min-height: 100%;
}

.profile-bg-fog {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(180deg, rgba(100,60,180,0.3) 0%, transparent 100%);
  pointer-events: none;
}

.profile-inner {
  padding: 60px 20px 100px;
  position: relative;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.profile-avatar-wrap {
  width: 66px;
  height: 66px;
  position: relative;
  flex-shrink: 0;
}

.profile-avatar-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--primary), var(--purple), var(--accent), var(--secondary), var(--primary));
  animation: spin 4s linear infinite;
}

.profile-avatar-img {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2a4a, #1a1a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  overflow: hidden;
}

.profile-title-group h1 {
  font-size: 28px;
  font-weight: 800;
  color: white;
}

.profile-title-group p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.aura-ring-wrap {
  width: 260px;
  height: 260px;
  margin: 0 auto 32px;
  position: relative;
}

.aura-ring-svg {
  width: 100%;
  height: 100%;
  animation: hueRotate 4s linear infinite;
  filter: drop-shadow(0 0 20px rgba(0,242,255,0.4)) drop-shadow(0 0 40px rgba(139,92,246,0.3));
}

.mood-chart {
  margin-bottom: 24px;
  padding: 0 8px;
}

.mood-chart-svg {
  width: 100%;
  overflow: visible;
}

.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 16px;
}

.stat-card-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  line-height: 1.4;
}

.stat-card-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 800;
  color: white;
}

.stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,242,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ── PROFILE ESSENCE ───────────────────── */
#screen-essence {
  background: #05070A;
  min-height: 100%;
}

.essence-inner {
  padding: 60px 20px 100px;
}

.essence-avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.essence-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 16px;
}

.essence-card-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.essence-card-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.essence-blob-wrap {
  height: 140px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.essence-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 80px;
  background: conic-gradient(from 0deg, #00F2FF, #8B5CF6, #FF00FF, #FFD700, #00F2FF);
  animation: blobMorph 6s ease-in-out infinite, hueRotate 8s linear infinite;
  filter: blur(8px);
  opacity: 0.8;
}

.essence-tag {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  color: white;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

/* ── MOOD INSIGHTS ──────────────────────── */
#screen-insights {
  background: #05070A;
  min-height: 100%;
}

.insights-inner {
  padding: 60px 20px 100px;
}

.insights-title {
  font-size: 30px;
  font-weight: 800;
  color: white;
  margin-bottom: 32px;
}

.donut-wrap {
  width: 280px;
  height: 280px;
  margin: 0 auto 40px;
  position: relative;
}

.donut-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 12px rgba(139,92,246,0.5));
}

.donut-center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
}

.donut-segment-label {
  position: absolute;
  font-size: 13px;
  color: white;
  font-weight: 500;
}

.journal-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  animation: slideInRight 0.4s ease both;
}

.journal-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.journal-text {
  flex: 1;
}

.journal-date {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}

.journal-mood {
  font-size: 14px;
  font-weight: 600;
}

.journal-note {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* ── FRIEND PULSES ──────────────────────── */
#screen-friends {
  background: #05070A;
  min-height: 100%;
}

.friends-inner {
  padding: 60px 20px 100px;
}

.search-bar {
  width: 100%;
  height: 48px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  margin-bottom: 24px;
}

.search-bar input {
  flex: 1;
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  outline: none;
}

.search-bar input::placeholder {
  color: rgba(255,255,255,0.3);
}

.friend-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: background 0.2s;
}

.friend-row:active { background: rgba(255,255,255,0.03); }

.friend-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.friend-name {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  color: white;
}

.friend-expand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  animation: fadeInUp 0.3s ease both;
}

.send-pulse-btn {
  height: 36px;
  padding: 0 20px;
  border-radius: 50px;
  border: 1.5px solid var(--primary);
  background: rgba(0,242,255,0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

/* ── GALLERY ────────────────────────────── */
#screen-gallery {
  background: #05070A;
  min-height: 100%;
}

.gallery-inner {
  padding: 60px 0 150px;
}

.gallery-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 0 2px;
}

.gallery-thumb {
  aspect-ratio: 1;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.gallery-thumb:active { transform: scale(0.95); }

.gallery-thumb.selected {
  outline: 2.5px solid var(--primary);
  box-shadow: 0 0 15px rgba(0,242,255,0.4);
}

.gallery-bottom {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  background: rgba(5,7,10,0.8);
  backdrop-filter: blur(20px);
}

.gallery-action-btn {
  flex: 1;
  height: 50px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.gallery-action-btn:active { transform: scale(0.97); }

.share-btn-g {
  background: rgba(255,255,255,0.08);
  color: white;
}

.delete-btn-g {
  background: rgba(255,51,51,0.1);
  border-color: rgba(255,51,51,0.3);
  color: #ff6b6b;
}

/* ── SHARE ──────────────────────────────── */
#screen-share {
  background: #05070A;
  min-height: 100%;
  position: relative;
}

.share-bg-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.share-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.share-inner {
  padding: 60px 20px 100px;
  position: relative;
  z-index: 2;
}

.share-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.share-back {
  font-size: 17px;
  font-weight: 600;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-btn-top {
  height: 38px;
  padding: 0 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #FF8C00, var(--purple));
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.share-preview {
  width: 100%;
  height: 240px;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  background: #0a0a1a;
}

.lissajous-canvas {
  width: 100%;
  height: 100%;
}

.caption-input {
  width: 100%;
  height: 80px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 14px 16px;
  color: white;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  resize: none;
  outline: none;
  margin-bottom: 20px;
}

.caption-input::placeholder { color: rgba(255,255,255,0.3); }

.mood-tags-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
  margin-bottom: 20px;
}

.mood-tags-scroll::-webkit-scrollbar { display: none; }

.mood-orb-pill {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mood-orb-pill.active {
  transform: scale(1.1);
  box-shadow: 0 0 20px currentColor;
}

.privacy-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 20px;
}

.privacy-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  flex: 1;
  text-align: center;
}

.post-btn-full {
  width: 100%;
  height: 56px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #FF8C00, var(--purple));
  color: white;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.post-btn-full:active { transform: scale(0.97); }

.post-success {
  position: absolute;
  inset: 0;
  background: rgba(5,7,10,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  animation: fadeIn 0.3s ease both;
  border-radius: 50px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ── AURA AI ────────────────────────────── */
#screen-aura {
  background: #05070A;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.aura-corner-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.aura-inner {
  padding: 80px 24px 100px;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aura-message-bubble {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px 20px 20px 4px;
  padding: 20px;
  margin-bottom: 48px;
  width: 100%;
  backdrop-filter: blur(20px);
}

.aura-message-text {
  font-size: 18px;
  color: white;
  line-height: 1.5;
  text-align: center;
}

.aura-orb-wrap {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 56px;
  animation: breatheSlow 2s ease-in-out infinite;
}

.aura-orb-main {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    #fff5d0 0%,
    #FFD700 20%,
    #FF6B9D 50%,
    #9B30FF 75%,
    #1a0030 100%
  );
  box-shadow: 0 0 60px 20px rgba(255,180,0,0.4), 0 0 100px 40px rgba(139,92,246,0.2);
}

.aura-orb-spot {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,200,0.8), transparent);
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  animation: auraShimmer 4s linear infinite;
}

.aura-btn {
  width: 100%;
  height: 56px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.aura-btn:active { transform: scale(0.97); }

/* ── ROOM CUSTOMIZATION ─────────────────── */
#screen-customize {
  background: #05070A;
  min-height: 100%;
  position: relative;
}

.star-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: white;
  opacity: 0.3;
}

.customize-inner {
  padding: 60px 20px 100px;
  position: relative;
  z-index: 2;
}

.slider-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 18px;
  margin-bottom: 12px;
}

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

.slider-label {
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.slider-value {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

.slider-range {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}

.harmony-section {
  margin-top: 24px;
}

.harmony-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.harmony-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.color-wheel-wrap {
  width: 200px;
  height: 200px;
  position: relative;
  flex-shrink: 0;
}

.color-wheel-svg {
  width: 100%;
  height: 100%;
}

.color-wheel-selector {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(0,0,0,0.5);
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.art-preview-square {
  flex: 1;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

/* ── AI AVATAR ──────────────────────────── */
#screen-aiAvatar {
  background: #05070A;
  min-height: 100%;
  position: relative;
}

.avatar-gen-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,100,200,0.2), transparent 70%);
  pointer-events: none;
}

.avatar-gen-inner {
  padding: 70px 24px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.avatar-gen-title {
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 32px;
}

.avatar-preview-wrap {
  width: 200px;
  height: 200px;
  position: relative;
  margin-bottom: 28px;
}

.avatar-ring-spin {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--primary), #FF6B9D, var(--purple), var(--primary));
  animation: spin 3s linear infinite;
}

.avatar-ring-inner {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #0a0a1a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-illustration {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(0,242,255,0.8), rgba(139,92,246,0.6), rgba(255,107,157,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  filter: drop-shadow(0 0 20px rgba(0,242,255,0.6));
}

.progress-area {
  width: 100%;
  margin-bottom: 24px;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.progress-bar-wrap {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--primary), #FF6B9D);
  animation: progressFill 1.5s ease both;
}

.vibe-variants {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.vibe-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.4s ease;
  color: white;
}

.vibe-btn.active {
  box-shadow: 0 0 20px currentColor;
  border-color: currentColor;
  transform: scale(1.05);
}

.vibe-ethereal {
  background: radial-gradient(circle, rgba(240,240,255,0.3), rgba(200,200,255,0.1));
  color: rgba(220,220,255,0.9);
}

.vibe-electric {
  background: rgba(0,20,30,0.8);
  color: var(--primary);
}

.vibe-minimal {
  background: radial-gradient(circle, rgba(200,200,200,0.15), rgba(150,150,150,0.05));
  color: rgba(200,200,200,0.7);
}

.set-pulse-btn {
  width: 100%;
  height: 56px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--secondary), #FF6B9D);
  color: #1a0a00;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 0 30px rgba(255,215,0,0.3);
}

.set-pulse-btn:active { transform: scale(0.97); }

/* ── SETTINGS ───────────────────────────── */
#screen-settings {
  background: #0a0d1a;
  min-height: 100%;
}

.settings-inner {
  padding: 60px 20px 100px;
}

.settings-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.settings-title {
  font-size: 26px;
  font-weight: 800;
  color: white;
}

.settings-section-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 18px 18px 6px;
  margin-bottom: 14px;
}

.settings-section-title {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.settings-row:first-of-type { border-top: none; }

.settings-row-label {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
}

.settings-slider-wrap {
  margin: 8px 0 12px;
}

.settings-btn {
  width: 100%;
  height: 52px;
  border-radius: 50px;
  background: rgba(0,242,255,0.07);
  border: 1px solid rgba(0,242,255,0.2);
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
  margin-bottom: 10px;
}

.settings-btn:active { background: rgba(0,242,255,0.12); }

/* ── DESIGN SYSTEM ──────────────────────── */
#screen-designSystem {
  background: #05070A;
  min-height: 100%;
}

.design-inner {
  padding: 60px 20px 100px;
}

.design-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 32px;
}

.orb-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.design-orb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.design-orb-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.design-orb-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.glass-cards-row {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}

.glass-card-sample {
  flex: 1;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.type-section {
  margin-bottom: 32px;
}

.type-h1 { font-size: 32px; font-weight: 700; color: white; }
.type-h2 { font-size: 24px; font-weight: 700; color: white; }
.type-body { font-size: 16px; color: white; }
.type-caption { font-size: 12px; color: rgba(255,255,255,0.5); }

.gradient-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.gradient-pill {
  height: 38px;
  padding: 0 20px;
  border-radius: 50px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  color: white;
}

.view-guidelines-btn {
  width: 100%;
  height: 52px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--secondary), #FF6B9D);
  color: #1a0a00;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

/* ── GLOBAL PULSE FEED ──────────────────── */
#screen-feed {
  background: #05070A;
  min-height: 100%;
  position: relative;
}

.feed-inner {
  padding: 60px 16px 100px;
}

.feed-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 20px;
}

.trending-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.trending-tag-pill {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  font-family: 'Inter', sans-serif;
}

.trending-tag-pill:active { transform: scale(0.95); }

.moment-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
}

.moment-art {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.moment-info {
  padding: 12px 14px;
}

.moment-caption {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}

.moment-tags-text {
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 12px;
}

.moment-actions {
  display: flex;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 12px;
}

.moment-action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  padding: 4px 0;
  transition: color 0.2s;
}

.moment-action:active { color: white; }

.moment-action svg {
  width: 18px;
  height: 18px;
}
