/* ==========================================================================
   PERFEX CRM — NEOBRUTALISM THEME
   Layout: Sidebar, Header, Content Wrapper, Grid
   ========================================================================== */

/* --------------------------------------------------------------------------
   Variáveis de Layout
   -------------------------------------------------------------------------- */
:root {
  --nb-sidebar-width:       260px;
  --nb-sidebar-collapsed:   68px;
  --nb-header-height:       64px;
  --nb-content-padding:     1.5rem;
  --nb-card-gap:            1.5rem;
}

/* --------------------------------------------------------------------------
   Base Layout — Wrapper Principal
   -------------------------------------------------------------------------- */
.nb-app {
  display: flex;
  min-height: 100vh;
  background: var(--nb-bg);
}

.nb-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: var(--nb-sidebar-width);
  min-height: 100vh;
  transition: margin-left 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nb-main.sidebar-collapsed {
  margin-left: var(--nb-sidebar-collapsed);
}

/* --------------------------------------------------------------------------
   Sidebar
   -------------------------------------------------------------------------- */
.nb-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--nb-sidebar-width);
  height: 100vh;
  background: var(--nb-sidebar-bg);
  border-right: var(--nb-border-width) solid var(--nb-border);
  display: flex;
  flex-direction: column;
  z-index: 100;
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.nb-sidebar.collapsed {
  width: var(--nb-sidebar-collapsed);
}

/* Logo / Brand */
.nb-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  height: var(--nb-header-height);
  border-bottom: 2px solid var(--nb-sidebar-border);
  text-decoration: none;
  flex-shrink: 0;
}

.nb-sidebar-brand-icon {
  width: 36px;
  height: 36px;
  background: var(--nb-accent);
  border: 2px solid var(--nb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 3px 3px 0 var(--nb-border);
}

.nb-sidebar-brand-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--nb-sidebar-text);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
}

/* Nav */
.nb-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.75rem 0;
}

.nb-sidebar-section {
  margin-bottom: 0.5rem;
}

.nb-sidebar-label {
  padding: 0.5rem 1.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nb-text-muted);
  opacity: 0.6;
  white-space: nowrap;
  overflow: hidden;
}

.nb-sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.65rem 1.25rem;
  color: var(--nb-sidebar-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  position: relative;
  transition: background var(--nb-transition), color var(--nb-transition);
  border-left: 3px solid transparent;
}

.nb-sidebar-item:hover {
  background: var(--nb-sidebar-hover);
  color: var(--nb-sidebar-text);
  text-decoration: none;
  border-left-color: var(--nb-accent);
}

.nb-sidebar-item.active {
  background: var(--nb-sidebar-active);
  color: var(--nb-sidebar-active-text);
  font-weight: 700;
  border-left: 3px solid var(--nb-border);
}

.nb-sidebar-item .nb-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nb-sidebar-badge {
  margin-left: auto;
  padding: 0.1em 0.5em;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--nb-accent);
  color: var(--nb-accent-text);
  border: 1.5px solid currentColor;
  flex-shrink: 0;
}

/* Sidebar Footer (Theme switcher + Color picker) */
.nb-sidebar-footer {
  padding: 0.75rem 1rem;
  border-top: 2px solid var(--nb-sidebar-border);
  flex-shrink: 0;
}

/* Sidebar Toggle Button */
.nb-sidebar-toggle {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--nb-accent);
  border: var(--nb-border-width) solid var(--nb-border);
  box-shadow: var(--nb-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 101;
  transition: transform var(--nb-transition), box-shadow var(--nb-transition);
}

.nb-sidebar-toggle:hover {
  box-shadow: none;
  transform: translateY(-50%) translate(2px, 2px);
}

/* --------------------------------------------------------------------------
   Header / Topbar
   -------------------------------------------------------------------------- */
.nb-header {
  position: sticky;
  top: 0;
  height: var(--nb-header-height);
  background: var(--nb-header-bg);
  border-bottom: var(--nb-border-width) solid var(--nb-border);
  display: flex;
  align-items: center;
  padding: 0 var(--nb-content-padding);
  gap: 1rem;
  z-index: 50;
  flex-shrink: 0;
}

.nb-header-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--nb-text-primary);
  margin: 0;
}

.nb-header-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--nb-text-muted);
}

.nb-header-breadcrumb a {
  color: var(--nb-text-muted);
  text-decoration: none;
  font-weight: 500;
}

.nb-header-breadcrumb a:hover {
  color: var(--nb-text-primary);
}

.nb-header-separator {
  font-size: 0.75rem;
  opacity: 0.5;
}

.nb-header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Search */
.nb-header-search {
  position: relative;
}

.nb-header-search input {
  padding: 0.4rem 0.75rem 0.4rem 2.25rem;
  font-size: 0.875rem;
  font-family: inherit;
  background: var(--nb-bg-secondary);
  border: 2px solid var(--nb-border-light);
  color: var(--nb-text-primary);
  width: 220px;
  transition: border-color var(--nb-transition), box-shadow var(--nb-transition);
}

.nb-header-search input:focus {
  outline: none;
  border-color: var(--nb-accent);
  box-shadow: 3px 3px 0 var(--nb-border);
}

.nb-header-search-icon {
  position: absolute;
  left: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--nb-text-muted);
  pointer-events: none;
}

/* Avatar / User Menu */
.nb-header-avatar {
  width: 36px;
  height: 36px;
  background: var(--nb-accent);
  border: 2px solid var(--nb-border);
  box-shadow: 2px 2px 0 var(--nb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--nb-accent-text);
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow var(--nb-transition), transform var(--nb-transition);
}

.nb-header-avatar:hover {
  box-shadow: none;
  transform: translate(2px, 2px);
  text-decoration: none;
  color: var(--nb-accent-text);
}

/* Icon Button */
.nb-icon-btn {
  width: 36px;
  height: 36px;
  background: var(--nb-surface);
  border: 2px solid var(--nb-border);
  box-shadow: 2px 2px 0 var(--nb-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--nb-text-primary);
  position: relative;
  transition: box-shadow var(--nb-transition), transform var(--nb-transition);
}

.nb-icon-btn:hover {
  box-shadow: none;
  transform: translate(2px, 2px);
  background: var(--nb-accent);
  color: var(--nb-accent-text);
}

.nb-icon-btn .nb-notif-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: var(--nb-danger);
  border: 1.5px solid var(--nb-border);
}

/* --------------------------------------------------------------------------
   Content Area
   -------------------------------------------------------------------------- */
.nb-content {
  flex: 1;
  padding: var(--nb-content-padding);
  overflow-x: hidden;
}

/* Page Header */
.nb-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--nb-border-light);
  flex-wrap: wrap;
}

.nb-page-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--nb-text-primary);
  margin: 0;
  line-height: 1;
}

.nb-page-subtitle {
  font-size: 0.9rem;
  color: var(--nb-text-muted);
  margin-top: 0.375rem;
}

.nb-page-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Grid System
   -------------------------------------------------------------------------- */
.nb-grid {
  display: grid;
  gap: var(--nb-card-gap);
}

.nb-grid-2 { grid-template-columns: repeat(2, 1fr); }
.nb-grid-3 { grid-template-columns: repeat(3, 1fr); }
.nb-grid-4 { grid-template-columns: repeat(4, 1fr); }
.nb-grid-auto { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

/* Grid com coluna principal + sidebar */
.nb-grid-main-side {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--nb-card-gap);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.nb-footer {
  padding: 1rem var(--nb-content-padding);
  border-top: 2px solid var(--nb-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--nb-text-muted);
  background: var(--nb-surface);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Responsividade
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .nb-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nb-grid-main-side { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  .nb-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .nb-sidebar {
    transform: translateX(-100%);
  }
  .nb-sidebar.mobile-open {
    transform: translateX(0);
  }
  .nb-main {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .nb-grid-2,
  .nb-grid-3,
  .nb-grid-4 {
    grid-template-columns: 1fr;
  }
  :root {
    --nb-content-padding: 1rem;
  }
  .nb-page-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   Mobile Overlay
   -------------------------------------------------------------------------- */
.nb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99;
}

.nb-overlay.active {
  display: block;
}

/* --------------------------------------------------------------------------
   Skip Link (Acessibilidade)
   -------------------------------------------------------------------------- */
.nb-skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: 0.5rem 1rem;
  background: var(--nb-accent);
  color: var(--nb-accent-text);
  font-weight: 700;
  z-index: 9999;
  border: 2px solid var(--nb-border);
  text-decoration: none;
}

.nb-skip-link:focus {
  top: 0;
}

/* ==========================================================================
   OFFICIAL CREATIVE CORE VISUAL EFFECTS — DEPTH PARALLAX & BLUEPRINT RULERS
   ========================================================================== */

#cc-depth, #cc-depth-fg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  contain: strict;
}

/* Background Scene — behind content */
#cc-depth {
  z-index: -1;
  perspective: 680px;
  perspective-origin: 50% 42%;
}

/* Foreground Layer — above content, subtle overlay */
#cc-depth-fg {
  z-index: 60;
  opacity: .75;
  -webkit-mask-image: radial-gradient(125% 115% at 50% 50%, transparent 38%, #000 100%);
  mask-image: radial-gradient(125% 115% at 50% 50%, transparent 38%, #000 100%);
}

.ccd-layer {
  position: absolute;
  inset: -20% -10%;
  will-change: transform;
}

/* L0 — Stellar Dust (distant) */
.ccd-dust {
  background-image:
    radial-gradient(1px 1px at 20% 30%,  rgba(255,255,255,.55), transparent 60%),
    radial-gradient(1px 1px at 70% 65%,  rgba(255,255,255,.40), transparent 60%),
    radial-gradient(1px 1px at 40% 80%,  rgba(255,255,255,.45), transparent 60%),
    radial-gradient(1px 1px at 88% 18%,  rgba(255,255,255,.35), transparent 60%),
    radial-gradient(1px 1px at 12% 60%,  rgba(255,255,255,.40), transparent 60%),
    radial-gradient(1px 1px at 55% 12%,  rgba(255,255,255,.30), transparent 60%);
  background-size: 340px 340px, 420px 420px, 300px 300px, 500px 500px, 380px 380px, 460px 460px;
  opacity: .5;
}

/* L1 — Twinkling Stars */
.ccd-stars {
  opacity: 1;
}

.ccd-stars i {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px rgba(255,255,255,.7);
  animation: ccd-tw 3.6s ease-in-out infinite;
}

@keyframes ccd-tw {
  0%, 100% { opacity: .25; }
  50% { opacity: 1; }
}

/* L2 — Nebula gas clouds */
.ccd-neb {
  background-image:
    radial-gradient(40% 32% at 22% 28%, rgba(255, 61, 20, 0.16), transparent 70%),
    radial-gradient(46% 38% at 80% 36%, rgba(37, 99, 235, 0.16), transparent 72%),
    radial-gradient(50% 42% at 60% 82%, rgba(0, 182, 212, 0.12), transparent 72%),
    radial-gradient(34% 30% at 12% 76%, rgba(255, 61, 20, 0.12), transparent 72%);
  animation: ccd-drift 26s ease-in-out infinite alternate;
}

@keyframes ccd-drift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(2.2%, -1.6%, 0) scale(1.06); }
}

/* L3 — 3D Perspective Grid floor/ceiling */
.ccd-grid {
  inset: 0;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 16%, transparent 45%, transparent 55%, #000 84%, #000 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 16%, transparent 45%, transparent 55%, #000 84%, #000 100%);
  opacity: 0.9;
}

.ccd-grid--floor {
  transform-origin: 50% 100%;
}

.ccd-grid--ceil {
  transform-origin: 50% 0%;
}

.ccd-grid__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -60px;
  bottom: -60px;
  will-change: transform;
  backface-visibility: hidden;
}

[data-theme="dark"] .ccd-grid--floor .ccd-grid__bg {
  background:
    linear-gradient(rgba(255, 61, 20, 0.18) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(90deg, rgba(255, 61, 20, 0.18) 1px, transparent 1px) 0 0 / 56px 56px;
}

[data-theme="dark"] .ccd-grid--ceil .ccd-grid__bg {
  background:
    linear-gradient(rgba(37, 99, 235, 0.12) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(90deg, rgba(37, 99, 235, 0.12) 1px, transparent 1px) 0 0 / 56px 56px;
}

[data-theme="light"] .ccd-grid--floor .ccd-grid__bg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px) 0 0 / 56px 56px;
}

[data-theme="light"] .ccd-grid--ceil .ccd-grid__bg {
  background:
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px) 0 0 / 56px 56px;
}

/* L4 — Wireframe Shapes */
.ccd-shape {
  position: absolute;
  border: 1px solid rgba(255, 61, 20, 0.12);
}

.ccd-shape--ring {
  border-radius: 50%;
}

.ccd-shape--a {
  width: 360px;
  height: 360px;
  left: 6%;
  top: 18%;
}

.ccd-shape--b {
  width: 240px;
  height: 240px;
  right: 8%;
  top: 30%;
  border-color: rgba(37, 99, 235, 0.1);
}

.ccd-shape--c {
  width: 480px;
  height: 480px;
  right: -6%;
  bottom: -8%;
  border-radius: 50%;
  border-color: rgba(0, 182, 212, 0.08);
}

/* Motes & Glow */
.ccd-fg-motes {
  will-change: transform;
}

.ccd-fg-motes i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7), 0 0 2px var(--nb-accent);
  animation: ccd-tw 2.8s ease-in-out infinite;
}

.ccd-fg-glow {
  position: absolute;
  will-change: transform;
  background:
    radial-gradient(30% 30% at 18% 22%, rgba(255, 61, 20, 0.06), transparent 70%),
    radial-gradient(28% 28% at 82% 74%, rgba(0, 182, 212, 0.05), transparent 70%);
  inset: -10%;
  filter: blur(2px);
}

@media (prefers-reduced-motion: reduce) {
  .ccd-stars i, .ccd-neb, .ccd-fg-motes i { animation: none; }
  #cc-depth-fg { opacity: .4; }
}

/* ═════════════════════════════════════════════════════════
   BLUEPRINT RULERS — COMPOSIÇÃO DE RÉGUA TÉCNICA
   ═════════════════════════════════════════════════════════ */

/* Réguas fixas nas bordas da viewport */
.cc-redge {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 14px;
  pointer-events: none;
  z-index: 88;
}

.cc-redge--left {
  left: 0;
}

.cc-redge--right {
  right: 0;
}

/* Ticks curtos */
.cc-redge::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5px;
}

/* Ticks longos */
.cc-redge::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10px;
}

[data-theme="dark"] .cc-redge::before {
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 12px);
}
[data-theme="dark"] .cc-redge::after {
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 60px);
}

[data-theme="light"] .cc-redge::before {
  background: repeating-linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 12px);
}
[data-theme="light"] .cc-redge::after {
  background: repeating-linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0 1px, transparent 1px 60px);
}

.cc-redge--left::before, .cc-redge--left::after {
  left: 0;
}
.cc-redge--right::before, .cc-redge--right::after {
  right: 0;
}

@media (max-width: 1100px) {
  .cc-redge { display: none; }
}

/* Moldura por seção / card */
.cc-rules {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
}

.cc-rules__ticktop {
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 6px;
}

.cc-rules__ticktop::after {
  content: '';
  position: absolute;
  inset: 0;
  height: 10px;
}

[data-theme="dark"] .cc-rules__ticktop {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 1px, transparent 1px 28px);
}
[data-theme="dark"] .cc-rules__ticktop::after {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0 1px, transparent 1px 140px);
}

[data-theme="light"] .cc-rules__ticktop {
  background: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 28px);
}
[data-theme="light"] .cc-rules__ticktop::after {
  background: repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.14) 0 1px, transparent 1px 140px);
}

.cc-rules__tickside {
  position: absolute;
  top: 24px;
  width: 6px;
  height: 120px;
}

[data-theme="dark"] .cc-rules__tickside {
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0 1px, transparent 1px 14px);
}

[data-theme="light"] .cc-rules__tickside {
  background: repeating-linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0 1px, transparent 1px 14px);
}

.cc-rules__tickside--l {
  left: 0;
}
.cc-rules__tickside--r {
  right: 0;
}

/* Cruzes "+" nos cantos */
.cc-rules__plus {
  position: absolute;
  width: 13px;
  height: 13px;
  display: block;
}

.cc-rules__plus::before, .cc-rules__plus::after {
  content: '';
  position: absolute;
}

[data-theme="dark"] .cc-rules__plus::before, [data-theme="dark"] .cc-rules__plus::after {
  background: rgba(255, 255, 255, 0.35);
}

[data-theme="light"] .cc-rules__plus::before, [data-theme="light"] .cc-rules__plus::after {
  background: rgba(0, 0, 0, 0.25);
}

.cc-rules__plus::before { left: 0; right: 0; top: 6px; height: 1px; }
.cc-rules__plus::after  { top: 0; bottom: 0; left: 6px; width: 1px; }
.cc-rules__plus--tl { top: 10px; left: 10px; }
.cc-rules__plus--tr { top: 10px; right: 10px; }
.cc-rules__plus--bl { bottom: 10px; left: 10px; }
.cc-rules__plus--br { bottom: 10px; right: 10px; }

.cc-rules__h {
  position: absolute;
  bottom: 10px;
  right: 32px;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

[data-theme="dark"] .cc-rules__h {
  color: rgba(255, 255, 255, 0.25);
}

[data-theme="light"] .cc-rules__h {
  color: rgba(0, 0, 0, 0.18);
}

/* Intense (Orange highlight) */
.cc-rules--intense .cc-rules__ticktop {
  background: repeating-linear-gradient(90deg, rgba(255, 61, 20, 0.3) 0 1px, transparent 1px 28px) !important;
}
.cc-rules--intense .cc-rules__ticktop::after {
  background: repeating-linear-gradient(90deg, rgba(255, 61, 20, 0.5) 0 1px, transparent 1px 140px) !important;
}
.cc-rules--intense .cc-rules__plus::before,
.cc-rules--intense .cc-rules__plus::after {
  background: rgba(255, 61, 20, 0.6) !important;
}
.cc-rules--intense .cc-rules__tickside {
  background: repeating-linear-gradient(180deg, rgba(255, 61, 20, 0.3) 0 1px, transparent 1px 14px) !important;
}
.cc-rules--intense .cc-rules__h {
  color: rgba(255, 61, 20, 0.4) !important;
}

@media (max-width: 720px) {
  .cc-rules__tickside { display: none; }
  .cc-rules__h { display: none; }
}

/* ==========================================================================
   SUBTLE GLASSMORPHISM EFFECTS
   ========================================================================== */
.nb-sidebar {
  background: rgba(8, 10, 16, 0.72) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
[data-theme="light"] .nb-sidebar {
  background: rgba(11, 13, 20, 0.82) !important;
}

.nb-header {
  background: rgba(6, 8, 12, 0.65) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
[data-theme="light"] .nb-header {
  background: rgba(255, 255, 255, 0.65) !important;
}

