:root {
  --bg-0: #070A12;
  --bg-1: #0B1020;
  --card: #0E1730;
  --text: #EAF0FF;
  --muted: rgba(234, 240, 255, .72);
  --muted-2: rgba(234, 240, 255, .56);
  --border: rgba(255, 255, 255, .10);
  /* Brand colors (from logo) */
  --accent: #00d4f5;
  /* cyan */
  --accent-2: #de4e90;
  /* pink */
  --accent-rgb: 0, 212, 245;
  --accent-2-rgb: 222, 78, 144;
  --shadow: 0 18px 60px rgba(0, 0, 0, .45);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, .28);
  --radius: 18px;
  --radius-sm: 14px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% -10%, rgba(var(--accent-2-rgb), .24), transparent 55%),
    radial-gradient(900px 450px at 100% 0%, rgba(var(--accent-rgb), .18), transparent 55%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
  color: var(--text);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.55) transparent;
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.55) transparent;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  background: transparent;
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.75);
}

/* Ensure anchor targets aren't hidden behind sticky nav */
section[id],
header[id] {
  scroll-margin-top: 92px;
}

.fw-extrabold {
  font-weight: 800;
}

.text-white-75 {
  color: var(--muted) !important;
}

.text-gradient {
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: radial-gradient(900px 500px at 20% 0%, rgba(var(--accent-2-rgb), .22), transparent 60%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  box-shadow: var(--shadow-sm);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #081025;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navbar */
.nav-glass {
  background: rgba(7, 10, 18, .58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
}

.brand-name {
  letter-spacing: -0.03em;
}

.nav-toggler {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  padding: .55rem .7rem;
  background: rgba(255, 255, 255, .06);
}

.nav-toggler:focus {
  box-shadow: 0 0 0 .25rem rgba(124, 58, 237, .22);
}

.nav-modern {
  padding-top: .65rem;
  padding-bottom: .65rem;
}

.nav-links {
  gap: 6px;
  padding: 2px 6px;
}

.nav-links .nav-link {
  position: relative;
}

.nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 58, 237, .95), rgba(34, 211, 238, .90));
  opacity: 0;
  transform: translateY(2px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-links .nav-link:hover::after {
  opacity: .55;
  transform: translateY(0);
}

.nav-links .nav-link.active::after {
  opacity: 1;
  transform: translateY(0);
}

.brand-logo {
  height: 50px;
  object-fit: cover;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, .78);
  border-radius: 999px;
  padding: .5rem .85rem;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.navbar .nav-link:hover {
  background: rgba(255, 255, 255, .07);
  color: #fff;
  transform: translateY(-1px);
}

.navbar .nav-link.active {
  background: rgba(124, 58, 237, .20);
  color: #fff;
  box-shadow: 0 10px 26px rgba(124, 58, 237, .14);
}

.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 5px rgba(124, 58, 237, .16);
}

.nav-search {
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
  width: min(360px, 100%);
}

.nav-search-compact {
  width: 260px;
}

.nav-search .input-group-text {
  background: transparent;
  color: rgba(255, 255, 255, .70);
  border: 0;
}

.nav-search .form-control {
  background: transparent;
  color: rgba(255, 255, 255, .86);
  border: 0;
}

.nav-search .form-control::placeholder {
  color: rgba(255, 255, 255, .55);
}

.nav-search:focus-within {
  border-color: rgba(34, 211, 238, .35);
  box-shadow: 0 0 0 .25rem rgba(34, 211, 238, .14), 0 14px 30px rgba(0, 0, 0, .20);
}

.nav-search .form-control:focus {
  box-shadow: none;
}

.nav-search-form {
  display: flex;
  align-items: center;
}

.nav-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, .10);
}

.nav-signin {
  border-color: rgba(255, 255, 255, .18) !important;
  background: rgba(255, 255, 255, .06);
}

.nav-signin:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-1px);
  color: #fff;
}

.nav-offcanvas {
  background: rgba(7, 10, 18, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-left: 1px solid rgba(255, 255, 255, .10);
}

.nav-offcanvas .nav-link {
  border-radius: 14px;
  padding: .75rem .85rem;
}

.nav-offcanvas .nav-link.active {
  background: rgba(124, 58, 237, .22);
}

/* Buttons */
.btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, filter .18s ease;
}

.btn:focus {
  box-shadow: 0 0 0 .25rem rgba(var(--accent-rgb), .18);
}

.btn:active {
  transform: translateY(0);
}

.btn-sm {
  border-radius: 999px;
}

.btn-accent {
  --bs-btn-color: #071026;
  --bs-btn-bg: linear-gradient(135deg, var(--accent-2), var(--accent));
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #071026;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-border-color: transparent;
  background-image: var(--bs-btn-bg);
  border: 0;
  box-shadow: 0 14px 38px rgba(var(--accent-2-rgb), .14), 0 10px 22px rgba(var(--accent-rgb), .14);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-accent:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 18px 48px rgba(var(--accent-2-rgb), .18), 0 14px 26px rgba(var(--accent-rgb), .16);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .18) !important;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}

.btn-outline-light:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .28) !important;
  background: rgba(255, 255, 255, .10);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
}

.btn-outline-light:active {
  transform: translateY(0);
  filter: brightness(.98);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .14) !important;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .22) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.min-vh-75 {
  min-height: 75vh;
}

.hero-modern .hero-row {
  min-height: clamp(640px, 78vh, 820px);
}


.hero-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg, rgba(7, 10, 18, .75), rgba(7, 10, 18, .40)),
    url("../img/danzflo-classes.jpg");

  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.04);
}

@supports (background-image: url("data:image/webp;base64,UklGR")) {
  .hero-bg {
    background:
      linear-gradient(90deg, rgba(7, 10, 18, .75), rgba(7, 10, 18, .40)),
      url("../img/webp/danzflo-classes.webp");

    background-size: cover;
    background-position: center;
  }
}

/* .hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(7,10,18,.75), rgba(7,10,18,.40));
  pointer-events:none;
  z-index:1;
}
.hero-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.02);
  filter:saturate(1.05) contrast(1.04);
} */
.hero-modern .hero-bg {
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 20% 15%, rgba(var(--accent-2-rgb), .28), transparent 60%),
    radial-gradient(900px 520px at 95% 15%, rgba(var(--accent-rgb), .20), transparent 60%),
    linear-gradient(180deg, rgba(7, 10, 18, .30), rgba(7, 10, 18, .78));
}

.hero-modern .hero-overlay {
  animation: overlayPulse 9s ease-in-out infinite;
}

@keyframes overlayPulse {

  0%,
  100% {
    opacity: .95;
  }

  50% {
    opacity: 1;
  }
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(420px 260px at 78% 55%, rgba(var(--accent-2-rgb), .16), transparent 70%),
    radial-gradient(340px 240px at 65% 35%, rgba(var(--accent-rgb), .14), transparent 70%);
  mix-blend-mode: screen;
  opacity: .85;
}

.hero-modern .hero-orbs {
  animation: orbDrift 10s ease-in-out infinite alternate;
}

@keyframes orbDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-18px, 12px, 0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow-sm);
  color: rgba(255, 255, 255, .82);
}

.hero-badge i {
  color: var(--accent-2);
}

.hero-title {
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  font-size: clamp(2.4rem, 3.6vw, 3.7rem);
  margin-bottom: 0;
}

.hero-title {
  text-shadow:
    0 14px 44px rgba(0, 0, 0, .55),
    0 0 34px rgba(var(--accent-2-rgb), .16);
}

.hero-subtitle {
  color: rgba(234, 240, 255, .74);
  font-size: 1.08rem;
  max-width: 52ch;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 16px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .75rem;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.hero-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .20);
  color: #fff;
}

.hero-pill i {
  color: rgba(var(--accent-rgb), .92);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .24);
  color: #fff;
}

.hero-mini-note {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
  padding-left: .25rem;
}

.hero-mini-note i {
  color: rgba(var(--accent-rgb), .92);
}

.hero-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.pill {
  font-size: .8rem;
  margin-left: 8px;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, .14);
  border: 1px solid rgba(34, 211, 238, .30);
  color: rgba(234, 240, 255, .85);
}

.mini-metric {
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.avatar-stack {
  display: flex;
}

.av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .40);
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .28);
}

.av-1 {
  background-image: url("../img/danzflo-social.jpg");
}

.av-2 {
  background-image: url("../img/danzflo-music.jpg");
  margin-left: -10px;
}

.av-3 {
  background-image: url("../img/danzflo-merch.jpg");
  margin-left: -10px;
}

.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stat {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .05);
}

.stat-value {
  font-weight: 800;
  letter-spacing: -.02em;
}

.stat-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .72);
}

/* Hero showcase (right side) */
.hero-showcase {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 14px;
  overflow: hidden;
}

.hero-showcase {
  transform: translateY(0);
  transition: transform .22s ease, box-shadow .22s ease;
}

.hero-showcase:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .52);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(520px 320px at 10% 10%, rgba(var(--accent-rgb), .16), transparent 65%),
    radial-gradient(560px 340px at 100% 0%, rgba(var(--accent-2-rgb), .16), transparent 65%);
  opacity: .9;
}

.showcase-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .32);
}

.showcase-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.04);
}

.showcase-card {
  position: absolute;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
}

.showcase-card {
  animation: floatCard 6.5s ease-in-out infinite;
}

.showcase-card-2 {
  animation-delay: .9s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.showcase-meter {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
}

.showcase-meter span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--accent-2-rgb), .95), rgba(var(--accent-rgb), .92));
  box-shadow: 0 10px 30px rgba(var(--accent-rgb), .18);
}

.showcase-card-1 {
  top: 16px;
}

.showcase-card-2 {
  bottom: 16px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .5rem;
  border-radius: 999px;
  background: rgba(var(--accent-2-rgb), .14);
  border: 1px solid rgba(var(--accent-2-rgb), .30);
  color: rgba(234, 240, 255, .88);
  font-size: .8rem;
  font-weight: 700;
}

.chip-cyan {
  background: rgba(var(--accent-rgb), .14);
  border-color: rgba(var(--accent-rgb), .30);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .2s ease, background-color .2s ease;
}

.scroll-cue:hover {
  transform: translateX(-50%) translateY(-2px);
  background: rgba(255, 255, 255, .08);
}

.scroll-cue .text {
  font-size: .9rem;
}

.mouse {
  width: 16px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, .7);
  position: relative;
}

.mouse::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .8);
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
  animation: scrollDot 1.35s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    opacity: .1;
    transform: translateX(-50%) translateY(0);
  }

  45% {
    opacity: 1;
  }

  100% {
    opacity: .05;
    transform: translateX(-50%) translateY(10px);
  }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-dark {
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(var(--accent-2-rgb), .14), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0));
}

.section-light {
  background: #ffffff;
  color: #0b1220;
}

.section-light .text-muted {
  color: rgba(11, 18, 32, .68) !important;
}

.section-kicker-dark {
  color: rgba(11, 18, 32, .88);
}

.section-kicker-dark span:last-child {
  background: linear-gradient(90deg, rgba(124, 58, 237, 1), rgba(34, 211, 238, 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-kicker-dark .kicker-dot {
  box-shadow: 0 0 0 6px rgba(124, 58, 237, .10);
}

/* Features section (modern tiles) */
.features-head {
  margin-bottom: 22px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: rgba(234, 240, 255, .78);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .78rem;
}

.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(var(--accent-2-rgb), .14);
}

.features-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.strip-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: rgba(234, 240, 255, .78);
}

.strip-item i {
  color: rgba(var(--accent-rgb), .92);
}

.feature-tile {
  display: block;
  height: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.feature-tile::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(520px 320px at 20% 0%, rgba(34, 211, 238, .16), transparent 62%),
    radial-gradient(520px 320px at 100% 0%, rgba(124, 58, 237, .18), transparent 62%);
  opacity: 0;
  transition: opacity .22s ease;
}

.feature-tile>* {
  position: relative;
}

.feature-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 26px 76px rgba(0, 0, 0, .46);
}

.feature-tile:hover::before {
  opacity: 1;
}

.tile-media {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .35s ease, filter .35s ease;
  display: block;
  filter: saturate(1.03) contrast(1.03);
}

.feature-tile:hover .tile-media img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.06);
}

.tile-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 18, .20), rgba(7, 10, 18, .82));
}

.tile-body {
  padding: 18px 18px 20px;
}

.tile-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -34px;
  margin-bottom: 12px;
}

.tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(7, 10, 18, .55);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .38);
}

.tile-icon i {
  font-size: 1.2rem;
  color: rgba(234, 240, 255, .92);
}

.tile-badge {
  padding: .25rem .55rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(234, 240, 255, .90);
  background: rgba(var(--accent-2-rgb), .16);
  border: 1px solid rgba(var(--accent-2-rgb), .30);
}

.tile-badge-cyan {
  background: rgba(var(--accent-rgb), .14);
  border-color: rgba(var(--accent-rgb), .28);
}

.tile-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(7, 10, 18, .45);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(234, 240, 255, .86);
  opacity: .0;
  transform: translateY(4px);
  transition: opacity .22s ease, transform .22s ease, background-color .22s ease;
}

.feature-tile:hover .tile-arrow {
  opacity: 1;
  transform: translateY(0);
  background: rgba(7, 10, 18, .58);
}

@media (max-width: 575.98px) {
  .tile-media {
    height: 150px;
  }
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(124, 58, 237, .16);
  border: 1px solid rgba(124, 58, 237, .30);
  margin-bottom: 12px;
}

.icon-wrap i {
  font-size: 1.25rem;
  color: rgba(234, 240, 255, .92);
}

/* Categories (modern cards) */
.category-card {
  height: 100%;
  padding: 16px 16px;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, .10);
  background:
    radial-gradient(420px 220px at 20% 0%, rgba(124, 58, 237, .10), transparent 60%),
    radial-gradient(420px 220px at 100% 0%, rgba(34, 211, 238, .08), transparent 60%),
    #ffffff;
  box-shadow: 0 14px 40px rgba(11, 18, 32, .10);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #0b1220;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(124, 58, 237, .14), rgba(34, 211, 238, .12));
  opacity: 0;
  transition: opacity .22s ease;
}

.category-card>* {
  position: relative;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 18, 32, .14);
  box-shadow: 0 22px 56px rgba(11, 18, 32, .14);
}

.category-card:hover::before {
  opacity: 1;
}

.cat-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 18, 32, .10);
  background: linear-gradient(135deg, rgba(124, 58, 237, .12), rgba(34, 211, 238, .10));
  color: #2b1c55;
  flex: 0 0 auto;
}

.cat-icon i {
  font-size: 1.2rem;
}

.cat-body {
  min-width: 0;
}

.cat-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cat-sub {
  margin-top: 2px;
  font-size: .88rem;
  color: rgba(11, 18, 32, .62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cat-arrow {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .70);
  color: rgba(11, 18, 32, .70);
  transform: translateX(0);
  transition: transform .22s ease, background-color .22s ease;
}

.category-card:hover .cat-arrow {
  transform: translateX(2px);
  background: rgba(255, 255, 255, .92);
}

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 18, .72), rgba(7, 10, 18, .35)),
    url("../img/danzflo-events.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
}

/* Accordion */
.modern-accordion .accordion-item {
  border: 1px solid rgba(11, 18, 32, .10);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 44px rgba(11, 18, 32, .10);
  margin-bottom: 12px;
}

.modern-accordion .accordion-button {
  font-weight: 700;
}

.modern-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(124, 58, 237, .10), rgba(34, 211, 238, .08));
  color: #0b1220;
}

.modern-accordion .accordion-button:focus {
  box-shadow: 0 0 0 .25rem rgba(124, 58, 237, .18);
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.step-dot {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, .14), rgba(34, 211, 238, .10));
  border: 1px solid rgba(11, 18, 32, .10);
  font-weight: 800;
  color: #1a2a46;
}

/* Info (modern cards) */
.info-section {
  background:
    radial-gradient(900px 480px at 15% 0%, rgba(var(--accent-2-rgb), .18), transparent 60%),
    radial-gradient(900px 480px at 90% 0%, rgba(var(--accent-rgb), .14), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0));
}

.info-section .text-muted {
  color: rgba(234, 240, 255, .72) !important;
}

.info-card-glass {
  border-color: rgba(255, 255, 255, .12) !important;
  background: rgba(255, 255, 255, .05) !important;
  box-shadow: 0 26px 76px rgba(0, 0, 0, .36) !important;
}

.info-section .info-title {
  color: rgba(255, 255, 255, .92);
}

.info-section .info-sub {
  color: rgba(234, 240, 255, .62);
}

.info-section .info-ic {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: rgba(234, 240, 255, .90);
}

.info-section .info-steps .info-step,
.info-section .policy-item {
  border-color: rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

.info-section .is-title,
.info-section .policy-title {
  color: rgba(255, 255, 255, .90);
}

.info-section .is-text,
.info-section .policy-text {
  color: rgba(234, 240, 255, .62);
}

.info-section .policy-item i {
  color: rgba(var(--accent-rgb), .92);
}

.info-section .is-num {
  border-color: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .90);
  background: rgba(255, 255, 255, .06);
}

.info-card {
  border-radius: 22px;
  border: 1px solid rgba(11, 18, 32, .10);
  background:
    radial-gradient(520px 260px at 20% 0%, rgba(124, 58, 237, .08), transparent 60%),
    radial-gradient(520px 260px at 100% 0%, rgba(34, 211, 238, .06), transparent 60%),
    #ffffff;
  box-shadow: 0 18px 56px rgba(11, 18, 32, .10);
  padding: 18px;
}

.info-card-tight {
  padding: 18px;
}

.info-card-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.info-ic {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 18, 32, .10);
  background: linear-gradient(135deg, rgba(124, 58, 237, .12), rgba(34, 211, 238, .10));
  color: #2b1c55;
  flex: 0 0 auto;
}

.info-ic-cyan {
  background: linear-gradient(135deg, rgba(34, 211, 238, .14), rgba(124, 58, 237, .10));
}

.info-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.info-sub {
  color: rgba(11, 18, 32, .62);
  font-size: .92rem;
  margin-top: 2px;
}

.info-timeline {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.tl-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, .08);
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 10px 26px rgba(11, 18, 32, .06);
}

.tl-dot {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(124, 58, 237, .14), rgba(34, 211, 238, .10));
  border: 1px solid rgba(11, 18, 32, .10);
  color: #1a2a46;
  flex: 0 0 auto;
}

.tl-title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.tl-text {
  margin-top: 2px;
  color: rgba(11, 18, 32, .62);
  font-size: .92rem;
}

.policy-list {
  display: grid;
  gap: 10px;
}

.policy-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, .08);
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 10px 26px rgba(11, 18, 32, .06);
}

.policy-item i {
  margin-top: 2px;
  color: rgba(124, 58, 237, .95);
  font-size: 1.05rem;
}

.policy-title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.policy-text {
  margin-top: 2px;
  color: rgba(11, 18, 32, .62);
  font-size: .92rem;
}

/* Info visual hero */
.info-hero {
  height: 100%;
  border-radius: 24px;
  border: 1px solid rgba(11, 18, 32, .10);
  overflow: hidden;
  box-shadow: 0 22px 64px rgba(11, 18, 32, .12);
  background: #0b1220;
  position: relative;
}

.info-hero-media {
  position: absolute;
  inset: 0;
}

.info-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.info-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 360px at 20% 0%, rgba(124, 58, 237, .34), transparent 60%),
    radial-gradient(720px 360px at 100% 10%, rgba(34, 211, 238, .22), transparent 60%),
    linear-gradient(180deg, rgba(11, 18, 32, .25), rgba(11, 18, 32, .92));
}

.info-hero-body {
  position: relative;
  z-index: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #fff;
}

.info-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  width: fit-content;
}

.info-hero-kicker i {
  color: rgba(34, 211, 238, .92);
}

.info-hero-title {
  margin-top: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.6rem;
  line-height: 1.1;
}

.info-hero-text {
  margin-top: 10px;
  color: rgba(255, 255, 255, .78);
  max-width: 44ch;
}

.info-hero-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-hero-badges {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
  font-size: .9rem;
}

.info-badge i {
  color: rgba(124, 58, 237, .95);
}

/* Info steps (compact modern list) */
.info-steps {
  display: grid;
  gap: 10px;
}

.info-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, .08);
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 10px 26px rgba(11, 18, 32, .06);
}

.is-num {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(124, 58, 237, .14), rgba(34, 211, 238, .10));
  border: 1px solid rgba(11, 18, 32, .10);
  color: #1a2a46;
  flex: 0 0 auto;
}

.is-title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.is-text {
  margin-top: 2px;
  color: rgba(11, 18, 32, .62);
  font-size: .92rem;
}

@media (max-width: 991.98px) {
  .info-hero {
    min-height: 320px;
  }
}

/* Footer */
.footer {
  background: rgba(7, 10, 18, .92);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 64px 0 26px;
}

.footer-clean {
  position: relative;
  background:
    radial-gradient(900px 520px at 10% -10%, rgba(var(--accent-2-rgb), .20), transparent 60%),
    radial-gradient(900px 520px at 95% -10%, rgba(var(--accent-rgb), .14), transparent 60%),
    rgba(7, 10, 18, .94);
}

.footer-clean .container {
  position: relative;
  z-index: 1;
  padding-top: 10px;
}

.footer-clean::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(var(--accent-2-rgb), .0), rgba(var(--accent-2-rgb), .85), rgba(var(--accent-rgb), .85), rgba(var(--accent-rgb), .0));
  opacity: .9;
}

.footer-divider {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 76px;
  pointer-events: none;
  opacity: .70;
}

.footer-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-eyebrow {
  color: rgba(234, 240, 255, .86);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}

.footer-lead {
  color: rgba(234, 240, 255, .76);
  max-width: 52ch;
  line-height: 1.55;
}

.footer-muted {
  color: rgba(234, 240, 255, .58);
}

.footer-inputgroup {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .30);
}

.footer-inputgroup .input-group-text {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, .70);
}

.footer-inputgroup .form-control {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, .86);
}

.footer-inputgroup .form-control::placeholder {
  color: rgba(255, 255, 255, .56);
}

.footer-inputgroup:focus-within {
  border-color: rgba(34, 211, 238, .35);
  box-shadow: 0 0 0 .25rem rgba(34, 211, 238, .14), 0 18px 50px rgba(0, 0, 0, .34);
}

.footer-inputgroup .btn {
  border-radius: 0;
}

.footer-bar {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-links {
  margin-bottom: 0;
}

.footer-title {
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(234, 240, 255, .72);
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
  transition: transform .18s ease, color .18s ease, opacity .18s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-links a {
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(124, 58, 237, .85), rgba(34, 211, 238, .85));
  transition: width .2s ease;
  opacity: .7;
}

.footer-links a:hover::after {
  width: 100%;
}

/* Dashboard footer polish (scoped) */
.footer-dashboard .footer-lead {
  max-width: 44ch;
}

.footer-dashboard .footer-support-link {
  color: rgba(var(--accent-rgb), .95);
  text-decoration: none;
  font-weight: 800;
}

.footer-dashboard .footer-support-link:hover {
  color: rgba(var(--accent-2-rgb), .95);
  text-decoration: underline;
}

.footer-dashboard .footer-eyebrow {
  font-size: .76rem;
}

.footer-dashboard .footer-links a {
  padding: 6px 0;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  display: grid;
  place-items: center;
  color: rgba(234, 240, 255, .85);
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}

/* Subtle column separators on desktop for structure */
@media (min-width: 992px) {
  .footer-clean .row>[class*="col-"] {
    position: relative;
  }

  .footer-clean .row>[class*="col-"]:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 6px;
    bottom: 6px;
    width: 1px;
    background: rgba(255, 255, 255, .08);
  }
}

@media (max-width: 575.98px) {
  .footer-divider {
    height: 58px;
  }
}

/* Auth page */
.auth-page {
  min-height: 100vh;
}

.auth-wrap {
  padding: 72px 0;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(var(--accent-rgb), .12), transparent 60%),
    radial-gradient(900px 520px at 88% 0%, rgba(var(--accent-2-rgb), .12), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0));
}

.auth-shell {
  padding-top: 64px;
  padding-bottom: 64px;
}

.auth-main-bg {
  position: relative;
  overflow: hidden;
}

.auth-main-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 18, .72), rgba(7, 10, 18, .92)),
    url("../img/danzflo-classes.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
  opacity: .95;
}

.auth-main-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(var(--accent-rgb), .18), transparent 60%),
    radial-gradient(900px 520px at 88% 0%, rgba(var(--accent-2-rgb), .18), transparent 60%);
  mix-blend-mode: screen;
  opacity: .85;
  pointer-events: none;
}

.auth-main-bg .container {
  position: relative;
  z-index: 1;
}

.auth-split {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .52);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}

.auth-split-side {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.auth-side-bg {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(7, 10, 18, .20), rgba(7, 10, 18, .92)),
    url("../img/hero-banner-img-1.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.04);
}

.auth-split-side::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background:
    radial-gradient(720px 360px at 20% 0%, rgba(var(--accent-rgb), .24), transparent 60%),
    radial-gradient(720px 360px at 100% 10%, rgba(var(--accent-2-rgb), .22), transparent 60%),
    linear-gradient(180deg, rgba(7, 10, 18, .18), rgba(7, 10, 18, .92));
}

.auth-side-body {
  position: relative;
  z-index: 1;
  padding: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.auth-side-title {
  margin-top: 6px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, .95);
  font-size: 2rem;
  line-height: 1.1;
  text-shadow: 0 14px 44px rgba(0, 0, 0, .55);
}

.auth-side-text {
  margin-top: 10px;
  color: rgba(234, 240, 255, .74);
  max-width: 52ch;
}

.auth-side-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.auth-side-actions {
  max-width: 380px;
}

.auth-side-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
}

.auth-side-pill i {
  color: rgba(var(--accent-rgb), .92);
}

.auth-split-form {
  padding: 20px;
  display: flex;
}

.auth-left {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 26px 76px rgba(0, 0, 0, .42);
  min-height: 520px;
}

.auth-left::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), .22), rgba(var(--accent-2-rgb), .18));
  opacity: .18;
  pointer-events: none;
  mix-blend-mode: screen;
}

.auth-left-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 18, .15), rgba(7, 10, 18, .88)),
    url("../img/hero-banner-img-1.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.06);
}

.auth-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 360px at 20% 0%, rgba(var(--accent-rgb), .22), transparent 60%),
    radial-gradient(720px 360px at 100% 10%, rgba(var(--accent-2-rgb), .18), transparent 60%),
    linear-gradient(180deg, rgba(7, 10, 18, .25), rgba(7, 10, 18, .88));
}

.auth-left-body {
  position: relative;
  z-index: 1;
  padding: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.auth-title {
  color: rgba(255, 255, 255, .95);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  text-shadow: 0 14px 44px rgba(0, 0, 0, .55);
}

.auth-subtitle {
  color: rgba(234, 240, 255, .74);
  max-width: 52ch;
}

.auth-highlights {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.auth-hl {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .86);
}

.auth-hl i {
  color: rgba(var(--accent-rgb), .92);
}

.auth-points {
  margin-top: auto;
  display: grid;
  gap: 10px;
  max-width: 44ch;
}

.auth-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .08);
}

.auth-point i {
  margin-top: 2px;
  color: rgba(var(--accent-rgb), .92);
}

.auth-card {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 26px 76px rgba(0, 0, 0, .42);
  padding: 22px;
}

.auth-card-flat {
  width: 100%;
  box-shadow: none;
  background: rgba(7, 10, 18, .52);
  border-color: rgba(255, 255, 255, .10);
}

.auth-card-flat::before {
  opacity: .65;
}

.auth-card {
  position: relative;
  overflow: hidden;
}

.auth-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(520px 260px at 20% 0%, rgba(var(--accent-rgb), .18), transparent 60%),
    radial-gradient(520px 260px at 100% 0%, rgba(var(--accent-2-rgb), .18), transparent 60%);
  opacity: .9;
  pointer-events: none;
}

.auth-card>* {
  position: relative;
}

.auth-card-head {
  margin-bottom: 14px;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  width: fit-content;
}

.auth-tab {
  text-decoration: none;
  color: rgba(234, 240, 255, .72);
  font-weight: 800;
  padding: .5rem .85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.auth-tab:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .92);
}

.auth-tab.is-active {
  background: rgba(var(--accent-rgb), .14);
  border-color: rgba(var(--accent-rgb), .26);
  color: rgba(255, 255, 255, .95);
}

.auth-tab[aria-disabled="true"] {
  opacity: .6;
  pointer-events: none;
}

.auth-card-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, .92);
}

.auth-card-sub {
  margin-top: 4px;
  color: rgba(234, 240, 255, .62);
  font-size: .95rem;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 12px 0 0;
}

.auth-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, .12);
}

.auth-divider span {
  position: relative;
  padding: 0 .7rem;
  background: rgba(7, 10, 18, .55);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px;
  color: rgba(234, 240, 255, .68);
  font-size: .85rem;
}

.auth-label {
  color: rgba(234, 240, 255, .78);
  font-weight: 700;
}

.auth-input,
.auth-inputgroup .input-group-text {
  border-radius: 14px;
}

.auth-inputgroup {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
}

.auth-inputgroup .input-group-text {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, .72);
}

.auth-select {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .88);
  border-radius: 14px;
}

.auth-select:focus {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(var(--accent-rgb), .38);
  box-shadow: 0 0 0 .25rem rgba(var(--accent-rgb), .14);
  color: rgba(255, 255, 255, .92);
}

.auth-select option {
  color: #0b1220;
}

.auth-check-wrap {
  padding: 12px 12px;
  padding-left: 35px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.auth-check-wrap:hover {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
}

.auth-check-wrap .form-check-input {
  margin-top: 2px;
  width: 1.1em;
  height: 1.1em;
  border-radius: 6px;
  border-color: rgba(255, 255, 255, .20);
  background-color: rgba(255, 255, 255, .06);
}

.auth-check-wrap .form-check-label {
  margin: 0;
  line-height: 1.35;
}

.auth-check-wrap .form-check-input:focus {
  box-shadow: 0 0 0 .25rem rgba(var(--accent-rgb), .14);
  border-color: rgba(var(--accent-rgb), .38);
}

.auth-check-wrap .form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.auth-toggle {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .70);
  padding: .65rem .9rem;
}

.auth-toggle:hover {
  color: rgba(255, 255, 255, .92);
}

.auth-input {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .88);
}

.auth-input::placeholder {
  color: rgba(255, 255, 255, .52);
}

.auth-input:focus {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(var(--accent-rgb), .38);
  box-shadow: 0 0 0 .25rem rgba(var(--accent-rgb), .14);
  color: rgba(255, 255, 255, .92);
}

.auth-input[type="date"] {
  color-scheme: dark;
}

.auth-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: brightness(0) invert(1);
  opacity: .95;
}

.auth-input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.dashboard-page input[type="date"] {
  color-scheme: dark;
}

.dashboard-page input[type="date"]::-webkit-calendar-picker-indicator {
  filter: brightness(0) invert(1);
  opacity: .95;
  cursor: pointer;
}

.dashboard-page input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.auth-inputgroup:focus-within {
  border-color: rgba(var(--accent-rgb), .38);
  box-shadow: 0 0 0 .25rem rgba(var(--accent-rgb), .14);
}

.auth-link {
  color: rgba(var(--accent-rgb), .95);
  text-decoration: none;
  font-weight: 700;
}

.auth-link:hover {
  color: rgba(var(--accent-2-rgb), .95);
}

.auth-check {
  color: rgba(234, 240, 255, .74);
}

.auth-secure {
  color: rgba(234, 240, 255, .62);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.auth-secure i {
  color: rgba(var(--accent-2-rgb), .92);
}

.auth-social {
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .7rem .9rem;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background-color .18s ease, color .18s ease;
}

.auth-social:hover {
  transform: translateY(-1px);
}

/* Social button real-world styling */
.auth-social-google {
  background: #ffffff;
  color: #111827;
  border-color: rgba(255, 255, 255, .30) !important;
}

.auth-social-google:hover {
  filter: brightness(.98);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.auth-social-google i {
  color: #EA4335;
  /* red */
}

.auth-social-apple {
  background: #0B0B0E;
  color: #ffffff;
  border-color: rgba(255, 255, 255, .16) !important;
}

.auth-social-apple:hover {
  filter: brightness(1.05);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .26);
}

.auth-social-apple i {
  color: #ffffff;
}

.auth-bottom {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .auth-wrap {
    padding: 68px 0;
  }

  .auth-shell {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .auth-split {
    grid-template-columns: 1fr;
  }

  .auth-split-form {
    padding: 0;
  }

  .auth-card-flat {
    border-radius: 22px;
  }
}

/* Dashboard */
.dash-wrap {
  padding: 20px 0 72px;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(var(--accent-rgb), .10), transparent 60%),
    radial-gradient(900px 520px at 88% 0%, rgba(var(--accent-2-rgb), .10), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0));
}

.dash-v2 .dash-panel {
  background: rgba(255, 255, 255, .05);
}

.profile-hero {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .52);
  min-height: 320px;
}

.profile-hero-v3 {
  min-height: 248px;
}

.profile-hero-social {
  min-height: 460px;
}

.profile-hero-compact {
  min-height: 250px;
}

.profile-cover {
  position: absolute;
  inset: -2px;
  background: url("../img/hero-banner-img-1.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.06) contrast(1.10);
  transform: scale(1.06);
}

.profile-cover-social {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.14);
  background-size: cover;
  background-position: center;
  height: 320px;
  inset: 0;
}

.profile-hero-social .profile-cover-social {
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
}

.profile-hero-social .profile-cover-overlay {
  background:
    radial-gradient(720px 360px at 20% 0%, rgba(var(--accent-rgb), .18), transparent 62%),
    radial-gradient(720px 360px at 100% 10%, rgba(var(--accent-2-rgb), .18), transparent 62%),
    linear-gradient(180deg, rgba(7, 10, 18, .10), rgba(7, 10, 18, .82));
  height: 320px;
  inset: 0;
}

.profile-hero-social .profile-cover-overlay-social {
  position: absolute;
  inset: 0;
  height: 320px;
  background:
    radial-gradient(720px 360px at 18% 6%, rgba(var(--accent-rgb), .18), transparent 60%),
    radial-gradient(720px 360px at 96% 12%, rgba(var(--accent-2-rgb), .18), transparent 60%),
    linear-gradient(180deg, rgba(7, 10, 18, .06), rgba(7, 10, 18, .86));
}

.profile-hero-social::after {
  height: 0;
}

.profile-cover-overlay {
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(720px 360px at 20% 0%, rgba(var(--accent-rgb), .22), transparent 60%),
    radial-gradient(720px 360px at 100% 10%, rgba(var(--accent-2-rgb), .22), transparent 60%),
    linear-gradient(180deg, rgba(7, 10, 18, .10), rgba(7, 10, 18, .94));
}

.profile-cover-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 240px at 18% 18%, rgba(var(--accent-rgb), .12), transparent 62%),
    radial-gradient(520px 240px at 86% 22%, rgba(var(--accent-2-rgb), .12), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .26));
  mix-blend-mode: overlay;
  opacity: .9;
}

.profile-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(7, 10, 18, 0), rgba(7, 10, 18, .92));
  pointer-events: none;
}

.profile-hero-body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.profile-hero-v3 .profile-hero-body {
  padding: 12px;
}

.profile-hero-body-social {
  align-items: flex-start;
  padding: 170px 14px 14px;
}

.profile-hero-compact .profile-hero-body {
  padding: 12px;
}

.profile-card {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    radial-gradient(900px 320px at 12% 0%, rgba(var(--accent-rgb), .16), transparent 60%),
    radial-gradient(900px 320px at 88% 0%, rgba(var(--accent-2-rgb), .14), transparent 60%),
    rgba(8, 12, 22, .58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .60);
  padding: 14px 14px 12px;
}

.profile-card-v3 {
  padding: 12px;
  border-radius: 24px;
  box-shadow: 0 24px 74px rgba(0, 0, 0, .56);
}

.profile-social-card {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  background:
    radial-gradient(1000px 320px at 10% 0%, rgba(var(--accent-rgb), .12), transparent 60%),
    radial-gradient(1000px 320px at 90% 0%, rgba(var(--accent-2-rgb), .12), transparent 60%),
    rgba(8, 12, 22, .74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 26px 86px rgba(0, 0, 0, .62);
  overflow: hidden;
  position: relative;
}

.profile-social-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), .38), rgba(var(--accent-2-rgb), .32));
  opacity: .12;
  filter: blur(18px);
  pointer-events: none;
}

.profile-social-card>* {
  position: relative;
  z-index: 1;
}

.profile-social-wrap {
  position: relative;
  z-index: 2;
  padding: 248px 12px 12px;
  max-width: 1040px;
  margin: 0 auto;
}

.profile-social-topbar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px 18px 12px;
  align-items: center;
  background: rgba(255, 255, 255, .02);
}

.profile-social-identity {
  min-width: 0;
}

.profile-social-bio-text {
  margin-top: 6px;
  color: rgba(234, 240, 255, .86);
  font-size: .96rem;
}

.profile-social-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 18px 14px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .015);
}

.profile-social-actions .btn {
  border-radius: 999px;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.profile-social-actions .btn.btn-ghost {
  width: 40px;
  padding-left: 0;
  padding-right: 0;
}

.profile-social-mid {
  padding: 14px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-social-mid .profile-social-stats {
  margin-top: 0;
}

.profile-social-mid .profile-social-highlights {
  margin-top: 0;
}

.profile-social-avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .98), rgba(var(--accent-2-rgb), .98));
  box-shadow: 0 24px 72px rgba(0, 0, 0, .55);
  flex: 0 0 auto;
}

.profile-social-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 2px solid rgba(8, 12, 22, .92);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.profile-social-title {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.profile-social-name {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 14px 44px rgba(0, 0, 0, .55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-social-handle {
  margin-top: 2px;
  color: rgba(234, 240, 255, .72);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.profile-social-stats {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.sstat {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  text-decoration: none;
  color: inherit;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.sstat:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .16);
  transform: translateY(-1px);
}

.sstat-val {
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.sstat-label {
  font-size: .78rem;
  color: rgba(234, 240, 255, .72);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.profile-social-bio {
  padding: 0 16px 14px;
}

.profile-social-bio-text {
  color: rgba(234, 240, 255, .86);
  font-size: .95rem;
}

.profile-social-highlights {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.profile-social-tabs {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  padding: 0 10px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .01);
}

.stab {
  flex: 1 1 0;
  padding: 12px 10px 12px;
  text-decoration: none;
  color: rgba(234, 240, 255, .72);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-bottom: 3px solid transparent;
  transition: color .16s ease, border-color .16s ease, background .16s ease;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.stab i {
  font-size: 1.05rem;
}

.stab.is-active {
  color: rgba(255, 255, 255, .92);
  border-bottom-color: rgba(var(--accent-rgb), .95);
  background: rgba(255, 255, 255, .03);
}

.stab:hover {
  color: rgba(255, 255, 255, .90);
  background: rgba(255, 255, 255, .02);
}

@media (min-width: 992px) {

  .profile-cover-social,
  .profile-hero-social .profile-cover-overlay {
    height: 340px;
  }

  .profile-hero-social .profile-cover-overlay-social {
    height: 340px;
  }

  .profile-cover-social {
    height: 340px;
  }

  .profile-social-wrap {
    padding-top: 254px;
  }

  .profile-social-topbar {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .profile-social-actions {
    border-top: 0;
    border-bottom: 0;
    padding: 18px;
    justify-content: flex-end;
  }

  .profile-social-mid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .profile-social-stats {
    width: 420px;
  }

  .profile-social-highlights {
    justify-content: flex-end;
  }
}

@media (max-width: 575.98px) {

  .profile-cover-social,
  .profile-hero-social .profile-cover-overlay-social {
    height: 240px;
  }

  .profile-social-wrap {
    padding-top: 176px;
  }

  .profile-social-topbar {
    padding: 14px 14px 10px;
  }

  .profile-social-actions {
    padding: 12px 14px 12px;
  }

  .profile-social-mid {
    padding: 12px 14px 14px;
  }

  .profile-social-avatar {
    width: 88px;
    height: 88px;
  }

  .profile-social-name {
    font-size: 1.25rem;
  }

  .profile-social-tabs span {
    display: none;
  }
}

.profile-grid-v3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.profile-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.profile-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-identity-v3 {
  gap: 12px;
}

.profile-actions-v3 {
  gap: 8px;
}

.profile-actions-v3 .btn {
  padding-top: .45rem;
  padding-bottom: .45rem;
}

.profile-stats-v3 {
  gap: 8px;
}

.profile-stats-v3 .pstat {
  min-width: 0;
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.profile-stats-v3 .pstat-val {
  font-size: 1.15rem;
}

.profile-stats-v3 .pstat-label {
  font-size: .82rem;
}

.profile-tabs-v3 {
  margin-top: 10px;
  padding-top: 10px;
  gap: 6px;
}

.profile-tabs-v3 .ptab {
  padding: 8px 10px;
  font-size: .9rem;
}

.profile-hero-compact .profile-card {
  padding: 12px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .55);
}

.profile-card {
  position: relative;
  overflow: hidden;
}

.profile-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    linear-gradient(90deg, rgba(var(--accent-rgb), .22), rgba(var(--accent-2-rgb), .18));
  opacity: .18;
  filter: blur(18px);
  pointer-events: none;
}

.profile-card>* {
  position: relative;
  z-index: 1;
}

.profile-card-top {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.profile-card-bottom {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.profile-identity {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.profile-main {
  display: flex;
  gap: 14px;
  align-items: center;
}

.profile-avatar-wrap {
  width: 86px;
  height: 86px;
  border-radius: 28px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .95), rgba(var(--accent-2-rgb), .95));
  box-shadow: 0 26px 84px rgba(0, 0, 0, .55);
}

.profile-hero-v3 .profile-avatar-wrap {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .46);
}

.profile-hero-v3 .profile-avatar {
  border-radius: 20px;
}

.profile-hero-compact .profile-avatar-wrap {
  width: 68px;
  height: 68px;
  border-radius: 22px;
}

.profile-hero-compact .profile-avatar {
  border-radius: 20px;
}

.profile-avatar {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 18px 54px rgba(0, 0, 0, .44);
}

.profile-meta {
  min-width: 0;
}

.profile-title {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 1.65rem;
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 14px 44px rgba(0, 0, 0, .55);
}

.profile-hero-v3 .profile-title {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.profile-hero-v3 .profile-sub {
  font-size: .95rem;
}

.profile-hero-v3 .profile-bio {
  font-size: .92rem;
  margin-top: 4px;
}

.profile-hero-v3 .profile-chips {
  margin-top: 0;
  gap: 6px;
}

.profile-hero-v3 .pchip {
  padding: 6px 10px;
  font-size: .85rem;
}

.profile-hero-compact .profile-title {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.profile-title {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.15;
}

.profile-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-1px);
  color: rgba(var(--accent-rgb), .95);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .35));
}

.profile-sub {
  color: rgba(234, 240, 255, .70);
  margin-top: 2px;
}

.profile-bio {
  color: rgba(234, 240, 255, .70);
  margin-top: 6px;
  font-size: .95rem;
}

.profile-hero-compact .profile-sub {
  font-size: .95rem;
}

.profile-hero-compact .profile-bio {
  font-size: .92rem;
  margin-top: 4px;
}

.profile-hero-compact .profile-chips {
  margin-top: 8px;
  gap: 6px;
}

.profile-hero-compact .pchip {
  padding: 6px 10px;
  font-size: .85rem;
}

.profile-hero-compact .profile-actions {
  gap: 8px;
}

.profile-hero-compact .profile-actions .btn {
  padding-top: .45rem;
  padding-bottom: .45rem;
}

.profile-hero-compact .profile-tabs {
  margin-top: 10px;
  padding-top: 10px;
  gap: 6px;
}

.profile-hero-compact .ptab {
  padding: 8px 10px;
  font-size: .9rem;
}

.profile-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pchip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: rgba(234, 240, 255, .82);
  font-weight: 700;
  font-size: .9rem;
}

.pchip i {
  color: rgba(var(--accent-rgb), .92);
}

.profile-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pstat {
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  min-width: 130px;
}

.pstat {
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.pstat:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
}

.pstat-label {
  color: rgba(234, 240, 255, .70);
  font-size: .9rem;
}

.pstat-val {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.4rem;
}

.profile-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.profile-actions .btn {
  border-radius: 999px;
}

.profile-actions .btn.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: rgba(234, 240, 255, .92);
}

.profile-actions .btn.btn-ghost:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}

.profile-tabs {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.ptab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  color: rgba(234, 240, 255, .78);
  text-decoration: none;
  font-weight: 800;
  font-size: .95rem;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.ptab:hover {
  transform: translateY(-1px);
  color: rgba(255, 255, 255, .95);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
}

.ptab.is-active {
  border-color: rgba(var(--accent-rgb), .42);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .18), rgba(var(--accent-2-rgb), .14));
  color: rgba(255, 255, 255, .95);
}

@media (max-width: 575.98px) {
  .profile-hero-body {
    padding: 12px;
  }

  .profile-card {
    padding: 12px;
  }

  .profile-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .profile-actions {
    justify-content: flex-start;
  }

  .profile-meta {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .dash-shortcuts-sticky {
    top: 74px;
  }

  .profile-actions-v3 {
    width: 100%;
    justify-content: flex-start;
  }

  .profile-right {
    align-items: flex-start;
  }
}

@media (min-width: 992px) {
  .profile-grid-v3 {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .profile-right {
    align-items: flex-end;
    justify-content: space-between;
  }

  .profile-stats-v3 {
    justify-content: flex-end;
  }
}

.dash-shortcuts {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dash-shortcuts-v3 {
  margin-top: 10px;
  padding: 8px;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-overflow-scrolling: touch;
}

.dash-shortcuts-v3::-webkit-scrollbar {
  height: 8px;
}

.dash-shortcuts-v3::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .10);
  border-radius: 999px;
}

.dash-shortcuts-v3 .dash-chip {
  flex: 0 0 auto;
  padding: .5rem .7rem;
  font-size: .95rem;
  white-space: nowrap;
}

.dash-shortcuts-sticky {
  position: sticky;
  top: 84px;
  z-index: 25;
}

.dash-chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: rgba(234, 240, 255, .82);
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.dash-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .95);
}

.dash-chip i {
  color: rgba(var(--accent-rgb), .92);
}

.module-card {
  display: block;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 26px 76px rgba(0, 0, 0, .32);
  height: 180px;
  text-decoration: none;
  color: rgba(255, 255, 255, .92);
  transition: transform .18s ease, box-shadow .18s ease;
}

.module-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .35s ease, filter .35s ease;
  filter: saturate(1.05) contrast(1.06);
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .48);
}

.module-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.10) contrast(1.08);
}

.module-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .72));
}

.module-title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(7, 10, 18, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.module-title i {
  color: rgba(var(--accent-rgb), .92);
}

.module-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.module-row::-webkit-scrollbar {
  height: 8px;
}

.module-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .10);
  border-radius: 999px;
}

.module-col {
  flex: 0 0 auto;
  width: 320px;
  scroll-snap-align: start;
}

.you-list {
  display: grid;
  gap: 10px;
}

.you-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  text-decoration: none;
  color: rgba(234, 240, 255, .84);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.you-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .95);
}

.you-avatar {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .18), rgba(var(--accent-2-rgb), .18));
  display: inline-block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .25);
  flex: 0 0 auto;
}

.you-name {
  font-weight: 800;
  letter-spacing: -0.01em;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Stories */
.stories {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.dash-stories-v3 .dash-panel-head {
  margin-bottom: 8px;
}

.dash-stories-v3 .dash-panel-sub {
  font-size: .9rem;
}

.dash-stories-v3 .stories {
  gap: 10px;
  padding-top: 0;
  padding-bottom: 8px;
}

.dash-stories-v3 .story {
  min-width: 112px;
  gap: 8px;
  padding: 12px 10px;
}

.dash-stories-v3 .story-ring {
  width: 96px;
  height: 96px;
  padding: 4px;
}

.dash-stories-v3 .story-name {
  font-size: 1rem;
  max-width: 112px;
}

.dash-stories-compact .dash-panel-head {
  margin-bottom: 8px;
}

.dash-stories-compact .dash-panel-sub {
  font-size: .9rem;
}

.dash-stories-compact .stories {
  gap: 10px;
  padding-bottom: 8px;
}

.dash-stories-compact .story {
  min-width: 66px;
  gap: 6px;
  padding: 6px 5px;
}

.dash-stories-compact .story-ring {
  width: 56px;
  height: 56px;
}

.dash-stories-compact .story-name {
  font-size: .8rem;
}

.stories {
  padding-top: 4px;
}

.stories::-webkit-scrollbar {
  height: 8px;
}

.stories::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .10);
  border-radius: 999px;
}

.story {
  scroll-snap-align: start;
  text-decoration: none;
  color: rgba(234, 240, 255, .86);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 112px;
}

.story-ring {
  width: 96px;
  height: 96px;
  padding: 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .32);
}

.story-ring-me {
  position: relative;
  background: rgba(255, 255, 255, .08);
  border: 1px dashed rgba(255, 255, 255, .22);
}

.story-ring-me.story-ring-live {
  border: none;
  background: transparent;
}

.story-ring-me>.story-add-button {
  appearance: none;
  position: absolute;
  right: -2px;
  bottom: -2px;
  z-index: 2;
  width: 30px;
  min-width: 0;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 3px solid #111722;
  border-radius: 50%;
  background: var(--accent, #7c5cff);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .35);
  cursor: pointer;
}

.story-ring-me>.story-add-button:hover {
  filter: brightness(1.12);
  transform: scale(1.05);
}

.story-ring-me>.story-add-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.story-avatar {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 2px solid rgba(7, 10, 18, .86);
  background:
    radial-gradient(28px 28px at 30% 30%, rgba(var(--accent-rgb), .20), transparent 65%),
    radial-gradient(34px 34px at 80% 20%, rgba(var(--accent-2-rgb), .18), transparent 65%),
    rgba(255, 255, 255, .06);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, .90);
}

.story-avatar-me {
  border-style: solid;
  /* background: rgba(255,255,255,.06); */
}

.story-name {
  max-width: 112px;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1rem;
  color: rgba(234, 240, 255, .78);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 575.98px) {
  .dash-stories-v3 .story {
    min-width: 100px;
    padding: 10px 8px;
  }

  .dash-stories-v3 .story-ring {
    width: 86px;
    height: 86px;
  }
}

.story:hover .story-name {
  color: rgba(255, 255, 255, .95);
}

.story:hover .story-ring {
  transform: translateY(-1px);
}

.story-ring {
  transition: transform .18s ease;
}

.story-ring-live {
  position: relative;
  background: transparent;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .32);
  isolation: isolate;
}

.story-ring-live::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #ff2d55 0%, #ff6b35 52%, #ff2d55 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: story-live-ring-pulse 2.2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.story-ring-live .story-avatar {
  position: relative;
  z-index: 1;
  background-color: #070a12;
  border-color: rgba(7, 10, 18, .92);
}

.story-ring-live>.story-add-button,
.story-ring-live>.story-live-badge,
.story-ring-live>.story-live-viewers {
  z-index: 3;
}

.story-live-badge {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  padding: 2px 8px;
  border-radius: 6px;
  background: #ff2d55;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(255, 45, 85, 0.45);
}

.story-live-viewers {
  position: absolute;
  top: -2px;
  right: -2px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(7, 10, 18, 0.92);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, .12);
}

.story-live-viewers .bi {
  font-size: 0.72rem;
  opacity: 0.92;
}

.story--live .story-name {
  color: rgba(255, 255, 255, .95);
}

@keyframes story-live-ring-pulse {

  0%,
  100% {
    filter: brightness(1) saturate(1);
    opacity: 1;
  }

  50% {
    filter: brightness(1.18) saturate(1.12);
    opacity: 1;
  }
}

.suggest-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  margin-bottom: 10px;
}

.suggest-meta {
  min-width: 0;
}

.suggest-name {
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggest-sub {
  color: rgba(234, 240, 255, .62);
  font-size: .9rem;
  margin-top: 2px;
}

/* Bigger avatars for Events list only */
.you-avatar.event-avatar {
  width: 56px;
  height: 56px;
}

/* Classes list (dashboard right column) */
.class-list {
  display: grid;
  gap: 10px;
}

.class-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.class-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .96);
}

.class-thumb {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .25);
  background: rgba(255, 255, 255, .04);
}

.class-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.02);
}

.class-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .55));
  pointer-events: none;
}

.class-duration {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  background: rgba(7, 10, 18, .70);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.class-meta {
  min-width: 0;
  flex: 1 1 auto;
}

.class-title {
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.class-creator {
  margin-top: 3px;
  color: rgba(234, 240, 255, .78);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.class-bottom {
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.class-price {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.class-level,
.class-badge {
  padding: .22rem .55rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: rgba(234, 240, 255, .86);
  text-transform: lowercase;
}

.class-level.is-beginner {
  border-color: rgba(var(--accent-rgb), .26);
  background: rgba(var(--accent-rgb), .10);
}

.class-level.is-intermediate {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
}

.class-level.is-advanced {
  border-color: rgba(var(--accent-2-rgb), .26);
  background: rgba(var(--accent-2-rgb), .10);
}

.class-badge.is-purchased {
  border-color: rgba(34, 197, 94, .28);
  background: rgba(34, 197, 94, .12);
  color: rgba(220, 252, 231, .95);
}

@media (max-width: 575.98px) {
  .class-thumb {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }
}

@media (max-width: 575.98px) {
  .pstat {
    min-width: 0;
    flex: 1 1 auto;
  }

  .module-card {
    height: 160px;
  }
}

.dash-hero {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .52);
}

.dash-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 18, .25), rgba(7, 10, 18, .88)),
    url("../img/danzflo-tv.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.02);
}

.dash-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 360px at 20% 0%, rgba(var(--accent-rgb), .24), transparent 60%),
    radial-gradient(720px 360px at 100% 10%, rgba(var(--accent-2-rgb), .22), transparent 60%),
    linear-gradient(180deg, rgba(7, 10, 18, .10), rgba(7, 10, 18, .90));
}

.dash-hero-body {
  position: relative;
  z-index: 1;
  padding: 26px;
  color: rgba(255, 255, 255, .92);
}

.dash-title {
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  text-shadow: 0 14px 44px rgba(0, 0, 0, .55);
}

.dash-sub {
  color: rgba(234, 240, 255, .72);
  max-width: 60ch;
}

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

.dash-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 26px 76px rgba(0, 0, 0, .32);
  padding: 16px;
}

.dash-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.dash-ic {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .90);
}

.dash-pill {
  padding: .25rem .55rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  color: rgba(234, 240, 255, .88);
  background: rgba(var(--accent-2-rgb), .16);
  border: 1px solid rgba(var(--accent-2-rgb), .30);
}

.dash-pill-cyan {
  background: rgba(var(--accent-rgb), .14);
  border-color: rgba(var(--accent-rgb), .28);
}

.dash-metric {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 2rem;
}

.dash-label {
  color: rgba(234, 240, 255, .68);
}

.dash-panel {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  box-shadow: 0 26px 76px rgba(0, 0, 0, .32);
  padding: 16px;
}

.dash-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.dash-panel-head>div {
  min-width: 0;
}

.dash-panel-head>a,
.dash-panel-head>button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.dash-trending {
  margin-top: 16px;
}

/* Classes section (full-width) */
.dash-classes {
  margin-top: 16px;
}

.classes-actions {
  width: 100%;
  max-width: 420px;
}

.classes-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .20);
}

.classes-search i {
  color: rgba(255, 255, 255, .72);
}

.classes-search-input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: rgba(255, 255, 255, .90);
  font-weight: 700;
}

.classes-search-input::placeholder {
  color: rgba(255, 255, 255, .56);
}

.classes-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.classes-tab {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: rgba(234, 240, 255, .78);
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.classes-tab:hover {
  transform: translateY(-1px);
  color: rgba(255, 255, 255, .95);
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
}

.classes-tab.is-active {
  color: rgba(255, 255, 255, .95);
  border-color: rgba(var(--accent-rgb), .38);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), .16), rgba(var(--accent-2-rgb), .12));
}

.classes-row {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.classes-row::-webkit-scrollbar {
  height: 8px;
}

.classes-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .10);
  border-radius: 999px;
}

.ccard {
  min-width: 260px;
  max-width: 260px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.ccard:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 26px 76px rgba(0, 0, 0, .32);
}

.ccard-media {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.ccard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .28s ease, filter .28s ease;
  filter: saturate(1.05) contrast(1.06);
}

.ccard:hover .ccard-media img {
  transform: scale(1.08);
  filter: saturate(1.10) contrast(1.08);
}

.ccard-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 220px at 70% 30%, rgba(255, 255, 255, .18), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .18));
  pointer-events: none;
}

.ccard-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ccard-pill {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  border: 1px solid rgba(34, 197, 94, .28);
  background: rgba(34, 197, 94, .12);
  color: rgba(220, 252, 231, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ccard-body {
  padding: 12px;
  min-width: 0;
}

.ccard-title {
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ccard-instructor {
  margin-top: 4px;
  color: rgba(234, 240, 255, .78);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ccard-bottom {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.ccard-price {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.ccard-level {
  padding: .22rem .55rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: rgba(234, 240, 255, .86);
  text-transform: capitalize;
}

.ccard-level.is-beginner {
  border-color: rgba(var(--accent-rgb), .26);
  background: rgba(var(--accent-rgb), .10);
}

.ccard-level.is-intermediate {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
}

.ccard-level.is-advanced {
  border-color: rgba(var(--accent-2-rgb), .26);
  background: rgba(var(--accent-2-rgb), .10);
}

@media (max-width: 575.98px) {
  .classes-actions {
    max-width: 100%;
  }

  .ccard {
    min-width: 230px;
    max-width: 230px;
  }

  .ccard-media {
    height: 146px;
  }
}

/* Netflix-style trending row */
.trending-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.trending-row::-webkit-scrollbar {
  height: 8px;
}

.trending-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .10);
  border-radius: 999px;
}

.tcard {
  min-width: 260px;
  max-width: 260px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .28);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.tcard:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 255, 255, .20);
  background: rgba(0, 0, 0, .34);
  box-shadow: 0 26px 76px rgba(0, 0, 0, .32);
}

.tcard-media {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.tcard-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(420px 220px at 70% 30%, rgba(255, 255, 255, .18), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .18));
  pointer-events: none;
}

.tcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
  transform: scale(1.02);
  transition: transform .28s ease, filter .28s ease;
  filter: saturate(1.05) contrast(1.06);
}

.tcard:hover .tcard-media img {
  transform: scale(1.08);
  filter: saturate(1.10) contrast(1.08);
}

.tcard-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .01em;
  background: rgba(7, 10, 18, .72);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .92);
}

.tcard-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .92);
}

.tcard-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%) scale(.96);
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .95);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .45);
  opacity: .0;
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
}

.tcard-play i {
  font-size: 1.7rem;
  transform: translateX(1px);
}

.tcard:hover .tcard-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: rgba(0, 0, 0, .55);
}

.tcard-body {
  padding: 12px 12px 12px;
  min-width: 0;
}

.tcard-title {
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 1.02rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tcard-creator {
  margin-top: 4px;
  font-weight: 700;
  color: rgba(234, 240, 255, .78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tcard-meta {
  margin-top: 4px;
  font-size: .9rem;
  color: rgba(234, 240, 255, .62);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 575.98px) {
  .tcard {
    min-width: 220px;
    max-width: 220px;
  }

  .tcard-media {
    height: 146px;
  }
}

.dash-music {
  margin-top: 16px;
}

.music-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.music-row::-webkit-scrollbar {
  height: 8px;
}

.music-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .10);
  border-radius: 999px;
}

.mcard {
  min-width: 280px;
  max-width: 280px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(520px 260px at 20% 0%, rgba(var(--accent-rgb), .10), transparent 60%),
    radial-gradient(520px 260px at 100% 0%, rgba(var(--accent-2-rgb), .10), transparent 60%),
    rgba(0, 0, 0, .30);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.mcard:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 255, 255, .20);
  background: rgba(0, 0, 0, .34);
  box-shadow: 0 26px 76px rgba(0, 0, 0, .32);
}

.mcard-media {
  position: relative;
  height: 220px;
  /* album cover */
  overflow: hidden;
}

.mcard-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(420px 220px at 70% 30%, rgba(255, 255, 255, .18), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .18));
  pointer-events: none;
}

.mcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.02);
  transition: transform .28s ease, filter .28s ease;
}

.mcard:hover .mcard-media img {
  transform: scale(1.08);
  filter: saturate(1.10) contrast(1.08);
}

.mcard-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .92);
}

.mcard-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%) scale(.96);
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .95);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .45);
  opacity: .0;
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
}

.mcard-play i {
  font-size: 1.85rem;
  transform: translateX(1px);
}

.mcard:hover .mcard-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: rgba(0, 0, 0, .55);
}

.mcard-body {
  padding: 12px;
  min-width: 0;
}

.mcard-title {
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 1.02rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mcard-sub {
  margin-top: 4px;
  font-weight: 700;
  color: rgba(234, 240, 255, .78);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mcard-note {
  margin-top: 6px;
  font-size: .9rem;
  color: rgba(234, 240, 255, .62);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mcard-wave {
  margin-top: 10px;
  height: 16px;
  display: flex;
  gap: 4px;
  align-items: flex-end;
  opacity: .85;
}

.mcard-wave span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .08);
}

.mcard:hover .mcard-wave span {
  background: linear-gradient(180deg, rgba(var(--accent-rgb), .65), rgba(var(--accent-2-rgb), .55));
  border-color: rgba(255, 255, 255, .10);
}

.mcard-wave span:nth-child(1) {
  height: 7px;
}

.mcard-wave span:nth-child(2) {
  height: 13px;
}

.mcard-wave span:nth-child(3) {
  height: 9px;
}

.mcard-wave span:nth-child(4) {
  height: 15px;
}

.mcard-wave span:nth-child(5) {
  height: 10px;
}

.mcard-bottom {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.mcard-price {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.mcard-pill {
  padding: .22rem .55rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: rgba(234, 240, 255, .86);
}

.mcard-pill.is-purchased {
  border-color: rgba(34, 197, 94, .28);
  background: rgba(34, 197, 94, .12);
  color: rgba(220, 252, 231, .95);
}

@media (max-width: 575.98px) {
  .mcard {
    min-width: 260px;
    max-width: 260px;
  }

  .mcard-media {
    height: 200px;
  }
}

.dash-merch {
  margin-top: 16px;
}

.merch-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.merch-row::-webkit-scrollbar {
  height: 8px;
}

.merch-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .10);
  border-radius: 999px;
}

.pcard {
  min-width: 220px;
  max-width: 220px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.pcard:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 26px 76px rgba(0, 0, 0, .32);
}

.pcard-media {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.pcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.05);
  transform: scale(1.02);
  transition: transform .28s ease, filter .28s ease;
}

.pcard:hover .pcard-media img {
  transform: scale(1.08);
  filter: saturate(1.10) contrast(1.08);
}

.pcard-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(0, 0, 0, .16));
  pointer-events: none;
}

.pcard-sale,
.pcard-tag {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .55);
  color: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pcard-sale {
  border-color: rgba(var(--accent-2-rgb), .28);
  background: rgba(var(--accent-2-rgb), .14);
}

.pcard-body {
  padding: 12px;
  min-width: 0;
}

.pcard-title {
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pcard-bottom {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.pcard-price {
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.pcard-price-now {
  font-weight: 900;
}

.pcard-price-was {
  margin-left: 8px;
  color: rgba(234, 240, 255, .55);
  text-decoration: line-through;
  font-weight: 800;
}

.pcard-reviews {
  color: rgba(234, 240, 255, .62);
  font-size: .9rem;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .pcard {
    min-width: 200px;
    max-width: 200px;
  }

  .pcard-media {
    height: 156px;
  }
}

.dash-events-year {
  margin-top: 16px;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ecard {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.ecard:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 26px 76px rgba(0, 0, 0, .32);
}

.ecard-media {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.ecard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.02);
  transition: transform .28s ease, filter .28s ease;
}

.ecard:hover .ecard-media img {
  transform: scale(1.08);
  filter: saturate(1.10) contrast(1.08);
}

.ecard-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 260px at 70% 30%, rgba(255, 255, 255, .18), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .18));
  pointer-events: none;
}

.ecard-datepill {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ecard-body {
  padding: 14px;
  min-width: 0;
}

.ecard-title {
  font-weight: 900;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ecard-meta {
  margin-top: 4px;
  color: rgba(234, 240, 255, .70);
  font-weight: 700;
  font-size: .92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ecard-loc {
  margin-top: 6px;
  color: rgba(234, 240, 255, .62);
  font-size: .92rem;
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ecard-loc i {
  color: rgba(var(--accent-rgb), .92);
}

@media (max-width: 991.98px) {
  .event-grid {
    grid-template-columns: 1fr;
  }
}

.dash-panel-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}

.dash-panel-sub {
  color: rgba(234, 240, 255, .62);
  font-size: .95rem;
  margin-top: 2px;
}

.dash-list {
  display: grid;
  gap: 10px;
}

.dash-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  background: rgba(var(--accent-2-rgb), .95);
  box-shadow: 0 0 0 6px rgba(var(--accent-2-rgb), .12);
}

.dash-dot-cyan {
  background: rgba(var(--accent-rgb), .95);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb), .12);
}

.dash-item-title {
  font-weight: 800;
  letter-spacing: -0.01em;
}

.dash-item-sub {
  color: rgba(234, 240, 255, .62);
  font-size: .92rem;
  margin-top: 2px;
}

.dash-time {
  margin-left: auto;
  color: rgba(234, 240, 255, .58);
  font-size: .9rem;
  white-space: nowrap;
}

.dash-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  text-decoration: none;
  color: rgba(255, 255, 255, .92);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.dash-action:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .95);
}

.dash-action i {
  font-size: 1.3rem;
  color: rgba(var(--accent-rgb), .92);
}

.dash-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  color: rgba(234, 240, 255, .72);
}

.dash-note i {
  color: rgba(var(--accent-2-rgb), .92);
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  display: grid;
  place-items: center;
  color: rgba(234, 240, 255, .85);
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(7, 10, 18, .65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .9);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .scroll-cue {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .hero-modern .hero-row {
    min-height: auto;
  }

  .showcase-media img {
    height: 360px;
  }
}

/* Legal pages (Privacy Policy, Terms, etc.) */
.legal-page {
  padding: 110px 0 72px;
  min-height: 100vh;
}

.legal-hero {
  margin-bottom: 28px;
}

.legal-hero-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.legal-hero-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-layout {
  align-items: flex-start;
}

.legal-sidebar {
  position: sticky;
  top: 88px;
  align-self: flex-start;
  z-index: 5;
  max-height: calc(100vh - 100px);
}

.legal-toc-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(14, 23, 48, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 112px);
}

.legal-toc-title {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
}

.legal-toc {
  display: grid;
  gap: 6px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.legal-toc a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: 10px;
  transition: background 0.15s ease, color 0.15s ease;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}

.legal-content-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(14, 23, 48, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}

.legal-content-card h2,
.legal-content-card h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  scroll-margin-top: 104px;
}

.legal-content-card h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.legal-content-card h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-content-card h3 {
  font-size: 1.05rem;
  margin-top: 1.25rem;
  margin-bottom: 0.65rem;
  color: rgba(234, 240, 255, .92);
}

.legal-content-card p,
.legal-content-card li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-content-card p {
  margin-bottom: 0.9rem;
}

.legal-content-card ul,
.legal-content-card ol {
  margin-bottom: 1rem;
  padding-left: 1.2rem;
}

.legal-content-card li {
  margin-bottom: 0.45rem;
}

.legal-content-card a {
  color: var(--accent);
  text-decoration: none;
}

.legal-content-card a:hover {
  text-decoration: underline;
}

.legal-summary {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--accent-rgb), .22);
  background: rgba(var(--accent-rgb), .08);
  padding: 18px 20px;
  margin-bottom: 1.5rem;
}

.legal-summary h2 {
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: 0 !important;
  font-size: 1.15rem;
}

.legal-summary p:last-child {
  margin-bottom: 0;
}

.legal-short {
  font-weight: 700;
  color: rgba(234, 240, 255, .9);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.legal-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.legal-table th,
.legal-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  vertical-align: top;
  text-align: left;
}

.legal-table th {
  background: rgba(255, 255, 255, .05);
  color: rgba(234, 240, 255, .92);
  font-weight: 700;
}

.legal-table td {
  color: var(--muted);
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-contact-block {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  padding: 16px 18px;
}

.legal-footnote {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted-2);
  font-size: 0.88rem;
}

@media (max-width: 991.98px) {
  .legal-page {
    padding-top: 96px;
  }

  .legal-sidebar {
    position: static;
    max-height: none;
  }

  .legal-toc-card {
    max-height: none;
  }

  .legal-toc {
    max-height: 220px;
  }
}

/* 404 page */
.not-found-page {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 110px 0 72px;
  overflow: hidden;
}

.not-found-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.not-found-glow--cyan {
  width: clamp(280px, 42vw, 520px);
  height: clamp(280px, 42vw, 520px);
  top: 8%;
  left: -8%;
  background: rgba(var(--accent-rgb), .18);
}

.not-found-glow--pink {
  width: clamp(240px, 36vw, 440px);
  height: clamp(240px, 36vw, 440px);
  right: -6%;
  bottom: 12%;
  background: rgba(var(--accent-2-rgb), .16);
}

.not-found-card {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(32px, 5vw, 48px) clamp(24px, 4vw, 40px);
}

.not-found-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(var(--accent-rgb), .28);
  background: rgba(var(--accent-rgb), .10);
  color: var(--accent);
  font-size: 1.65rem;
  box-shadow: 0 12px 36px rgba(var(--accent-rgb), .12);
}

.not-found-code {
  font-size: clamp(4.5rem, 16vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
}

.not-found-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.not-found-desc {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto 28px;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.not-found-links {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.not-found-links-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 14px;
}

.not-found-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.not-found-links-grid a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.not-found-links-grid a:hover,
.not-found-links-grid a:focus-visible {
  color: #fff;
  border-color: rgba(var(--accent-rgb), .30);
  background: rgba(var(--accent-rgb), .10);
}

@media (max-width: 575.98px) {
  .not-found-page {
    padding-top: 96px;
  }

  .not-found-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .not-found-actions .btn {
    width: 100%;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .feature-card,
  .category-tile,
  .btn-accent,
  .navbar .nav-link,
  .social-btn,
  .scroll-cue {
    transition: none !important;
  }

  .mouse::after {
    animation: none !important;
  }

  .hero-modern .hero-bg,
  .hero-modern .hero-overlay,
  .hero-modern .hero-orbs,
  .showcase-card {
    animation: none !important;
  }
}



/* /////// */




/* Keep shared navbar usable before Bootstrap xxl (1400px) widens the container */
.navbar>.container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

@media (min-width: 1200px) {
  .navbar>.container {
    max-width: min(1320px, calc(100% - 24px));
  }
}

.navbar .d-none.d-lg-flex {
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
  gap: 12px;
}

.navbar .nav-links {
  flex: 0 0 auto;
}

/* Mid desktop (~lg–xxl): prevent nav/search/actions from colliding */
@media (max-width: 1439.98px) {
  .navbar .brand-logo {
    height: 42px;
  }

  .navbar .d-none.d-lg-flex {
    gap: 8px;
  }

  .navbar .nav-links {
    gap: 2px;
    padding: 2px 0;
  }

  .navbar .nav-link {
    padding: .4rem .55rem;
    font-size: .86rem;
  }

  .navbar .nav-links .nav-link::after {
    left: 10px;
    right: 10px;
    bottom: 5px;
  }

  .nav-search-form {
    flex-basis: 140px;
    max-width: 160px;
  }

  .nav-search-compact {
    max-width: 160px;
  }

  .navbar .nav-signin,
  .navbar .d-none.d-lg-flex>.d-flex.align-items-center .btn-sm,
  .navbar .d-none.d-lg-flex>.dropdown>.nav-signin {
    width: 36px;
    height: 36px;
    min-width: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 0;
    border-radius: 10px;
  }

  .navbar .nav-signin i,
  .navbar .d-none.d-lg-flex>.d-flex.align-items-center .btn-sm i,
  .navbar .d-none.d-lg-flex>.dropdown>.nav-signin i {
    font-size: 1.05rem;
    margin: 0 !important;
    line-height: 1;
  }

  .navbar .nav-signin::after,
  .navbar .d-none.d-lg-flex>.dropdown>.nav-signin::after {
    display: none;
  }

  .navbar .d-none.d-lg-flex>.d-flex.align-items-center {
    gap: 6px;
  }
}

@media (min-width: 1440px) {
  .nav-search-form {
    flex-basis: 240px;
    max-width: 260px;
  }

  .nav-search-compact {
    max-width: 260px;
  }
}

.nav-offcanvas {
  background: rgba(7, 10, 18, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-left: 1px solid rgba(255, 255, 255, .10);
  color: rgba(234, 240, 255, .92);
}

.nav-offcanvas .offcanvas-header {
  color: #fff;
}

.nav-offcanvas .offcanvas-header .fw-bold,
.nav-offcanvas #navOffcanvasLabel {
  color: #fff;
}

.nav-offcanvas .nav-link {
  border-radius: 14px;
  padding: .75rem .85rem;
  color: rgba(234, 240, 255, .82);
  font-weight: 700;
}

.nav-offcanvas .nav-link:hover,
.nav-offcanvas .nav-link:focus {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}




.facebook-login-wrapper {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
}

.facebook-login-wrapper button {
  width: 100%;
  border-radius: 20px !important;
}

section[id],
header[id],
#features {
  scroll-margin-top: 92px;
}