/* Modern 2026 theme — production + test preview pages */

:root {
  --m-bg: #070b12;
  --m-surface: #111827;
  --m-surface-2: #1a2332;
  --m-border: rgba(255, 255, 255, 0.08);
  --m-text: #f3f6fb;
  --m-muted: #94a3b8;
  --m-accent: #38b3f6;
  --m-accent-2: #6366f1;
  --m-live: #ef4444;
  --m-radius: 16px;
  --m-radius-sm: 10px;
  --m-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --m-font: "DM Sans", system-ui, -apple-system, sans-serif;
  --m-display: "Outfit", var(--m-font);
  --m-max: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.m2026-body {
  margin: 0;
  font-family: var(--m-font);
  background: var(--m-bg);
  color: var(--m-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.m2026-body a {
  color: inherit;
  text-decoration: none;
}

.m2026-preview-banner {
  background: linear-gradient(90deg, #6366f1, #38b3f6);
  color: #fff;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.m2026-preview-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.m2026-shell {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(56, 179, 246, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(99, 102, 241, 0.12), transparent),
    var(--m-bg);
}

.m2026-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 11, 18, 0.82);
  border-bottom: 1px solid var(--m-border);
}

.m2026-nav-inner {
  max-width: var(--m-max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.m2026-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.m2026-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px;
}

.m2026-brand-logo--rn {
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.m2026-brand-text {
  min-width: 0;
}

.m2026-brand-text strong {
  display: block;
  font-family: var(--m-display);
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m2026-brand-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--m-muted);
}

.m2026-nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.m2026-nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--m-muted);
  transition: color 0.2s, background 0.2s;
}

.m2026-nav-links a:hover,
.m2026-nav-links a.is-active {
  color: var(--m-text);
  background: rgba(255, 255, 255, 0.06);
}

.m2026-nav-end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.m2026-nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--m-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--m-text);
  cursor: pointer;
  flex-shrink: 0;
}

.m2026-nav-toggle__bar {
  display: block;
  width: 1.125rem;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.m2026-nav.is-menu-open .m2026-nav-toggle__bar:nth-child(1) {
  transform: translateY(0.42rem) rotate(45deg);
}

.m2026-nav.is-menu-open .m2026-nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.m2026-nav.is-menu-open .m2026-nav-toggle__bar:nth-child(3) {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.m2026-nav-auth {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.m2026-nav-signin {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.m2026-nav-signin.is-current {
  background: rgba(56, 179, 246, 0.15);
  border-color: rgba(56, 179, 246, 0.45);
  color: var(--m-accent);
  pointer-events: none;
}

.m2026-nav-admin {
  padding: 0.55rem 0.9rem;
  font-size: 0.875rem;
  border-color: rgba(56, 179, 246, 0.35);
  color: var(--m-accent);
}

.m2026-nav-admin:hover {
  background: rgba(56, 179, 246, 0.12);
  border-color: rgba(56, 179, 246, 0.5);
  color: var(--m-accent);
}

.m2026-account-action--admin {
  border-color: rgba(56, 179, 246, 0.35);
  color: var(--m-accent);
}

.m2026-account-action--admin:hover,
.m2026-account-action--admin.is-active {
  border-color: rgba(56, 179, 246, 0.5);
  background: rgba(56, 179, 246, 0.12);
  color: var(--m-accent);
}

.m2026-account-action--admin i {
  color: var(--m-accent);
}

.m2026-user-menu {
  position: relative;
}

.m2026-user-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.55rem 0.35rem 0.35rem;
  border: 1px solid var(--m-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--m-text);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.m2026-user-menu__trigger:hover,
.m2026-user-menu.is-open .m2026-user-menu__trigger {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(56, 179, 246, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.m2026-user-menu__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(56, 179, 246, 0.35), rgba(99, 102, 241, 0.35));
  flex-shrink: 0;
}

.m2026-user-menu__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m2026-user-menu__initials {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
}

.m2026-user-menu__name {
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.m2026-user-menu__chevron {
  font-size: 0.7rem;
  color: var(--m-muted);
  transition: transform 0.2s ease;
}

.m2026-user-menu.is-open .m2026-user-menu__chevron {
  transform: rotate(180deg);
}

.m2026-user-menu__panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 220px;
  padding: 0.45rem;
  border: 1px solid var(--m-border);
  border-radius: calc(var(--m-radius-sm) + 2px);
  background: rgba(17, 24, 39, 0.98);
  box-shadow: var(--m-shadow);
  z-index: 120;
}

.m2026-user-menu__panel[hidden] {
  display: none !important;
}

.m2026-user-menu__header {
  padding: 0.65rem 0.75rem 0.55rem;
  border-bottom: 1px solid var(--m-border);
  margin-bottom: 0.35rem;
}

.m2026-user-menu__status {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 0.15rem;
}

.m2026-user-menu__header strong {
  display: block;
  font-family: var(--m-display);
  font-size: 0.95rem;
  color: var(--m-text);
}

.m2026-user-menu__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  border-radius: var(--m-radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--m-text);
  transition: background 0.2s, color 0.2s;
}

.m2026-user-menu__item i {
  width: 1rem;
  color: var(--m-muted);
}

.m2026-user-menu__item:hover,
.m2026-user-menu__item.is-active {
  background: rgba(56, 179, 246, 0.12);
  color: var(--m-accent);
}

.m2026-user-menu__item:hover i,
.m2026-user-menu__item.is-active i {
  color: var(--m-accent);
}

.m2026-user-menu__item--logout {
  margin-top: 0.25rem;
  border-top: 1px solid var(--m-border);
  border-radius: 0 0 var(--m-radius-sm) var(--m-radius-sm);
  color: #fca5a5;
}

.m2026-user-menu__item--logout:hover {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
}

.m2026-user-menu__item--logout i {
  color: #fca5a5;
}

.m2026-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.m2026-btn-primary {
  background: linear-gradient(135deg, var(--m-accent), var(--m-accent-2));
  color: #fff;
  box-shadow: 0 10px 30px rgba(56, 179, 246, 0.25);
}

.m2026-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(56, 179, 246, 0.35);
}

.m2026-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--m-text);
  border: 1px solid var(--m-border);
}

.m2026-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.m2026-main {
  max-width: var(--m-max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4rem;
}

.m2026-hero {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.m2026-hero-slider {
  position: relative;
  min-height: 420px;
  border-radius: calc(var(--m-radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--m-border);
  box-shadow: var(--m-shadow);
}

.m2026-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
}

.m2026-hero-slide.is-active {
  opacity: 1;
}

.m2026-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 11, 18, 0.92) 0%, rgba(7, 11, 18, 0.35) 55%, rgba(7, 11, 18, 0.75) 100%);
}

.m2026-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  gap: 1rem;
}

.m2026-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.15);
  color: #fecaca;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.m2026-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--m-live);
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: m2026-pulse 1.8s infinite;
}

@keyframes m2026-pulse {
  70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.m2026-hero h1 {
  margin: 0;
  font-family: var(--m-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  max-width: 12ch;
}

.m2026-hero p {
  margin: 0;
  max-width: 46ch;
  color: #cbd5e1;
  font-size: 1.05rem;
}

.m2026-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.m2026-hero-dots {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}

.m2026-hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}

.m2026-hero-dots button.is-active {
  background: #fff;
  transform: scale(1.15);
}

.m2026-sidebar-card {
  background: rgba(17, 24, 39, 0.88);
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius);
  padding: 1.25rem;
  box-shadow: var(--m-shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.m2026-sidebar-card h2 {
  margin: 0;
  font-family: var(--m-display);
  font-size: 1.1rem;
}

.m2026-event-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 280px;
  overflow: auto;
}

.m2026-event {
  padding: 0.85rem 1rem;
  border-radius: var(--m-radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--m-border);
}

.m2026-event strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

.m2026-event span {
  font-size: 0.8rem;
  color: var(--m-muted);
}

.m2026-app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.m2026-app-links img {
  height: 40px;
  width: auto;
  opacity: 0.92;
}

.m2026-section {
  margin-bottom: 2.75rem;
}

#live {
  scroll-margin-top: 5rem;
}

.m2026-shell #live .portfolio-item {
  position: relative !important;
  left: auto !important;
  top: auto !important;
}

.m2026-shell #live .portfolio-item .portfolio-image::before {
  content: none !important;
  display: none !important;
}

.m2026-shell #live .portfolio-item:not(.has-access) .portfolio-overlay {
  opacity: 0 !important;
  pointer-events: none !important;
}

.m2026-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1rem;
}

.m2026-section-head h2 {
  margin: 0;
  font-family: var(--m-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.m2026-section-icon {
  color: var(--m-accent);
  font-size: 0.85em;
}

.m2026-section-head p {
  margin: 0.25rem 0 0;
  color: var(--m-muted);
  font-size: 0.92rem;
}

.m2026-see-all {
  color: var(--m-accent);
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
}

.m2026-see-all:hover {
  text-decoration: underline;
}

.m2026-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.m2026-shell .portfolio-item {
  margin: 0 !important;
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}

.m2026-shell .portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  border-color: rgba(56, 179, 246, 0.35);
}

.m2026-shell .portfolio-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0 !important;
}

.m2026-shell .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
}

.m2026-shell .portfolio-overlay {
  opacity: 0 !important;
  background: rgba(7, 11, 18, 0.55) !important;
  border-radius: 0 !important;
  transition: opacity 0.25s ease !important;
  pointer-events: none;
}

.m2026-shell .portfolio-item:not(.has-access) .portfolio-overlay {
  opacity: 0 !important;
}

.m2026-shell .portfolio-item.has-access .portfolio-overlay {
  opacity: 0 !important;
}

.m2026-shell .portfolio-item.has-access:hover .portfolio-overlay {
  opacity: 1 !important;
  pointer-events: auto;
}

.m2026-shell .portfolio-item:not(.has-access) .portfolio-image::before {
  content: "\f023";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 4;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.m2026-shell .portfolio-overlay a.center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  opacity: 1 !important;
  background: transparent !important;
  color: #fff;
}

.m2026-shell .portfolio-overlay a.center-icon i {
  font-size: 2rem !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.m2026-shell .portfolio-overlay a.center-icon div {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.m2026-shell .portfolio-desc {
  padding: 0.85rem 1rem 1rem !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.m2026-shell .portfolio-desc h3 {
  margin: 0 0 0.35rem !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--m-text) !important;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.35;
  min-height: 2.7em;
}

.m2026-shell .portfolio-desc h3 a {
  color: inherit !important;
  display: block;
  overflow: hidden;
}

.m2026-shell .portfolio-desc span {
  color: var(--m-muted) !important;
  font-size: 0.8rem !important;
}

.m2026-shell .favorite-btn {
  top: 0.65rem !important;
  right: 0.65rem !important;
  width: 34px !important;
  height: 34px !important;
  background: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.m2026-page-hero {
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: calc(var(--m-radius) + 4px);
  background: linear-gradient(135deg, rgba(56, 179, 246, 0.12), rgba(99, 102, 241, 0.08));
  border: 1px solid var(--m-border);
}

.m2026-page-hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--m-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.m2026-page-hero p {
  margin: 0;
  color: var(--m-muted);
  max-width: 52ch;
}

.m2026-search-panel {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--m-radius);
  background: var(--m-surface);
  border: 1px solid var(--m-border);
}

.m2026-search-form {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
}

.m2026-search-form input[type="text"],
.m2026-search-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--m-border);
  background: var(--m-surface-2);
  color: var(--m-text);
  font: inherit;
}

.m2026-search-form input::placeholder {
  color: #64748b;
}

.m2026-search-form select {
  min-width: 160px;
}

.m2026-search-advanced {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--m-border);
  color: var(--m-muted);
  font-size: 0.9rem;
}

.m2026-search-panel.is-open .m2026-search-advanced {
  display: block;
}

.m2026-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.m2026-category-card {
  appearance: none;
  border: 1px solid var(--m-border);
  background: var(--m-surface);
  color: var(--m-text);
  border-radius: var(--m-radius);
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
  text-align: center;
  font: inherit;
}

.m2026-category-card:hover,
.m2026-category-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(56, 179, 246, 0.45);
  background: linear-gradient(180deg, rgba(56, 179, 246, 0.12), var(--m-surface));
}

.m2026-category-card i {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  color: var(--m-accent);
}

.m2026-category-card span {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
}

.m2026-subpanel {
  display: none;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--m-radius);
  background: rgba(17, 24, 39, 0.65);
  border: 1px solid var(--m-border);
}

.m2026-subpanel.is-open {
  display: block;
}

.m2026-subpanel h3 {
  margin: 0 0 1rem;
  font-family: var(--m-display);
  font-size: 1.1rem;
}

.m2026-subgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.m2026-subgrid a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: var(--m-radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--m-border);
  transition: background 0.2s, border-color 0.2s;
}

.m2026-subgrid a:hover {
  background: rgba(56, 179, 246, 0.1);
  border-color: rgba(56, 179, 246, 0.35);
}

.m2026-subgrid i {
  font-size: 1.35rem;
  color: var(--m-accent);
  width: 1.5rem;
  text-align: center;
}

.m2026-portfolio-empty {
  grid-column: 1 / -1;
  padding: 1.5rem 0;
  color: var(--m-muted);
  font-size: 0.95rem;
  text-align: center;
}

body.m2026-body .center.m2026-portfolio-empty {
  color: var(--m-muted) !important;
  font-size: 0.95rem !important;
}

.m2026-empty--inline {
  padding: 1.25rem 1.5rem;
  margin: 0;
  text-align: left;
}

.m2026-empty--inline p {
  margin: 0 0 0.35rem;
  color: var(--m-muted);
}

.m2026-empty--inline p:last-child {
  margin-bottom: 0;
}

.m2026-live-empty {
  padding: 1rem 0;
  color: var(--m-muted);
  font-size: 0.95rem;
}

.m2026-video-grid .m2026-live-empty {
  grid-column: 1 / -1;
}

.m2026-video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: var(--m-radius-sm);
  display: block;
}

.m2026-video-grid.m2026-shell,
.m2026-main .m2026-shell {
  min-height: 0;
  background: none;
}

.m2026-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--m-muted);
  border: 1px dashed var(--m-border);
  border-radius: var(--m-radius);
}

.m2026-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--m-border);
  color: var(--m-muted);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.m2026-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--m-muted);
}

.m2026-breadcrumbs a:hover {
  color: var(--m-accent);
}

.m2026-breadcrumbs span.sep {
  opacity: 0.45;
}

.m2026-feed-hero {
  margin-bottom: 1.75rem;
  padding: 1.75rem 2rem;
  border-radius: calc(var(--m-radius) + 4px);
  background: linear-gradient(135deg, rgba(56, 179, 246, 0.1), rgba(17, 24, 39, 0.95));
  border: 1px solid var(--m-border);
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.m2026-feed-hero-main h1 {
  margin: 0 0 0.35rem;
  font-family: var(--m-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.m2026-feed-hero-main p {
  margin: 0;
  color: var(--m-muted);
  font-size: 0.95rem;
}

.m2026-feed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.m2026-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--m-border);
  font-size: 0.82rem;
  color: #cbd5e1;
}

.m2026-meta-chip i {
  color: var(--m-accent);
}

.m2026-season-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.m2026-season-bar label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--m-muted);
  margin-right: 0.25rem;
}

.m2026-season-pill {
  display: inline-flex;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--m-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--m-muted);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.m2026-season-pill:hover,
.m2026-season-pill.is-active {
  color: var(--m-text);
  border-color: rgba(56, 179, 246, 0.45);
  background: rgba(56, 179, 246, 0.12);
}

.m2026-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.m2026-shell .portfolio-item.is-hidden-page {
  display: none !important;
}

/* Passes page */
.m2026-page-hero--compact {
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.75rem;
}

.m2026-pass-section {
  margin-bottom: 2.5rem;
}

.m2026-pass-section + .m2026-pass-section {
  margin-top: 0.5rem;
}

.m2026-pass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.m2026-pass-card {
  display: flex;
  flex-direction: column;
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: calc(var(--m-radius) + 2px);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.m2026-pass-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 179, 246, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.m2026-pass-card--owned {
  border-top: 3px solid #ef4444;
}

.m2026-pass-card:not(.m2026-pass-card--owned) {
  border-top: 3px solid var(--m-accent);
}

.m2026-pass-card__header {
  padding: 1.25rem 1.35rem 1rem;
  border-bottom: 1px solid var(--m-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.m2026-pass-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.m2026-pass-card__header h3 {
  margin: 0 0 0.85rem;
  font-family: var(--m-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--m-text);
}

.m2026-pass-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  font-family: var(--m-display);
  line-height: 1;
}

.m2026-pass-card__currency {
  color: var(--m-accent);
  font-size: 1.35rem;
  font-weight: 700;
}

.m2026-pass-card__amount {
  color: var(--m-text);
  font-size: 2.75rem;
  font-weight: 800;
}

.m2026-pass-card__period {
  color: var(--m-muted);
  font-size: 0.95rem;
  font-weight: 600;
  margin-left: 0.15rem;
}

.m2026-pass-card__details {
  border-bottom: 1px solid var(--m-border);
}

.m2026-pass-card__details summary {
  list-style: none;
  cursor: pointer;
  padding: 0.85rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--m-accent);
  user-select: none;
}

.m2026-pass-card__details summary::-webkit-details-marker {
  display: none;
}

.m2026-pass-card__details summary::after {
  content: "+";
  float: right;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--m-muted);
}

.m2026-pass-card__details[open] summary::after {
  content: "−";
}

.m2026-pass-card__details[open] summary {
  border-bottom: 1px solid var(--m-border);
}

.m2026-pass-card__desc {
  padding: 1rem 1.35rem 1.15rem;
  color: var(--m-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.m2026-pass-card__desc p {
  margin: 0 0 0.75rem;
}

.m2026-pass-card__desc p:last-child {
  margin-bottom: 0;
}

.m2026-pass-card__desc ul,
.m2026-pass-card__desc ol {
  margin: 0;
  padding-left: 1.15rem;
}

.m2026-pass-card__desc li {
  margin-bottom: 0.35rem;
}

.m2026-pass-card__desc a {
  color: var(--m-accent);
}

.m2026-pass-card__desc img {
  display: block;
  max-width: 160px;
  height: auto;
  margin: 0.75rem auto;
}

.m2026-pass-card__actions {
  margin-top: auto;
  padding: 1.15rem 1.35rem 1.35rem;
}

.m2026-pass-card__actions .m2026-btn {
  width: 100%;
  justify-content: center;
}

.m2026-pass-footnote {
  margin: 1.25rem 0 0;
  text-align: center;
}

.m2026-pass-login-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.m2026-pass-login-cta .m2026-btn {
  max-width: 420px;
  width: 100%;
  justify-content: center;
}

.m2026-empty--inline {
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
}

/* Support pages */
.m2026-support-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.75rem 2rem;
  border-radius: calc(var(--m-radius) + 4px);
  background: linear-gradient(135deg, rgba(56, 179, 246, 0.1), rgba(17, 24, 39, 0.95));
  border: 1px solid var(--m-border);
}

.m2026-support-hero--compact {
  margin-bottom: 1.5rem;
  padding: 1.5rem 1.75rem;
}

.m2026-support-hero__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: rgba(56, 179, 246, 0.12);
  border: 1px solid rgba(56, 179, 246, 0.25);
  color: var(--m-accent);
  font-size: 2.75rem;
  flex-shrink: 0;
}

.m2026-support-hero__copy h1 {
  margin: 0 0 0.5rem;
  font-family: var(--m-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: 0.02em;
}

.m2026-support-lead {
  margin: 0 0 0.85rem;
  color: var(--m-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.m2026-support-contact {
  margin: 0;
  color: var(--m-muted);
  font-size: 0.95rem;
}

.m2026-support-contact i {
  color: var(--m-accent);
  margin-right: 0.35rem;
}

.m2026-support-contact a {
  color: var(--m-accent);
  font-weight: 600;
}

.m2026-support-section {
  max-width: 820px;
}

.m2026-support-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.m2026-support-panel {
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.m2026-support-panel summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-family: var(--m-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--m-text);
  user-select: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.m2026-support-panel summary::-webkit-details-marker {
  display: none;
}

.m2026-support-panel summary::after {
  content: "+";
  float: right;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--m-accent);
}

.m2026-support-panel[open] summary::after {
  content: "−";
}

.m2026-support-panel summary:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--m-accent);
}

.m2026-support-panel[open] summary {
  border-bottom: 1px solid var(--m-border);
  background: rgba(56, 179, 246, 0.08);
}

.m2026-support-links {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
}

.m2026-support-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.m2026-support-links li:last-child {
  border-bottom: none;
}

.m2026-support-links a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--m-muted);
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.m2026-support-links a:hover {
  background: rgba(56, 179, 246, 0.1);
  color: var(--m-text);
  padding-left: 1.45rem;
}

.m2026-support-prose {
  padding: 1.15rem 1.25rem 1.25rem;
  color: var(--m-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.m2026-support-prose p {
  margin: 0 0 0.85rem;
}

.m2026-support-prose p:last-child {
  margin-bottom: 0;
}

.m2026-support-prose h2,
.m2026-support-prose h3,
.m2026-support-prose h4 {
  margin: 1.25rem 0 0.65rem;
  font-family: var(--m-display);
  color: var(--m-text);
  line-height: 1.35;
}

.m2026-support-prose h2:first-child,
.m2026-support-prose h3:first-child,
.m2026-support-prose h4:first-child {
  margin-top: 0;
}

.m2026-support-prose ul,
.m2026-support-prose ol {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
}

.m2026-support-prose li {
  margin-bottom: 0.35rem;
}

.m2026-support-prose a {
  color: var(--m-accent);
}

.m2026-support-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--m-radius-sm);
}

.m2026-support-article {
  max-width: 820px;
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: calc(var(--m-radius) + 2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.m2026-support-article .m2026-support-prose {
  padding: 1.5rem 1.75rem 1.75rem;
}

.m2026-support-back {
  margin: 1.25rem 0 0;
}

.m2026-support-back .m2026-see-all i {
  margin-right: 0.35rem;
  font-size: 0.85em;
}

/* Account library page */
.m2026-account-hero {
  margin-bottom: 2rem;
  padding: 1.75rem 2rem;
  border-radius: calc(var(--m-radius) + 4px);
  background: linear-gradient(135deg, rgba(56, 179, 246, 0.1), rgba(17, 24, 39, 0.95));
  border: 1px solid var(--m-border);
}

.m2026-account-hero__main h1 {
  margin: 0 0 0.4rem;
  font-family: var(--m-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: 0.02em;
}

.m2026-account-hero__main p {
  margin: 0 0 1.25rem;
  color: var(--m-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.m2026-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.m2026-account-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--m-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--m-muted);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.m2026-account-action i {
  color: var(--m-accent);
  font-size: 0.85em;
}

.m2026-account-action:hover,
.m2026-account-action.is-active {
  color: var(--m-text);
  border-color: rgba(56, 179, 246, 0.45);
  background: rgba(56, 179, 246, 0.12);
}

.m2026-account-action--muted:hover {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.1);
  color: #fca5a5;
}

.m2026-account-action--muted:hover i {
  color: #fca5a5;
}

/* Order history table */
.m2026-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--m-border);
  border-radius: calc(var(--m-radius) + 2px);
  background: rgba(255, 255, 255, 0.02);
}

.m2026-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.m2026-table th,
.m2026-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--m-border);
}

.m2026-table th {
  font-family: var(--m-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--m-muted);
  background: rgba(255, 255, 255, 0.03);
}

.m2026-table tbody tr:last-child td {
  border-bottom: none;
}

.m2026-table tbody tr:hover {
  background: rgba(56, 179, 246, 0.06);
}

.m2026-table a {
  color: var(--m-accent);
  font-weight: 600;
}

.m2026-text-danger {
  color: #fca5a5;
}

/* Change organizations */
.m2026-org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}

.m2026-org-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1rem;
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: calc(var(--m-radius) + 2px);
  text-align: center;
  text-decoration: none;
  color: var(--m-text);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.m2026-org-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56, 179, 246, 0.4);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.m2026-org-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.m2026-org-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.65rem;
}

.m2026-org-card__name {
  font-family: var(--m-font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--m-text);
}

/* Order confirmation */
.m2026-order-result {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem 2rem;
  align-items: start;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: calc(var(--m-radius) + 4px);
  border: 1px solid var(--m-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.m2026-order-result--success {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.08);
}

.m2026-order-result--error {
  border-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 16px 40px rgba(239, 68, 68, 0.08);
}

.m2026-order-result__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  font-size: 1.75rem;
}

.m2026-order-result--success .m2026-order-result__icon {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.m2026-order-result--error .m2026-order-result__icon {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.m2026-order-result__content h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.m2026-order-result__content > p {
  margin: 0 0 1rem;
  color: var(--m-muted);
  max-width: 52rem;
}

.m2026-order-result__steps {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--m-text);
  max-width: 52rem;
}

.m2026-order-result__steps li {
  margin-bottom: 0.55rem;
  line-height: 1.5;
}

.m2026-order-result__steps li:last-child {
  margin-bottom: 0;
}

.m2026-order-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.m2026-order-result__error-box {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: var(--m-radius-sm);
  border: 1px solid rgba(239, 68, 68, 0.25);
  background: rgba(239, 68, 68, 0.08);
  max-width: 52rem;
}

.m2026-order-result__error-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #fca5a5;
}

.m2026-order-result__error-box p {
  margin: 0;
  color: var(--m-text);
}

/* Login page */
.m2026-login-wrap {
  max-width: 440px;
  margin: 0 auto;
  padding: 0.5rem 0 2rem;
}

.m2026-login-card {
  background: var(--m-surface);
  border: 1px solid var(--m-border);
  border-radius: calc(var(--m-radius) + 4px);
  padding: 2rem;
  box-shadow: var(--m-shadow);
}

.m2026-login-card--success {
  text-align: center;
}

.m2026-login-card__header {
  margin-bottom: 1.5rem;
}

.m2026-login-card__header--compact {
  margin-bottom: 1.25rem;
}

.m2026-login-card__header h1,
.m2026-login-card__header h2 {
  margin: 0 0 0.5rem;
  font-family: var(--m-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.15;
}

.m2026-login-card__header h2 {
  font-size: 1.35rem;
}

.m2026-login-card__header p {
  margin: 0;
  color: var(--m-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.m2026-login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.m2026-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.m2026-field > span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--m-muted);
}

.m2026-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--m-border);
  border-radius: var(--m-radius-sm);
  background: rgba(255, 255, 255, 0.04);
  color: var(--m-text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.m2026-input::placeholder {
  color: #64748b;
}

.m2026-input:focus {
  outline: none;
  border-color: rgba(56, 179, 246, 0.55);
  box-shadow: 0 0 0 3px rgba(56, 179, 246, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.m2026-login-forgot {
  margin-top: -0.35rem;
  font-size: 0.875rem;
  color: var(--m-accent);
}

.m2026-login-forgot:hover {
  text-decoration: underline;
}

.m2026-login-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.m2026-login-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
  color: var(--m-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.m2026-login-divider::before,
.m2026-login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--m-border);
}

.m2026-btn-oauth {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--m-text);
  border: 1px solid var(--m-border);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.m2026-btn-oauth:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(56, 179, 246, 0.35);
}

.m2026-btn-oauth i {
  margin-right: 0.45rem;
  color: #ea4335;
}

.m2026-login-recaptcha {
  overflow: hidden;
}

.m2026-login-recaptcha .g-recaptcha {
  transform: scale(0.92);
  transform-origin: 0 0;
}

.m2026-login-bottom,
.login-bottom {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--m-border);
  text-align: center;
}

.login_bottom_bar a {
  font-size: 0.9rem;
  color: var(--m-muted);
}

.login_bottom_bar a strong {
  color: var(--m-accent);
}

.m2026-login-message:empty {
  display: none;
}

.m2026-login-message .alert {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--m-radius-sm);
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.12);
  color: #fecaca;
  font-size: 0.9rem;
  line-height: 1.45;
}

.m2026-login-message .alert a {
  color: #fca5a5;
  text-decoration: underline;
}

.m2026-login-message .alert .close {
  display: none;
}

.m2026-login-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
  font-size: 1.5rem;
}

.m2026-login-success__messages {
  margin-top: 1.25rem;
}

.m2026-login-success__line {
  font-family: var(--m-display);
  font-size: 1.1rem;
  color: var(--m-text);
}

.m2026-login-success__line--muted {
  color: var(--m-muted);
  font-size: 0.95rem;
}

.m2026-login-card .hide {
  display: none !important;
}

.m2026-login-card--logout {
  text-align: center;
}

.m2026-login-card--logout h1 {
  margin: 0 0 0.75rem;
  font-family: var(--m-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.m2026-login-card--logout > p {
  margin: 0 0 0.75rem;
  color: var(--m-muted);
  line-height: 1.5;
}

.m2026-login-success__icon--logout {
  background: rgba(148, 163, 184, 0.15) !important;
  border-color: rgba(148, 163, 184, 0.35) !important;
  color: #cbd5e1 !important;
}

.m2026-logout-redirect {
  font-size: 0.9rem;
  color: var(--m-muted);
  margin-top: 0.5rem !important;
}

@media (max-width: 720px) {
  .m2026-order-result {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .m2026-order-result__icon {
    margin: 0 auto;
  }

  .m2026-order-result__steps {
    text-align: left;
  }

  .m2026-order-result__actions {
    justify-content: center;
  }

  .m2026-support-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .m2026-support-hero__icon {
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .m2026-hero {
    grid-template-columns: 1fr;
  }

  .m2026-hero-slider {
    min-height: 340px;
  }

  .m2026-search-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .m2026-nav-inner {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }

  .m2026-nav-toggle {
    display: inline-flex;
  }

  .m2026-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.65rem;
    background: rgba(7, 11, 18, 0.98);
    border-bottom: 1px solid var(--m-border);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }

  .m2026-nav.is-menu-open .m2026-nav-links {
    display: flex;
  }

  .m2026-nav-links a {
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    text-align: left;
  }

  .m2026-nav-end {
    margin-left: auto;
  }

  .m2026-nav-auth {
    justify-content: flex-end;
  }

  .m2026-nav-admin--desktop {
    display: none;
  }

  .m2026-user-menu__trigger {
    padding: 0.35rem 0.5rem;
  }

  .m2026-user-menu__name {
    max-width: 5.5rem;
  }

  .m2026-nav-signin {
    width: auto;
    padding: 0.5rem 0.85rem;
    white-space: nowrap;
  }

  .m2026-user-menu,
  .m2026-user-menu__trigger {
    width: auto;
  }

  .m2026-user-menu__panel {
    left: auto;
    right: 0;
    min-width: 14rem;
  }

  .m2026-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
