/* =========================================
   DASHBOARD ACTION CARDS – FINAL FIX
   Mirrors HOME feature cards exactly
   ========================================= */

.ss-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

/* Kill Bootstrap columns inside this grid */
.ss-action-grid > [class^="col-"] {
  width: 100% !important;
  max-width: 100% !important;
  flex: none !important;
}

/* Card sizing */
.ss-action-card {
  padding: 1.15rem 1.15rem 1.05rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

/* Icon density */
.ss-action-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
  font-size: 1.25rem;
}

/* Typography rhythm */
.ss-action-card__title {
  margin-bottom: .45rem;
  letter-spacing: -0.01em;
}

.ss-action-card__desc {
  line-height: 1.45;
  opacity: .92;
  margin-bottom: .9rem;
}

/* Button pinned */
.ss-action-card__btn {
  margin-top: auto;
}

/* Responsive */
@media (max-width: 1200px) {
  .ss-action-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ss-action-grid {
    grid-template-columns: 1fr;
  }
}


/* Global “home gospel” glass */
.glass-card-2026 {
  background: rgba(14, 20, 36, 0.55);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.08);
  border-radius: 18px;
}

/* Make generic Bootstrap cards follow the same glass feel (only if you want global uniformity) */
.card {
  background: rgba(14, 20, 36, 0.55);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.08);
  border-radius: 18px;
}
/* =========================================
   PREMIUM TABLE SYSTEM (SS)
   Applies to: <table class="table ss-table ...">
   Goal: Home/MyPlans glass vibe, softer contrast
   ========================================= */

/* Container: make table sit like a glass card, not a bright sheet */
.ss-table {
  --ss-table-border: rgba(255,255,255,.08);
  --ss-table-border-2: rgba(255,255,255,.06);
  --ss-table-head: rgba(255,255,255,.06);
  --ss-table-row-hover: rgba(255,255,255,.04);
  --ss-table-text: rgba(255,255,255,.88);
  --ss-table-muted: rgba(255,255,255,.68);

  color: var(--ss-table-text);
  margin: 0;                 /* kills Bootstrap bottom gap */
  border-collapse: separate; /* enables rounded corners nicely */
  border-spacing: 0;
  background: rgba(10,14,28,.22);  /* subtle glass base */
  border: 1px solid var(--ss-table-border);
  border-radius: 16px;
  overflow: hidden;
}

/* Remove Bootstrap’s bright borders */
.ss-table > :not(caption) > * > * {
  border-color: var(--ss-table-border-2) !important;
}

/* Header = premium strip */
.ss-table thead th {
  background: var(--ss-table-head) !important;
  color: rgba(255,255,255,.85) !important;
  font-weight: 700;
  letter-spacing: .01em;
  text-transform: none;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--ss-table-border) !important;
}

/* Body cells spacing */
.ss-table tbody td {
  padding: .85rem 1rem;
  color: var(--ss-table-muted);
  vertical-align: middle;
}

/* Row hover = subtle premium */
.ss-table tbody tr {
  transition: background .18s ease, transform .18s ease;
}

.ss-table tbody tr:hover {
  background: var(--ss-table-row-hover);
}

/* Make first column a bit stronger (helps readability) */
.ss-table tbody td:first-child {
  color: rgba(255,255,255,.82);
}

/* Tighten table responsiveness: avoid the "bright white" responsive wrapper */
.table-responsive {
  background: transparent !important;
  border-radius: 16px;
}

/* Optional: if Bootstrap is adding a white shadow/outline somewhere */
.table-responsive::-webkit-scrollbar {
  height: 10px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.12);
  border-radius: 999px;
}

/* Badges inside tables: make them feel like pills, not bootstrap stickers */
.ss-table .ss-badge.badge {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: .35rem .6rem;
  font-weight: 700;
}

/* If any cell uses text-muted, don’t go too light */
.ss-table .text-muted,
.ss-table .muted {
  color: rgba(255,255,255,.62) !important;
}
/* === Darker, MyPlans-style glass table tuning === */
.ss-table {
  background: rgba(6, 10, 22, .32) !important;   /* deeper base */
  border: 1px solid rgba(255,255,255,.07) !important;
  box-shadow: 0 18px 55px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.05);
}

.ss-table thead th {
  background: rgba(255,255,255,.045) !important;  /* darker header strip */
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
}

/* make row dividers less “glowy” */
.ss-table > :not(caption) > * > * {
  border-color: rgba(255,255,255,.045) !important;
}

/* cells slightly dimmer so card feels deeper */
.ss-table tbody td {
  color: rgba(255,255,255,.64) !important;
}

.ss-table tbody td:first-child {
  color: rgba(255,255,255,.80) !important;
}

/* optional: makes the hover blend into glass instead of popping bright */
.ss-table tbody tr:hover {
  background: rgba(255,255,255,.028) !important;
}
/* ===========================
   Dashboard panels — deeper base like MyPlans
   =========================== */

.ss-panel.premium-card{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(10, 16, 28, .72);              /* same vibe as support */
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  border-radius: 18px;
}

.ss-panel .ss-panel__head{
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);             /* same as MyPlans head */
  padding: 16px 18px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.ss-panel .ss-panel__body,
.ss-panel .card-body{
  background: transparent;                        /* STOP the bright wash */
  padding: 16px 18px;
}
/* ===========================
   Tables — premium dark (kills Bootstrap table bg vars)
   =========================== */

.ss-table.table{
  --bs-table-bg: transparent !important;
  --bs-table-accent-bg: transparent !important;
  --bs-table-striped-bg: rgba(255,255,255,.02) !important;
  --bs-table-hover-bg: rgba(255,255,255,.035) !important;
  --bs-table-border-color: rgba(255,255,255,.06) !important;
  color: rgba(255,255,255,.86);
}

.ss-table thead th{
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.ss-table tbody td{
  border-top: 1px solid rgba(255,255,255,.06);
}
/* =========================================================
   DASHBOARD: unify ss-panel to MyPlans/Home premium depth
   (wins against multiple conflicting ss-panel definitions)
   ========================================================= */

/* Core panel shell */
.ss-panel{
  position: relative !important;
  border-radius: 20px !important;
  overflow: hidden !important;

  border: 1px solid rgba(255,255,255,.08) !important;
  background: rgba(10, 16, 28, .72) !important;   /* deeper base like MyPlans */
  box-shadow: 0 18px 52px rgba(0,0,0,.40) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

/* Kill any “bright” header gradients */
.ss-panel__head{
  position: relative !important;
  padding: 16px 18px !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  background: rgba(255,255,255,.03) !important;  /* same vibe as MyPlans head */
}

/* Body spacing (consistent) */
.ss-panel__body,
.ss-panel .card-body{
  position: relative !important;
  padding: 18px !important;
  background: transparent !important;
}

/* Optional: embedded glow like your best panels (subtle) */
.ss-panel::before{
  content:"" !important;
  position:absolute !important;
  inset:-2px !important;
  pointer-events:none !important;
  background:
    radial-gradient(900px 260px at 18% 20%, rgba(59,130,246,0.12), transparent 60%),
    radial-gradient(900px 260px at 80% 30%, rgba(245,158,11,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.00)) !important;
  opacity: 1 !important;
}

/* =========================================================
   TABLES: enforce premium table look consistently
   ========================================================= */

.table-responsive{
  background: transparent !important;
}

/* Your ss-table already good, just force no bootstrap wash */
.ss-table.table{
  --bs-table-bg: transparent !important;
  --bs-table-accent-bg: transparent !important;
  --bs-table-striped-bg: rgba(255,255,255,.02) !important;
  --bs-table-hover-bg: rgba(255,255,255,.035) !important;
  --bs-table-border-color: rgba(255,255,255,.06) !important;
  background: transparent !important;
}

/* If any rows still look bright, clamp them */
.ss-table tbody tr{
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}
.ss-table thead th{
  background: rgba(255,255,255,.03) !important;
  color: rgba(255,255,255,.70) !important;
}
/* ===============================
   Analytics page: make ss-panel match glass-card-2026 depth
   =============================== */
.ss-analytics .ss-panel{
  background: rgba(10, 16, 28, .72) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.35) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ss-analytics .ss-panel__head{
  background: rgba(255,255,255,.03) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
}
/* Empty state card = premium glass */
.ss-analytics .ss-empty-state__card{
  border-radius: 18px !important;
  background: rgba(10, 16, 28, .72) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 18px 45px rgba(0,0,0,.35) !important;
}

.ss-analytics .ss-empty-state__icon{
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
}
/* ===============================
   Dashboard tables: darker, softer, home-style
   =============================== */
#dashboard-page .table,
#dashboard-page .ss-table{
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(255,255,255,.02);
  --bs-table-hover-bg: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.08);
}

/* Your ss-table rows: make them deeper */
#dashboard-page .ss-table tbody tr{
  background: rgba(0,0,0,.16) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}

#dashboard-page .ss-table thead th{
  background: rgba(0,0,0,.18) !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
}
/* =========================================
   Kill dashboard.css global table styling
   ONLY inside premium panels + ss tables
========================================= */

/* stop the global "table, th, td" rules from winning inside panels */
.ss-panel table,
.ss-panel th,
.ss-panel td{
  border: none !important;
  background: transparent !important;
}

/* your premium table look (wins by specificity + !important) */
.ss-panel .ss-table{
  border-collapse: separate !important;
  border-spacing: 0 10px !important;
  width: 100%;
  margin: 0 !important;
  background: transparent !important;
}

.ss-panel .ss-table thead th{
  background: rgba(255,255,255,.04) !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,.12) !important;
  color: rgba(255,255,255,.70) !important;
  font-weight: 800 !important;
  padding: 10px 14px !important;
}

.ss-panel .ss-table tbody tr{
  background: rgba(255,255,255,.03) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}

.ss-panel .ss-table tbody td{
  border: none !important;
  padding: 12px 14px !important;
  color: rgba(226,232,240,.92) !important;
}

.ss-panel .ss-table tbody tr:hover{
  background: rgba(255,255,255,.04) !important;
}

.ss-panel .ss-table tbody tr td:first-child{
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.ss-panel .ss-table tbody tr td:last-child{
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}
/* Make ss-panel use the same surface as glass-card-2026 */
.ss-panel{
  background: rgba(10, 16, 28, .72) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 22px !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08) !important;
}
.ss-panel{
  background: rgba(10, 16, 28, .72) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 22px !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow:
    0 18px 60px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}
.premium-card-header{
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
}

.premium-card-body{
  padding: 18px;
}
/* =========================================
   SIGNALSOLID BLACK PRO THEME
   Dark-First Binance Inspired (Violet Accent)
========================================= */

body {
    background: #0b0e11 !important;
    color: #e6edf3;
}

.section-alt {
    background: #0f1318 !important;
}
.glass-card-2026,
.ss-livefeed-card,
.kpi-card-2026,
.contact-card {
    background: #161a1e !important;
    backdrop-filter: none !important;
    border: 1px solid #232a32 !important;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.02),
                0 8px 24px rgba(0,0,0,0.6);
    border-radius: 14px;
}
.ss-livefeed-table thead {
    background: #1e2329 !important;
    color: #b7bdc6;
}

.ss-livefeed-table tbody tr {
    background: #161a1e;
    border-top: 1px solid #232a32;
}

.ss-livefeed-table tbody tr:hover {
    background: #1e2329;
}
.form-control,
.ss-inputgroup .input-group-text {
    background: #0f1318 !important;
    border: 1px solid #232a32 !important;
    color: #e6edf3 !important;
}

.form-control:focus {
    border-color: #7c3aed !important;
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25);
}
.btn-primary-2026 {
    background: #7c3aed !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4);
    transition: all 0.25s ease;
}

.btn-primary-2026:hover {
    background: #6d28d9 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.6);
}
.ss-panel-neo {
  background: #161a1e;
  border: 1px solid #232a32;
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.6);
  transition: all 0.25s ease;
}
.ss-trade-surface {
  background: #12161c;
  border: 1px solid #1f252c;
  border-radius: 12px;
  padding: 1.2rem;
}
.ss-trade-surface table {
  color: #e6edf3;
}

.ss-trade-surface thead {
  background: #1e2329;
}

.ss-trade-surface tbody tr {
  border-top: 1px solid #232a32;
}

.ss-trade-surface tbody tr:hover {
  background: #1a1f26;
}
.ss-form-block {
  background: #15181d;
  border: 1px solid #232a32;
  border-radius: 16px;
  padding: 2rem;
}
.ss-form-block .form-control {
  background: #0f1318;
  border: 1px solid #232a32;
  color: #e6edf3;
}

.ss-form-block .form-control:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25);
}
.ss-selected {
  border: 1px solid #7c3aed !important;
  box-shadow:
      0 0 0 1px rgba(124, 58, 237, 0.6),
      0 0 12px rgba(124, 58, 237, 0.4);
}
.ss-panel-neo:hover,
.ss-trade-surface:hover,
.ss-form-block:hover {
  border-color: #7c3aed;
  box-shadow:
      0 0 0 1px rgba(124, 58, 237, 0.5),
      0 0 16px rgba(124, 58, 237, 0.35);
}
body::before,
body::after {
  display: none !important;
}

[class*="glow"],
[class*="gradient-bg"],
[class*="radial"] {
  background: none !important;
}
/* =========================================
   DEEP VIOLET KPI / HERO SURFACE
========================================= */

.ss-hero-violet {
  background:
    radial-gradient(
      circle at top right,
      rgba(124, 58, 237, 0.25),
      transparent 45%
    ),
    linear-gradient(
      180deg,
      #1a1333 0%,
      #120c24 45%,
      #0b0e11 100%
    );
  border-bottom: 1px solid rgba(124, 58, 237, 0.25);
}
.ss-hero-violet .kpi-value-2026 {
  color: #c4b5fd;
  text-shadow: 0 0 10px rgba(124, 58, 237, 0.4);
}

.ss-hero-violet .kpi-top-2026 {
  color: #e9d5ff;
}
/* =========================================
   ALMOST-BLACK VIOLET HERO
   Institutional / Exchange Grade
========================================= */

.ss-hero-violet-dark {
  background:
    linear-gradient(
      180deg,
      #0f0b1a 0%,
      #0b0e11 60%
    );
  position: relative;
  border-bottom: 1px solid rgba(124, 58, 237, 0.18);
}
.section-alt {
  background-color: #0c0f13 !important;
  background-image: none !important;
}
.section-alt {
  background-color: #0a0d10 !important;
}
/* =========================================
   DARK TRANSPARENT NAVBAR (NO BLUE)
========================================= */

.navbar-2026 {
  background: rgba(11, 14, 17, 0.75) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.navbar-2026::before,
.navbar-2026::after {
  display: none !important;
  background: none !important;
}

/* =========================================
   DARK EXCHANGE FOOTER
========================================= */

.ss-footer {
  background: #0b0e11 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
}
.ss-footer__copy {
  color: #8b949e;
  font-size: 0.9rem;
}

.ss-footer__brand {
  color: #e6edf3;
  font-weight: 600;
}
.ss-footer__link {
  color: #9aa4af;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ss-footer__link:hover {
  color: #7c3aed;
}
.ss-footer__sep {
  color: #3a4048;
  margin: 0 0.5rem;
}
.ss-footer {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}
/* =========================================
   DARKEST GLASS CARDS
========================================= */

.ss-panel-neo,
.feature-card,
.ss-action-card,
.ss-form-block {
  background: rgba(12, 15, 19, 0.97) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);

  transition: all 0.25s ease;
}

.ss-panel-neo::before,
.feature-card::before,
.ss-action-card::before,
.ss-form-block::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

/* Hover — very subtle */
.ss-panel-neo:hover,
.feature-card:hover,
.ss-action-card:hover,
.ss-form-block:hover {
  background: rgba(16, 20, 24, 1) !important;
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* TABLES — MAX DARK */
.ss-panel-neo table {
  background: rgba(8, 10, 13, 0.95);
}

.ss-panel-neo thead {
  background: rgba(255, 255, 255, 0.02);
}

.ss-panel-neo tbody tr:hover {
  background: rgba(255, 255, 255, 0.035);
}

/* =========================================
   GLOBAL SIGNALSOLID PURE BLACK BASE
========================================= */

html,
body {
  background-color: #050505 !important;
  background-image: none !important;
}

/* Kill Bootstrap body background variable */
:root {
  --bs-body-bg: #050505 !important;
}

/* If dark-mode exists, override it too */
body.dark-mode {
  background-color: #050505 !important;
  background-image: none !important;
}
/* =========================================
   FORCE ALL PAGE BASES TO MATCH HOME
========================================= */

section,
.ss-section,
main {
  background-color: #050505 !important;
  background-image: none !important;
}
/* Base canvas */
body {
  background-color: #050505 !important;
}

/* Sections inherit, not redefine */
.ss-section {
  background: transparent !important;
}
:root {
  --ss-base-bg: #050505;
}

body {
  background: var(--ss-base-bg) !important;
}

.ss-section {
  background: transparent !important;
}


:root {
  --ss-section-alt-bg: #0a0d10;
}
section,
.ss-section {
  background: transparent !important;
}
main {
  background: transparent !important;
}
/* =========================================
   REMOVE OLD GOLD / ORANGE EFFECT
========================================= */

.dashboard-btn,
.dashboard-btn.primary {
  background: rgba(12, 15, 19, 0.97) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: none !important;
  color: #e8e8e8 !important;
}
/* =========================================
   DASHBOARD BUTTONS — VIOLET THEME
========================================= */

.dashboard-btn,
.dashboard-btn.primary {
  position: relative;
  border-radius: 12px;
  transition: all 0.25s ease;
}

/* Subtle base */
.dashboard-btn.primary {
  background: linear-gradient(
    145deg,
    rgba(120, 90, 255, 0.15),
    rgba(90, 60, 200, 0.15)
  ) !important;

  border: 1px solid rgba(140, 110, 255, 0.35) !important;
}

/* Hover — violet glow edge only */
.dashboard-btn:hover,
.dashboard-btn.primary:hover {
  border-color: rgba(160, 130, 255, 0.75) !important;

  box-shadow:
    0 0 0 1px rgba(160, 130, 255, 0.6),
    0 0 18px rgba(140, 100, 255, 0.55),
    0 0 35px rgba(120, 80, 255, 0.35);

  transform: translateY(-2px);
}
/* =========================================
   AUTO ARROW FOR BUTTONS
========================================= */

.dashboard-btn::after,
.dashboard-btn.primary::after,
.btn-2026::after {
content: "›";
font-size: 1rem;

  margin-left: 8px;
  opacity: 0.75;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Slide slightly on hover */
.dashboard-btn:hover::after,
.dashboard-btn.primary:hover::after,
.btn-2026:hover::after {
  transform: translateX(4px);
  opacity: 1;
}
/* --- Option 3: Refined Hyper-Ratio CSS --- */

.hero-title-2026 {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Keeps everything left-aligned like your screenshot */
    margin-bottom: 2rem;
}

/* Make the top line dominate the screen */
.main-title {
    font-size: 4.5rem; /* Increased size significantly */
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -3px;
    color: #ffffff;
    text-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.accent-text {
    background: linear-gradient(90deg, #7000ff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s infinite linear;
    display: inline-block;
}

/* The Cinematic Separator */
.cinematic-separator {
    height: 1px;
    width: 100%;
    max-width: 500px;
    background: linear-gradient(90deg, #7000ff, rgba(112,0,255,0));
    margin: 25px 0 15px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle "pulse" light moving across the line */
.cinematic-separator::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #00c6ff, transparent);
    animation: line-glow 3s infinite;
}

/* Make this part smaller and more premium */
.hero-highlight {
    font-size: 1.8rem; /* Scaled down for better ratio */
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0;
}

/* Animations */
@keyframes shine {
    0% { filter: hue-rotate(0deg) brightness(1); }
    50% { filter: hue-rotate(15deg) brightness(1.2); }
    100% { filter: hue-rotate(0deg) brightness(1); }
}

@keyframes line-glow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive fix for smaller screens */
@media (max-width: 992px) {
    .main-title { font-size: 3.5rem; letter-spacing: -1px; }
    .hero-highlight { font-size: 1.4rem; }
}
/* =========================================
   FAQ ACCORDION - REMOVE ACTIVE OVERGLOW
========================================= */

.faq-glass .accordion-button:not(.collapsed) {
  background: rgba(22, 22, 30, 0.85) !important;
  box-shadow: none !important;
  color: #ffffff !important;
}

/* Remove bootstrap blue focus glow */
.faq-glass .accordion-button:focus {
  box-shadow: none !important;
}

/* Kill inner neon layer if your glass-card adds it */
.faq-glass::before,
.faq-glass .accordion-button::after {
  box-shadow: none !important;
}

/* Ensure accordion body stays readable */
.faq-glass .accordion-body {
  background: rgba(18, 18, 24, 0.85) !important;
  color: rgba(255,255,255,0.85) !important;
}
/* =========================================
   FAQ ACCORDION - REMOVE VIOLET CARD BG
========================================= */

.faq-glass {
  background: rgba(18, 18, 24, 0.92) !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6) !important;
}

/* Remove any glass gradient overlay layer */
.faq-glass::before {
  display: none !important;
}

/* Keep collapse area uniform dark */
.faq-glass .accordion-collapse {
  background: transparent !important;
}
/* =========================================
   FAQ - REMOVE btn-primary-2026 PURPLE
========================================= */

.faq-glass.btn-primary-2026,
.faq-glass.active,
.faq-glass.btn-primary-2026.active {
  background: rgba(15, 15, 20, 0.95) !important;
  background-image: none !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
}
/* =========================================
   NOTIFICATION MODAL - SAFE SHRINK
========================================= */

#notificationSettingsModal .modal-dialog {
  max-width: 520px;              /* controls width */
  width: 92%;
  margin: 1.5rem auto;
}

#notificationSettingsModal .modal-content {
  max-height: 85vh;              /* prevents navbar collision */
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#notificationSettingsModal .modal-body {
  overflow-y: auto;
  max-height: calc(85vh - 140px); /* header + footer space */
}
#notificationSettingsModal {
  z-index: 2000;
}

#notificationSettingsModal .modal-backdrop {
  z-index: 1990;
}
@media (min-width: 992px) {
  #notificationSettingsModal .modal-dialog {
    max-width: 460px;
  }
}
/* =========================================
   GLASS DROPDOWN — PURE BLACK GLASS
========================================= */

.glass-dropdown.dropdown-menu {
  background: rgba(6, 6, 8, 0.92) !important;
  background-image: none !important;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px !important;

  box-shadow: 0 18px 40px rgba(0,0,0,0.7) !important;
}

/* Dropdown items */
.glass-dropdown .dropdown-item {
  color: rgba(255,255,255,0.85) !important;
}

.glass-dropdown .dropdown-item:hover {
  background: rgba(255,255,255,0.06) !important;
  color: #ffffff !important;
}

/* Divider */
.glass-dropdown .dropdown-divider {
  border-color: rgba(255,255,255,0.08) !important;
}
/* =========================================
   MOBILE NOTIFICATIONS — BLACK GLASS
========================================= */

.notif-menu-2026.dropdown-menu {
  background: rgba(6, 6, 8, 0.94) !important;
  background-image: none !important;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 14px !important;

  box-shadow: 0 18px 45px rgba(0,0,0,0.75) !important;
}

/* Remove any Bootstrap variable tint */
.notif-menu-2026 {
  --bs-dropdown-bg: rgba(6,6,8,0.94) !important;
}

/* Items */
.notif-menu-2026 .dropdown-item {
  background: transparent !important;
  color: rgba(255,255,255,0.85) !important;
}

.notif-menu-2026 .dropdown-item:hover {
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
}

/* Divider tone */
.notif-menu-2026 .dropdown-divider {
  border-color: rgba(255,255,255,0.08) !important;
}

