/* Custom CSS Variables & Design Tokens */
:root {
  --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --bg-topbar: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.3);
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #f8fafc;
  --color-accent: #2563eb;
  --color-accent-hover: #1d4ed8;
  --card-bg: rgba(255, 255, 255, 0.92);
  --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
  --window-border-radius: 18px;
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-select: none;
}

html, body {
  font-family: var(--font-family);
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  overflow: hidden;
  background-color: #0f172a;
  color: var(--text-primary);
}

/* Desktop Main Shell (RLY-D001) */
.desktop-container {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

/* Desktop Wallpaper (RLY-D002) - Static Wallpaper Rule */
.desktop-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0d1527;
  z-index: 1;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

.background-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(15, 23, 42, 0.3) 100%);
  pointer-events: none;
}

/* Top Bar Styling (RLY-T001) */
.top-bar {
  position: relative;
  z-index: 100;
  height: 38px;
  background: var(--bg-topbar);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.top-bar-left, .top-bar-right, .top-bar-center {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

/* Rally Logo Button with background plate (RLY-L001) */
.logo-plate {
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 3px 10px !important;
  border-radius: 8px !important;
  flex-shrink: 0;
}

.logo-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.logo-btn:hover {
  background: rgba(255, 255, 255, 0.98) !important;
}

.logo-img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 12px;
  white-space: nowrap;
}

/* Dropdown Menu (RLY-MN001) */
.dropdown-menu {
  position: absolute;
  top: 42px;
  left: 12px;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  padding: 6px;
  width: 240px;
  max-width: calc(100vw - 24px);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
}

html[dir="rtl"] .dropdown-menu {
  left: auto;
  right: 12px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 6px;
  font-size: 13px;
  transition: var(--transition-fast);
}

.btn-menu {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
}

html[dir="rtl"] .btn-menu {
  text-align: right;
}

.menu-item:hover {
  background: var(--color-accent);
  color: #ffffff;
}

.menu-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 4px 0;
}

/* Center Announcement Banner (RLY-MS001) */
.top-bar-center {
  flex: 1;
  justify-content: center;
}

.announcement-banner {
  text-decoration: none;
  background: rgba(37, 99, 235, 0.1);
  color: var(--color-accent);
  padding: 4px 14px;
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  font-weight: 600;
  font-size: 12px;
  transition: var(--transition-fast);
  max-width: 480px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  text-align: center;
}

.announcement-banner:hover {
  background: rgba(37, 99, 235, 0.2);
  transform: translateY(-1px);
}

/* Season Badge (RLY-S001) & Controls */
.season-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.04);
  padding: 3px 8px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.season-text {
  white-space: nowrap;
}

.notification-trigger, .language-switch-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  color: var(--text-primary);
  transition: var(--transition-fast);
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.notification-trigger:hover, .language-switch-btn:hover {
  background: rgba(0, 0, 0, 0.08);
}

.notification-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 7px;
  height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Single Auto-Rotating Toast Popup (RLY-NP001) */
.notification-popup {
  position: fixed;
  top: 48px;
  right: 16px;
  width: 320px;
  max-width: calc(100vw - 24px);
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  padding: 14px;
  z-index: 300;
  transition: var(--transition-smooth);
}

html[dir="rtl"] .notification-popup {
  right: auto;
  left: 16px;
}

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

.notification-tag {
  background: var(--color-accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.close-icon-btn {
  background: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: var(--text-secondary);
}

.notification-body {
  text-decoration: none;
  color: var(--text-primary);
  display: block;
}

.notification-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.notification-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.notification-progress-bar {
  height: 3px;
  width: 100%;
  background: rgba(0,0,0,0.06);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  transition: width 3s linear;
}

/* All Notifications List Window Modal */
.notifications-window {
  width: 480px;
}

.notifications-list-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 360px;
  overflow-y: auto;
}

.notif-card-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.notif-card-item:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: var(--color-accent);
}

.notif-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Desktop Main Area */
.desktop-main-area {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Primary Windows System (RLY-W001 .. RLY-W006) */
.window-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 8px;
}

.mac-window {
  pointer-events: auto;
  width: 600px;
  height: 520px;
  max-width: 100%;
  max-height: 100%;
  background: var(--card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--window-border-radius);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: windowOpen 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes windowOpen {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.window-top-bar {
  height: 40px;
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  padding: 0 14px;
  position: relative;
  flex-shrink: 0;
}

.window-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.win-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.win-btn.close { background: #ff5f56; border: 1px solid #e0443e; }
.win-btn.minimize { background: #ffbd2e; border: 1px solid #dea123; }
.win-btn.maximize { background: #27c93f; border: 1px solid #1aab29; }

.window-title-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
}

.window-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Committee Window Structure */
.committee-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(0,0,0,0.02);
  padding: 12px 16px;
  border-radius: 12px;
}

.committee-art-img {
  height: 60px;
  max-width: 100%;
  object-fit: contain;
}

.committee-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-join {
  background: var(--color-accent);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
  white-space: nowrap;
}

.btn-join:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

.btn-app-icon {
  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 8px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-app-icon:hover {
  background: rgba(0,0,0,0.1);
}

/* Member Stickers Grid & Treatment */
.stickers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  padding: 40px 0 10px 0;
}

.sticker-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: var(--transition-smooth);
  position: relative;
}

.sticker-card:nth-child(1) { transform: rotate(-2deg); }
.sticker-card:nth-child(2) { transform: rotate(1.5deg); }
.sticker-card:nth-child(3) { transform: rotate(-1deg); }

.sticker-card:hover {
  transform: scale(1.05) rotate(0deg) translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

/* Tooltip for Board Person Stickers */
.sticker-tooltip {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 30;
}

.sticker-card:hover .sticker-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sticker-img-wrapper {
  width: 100px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 8px;
}

.sticker-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sticker-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.sticker-title {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
  font-weight: 600;
}

/* Modal Overlays (Member Info, Members App, Attribution) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}

.info-card-window, .app-card-window {
  width: 440px;
  max-width: 100%;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: var(--window-border-radius);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(255,255,255,0.8);
  overflow: hidden;
  animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.info-card-content {
  padding: 24px;
  display: flex;
  gap: 18px;
  overflow-y: auto;
}

.info-avatar-box {
  width: 110px;
  height: 130px;
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

.info-avatar {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.info-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.member-name { font-size: 18px; font-weight: 800; }
.member-role-badge { font-size: 12px; font-weight: 600; color: var(--color-accent); }
.member-committee-tag, .member-studies-tag, .member-interests-tag { font-size: 11px; color: var(--text-secondary); }
.member-bio-text { font-size: 12px; color: var(--text-primary); margin-top: 6px; line-height: 1.4; }

.btn-primary {
  display: inline-block;
  margin-top: 10px;
  background: var(--color-accent);
  color: white;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  text-align: center;
}

/* Members Directory App Modal */
.app-content-padding {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}

.members-app-list {
  list-style: none;
  max-height: 260px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.members-app-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.03);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

.member-gender-icon {
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.member-gender-icon.gender-female {
  color: #ec4899;
  background: rgba(236, 72, 153, 0.12);
}

.member-gender-icon.gender-male {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.12);
}

.attribution-content {
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

/* Dock Styling (RLY-K001) - Bottom Dock Containing All 6 Folders + Visit Me Browser Icon */
.dock-container {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding-bottom: 12px;
  padding-top: 32px; /* Top clearance for folder tooltips */
  max-width: 100vw;
  box-sizing: border-box;
  overflow: visible;
}

.dock-shelf {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  padding: 12px 16px 8px 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  max-width: calc(100vw - 16px);
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* Desktop Dock Width (approx. 10 icon positions capacity for 7 actual items) */
@media (min-width: 769px) {
  .dock-shelf {
    width: 680px;
  }
}

.dock-shelf::-webkit-scrollbar {
  display: none;
}

.dock-folder-item, .dock-item {
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-top: 28px;
  flex-shrink: 0;
  overflow: visible;
}

.dock-icon {
  font-size: 34px;
  transition: var(--transition-fast);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.dock-folder-item:hover .dock-icon, .dock-item:hover .dock-icon {
  transform: translateY(-4px) scale(1.15);
}

/* Tooltip for Dock Folders & Browser Shortcut */
.dock-tooltip {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(15, 23, 42, 0.9);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition-fast);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 120;
}

.dock-folder-item:hover .dock-tooltip, .dock-item:hover .dock-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dock-divider {
  width: 1px;
  height: 32px;
  background: rgba(0, 0, 0, 0.15);
  margin: 0 2px;
  flex-shrink: 0;
}

/* Helper Utility */
.hidden { display: none !important; }

/* ==========================================================================
   Responsive Adaptations & Media Queries
   ========================================================================== */

/* Tablet & Intermediate Screen Adjustments (max-width: 900px) */
@media (max-width: 900px) {
  .top-bar {
    padding: 0 10px;
  }
  .top-bar-left, .top-bar-center, .top-bar-right {
    gap: 8px;
  }
  .announcement-banner {
    max-width: 260px;
  }
}

/* Tablet / Mobile Screen Adjustments (max-width: 768px) */
@media (max-width: 768px) {
  .window-container {
    top: 40px;
    bottom: 74px;
  }
  .top-bar {
    padding: 0 8px;
    font-size: 12px;
  }
  .top-bar-left, .top-bar-right {
    flex-shrink: 0;
    gap: 6px;
  }
  .top-bar-center {
    min-width: 0;
    flex: 1 1 auto;
    justify-content: center;
  }
  .logo-plate {
    padding: 2px 6px !important;
  }
  .logo-text {
    font-size: 11px;
  }
  .announcement-banner {
    max-width: 100%;
    font-size: 11px;
    padding: 3px 8px;
  }
  .season-badge {
    padding: 2px 6px;
    font-size: 11px;
  }
  .season-text {
    display: none;
  }
  .dock-container {
    padding-top: 24px;
  }
  .dock-shelf {
    width: 100%;
    justify-content: center;
    gap: 8px;
    padding: 8px 10px;
  }
  .dock-icon {
    font-size: 28px;
  }
}

/* Small Screen / Smartphone Adjustments (max-width: 520px) */
@media (max-width: 520px) {
  .top-bar {
    padding: 0 6px;
  }
  .top-bar-left, .top-bar-right {
    gap: 4px;
  }
  .logo-text {
    font-size: 10px;
  }
  .announcement-banner {
    font-size: 10px;
    padding: 2px 6px;
  }
  .season-badge {
    display: none;
  }
  .notification-trigger, .language-switch-btn {
    padding: 3px 4px;
    font-size: 11px;
  }
  .committee-top-header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px;
    text-align: center;
  }
  .committee-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }
  .btn-join, .btn-app-icon {
    font-size: 11px;
    padding: 6px 12px;
  }
  .stickers-container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
  }
  .sticker-card {
    padding: 10px 8px;
  }
  .sticker-img-wrapper {
    width: 80px;
    height: 95px;
  }
  .sticker-name {
    font-size: 12px;
  }
  .sticker-title {
    font-size: 10px;
  }
  .window-body {
    padding: 12px;
    gap: 12px;
  }
  .info-card-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px;
    gap: 14px;
  }
  .info-avatar-box {
    width: 90px;
    height: 110px;
  }
  .info-details {
    align-items: center;
    width: 100%;
  }
  .btn-primary.contact-btn {
    width: 100%;
  }
}

/* Narrow Screen Adjustments (max-width: 420px) */
@media (max-width: 420px) {
  .dock-shelf {
    gap: 4px;
    padding: 6px 6px;
    border-radius: 18px;
  }
  .dock-icon {
    font-size: 24px;
  }
  .dock-divider {
    height: 24px;
    margin: 0 1px;
  }
  .notification-popup {
    top: 44px;
    right: 12px;
    padding: 12px;
  }
  html[dir="rtl"] .notification-popup {
    right: auto;
    left: 12px;
  }
}

/* Very Narrow Screen Adjustments (max-width: 380px) */
@media (max-width: 380px) {
  .logo-text {
    display: none;
  }
  .announcement-banner {
    max-width: 85px;
  }
  .season-text {
    font-size: 9px;
  }
}

/* Height-Aware Landscape Adjustments (max-height: 520px) */
@media (max-height: 520px) {
  .window-container {
    top: 36px;
    bottom: 56px;
    padding: 4px;
  }
  .dock-container {
    padding-bottom: 4px;
    padding-top: 20px;
  }
  .dock-shelf {
    padding: 4px 8px;
    gap: 6px;
  }
  .dock-icon {
    font-size: 22px;
  }
  .window-body {
    padding: 10px;
    gap: 10px;
  }
  .committee-top-header {
    padding: 6px 10px;
  }
  .committee-art-img {
    height: 38px;
  }
  .stickers-container {
    gap: 8px;
  }
  .sticker-img-wrapper {
    height: 80px;
  }
}
