:root {
  --rac-bg: var(--rm-bg, var(--owo-bg, #fffaf0));
  --rac-surface: var(--rm-surface, var(--owo-surface, #ffffff));
  --rac-surface-2: var(--rm-surface-strong, var(--owo-surface-strong, #fffaf0));
  --rac-text: var(--rm-text, var(--owo-text, #050505));
  --rac-muted: var(--rm-muted, var(--owo-muted, rgba(5, 5, 5, 0.62)));
  --rac-line: var(--rm-border, var(--owo-line, rgba(5, 5, 5, 0.14)));
  --rac-action-bg: var(--rm-text, var(--owo-action-bg, #050505));
  --rac-action-text: var(--rm-bg, var(--owo-action-text, #fffaf0));
  --rac-radius: 22px;
  --rac-radius-lg: 34px;
  --rac-shadow: 0 12px 34px rgba(5, 5, 5, 0.08);
}

[data-theme="dark"],
[data-owo-theme="dark"],
body.rm-theme-dark,
body.dark,
body[data-theme="dark"] {
  --rac-bg: #050505;
  --rac-surface: #0d0d0d;
  --rac-surface-2: #111111;
  --rac-text: #fffaf0;
  --rac-muted: rgba(255, 250, 240, 0.62);
  --rac-line: rgba(255, 250, 240, 0.16);
  --rac-action-bg: #fffaf0;
  --rac-action-text: #050505;
  --rac-shadow: 0 12px 38px rgba(0, 0, 0, 0.22);
}

body.rac-console-page,
body.rac-console-page .rm-site,
body.rac-console-page .rm-site-main,
body.rac-console-page .rm-page,
body.rac-console-page .rm-entry-content,
body.rac-console-page .wp-site-blocks {
  background: var(--rac-bg) !important;
}

body.rac-console-page .rm-site-header,
body.rac-console-page .rm-site-footer,
body.rac-console-page .rm-entry-header,
body.rac-console-page .entry-header,
body.rac-console-page .page-header,
body.rac-console-page .wp-block-post-title {
  display: none !important;
}

body.rac-console-page .rm-site-main,
body.rac-console-page .rm-page,
body.rac-console-page .rm-entry-content,
body.rac-console-page .entry-content,
body.rac-console-page .wp-site-blocks {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.rac-console-page .entry-content > *:not(.rac-shell):not(script):not(style),
body.rac-console-page .rm-entry-content > *:not(.rac-shell):not(script):not(style),
body.rac-console-page .wp-block-post-content > *:not(.rac-shell):not(script):not(style) {
  display: none !important;
}

body.rac-console-page,
body.rac-console-page .rm-site,
body.rac-console-page .rm-site-main,
body.rac-console-page .rm-page,
body.rac-console-page .entry-content,
body.rac-console-page .rm-entry-content {
  min-height: 100dvh;
}

.rac-shell,
.rac-shell * {
  box-sizing: border-box;
}

.rac-shell {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: clamp(8px, 2vw, 18px);
  display: grid;
  place-items: center;
  color: var(--rac-text);
  background: var(--rac-bg);
  font-family: inherit;
  overflow: hidden;
}

.rac-shell a {
  color: inherit;
}

.rac-console {
  position: relative;
  isolation: isolate;
  width: min(1180px, 100%);
  max-height: calc(100dvh - clamp(16px, 4vw, 36px));
  border: 1px solid var(--rac-line);
  border-radius: clamp(26px, 3vw, 42px);
  background: var(--rac-surface);
  color: var(--rac-text);
  box-shadow: var(--rac-shadow);
  padding: clamp(12px, 2vw, 18px);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: clamp(9px, 1.4vw, 14px);
  overflow: hidden;
}

.rac-console__top,
.rac-section-tabs,
.rac-console__foot {
  min-width: 0;
}

.rac-center-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: inherit;
}

.rac-center-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.70), rgba(255,255,255,0.84)),
    radial-gradient(circle at 50% 46%, rgba(255,255,255,0.34), rgba(255,255,255,0.86) 68%);
}

.rac-center-art img {
  position: relative;
  z-index: 0;
  width: min(720px, 74vw, 76vh);
  height: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  opacity: 0.34;
  transform: translateY(2%);
  filter: saturate(0.96) contrast(0.96);
}

[data-theme="dark"] .rac-center-art::before,
[data-owo-theme="dark"] .rac-center-art::before,
body.rm-theme-dark .rac-center-art::before,
body.dark .rac-center-art::before,
body[data-theme="dark"] .rac-center-art::before {
  background:
    linear-gradient(180deg, rgba(5,5,5,0.78), rgba(5,5,5,0.90)),
    radial-gradient(circle at 50% 46%, rgba(5,5,5,0.38), rgba(5,5,5,0.92) 68%);
}

[data-theme="dark"] .rac-center-art img,
[data-owo-theme="dark"] .rac-center-art img,
body.rm-theme-dark .rac-center-art img,
body.dark .rac-center-art img,
body[data-theme="dark"] .rac-center-art img {
  opacity: 0.20;
  filter: saturate(0.9) contrast(0.92);
}

.rac-console--has-art > :not(.rac-center-art) {
  position: relative;
  z-index: 2;
}

.rac-console__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 64px;
}

.rac-brand {
  min-width: 0;
}

.rac-eyebrow,
.rac-status-pill {
  margin: 0;
  color: var(--rac-muted);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.66rem;
  font-weight: 850;
}

.rac-brand h1 {
  margin: 2px 0 0;
  color: var(--rac-text);
  font-size: clamp(1.9rem, 4.2vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.rac-player-card {
  min-width: min(260px, 38vw);
  max-width: 310px;
  min-height: 54px;
  padding: 8px 10px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  border: 1px solid var(--rac-line);
  border-radius: 18px;
  background: var(--rac-surface-2);
}

.rac-player-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--rac-line);
  background: var(--rac-action-bg);
  color: var(--rac-action-text);
  display: grid;
  place-items: center;
  font-weight: 900;
  overflow: hidden;
}

.rac-player-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.rac-player-card__text {
  min-width: 0;
}

.rac-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 7px;
  border: 1px solid var(--rac-line);
  border-radius: 999px;
  line-height: 1;
  font-size: 0.58rem;
}

.rac-status-pill--user {
  background: var(--rac-action-bg);
  border-color: var(--rac-action-bg);
  color: var(--rac-action-text);
}

.rac-player-card h2 {
  margin: 5px 0 0;
  color: var(--rac-text);
  font-size: 0.92rem;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rac-player-card p:not(.rac-status-pill) {
  display: none;
}

.rac-section-tabs {
  display: flex;
  gap: 7px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 1px;
}

.rac-section-tabs::-webkit-scrollbar {
  display: none;
}

.rac-section-tab {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid var(--rac-line);
  background: var(--rac-surface-2);
  color: var(--rac-muted);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.rac-section-tab:hover {
  transform: translateY(-1px);
  color: var(--rac-text);
}

.rac-section-tab.is-active {
  background: var(--rac-action-bg);
  border-color: var(--rac-action-bg);
  color: var(--rac-action-text);
}

.rac-console__body {
  min-height: 0;
  overflow: hidden;
}

.rac-apps-grid {
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: max-content;
  align-items: start;
  align-content: start;
  gap: 10px;
  overflow: auto;
  padding: 1px 1px 4px;
  scrollbar-width: thin;
}

.rac-app-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  align-self: start;
  border: 1px solid var(--rac-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.rac-app-card:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--rac-text) 28%, var(--rac-line));
}

.rac-app-card[hidden] {
  display: none !important;
}

.rac-app-card--soon {
  opacity: 0.62;
}

.rac-info-button,
.rac-system-info,
.rac-modal__close {
  border: 1px solid var(--rac-line);
  background: var(--rac-surface);
  color: var(--rac-muted);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  appearance: none;
  line-height: 1;
  font-weight: 900;
}

.rac-info-button {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  font-size: 0.7rem;
}

.rac-info-button:hover,
.rac-system-info:hover,
.rac-modal__close:hover {
  color: var(--rac-text);
}

.rac-app-icon {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: var(--rac-text);
  text-decoration: none !important;
  overflow: hidden;
  outline: none;
}

.rac-app-icon:focus-visible,
.rac-btn:focus-visible,
.rac-section-tab:focus-visible,
.rac-info-button:focus-visible,
.rac-system-info:focus-visible {
  outline: 2px solid var(--rac-text);
  outline-offset: 2px;
}

.rac-app-media {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: inherit;
  border: 1px solid var(--rac-line);
  background: var(--rac-surface);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: transform 160ms ease;
}

.rac-app-icon:hover .rac-app-media {
  transform: scale(0.985);
}

.rac-app-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.rac-app-media.no-cover {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--rac-text);
}

.rac-app-media .fa-solid,
.rac-app-media svg.svg-inline--fa {
  display: none;
}

.rac-app-media .rac-icon-fallback {
  display: inline-grid;
  place-items: center;
  font-weight: 900;
}

body.rac-fa-ready .rac-app-media .fa-solid,
body.rac-fa-ready .rac-app-media svg.svg-inline--fa {
  display: inline-block;
}

body.rac-fa-ready .rac-app-media .fa-solid + .rac-icon-fallback,
body.rac-fa-ready .rac-app-media svg.svg-inline--fa + .rac-icon-fallback {
  display: none;
}

.rac-app-label {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  min-width: 0;
  min-height: 42px;
  padding: 2px 4px 0;
  display: grid;
  align-content: center;
  text-align: center;
  overflow: hidden;
}

.rac-app-label p {
  margin: 0 0 4px;
  color: var(--rac-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.58rem;
  line-height: 1;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rac-app-label h3 {
  margin: 0;
  color: var(--rac-text);
  font-size: clamp(0.86rem, 1.35vw, 1.02rem);
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rac-app-sync {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 18px;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 5px;
  border: 1px solid var(--rac-line);
  border-radius: 999px;
  background: var(--rac-surface);
  color: var(--rac-muted);
  font-size: 0.52rem;
  font-weight: 800;
  line-height: 1;
  overflow: hidden;
}

.rac-app-sync__dot {
  flex: 0 0 auto;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.55;
}

.rac-app-sync__text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rac-app-card[data-sync-state="cloud"] .rac-app-sync {
  background: var(--rac-action-bg);
  border-color: var(--rac-action-bg);
  color: var(--rac-action-text);
}

.rac-app-card[data-sync-state="local"] .rac-app-sync,
.rac-app-card[data-sync-state="empty"] .rac-app-sync {
  color: var(--rac-muted);
}

.rac-app-card[data-sync-state="error"] .rac-app-sync {
  border-color: var(--rac-text);
  color: var(--rac-text);
}

.rac-app-card__actions {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 100%;
  display: flex;
}

.rac-btn {
  width: 100%;
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--rac-line);
  background: transparent;
  color: var(--rac-text) !important;
  text-decoration: none !important;
  font-weight: 850;
  font-size: 0.72rem;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  transition: transform 160ms ease, opacity 160ms ease, border-color 160ms ease;
}

.rac-btn:hover {
  transform: translateY(-1px);
}

.rac-btn--primary {
  background: var(--rac-action-bg);
  color: var(--rac-action-text) !important;
  border-color: var(--rac-action-bg);
}

.rac-btn--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.rac-console__foot {
  min-height: 34px;
  padding: 0 2px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  color: var(--rac-muted);
  font-size: 0.74rem;
  line-height: 1.2;
}

.rac-console__foot span {
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rac-system-info {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 0.76rem;
}

.rac-toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 999999;
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--rac-line);
  background: var(--rac-surface-2);
  color: var(--rac-text);
  box-shadow: var(--rac-shadow);
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 0.84rem;
}

.rac-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.rac-modal {
  position: fixed;
  inset: 0;
  z-index: 999998;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.34);
}

.rac-modal.is-open {
  display: grid;
}

.rac-modal__box {
  position: relative;
  width: min(430px, 100%);
  border-radius: 28px;
  border: 1px solid var(--rac-line);
  background: var(--rac-surface-2);
  color: var(--rac-text);
  box-shadow: var(--rac-shadow);
  padding: 22px;
}

.rac-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 1rem;
}

.rac-modal__kicker {
  margin: 0 0 8px !important;
  color: var(--rac-muted) !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.66rem !important;
  font-weight: 850;
}

.rac-modal__box h2 {
  margin: 0 34px 8px 0;
  color: var(--rac-text);
  letter-spacing: -0.05em;
  font-size: 1.8rem;
  line-height: 1;
}

.rac-modal__box p {
  margin: 0 0 16px;
  color: var(--rac-muted);
  line-height: 1.4;
  font-size: 0.92rem;
}

.rac-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rac-info-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.rac-info-list p {
  margin: 0 !important;
  padding: 10px 11px;
  border: 1px solid var(--rac-line);
  border-radius: 15px;
  background: var(--rac-surface);
  display: grid;
  gap: 4px;
}

.rac-info-list strong {
  color: var(--rac-text);
  font-size: 0.72rem;
  line-height: 1;
}

.rac-info-list span {
  color: var(--rac-muted);
  font-size: 0.8rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

@supports not (color: color-mix(in srgb, #000 50%, #fff)) {
  .rac-app-card:hover {
    border-color: var(--rac-text);
  }
}

@media (max-width: 1080px) {
  .rac-console {
    width: min(900px, 100%);
  }

  .rac-apps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .rac-shell {
    padding: 8px;
  }

  .rac-console {
    width: 100%;
    max-height: calc(100dvh - 16px);
    border-radius: 26px;
    padding: 11px;
    gap: 10px;
  }

  .rac-console__top {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rac-brand h1 {
    font-size: clamp(2rem, 13vw, 3.3rem);
  }

  .rac-player-card {
    min-width: 0;
    width: 100%;
    max-width: none;
  }

  .rac-apps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: max-content;
    gap: 9px;
  }

  .rac-app-card {
    border-radius: 20px;
    padding: 9px;
    gap: 8px;
  }

  .rac-app-icon {
    border-radius: 18px;
  }

  .rac-app-label {
    min-height: 42px;
    padding: 0 3px;
  }

  .rac-app-sync {
    min-height: 18px;
    font-size: 0.5rem;
    padding-inline: 4px;
  }

  .rac-app-label p,
  .rac-app-label h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .rac-console__foot {
    min-height: 30px;
    font-size: 0.7rem;
  }
}

@media (max-width: 390px) {
  .rac-app-card {
    gap: 7px;
  }

  .rac-app-label {
    min-height: 40px;
  }

  .rac-btn {
    min-height: 29px;
    font-size: 0.68rem;
  }

  .rac-app-label h3 {
    font-size: 0.8rem;
  }
}



@media (max-width: 720px) {
  .rac-console--has-art::before {
    background-position: center 54%;
    background-size: min(520px, 118vw) auto;
    opacity: 0.16;
  }
}

@media (prefers-color-scheme: dark) {
  .rac-console--has-art::before {
    opacity: 0.12;
    background-image:
      linear-gradient(180deg, color-mix(in srgb, var(--rac-surface) 86%, transparent), color-mix(in srgb, var(--rac-surface) 92%, transparent)),
      var(--rac-center-art);
  }
}


[data-theme="dark"] .rac-app-card,
[data-owo-theme="dark"] .rac-app-card,
body.rm-theme-dark .rac-app-card,
body.dark .rac-app-card,
body[data-theme="dark"] .rac-app-card {
  background: rgba(13, 13, 13, 0.78);
}

.rac-section-tabs,
.rac-player-card,
.rac-console__foot {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 720px) {
  .rac-center-art img {
    width: min(560px, 128vw);
    opacity: 0.20;
    transform: translateY(5%);
  }

  .rac-center-art::before {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.90)),
      radial-gradient(circle at 50% 50%, rgba(255,255,255,0.42), rgba(255,255,255,0.92) 72%);
  }
}


/* Reunioon Apps Center 0.4.3
   Fondo real del panel: visible en Light/Dark y editable desde backend. */
.rac-console.rac-console--has-art {
  background-color: var(--rac-surface) !important;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.54), rgba(255,255,255,0.70)),
    var(--rac-center-art) !important;
  background-repeat: no-repeat !important;
  background-position: center 52% !important;
  background-size: min(780px, 82vw, 82vh) auto !important;
  background-blend-mode: normal !important;
}

.rac-center-art {
  display: none !important;
}

.rac-console.rac-console--has-art .rac-console__top,
.rac-console.rac-console--has-art .rac-section-tabs,
.rac-console.rac-console--has-art .rac-console__body,
.rac-console.rac-console--has-art .rac-console__foot {
  position: relative !important;
  z-index: 2 !important;
}

.rac-console.rac-console--has-art .rac-console__body {
  background: transparent !important;
}

.rac-console.rac-console--has-art .rac-app-card {
  background: rgba(255,255,255,0.76) !important;
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

.rac-console.rac-console--has-art .rac-app-media {
  background: rgba(255,255,255,0.70) !important;
}

.rac-console.rac-console--has-art .rac-player-card,
.rac-console.rac-console--has-art .rac-section-tab,
.rac-console.rac-console--has-art .rac-console__foot {
  background: rgba(255,255,255,0.74) !important;
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

[data-theme="dark"] .rac-console.rac-console--has-art,
[data-owo-theme="dark"] .rac-console.rac-console--has-art,
body.rm-theme-dark .rac-console.rac-console--has-art,
body.dark .rac-console.rac-console--has-art,
body[data-theme="dark"] .rac-console.rac-console--has-art {
  background-color: #050505 !important;
  background-image:
    linear-gradient(180deg, rgba(5,5,5,0.24), rgba(5,5,5,0.48)),
    var(--rac-center-art) !important;
  background-repeat: no-repeat !important;
  background-position: center 52% !important;
  background-size: min(780px, 82vw, 82vh) auto !important;
}

[data-theme="dark"] .rac-console.rac-console--has-art .rac-app-card,
[data-owo-theme="dark"] .rac-console.rac-console--has-art .rac-app-card,
body.rm-theme-dark .rac-console.rac-console--has-art .rac-app-card,
body.dark .rac-console.rac-console--has-art .rac-app-card,
body[data-theme="dark"] .rac-console.rac-console--has-art .rac-app-card {
  background: rgba(13,13,13,0.66) !important;
}

[data-theme="dark"] .rac-console.rac-console--has-art .rac-app-media,
[data-owo-theme="dark"] .rac-console.rac-console--has-art .rac-app-media,
body.rm-theme-dark .rac-console.rac-console--has-art .rac-app-media,
body.dark .rac-console.rac-console--has-art .rac-app-media,
body[data-theme="dark"] .rac-console.rac-console--has-art .rac-app-media {
  background: rgba(10,10,10,0.62) !important;
}

[data-theme="dark"] .rac-console.rac-console--has-art .rac-player-card,
[data-theme="dark"] .rac-console.rac-console--has-art .rac-section-tab,
[data-theme="dark"] .rac-console.rac-console--has-art .rac-console__foot,
[data-owo-theme="dark"] .rac-console.rac-console--has-art .rac-player-card,
[data-owo-theme="dark"] .rac-console.rac-console--has-art .rac-section-tab,
[data-owo-theme="dark"] .rac-console.rac-console--has-art .rac-console__foot,
body.rm-theme-dark .rac-console.rac-console--has-art .rac-player-card,
body.rm-theme-dark .rac-console.rac-console--has-art .rac-section-tab,
body.rm-theme-dark .rac-console.rac-console--has-art .rac-console__foot,
body.dark .rac-console.rac-console--has-art .rac-player-card,
body.dark .rac-console.rac-console--has-art .rac-section-tab,
body.dark .rac-console.rac-console--has-art .rac-console__foot,
body[data-theme="dark"] .rac-console.rac-console--has-art .rac-player-card,
body[data-theme="dark"] .rac-console.rac-console--has-art .rac-section-tab,
body[data-theme="dark"] .rac-console.rac-console--has-art .rac-console__foot {
  background: rgba(13,13,13,0.68) !important;
}

@media (max-width: 720px) {
  .rac-console.rac-console--has-art {
    background-position: center 58% !important;
    background-size: min(620px, 136vw) auto !important;
    background-image:
      linear-gradient(180deg, rgba(255,255,255,0.66), rgba(255,255,255,0.82)),
      var(--rac-center-art) !important;
  }

  [data-theme="dark"] .rac-console.rac-console--has-art,
  [data-owo-theme="dark"] .rac-console.rac-console--has-art,
  body.rm-theme-dark .rac-console.rac-console--has-art,
  body.dark .rac-console.rac-console--has-art,
  body[data-theme="dark"] .rac-console.rac-console--has-art {
    background-position: center 58% !important;
    background-size: min(620px, 136vw) auto !important;
    background-image:
      linear-gradient(180deg, rgba(5,5,5,0.38), rgba(5,5,5,0.58)),
      var(--rac-center-art) !important;
  }
}


/* Reunioon Apps Center 0.4.4
   Fondo full-page + panel glass */
.rac-shell.rac-shell--has-art {
  position: relative;
  isolation: isolate;
  background: var(--rac-bg) !important;
}

.rac-shell.rac-shell--has-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.30), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.24), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.14)),
    var(--rac-page-art);
  background-repeat: no-repeat;
  background-position: center center, center center, center center, center 56%;
  background-size: auto, auto, auto, min(1180px, 92vw, 110vh) auto;
  opacity: 1;
}

.rac-shell.rac-shell--has-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.70), rgba(255,255,255,0.78)),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), rgba(255,255,255,0.38) 72%);
}

.rac-shell.rac-shell--has-art > * {
  position: relative;
  z-index: 1;
}

.rac-shell.rac-shell--has-art .rac-console,
.rac-shell.rac-shell--has-art .rac-console.rac-console--glass,
.rac-shell.rac-shell--has-art .rac-console.rac-console--has-art {
  background: rgba(255,255,255,0.46) !important;
  border-color: rgba(5,5,5,0.10) !important;
  box-shadow: 0 18px 50px rgba(5,5,5,0.10) !important;
  backdrop-filter: blur(24px) saturate(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.08);
}

.rac-shell.rac-shell--has-art .rac-console__body {
  background: transparent !important;
}

.rac-shell.rac-shell--has-art .rac-app-card,
.rac-shell.rac-shell--has-art .rac-player-card,
.rac-shell.rac-shell--has-art .rac-section-tab,
.rac-shell.rac-shell--has-art .rac-console__foot,
.rac-shell.rac-shell--has-art .rac-system-panel,
.rac-shell.rac-shell--has-art .rac-system-summary,
.rac-shell.rac-shell--has-art .rac-system-card,
.rac-shell.rac-shell--has-art .rac-modal__sheet {
  background: rgba(255,255,255,0.54) !important;
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
}

.rac-shell.rac-shell--has-art .rac-app-media {
  background: rgba(255,255,255,0.68) !important;
}

.rac-shell.rac-shell--has-art .rac-console .rac-app-card,
.rac-shell.rac-shell--has-art .rac-console .rac-player-card,
.rac-shell.rac-shell--has-art .rac-console .rac-console__foot,
.rac-shell.rac-shell--has-art .rac-console .rac-section-tab {
  border-color: rgba(5,5,5,0.10) !important;
}

[data-theme="dark"] .rac-shell.rac-shell--has-art,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art,
body.rm-theme-dark .rac-shell.rac-shell--has-art,
body.dark .rac-shell.rac-shell--has-art,
body[data-theme="dark"] .rac-shell.rac-shell--has-art {
  background: #050505 !important;
}

[data-theme="dark"] .rac-shell.rac-shell--has-art::before,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art::before,
body.rm-theme-dark .rac-shell.rac-shell--has-art::before,
body.dark .rac-shell.rac-shell--has-art::before,
body[data-theme="dark"] .rac-shell.rac-shell--has-art::before {
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.08), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.06), transparent 22%),
    linear-gradient(180deg, rgba(5,5,5,0.08), rgba(5,5,5,0.18)),
    var(--rac-page-art);
  background-repeat: no-repeat;
  background-position: center center, center center, center center, center 56%;
  background-size: auto, auto, auto, min(1180px, 92vw, 110vh) auto;
}

[data-theme="dark"] .rac-shell.rac-shell--has-art::after,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art::after,
body.rm-theme-dark .rac-shell.rac-shell--has-art::after,
body.dark .rac-shell.rac-shell--has-art::after,
body[data-theme="dark"] .rac-shell.rac-shell--has-art::after {
  background:
    linear-gradient(180deg, rgba(5,5,5,0.66), rgba(5,5,5,0.74)),
    radial-gradient(circle at 50% 50%, rgba(5,5,5,0.06), rgba(5,5,5,0.30) 72%);
}

[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-console,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art .rac-console,
body.rm-theme-dark .rac-shell.rac-shell--has-art .rac-console,
body.dark .rac-shell.rac-shell--has-art .rac-console,
body[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-console,
[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-console.rac-console--glass,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art .rac-console.rac-console--glass,
body.rm-theme-dark .rac-shell.rac-shell--has-art .rac-console.rac-console--glass,
body.dark .rac-shell.rac-shell--has-art .rac-console.rac-console--glass,
body[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-console.rac-console--glass {
  background: rgba(10,10,10,0.46) !important;
  border-color: rgba(255,250,240,0.12) !important;
  box-shadow: 0 18px 52px rgba(0,0,0,0.28) !important;
}

[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-app-card,
[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-player-card,
[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-section-tab,
[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-console__foot,
[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-system-panel,
[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-system-summary,
[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-system-card,
[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-modal__sheet,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art .rac-app-card,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art .rac-player-card,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art .rac-section-tab,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art .rac-console__foot,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art .rac-system-panel,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art .rac-system-summary,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art .rac-system-card,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art .rac-modal__sheet,
body.rm-theme-dark .rac-shell.rac-shell--has-art .rac-app-card,
body.rm-theme-dark .rac-shell.rac-shell--has-art .rac-player-card,
body.rm-theme-dark .rac-shell.rac-shell--has-art .rac-section-tab,
body.rm-theme-dark .rac-shell.rac-shell--has-art .rac-console__foot,
body.rm-theme-dark .rac-shell.rac-shell--has-art .rac-system-panel,
body.rm-theme-dark .rac-shell.rac-shell--has-art .rac-system-summary,
body.rm-theme-dark .rac-shell.rac-shell--has-art .rac-system-card,
body.rm-theme-dark .rac-shell.rac-shell--has-art .rac-modal__sheet,
body.dark .rac-shell.rac-shell--has-art .rac-app-card,
body.dark .rac-shell.rac-shell--has-art .rac-player-card,
body.dark .rac-shell.rac-shell--has-art .rac-section-tab,
body.dark .rac-shell.rac-shell--has-art .rac-console__foot,
body.dark .rac-shell.rac-shell--has-art .rac-system-panel,
body.dark .rac-shell.rac-shell--has-art .rac-system-summary,
body.dark .rac-shell.rac-shell--has-art .rac-system-card,
body.dark .rac-shell.rac-shell--has-art .rac-modal__sheet,
body[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-app-card,
body[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-player-card,
body[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-section-tab,
body[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-console__foot,
body[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-system-panel,
body[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-system-summary,
body[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-system-card,
body[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-modal__sheet {
  background: rgba(13,13,13,0.54) !important;
}

[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-app-media,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art .rac-app-media,
body.rm-theme-dark .rac-shell.rac-shell--has-art .rac-app-media,
body.dark .rac-shell.rac-shell--has-art .rac-app-media,
body[data-theme="dark"] .rac-shell.rac-shell--has-art .rac-app-media {
  background: rgba(10,10,10,0.62) !important;
}

@media (max-width: 720px) {
  .rac-shell.rac-shell--has-art::before {
    background-position: center center, center center, center center, center 60%;
    background-size: auto, auto, auto, min(920px, 162vw) auto;
  }
}


/* Reunioon Apps Center 0.4.5
   La imagen del Centro debe llenar todo el fondo de página. */
.rac-shell.rac-shell--has-art::before {
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.20), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.18), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.10)),
    var(--rac-page-art) !important;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat !important;
  background-position: center center, center center, center center, center center !important;
  background-size: auto, auto, auto, cover !important;
}

.rac-shell.rac-shell--has-art::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.58), rgba(255,255,255,0.66)),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02), rgba(255,255,255,0.24) 72%) !important;
}

[data-theme="dark"] .rac-shell.rac-shell--has-art::before,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art::before,
body.rm-theme-dark .rac-shell.rac-shell--has-art::before,
body.dark .rac-shell.rac-shell--has-art::before,
body[data-theme="dark"] .rac-shell.rac-shell--has-art::before {
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.06), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.05), transparent 24%),
    linear-gradient(180deg, rgba(5,5,5,0.02), rgba(5,5,5,0.12)),
    var(--rac-page-art) !important;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat !important;
  background-position: center center, center center, center center, center center !important;
  background-size: auto, auto, auto, cover !important;
}

[data-theme="dark"] .rac-shell.rac-shell--has-art::after,
[data-owo-theme="dark"] .rac-shell.rac-shell--has-art::after,
body.rm-theme-dark .rac-shell.rac-shell--has-art::after,
body.dark .rac-shell.rac-shell--has-art::after,
body[data-theme="dark"] .rac-shell.rac-shell--has-art::after {
  background:
    linear-gradient(180deg, rgba(5,5,5,0.54), rgba(5,5,5,0.62)),
    radial-gradient(circle at 50% 50%, rgba(5,5,5,0.02), rgba(5,5,5,0.22) 72%) !important;
}

@media (max-width: 720px) {
  .rac-shell.rac-shell--has-art::before,
  [data-theme="dark"] .rac-shell.rac-shell--has-art::before,
  [data-owo-theme="dark"] .rac-shell.rac-shell--has-art::before,
  body.rm-theme-dark .rac-shell.rac-shell--has-art::before,
  body.dark .rac-shell.rac-shell--has-art::before,
  body[data-theme="dark"] .rac-shell.rac-shell--has-art::before {
    background-position: center center, center center, center center, center center !important;
    background-size: auto, auto, auto, cover !important;
  }
}
