:root {
  --nf-black: #141414;
  --nf-dark: #181818;
  --nf-card: #2f2f2f;
  --nf-red: #E50914;
  --nf-red-hover: #b80710;
  --nf-white: #ffffff;
  --nf-gray: #808080;
  --nf-light-gray: #e5e5e5;
  --nf-border: #333333;
  --gold-accent: #f59e0b;
  --emerald-accent: #10b981;
  --cyan-accent: #06b6d4;
  --purple-accent: #a855f7;
  --pink-accent: #ec4899;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-card: 0 4px 14px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(229, 9, 20, 0.4);
}

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

body {
  font-family: 'Nunito', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--nf-black);
  color: var(--nf-white);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, .brand-logo, .portal-brand, .billboard-title, .row-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

/* =========================================================================
   TOP NAVBAR
   ========================================================================= */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 68px;
  background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4%;
  z-index: 100;
  transition: background-color 0.4s ease;
}

.top-nav.scrolled {
  background-color: var(--nf-black);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand-logo, .portal-brand {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--nf-white);
  letter-spacing: -0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.brand-badge, .portal-brand-badge {
  color: var(--nf-red);
  font-weight: 900;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-link {
  background: none;
  border: none;
  color: var(--nf-light-gray);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--nf-white);
  font-weight: 700;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Nav Search Bar */
.nav-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 6px 14px;
  transition: all 0.25s ease;
}

.nav-search-box:focus-within {
  background: #111111;
  border-color: var(--nf-red);
  box-shadow: 0 0 14px rgba(229, 9, 20, 0.4);
}

.search-icon {
  font-size: 0.9rem;
  opacity: 0.8;
}

.nav-search-input {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.85rem;
  font-family: inherit;
  font-weight: 500;
  outline: none;
  width: 190px;
  transition: width 0.25s ease;
}

.nav-search-box:focus-within .nav-search-input {
  width: 270px;
}

.nav-search-input::placeholder {
  color: #94a3b8;
  font-size: 0.82rem;
}

.search-clear-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 50%;
  line-height: 1;
}

.search-clear-btn:hover {
  color: #ffffff;
}

.xp-pill, .streak-pill {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-menu-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  padding: 6px 10px;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.profile-menu-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.profile-mini-avatar {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: #333;
}

.profile-mini-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.dropdown-caret {
  font-size: 0.7rem;
  color: var(--nf-light-gray);
}

/* Profile Dropdown */
.profile-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  width: 220px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--nf-border);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.2s ease;
}

.dropdown-header {
  font-size: 0.75rem;
  color: var(--nf-gray);
  font-weight: 700;
  padding: 6px 10px;
  text-transform: uppercase;
}

.dropdown-item {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--nf-light-gray);
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s;
  text-align: left;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--nf-white);
}

.dropdown-divider {
  height: 1px;
  background: var(--nf-border);
  margin: 6px 0;
}

/* =========================================================================
   1. NETFLIX PROFILE SELECTION SCREEN
   ========================================================================= */
.profile-select-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, #221f1f 0%, #141414 100%);
  padding: 40px 20px;
}

.profile-select-content {
  text-align: center;
  max-width: 900px;
  width: 100%;
  animation: scaleIn 0.4s ease;
}

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

.portal-brand {
  font-size: 2.8rem;
  margin-bottom: 24px;
  justify-content: center;
}

.profile-prompt {
  font-size: 3rem;
  font-weight: 600;
  color: var(--nf-white);
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.profiles-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  width: 150px;
  transition: all 0.2s ease;
}

.profile-card:hover .profile-avatar-box {
  border-color: var(--nf-white);
  transform: scale(1.06);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.35);
}

.profile-card:hover .profile-name {
  color: var(--nf-white);
}

.profile-avatar-box {
  width: 140px;
  height: 140px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  border: 4px solid transparent;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.profile-avatar-box.theme-olivia {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
}

.profile-avatar-box.theme-sophia {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #10b981 100%);
}

.profile-avatar-box.theme-yaya {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #f59e0b 100%);
}

.profile-avatar-box.theme-mama {
  background: linear-gradient(135deg, #b45309 0%, #d49a37 50%, #7c2d12 100%);
}

.profile-avatar-box.theme-add {
  background: #262626;
  border: 2px dashed #666;
  font-size: 3rem;
  color: #888;
}

.profile-card:hover .profile-avatar-box.theme-add {
  border-color: var(--nf-white);
  color: var(--nf-white);
}

.profile-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--nf-gray);
  transition: color 0.2s;
}

.profile-grade-tag {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 600;
  margin-top: -6px;
}

.profile-actions {
  margin-top: 10px;
}

/* =========================================================================
   2. DASHBOARD & HERO BILLBOARD
   ========================================================================= */
.dashboard-container {
  padding-top: 0;
  padding-bottom: 80px;
  animation: fadeIn 0.4s ease;
}

.hero-billboard {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 0 4%;
  margin-bottom: 20px;
  background: linear-gradient(180deg, rgba(20,20,20,0) 0%, rgba(20,20,20,0.8) 80%, var(--nf-black) 100%),
              radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.4) 0%, rgba(20,20,20,0.95) 70%);
}

.billboard-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.billboard-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.billboard-tag {
  display: inline-block;
  background: rgba(229, 9, 20, 0.9);
  color: var(--nf-white);
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.billboard-title {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.billboard-desc {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #cbd5e1;
  margin-bottom: 24px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

.billboard-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Netflix Buttons */
.btn {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-netflix-play {
  background-color: var(--nf-white);
  color: var(--nf-black);
}

.btn-netflix-play:hover {
  background-color: rgba(255, 255, 255, 0.85);
  transform: scale(1.03);
}

.btn-netflix-info {
  background-color: rgba(109, 109, 110, 0.7);
  color: var(--nf-white);
  backdrop-filter: blur(8px);
}

.btn-netflix-info:hover {
  background-color: rgba(109, 109, 110, 0.45);
  transform: scale(1.03);
}

.btn-outline {
  background: transparent;
  color: var(--nf-gray);
  border: 1px solid var(--nf-gray);
  letter-spacing: 1px;
}

.btn-outline:hover {
  color: var(--nf-white);
  border-color: var(--nf-white);
}

.btn-primary {
  background: var(--nf-red);
  color: var(--nf-white);
}

.btn-primary:hover {
  background: var(--nf-red-hover);
}

/* =========================================================================
   SEARCH RESULTS VIEW
   ========================================================================= */
.search-results-section {
  padding: 100px 4% 40px;
  animation: fadeIn 0.25s ease;
  min-height: 80vh;
}

.search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #333333;
  padding-bottom: 16px;
}

.search-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--nf-white);
}

.search-subheading {
  font-size: 0.88rem;
  color: #94a3b8;
  margin-top: 4px;
}

.search-filter-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-filter-btn {
  background: #262626;
  border: 1px solid #444444;
  color: #cccccc;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-filter-btn:hover {
  background: #333333;
  color: #ffffff;
}

.search-filter-btn.active {
  background: var(--nf-red);
  border-color: var(--nf-red);
  color: #ffffff;
}

.btn-clear-search {
  background: transparent;
  border: 1px solid #555555;
  color: #cccccc;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-clear-search:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Quick Search Tag Chips */
.search-quick-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-tags-label {
  font-size: 0.8rem;
  font-weight: 800;
  color: #94a3b8;
  margin-right: 4px;
}

.quick-tag-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #f1f5f9;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.quick-tag-btn:hover {
  background: var(--nf-red);
  border-color: var(--nf-red);
  transform: translateY(-1px);
}

/* Search Grid & Cards */
.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.search-result-card {
  background: #1c1c22;
  border: 1px solid #33333d;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  cursor: pointer;
}

.search-result-card:hover {
  transform: translateY(-4px);
  border-color: var(--nf-red);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.6);
}

.result-card-banner {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.result-profile-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.result-type-badge {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.result-card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.result-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.result-card-desc {
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.4;
  margin-bottom: 14px;
  flex: 1;
}

.result-card-action {
  background: var(--nf-red);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  width: 100%;
  text-align: center;
  transition: background 0.15s ease;
}

.result-card-action:hover {
  background: var(--nf-red-hover);
}

.search-match-highlight {
  background: rgba(229, 9, 20, 0.4);
  color: #ffffff;
  padding: 0 3px;
  border-radius: 3px;
  font-weight: 800;
}

.search-empty-box {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px dashed #444444;
}

.search-empty-box h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.search-empty-box p {
  color: #94a3b8;
  font-size: 0.9rem;
}

/* =========================================================================
   CONTENT ROWS & SLIDERS
   ========================================================================= */
.content-rows-container {
  padding: 0 4%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.content-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.row-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.row-title {
  font-size: 1.4rem;
  color: var(--nf-light-gray);
  transition: color 0.2s;
}

.content-row:hover .row-title {
  color: var(--nf-white);
}

.row-subtitle {
  font-size: 0.85rem;
  color: var(--nf-gray);
  font-weight: 500;
}

.row-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 12px 4px 20px;
  scroll-behavior: smooth;
}

.row-slider::-webkit-scrollbar {
  height: 6px;
}
.row-slider::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.row-slider::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

/* Studio & Topic Cards */
.media-card {
  flex: 0 0 280px;
  height: 180px;
  border-radius: var(--radius-md);
  background-color: var(--nf-dark);
  border: 1px solid var(--nf-border);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.media-card:hover {
  transform: scale(1.08) translateY(-6px);
  z-index: 10;
  box-shadow: var(--shadow-card);
  border-color: rgba(255, 255, 255, 0.4);
}

.card-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.media-card:hover .card-bg-gradient {
  opacity: 1;
}

.card-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 2.2rem;
  z-index: 2;
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  z-index: 2;
}

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

.card-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--nf-white);
}

.card-desc {
  font-size: 0.8rem;
  color: #e2e8f0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================================================
   3. FULLSCREEN STUDIO VIEWER
   ========================================================================= */
.studio-viewer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--nf-black);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.3s ease;
}

.studio-viewer-bar {
  height: 56px;
  background: #181818;
  border-bottom: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.btn-back-hub {
  background: var(--nf-red);
  color: var(--nf-white);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-back-hub:hover {
  background: var(--nf-red-hover);
}

.studio-title-badge {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--nf-white);
}

.studio-actions {
  display: flex;
  gap: 10px;
}

.btn-viewer-action {
  background: #2a2a2a;
  color: #ccc;
  border: 1px solid #444;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-viewer-action:hover {
  background: #3a3a3a;
  color: var(--nf-white);
}

.studio-iframe-wrapper {
  flex-grow: 1;
  width: 100%;
  height: calc(100vh - 56px);
  background: #ffffff;
}

.studio-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =========================================================================
   4. MODALS & UTILITIES
   ========================================================================= */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.2s ease;
}

.modal-card {
  background: #222;
  border-radius: var(--radius-md);
  border: 1px solid #444;
  width: 90%;
  max-width: 480px;
  padding: 24px;
}

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

.modal-close {
  background: none;
  border: none;
  color: #999;
  font-size: 1.2rem;
  cursor: pointer;
}

.avatar-picker-row {
  margin-bottom: 20px;
}

.avatar-options {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.avatar-option-btn {
  font-size: 1.8rem;
  background: #333;
  border: 2px solid transparent;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.avatar-option-btn.selected {
  border-color: var(--nf-red);
  background: #444;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  background: #333;
  border: 1px solid #555;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--nf-white);
  font-size: 1rem;
  outline: none;
}

.form-control:focus {
  border-color: var(--nf-red);
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

/* Animations & Helpers */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hidden {
  display: none !important;
}

#confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 3000;
}

/* Print Stylesheet */
@media print {
  @page {
    size: letter portrait;
    margin: 0.5in;
  }

  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 10pt;
  }

  .top-nav, .billboard-actions, .btn, #confetti-canvas,
  .studio-viewer, #profile-select-screen, .profile-actions,
  .row-subtitle {
    display: none !important;
  }

  .dashboard-container {
    display: block !important;
    padding: 0 !important;
  }

  .hero-billboard {
    background: #ffffff !important;
    border: 2px solid #000000 !important;
    color: #000000 !important;
    min-height: auto !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
  }

  .billboard-title {
    color: #000000 !important;
    font-size: 1.5rem !important;
  }

  .billboard-desc {
    color: #333333 !important;
    font-size: 0.95rem !important;
  }

  .billboard-tag {
    background: #000000 !important;
    color: #ffffff !important;
  }

  .content-rows-container {
    padding: 0 !important;
  }

  .row-title {
    color: #000000 !important;
    font-size: 1.2rem !important;
    border-bottom: 1.5px solid #000000;
    padding-bottom: 4px;
    display: block;
    margin-bottom: 10px;
  }

  .row-slider {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    overflow: visible !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
  }

  .media-card {
    background: #ffffff !important;
    border: 1px solid #94a3b8 !important;
    color: #000000 !important;
    box-shadow: none !important;
    height: auto !important;
    min-height: 90px !important;
    padding: 10px !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .card-bg-gradient {
    display: none !important;
  }

  .card-title {
    color: #000000 !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
  }

  .card-desc {
    color: #475569 !important;
    font-size: 0.8rem !important;
    -webkit-line-clamp: unset !important;
    display: block !important;
  }

  .card-badge {
    background: #e2e8f0 !important;
    color: #0f172a !important;
    border: 1px solid #94a3b8 !important;
  }
}

