/*
Theme Name: DJ Nicolay
Theme URI: https://djnicolay.com/
Author: DJ Nicolay
Author URI: https://djnicolay.com/
Description: Tema WordPress propio para DJ Nicolay, desarrollado sin constructores visuales ni dependencias de otros temas.
Version: 2.4.1
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: dj-nicolay
*/

:root {
    --dn-background: #121212;
    --dn-surface: #181818;
    --dn-surface-light: #202020;
    --dn-text: #ffffff;
    --dn-text-muted: rgba(255, 255, 255, 0.68);
    --dn-border: rgba(255, 255, 255, 0.12);
    --dn-accent: #ffffff;
    --dn-accent-hover: rgba(255, 255, 255, 0.84);
    --dn-container: 1200px;
    --dn-header-height: 96px;
    --dn-radius: 4px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--dn-background);
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--dn-text);
    background: var(--dn-background);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
    top: 32px;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: rgba(255, 255, 255, 0.84);
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
[type="button"],
[type="submit"] {
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

::selection {
    color: #111;
    background: #fff;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    z-index: 100000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    color: #111;
    background: #fff;
    border-radius: var(--dn-radius);
}

.site-container {
    width: min(calc(100% - 64px), var(--dn-container));
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: var(--dn-header-height);
    background: rgba(18, 18, 18, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.16);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
    backdrop-filter: blur(24px) saturate(145%);
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
    gap: 36px;
    align-items: center;
    min-height: var(--dn-header-height);
}

.site-branding {
    justify-self: start;
}

.custom-logo-link,
.site-branding__link {
    display: inline-flex;
    align-items: center;
}

.custom-logo {
    width: auto;
    max-width: 190px;
    max-height: 52px;
}

.site-branding__logo {
    display: block;
    width: auto;
    max-width: 138px;
    max-height: 64px;
    object-fit: contain;
}

.site-branding__text {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-branding__text::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 8px;
    background: #fff;
    border-radius: 50%;
    vertical-align: 2px;
}

.primary-navigation {
    justify-self: center;
}

.primary-navigation .menu,
.primary-navigation ul,
.mobile-navigation .menu,
.mobile-navigation ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-navigation .menu {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3vw, 42px);
}

.primary-navigation a {
    position: relative;
    display: block;
    padding: 36px 0 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: color 180ms ease;
}

.primary-navigation a::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: 25px;
    left: 0;
    height: 2px;
    background: #fff;
    transition: right 180ms ease;
}

.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
    color: #fff;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.primary-navigation .current-menu-item > a::after,
.primary-navigation .current_page_item > a::after {
    right: 0;
}

.site-header__actions {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 6px;
}

.header-action {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    transition: color 180ms ease, background-color 180ms ease;
}

.header-action:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.header-action svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.header-action__count {
    position: absolute;
    top: 1px;
    right: 0;
    display: grid;
    min-width: 17px;
    height: 17px;
    place-items: center;
    padding-inline: 4px;
    color: #111;
    background: #fff;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

.header-action__count[hidden] {
    display: none;
}

.account-menu {
    position: relative;
}

.account-menu__trigger {
    padding: 0;
    background: transparent;
    border: 0;
}

.account-menu__trigger::after {
    content: "";
    position: absolute;
    top: 100%;
    right: -12px;
    width: 190px;
    height: 14px;
}

.account-avatar {
    position: relative;
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    overflow: hidden;
    color: #111;
    background: #a7a7a7;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.account-avatar__image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.account-avatar__image.is-missing {
    display: none;
}

.account-menu__popover {
    position: absolute;
    z-index: 100;
    top: calc(100% + 12px);
    right: 0;
    min-width: 205px;
    padding: 8px;
    visibility: hidden;
    background: rgba(24, 24, 24, 0.97);
    border: 1px solid var(--dn-border);
    border-radius: 8px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.48);
    opacity: 0;
    transform: translateY(-7px);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
    transition: opacity 160ms ease, transform 160ms ease, visibility 0s linear 160ms;
}

.account-menu:hover .account-menu__popover,
.account-menu:focus-within .account-menu__popover,
.account-menu.is-open .account-menu__popover {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.account-menu__popover a {
    display: block;
    padding: 11px 12px;
    color: rgba(255, 255, 255, 0.82);
    border-radius: 5px;
    font-size: 12px;
    line-height: 1.35;
}

.account-menu__popover a:hover,
.account-menu__popover a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.account-menu__name {
    padding: 7px 12px 9px;
    margin: 0 0 4px;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid var(--dn-border);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.mobile-menu-toggle,
.mobile-header-actions,
.mobile-drawer {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    color: #fff;
    background: transparent;
    border: 1px solid var(--dn-border);
    border-radius: 50%;
}

.mobile-menu-toggle svg,
.mobile-drawer__close svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.6;
    stroke-linejoin: round;
}

.mobile-navigation a {
    display: block;
    padding: 13px 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 4.8vw, 20px);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.mobile-navigation .current-menu-item > a,
.mobile-navigation .current_page_item > a {
    color: #fff;
}

.mobile-drawer__account {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.mobile-drawer__account svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.mobile-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 24px;
}

.mobile-social a {
    position: relative;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-social a:hover,
.mobile-social a:focus-visible {
    color: #fff;
}

/* Content base. Discover will be designed in the next phase. */
.site-main {
    min-height: calc(100vh - var(--dn-header-height));
}

/* Portada: hero Descubrir */
.discover-hero {
    position: relative;
    display: flex;
    min-height: clamp(640px, calc(100vh - var(--dn-header-height)), 860px);
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: var(--dn-background);
    border-bottom: 1px solid var(--dn-border);
}

.discover-hero__media,
.discover-hero__shade {
    position: absolute;
    z-index: -2;
    inset: 0;
    pointer-events: none;
}

.discover-hero__media {
    background-color: var(--dn-background);
    overflow: hidden;
}

.discover-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.discover-hero__shade {
    z-index: -1;
    background:
        linear-gradient(90deg, #121212 0%, #121212 24%, rgba(18, 18, 18, 0.96) 36%, rgba(18, 18, 18, 0.56) 54%, rgba(18, 18, 18, 0.08) 76%),
        linear-gradient(0deg, rgba(18, 18, 18, 0.32), transparent 32%);
}

.discover-hero__inner {
    width: min(calc(100% - 64px), var(--dn-container));
    margin-inline: auto;
    padding-block: 84px;
}

.discover-hero__content {
    width: min(720px, 60%);
}

.discover-hero__eyebrow {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.discover-hero__title {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.discover-hero__title-line {
    display: block;
    white-space: nowrap;
}

.discover-hero__rule {
    width: 116px;
    height: 4px;
    margin: 30px 0 28px;
    background: #fff;
    border-radius: 10px;
}

.discover-hero__lead {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.62;
}

.discover-hero__lead--mobile {
    display: none;
}

.discover-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.discover-button {
    display: inline-flex;
    min-width: 210px;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--dn-radius);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.discover-button--primary {
    color: #111;
    background: #fff;
    border-color: #fff;
}

.discover-button:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.discover-button--primary:hover {
    color: #111;
    background: #e7e7e7;
    border-color: #e7e7e7;
}

.discover-benefits {
    position: relative;
    z-index: 2;
    background: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.discover-benefits__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(calc(100% - 64px), var(--dn-container));
    margin: 0 auto;
}

.discover-benefit {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 0;
    padding: 30px 38px;
}

.discover-benefit + .discover-benefit {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.discover-benefit__icon.dashicons {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    color: #fff;
    font-size: 36px;
    line-height: 1;
}

.discover-benefit__content {
    min-width: 0;
}

.discover-benefit__title {
    margin: 0 0 7px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.discover-benefit p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.5;
}

.membership-section {
    padding: 76px 0 24px;
    background: #121212;
}

.membership-card {
    position: relative;
    width: min(calc(100% - 64px), var(--dn-container));
    min-height: 570px;
    overflow: hidden;
    margin: 0 auto;
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 24px;
}

.membership-card__media,
.membership-card__shade {
    position: absolute;
    inset: 0;
}

.membership-card__media {
    left: 45%;
}

.membership-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.membership-card__shade {
    background: linear-gradient(90deg, #080808 0%, #080808 38%, rgba(8, 8, 8, 0.94) 52%, rgba(8, 8, 8, 0.36) 78%, rgba(8, 8, 8, 0.12) 100%);
}

.membership-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    width: 62%;
    min-height: 570px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 68px 68px 60px;
}

.membership-card__eyebrow {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.membership-card__eyebrow strong {
    color: #fff;
}

.membership-card__title {
    max-width: 580px;
    margin: 0;
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

/* Orden visual de la portada: el Top 10 precede a la membresía. */
.home-main {
    display: flex;
    flex-direction: column;
}

.home-main .discover-hero { order: 1; }
.home-main .discover-benefits { order: 2; }
.home-main .stage-carousel { order: 3; }
.home-main .home-top10 { order: 4; }
.home-main .membership-section { order: 5; }
.home-main .membership-notice { order: 6; }

.membership-notice {
    padding: 0 0 76px;
    background: #121212;
}

.membership-notice__inner {
    width: min(calc(100% - 64px), var(--dn-container));
    margin: 0 auto;
    padding: 22px 26px;
    color: rgba(255, 255, 255, 0.68);
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    font-size: 11px;
    line-height: 1.65;
}

.membership-notice__inner strong {
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.membership-notice__inner p {
    display: inline;
    margin: 0 0 0 8px;
}

.membership-card__intro {
    max-width: 570px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.65;
}

.membership-card__features {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 48px;
}

.membership-card__feature {
    display: flex;
    min-height: 75px;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.membership-card__feature:first-child {
    padding-left: 0;
    border-left: 0;
}

.membership-card__feature strong {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.membership-card__feature span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.45;
}

.membership-card__button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    gap: 14px;
    margin-top: 42px;
    padding: 0 26px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.membership-card__button:hover,
.membership-card__button:focus-visible {
    color: #111;
    background: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

.stage-carousel {
    overflow: hidden;
    padding: 88px 0 100px;
    background: #121212;
}

.stage-carousel__header {
    display: flex;
    width: min(calc(100% - 64px), var(--dn-container));
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin: 0 auto 34px;
}

.stage-carousel__eyebrow {
    margin: 0 0 9px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.stage-carousel__title {
    margin: 0;
    color: #fff;
    font-size: 35px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
}

.stage-carousel__intro {
    margin: 14px 0 0;
    color: var(--dn-text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.stage-carousel__controls {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}

.stage-carousel__controls button,
.stage-lightbox__arrow,
.stage-lightbox__close {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0 0 4px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    font-size: 31px;
    line-height: 1;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.stage-carousel__controls button:hover,
.stage-lightbox__arrow:hover,
.stage-lightbox__close:hover {
    color: #000000;
    background: #fff;
    border-color: #fff;
}

.stage-carousel__controls button:disabled {
    opacity: 0.28;
    cursor: default;
}

.stage-carousel__viewport {
    overflow-x: auto;
    padding: 0 max(32px, calc((100vw - var(--dn-container)) * 0.5));
    scroll-behavior: smooth;
    scroll-padding-inline: max(32px, calc((100vw - var(--dn-container)) * 0.5));
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
}

.stage-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.stage-carousel__track {
    display: flex;
    width: max-content;
    gap: 14px;
}

.stage-carousel__item {
    position: relative;
    width: calc((min(calc(100vw - 64px), var(--dn-container)) - 56px) * 0.19);
    flex: 0 0 auto;
    aspect-ratio: 1;
    overflow: hidden;
    padding: 0;
    background: #080808;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    scroll-snap-align: start;
}

.stage-carousel__item::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.34));
    opacity: 0;
    transition: opacity 220ms ease;
}

.stage-carousel__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.stage-carousel__item:hover img {
    transform: scale(1.035);
}

.stage-carousel__item:hover::after {
    opacity: 1;
}

.stage-lightbox {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    padding: 32px 84px;
    color: #fff;
    background: rgba(5, 5, 5, 0.94);
    border: 0;
}

.stage-lightbox[open] {
    display: grid;
    place-items: center;
}

.stage-lightbox::backdrop {
    background: rgba(0, 0, 0, 0.9);
}

.stage-lightbox img {
    max-width: min(86vw, 1080px);
    max-height: 88vh;
    border-radius: 8px;
    object-fit: contain;
}

.stage-lightbox__close {
    position: fixed;
    z-index: 2;
    top: 25px;
    right: 25px;
    padding-bottom: 3px;
    font-size: 28px;
}

.stage-lightbox__arrow {
    position: fixed;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.stage-lightbox__arrow--previous {
    left: 24px;
}

.stage-lightbox__arrow--next {
    right: 24px;
}


.home-top10 {
    padding: 92px 0 110px;
    background: #090a0b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-top10__inner {
    width: min(calc(100% - 64px), var(--dn-container));
    margin: 0 auto;
}

.home-top10__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.home-top10__title {
    margin: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.035em;
}

.home-top10__title strong {
    font-weight: 800;
}

.home-top10__catalog-link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 0 26px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.home-top10__catalog-link:hover,
.home-top10__catalog-link:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.95);
}

.remix-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
    scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}

.remix-table {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    table-layout: fixed;
    color: #fff;
    background: transparent;
}

.remix-table th,
.remix-table td {
    padding: 16px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.remix-table th {
    height: auto;
    color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.remix-table tbody tr {
    transition: background-color 160ms ease;
}

.remix-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.025);
}

.remix-table tbody tr:nth-child(even) {
    background: transparent;
}

.remix-table tbody tr:last-child td {
    border-bottom: 0;
}

.remix-table th:nth-child(1),
.remix-table td:nth-child(1) {
    width: 64px;
    padding-right: 8px;
    padding-left: 12px;
    text-align: center;
}

.remix-table th:nth-child(2),
.remix-table td:nth-child(2) {
    width: 37%;
}

.remix-table th:nth-child(3),
.remix-table td:nth-child(3) {
    width: 90px;
}

.remix-table th:nth-child(4),
.remix-table td:nth-child(4) {
    width: 150px;
}

.remix-table th:nth-child(5),
.remix-table td:nth-child(5) {
    width: 135px;
}

.remix-table th:nth-child(6),
.remix-table td:nth-child(6) {
    width: 165px;
}

.remix-table td {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.35;
}

.remix-table__title {
    color: #fff;
    font-weight: 500 !important;
    line-height: 1.35;
}

.remix-table__bpm {
    font-variant-numeric: tabular-nums;
}

.remix-table__play {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    margin: 0 auto;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.remix-table__play-icon {
    display: block;
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.remix-table__play-icon--play {
    margin-left: 1px;
}

.remix-table__play-icon--pause {
    display: none;
}

.remix-table__play.is-playing .remix-table__play-icon--play {
    display: none;
}

.remix-table__play.is-playing .remix-table__play-icon--pause {
    display: block;
}

.remix-table__play:hover,
.remix-table__play:focus-visible {
    color: #000;
    background: #fff;
    border-color: #fff;
    transform: scale(1.06);
}

.remix-table__play.is-playing {
    color: #000;
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.remix-table__play.is-playing:hover,
.remix-table__play.is-playing:focus-visible {
    color: #000000;
    background: #fff;
    border-color: #fff;
}

.remix-table__play:disabled {
    color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}

.remix-table__purchase .edd_purchase_submit_wrapper {
    margin: 0;
}

.remix-table__purchase .remix-table__purchase-link,
.remix-table__purchase .edd-submit {
    display: inline !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 0 3px !important;
    color: #fff !important;
    background: transparent !important;
    border: 0 !important;
    border-bottom: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    text-transform: none !important;
    transition: color 180ms ease, border-color 180ms ease !important;
}

.remix-table__purchase .remix-table__purchase-link:hover,
.remix-table__purchase .edd-submit:hover {
    color: rgba(255, 255, 255, 0.84) !important;
    border-color: transparent !important;
}

.remix-table__purchase .remix-table__purchase-link.is-added,
.remix-table__purchase .remix-table__purchase-link.is-added:hover,
.remix-table__purchase .remix-table__purchase-link.is-added:focus-visible {
    color: #fff !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.remix-table__purchase .edd-cart-ajax-alert,
.remix-table__purchase .edd-loading {
    display: none !important;
}

.remix-table__unavailable {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.remix-table__empty {
    padding: 42px 24px !important;
    color: rgba(255, 255, 255, 0.58);
    text-align: center !important;
}

.global-player {
    position: fixed;
    z-index: 1100;
    right: 0;
    bottom: 0;
    left: 0;
    color: #111;
    background: #f7f7f7;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.22);
    transform: translateY(100%);
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.global-player:not([hidden]) {
    transform: translateY(0);
}

.global-player__main {
    display: grid;
    width: min(calc(100% - 64px), var(--dn-container));
    min-height: 58px;
    grid-template-columns: auto minmax(180px, 1fr) minmax(120px, 168px);
    align-items: center;
    gap: 20px;
    margin: 0 auto;
    padding-block: 8px;
}

.global-player__controls {
    display: flex;
    align-items: center;
    gap: 6px;
}

.global-player__control,
.global-player__volume-toggle {
    display: grid;
    place-items: center;
    padding: 0;
    color: #111;
    background: transparent;
    border: 0;
    border-radius: 0;
    transition: opacity 160ms ease;
}

.global-player__control:hover,
.global-player__control:focus-visible {
    background: transparent;
    opacity: 0.55;
}

.global-player__control--skip {
    width: 28px;
    height: 28px;
    color: #111;
}

.global-player__control--skip svg {
    width: 15px;
    height: 15px;
}

.global-player__control--play svg {
    width: 18px;
    height: 22px;
}

.global-player__control--play svg[hidden] {
    display: none;
}

.global-player__control--play [data-player-pause-svg] {
    display: none;
}

.global-player.is-playing .global-player__control--play [data-player-play-svg] {
    display: none;
}

.global-player.is-playing .global-player__control--play [data-player-pause-svg] {
    display: block;
}

.global-player__control--play {
    width: 28px;
    height: 28px;
    padding-left: 2px;
    color: #111;
    background: transparent;
}

.global-player__control--play:hover,
.global-player__control--play:focus-visible {
    color: #111;
    background: transparent;
    opacity: 0.55;
    transform: none;
}

.global-player__info {
    min-width: 0;
}

.global-player__eyebrow {
    margin: 0 0 2px;
    color: #888;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.global-player__title {
    overflow: hidden;
    margin: 0;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.global-player__volume {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
    min-width: 0;
    color: #111;
}

.global-player__volume-icon {
    display: block;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: #111;
}

.global-player__volume input[type="range"] {
    display: block;
    width: 100%;
    min-width: 72px;
    max-width: 120px;
    height: 4px;
    margin: 0;
    padding: 0;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.global-player__volume input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: #c8c8c8;
    border-radius: 999px;
}

.global-player__volume input[type="range"]::-webkit-slider-thumb {
    width: 12px;
    height: 12px;
    margin-top: -4px;
    appearance: none;
    background: #111;
    border: 2px solid #f7f7f7;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.global-player__volume input[type="range"]::-moz-range-track {
    height: 4px;
    background: #c8c8c8;
    border: 0;
    border-radius: 999px;
}

.global-player__volume input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #111;
    border: 2px solid #f7f7f7;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.global-player__progress-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    width: min(calc(100% - 64px), var(--dn-container));
    height: auto;
    margin: 0 auto;
    padding-bottom: 8px;
    background: transparent;
}

.global-player__progress-track {
    position: relative;
    width: 100%;
    height: 3px;
    background: #d0d0d0;
    border-radius: 999px;
}

.global-player__progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    pointer-events: none;
    background: #111;
    border-radius: 999px;
    transition: width 80ms linear;
}

.global-player__progress-hitarea {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    width: 100%;
    height: 14px;
    padding: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    transform: translateY(-50%);
}

.global-player__time {
    flex: 0 0 auto;
    color: #666;
    font-size: 9px;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.content-shell {
    width: min(calc(100% - 64px), var(--dn-container));
    margin-inline: auto;
    padding-block: 72px 100px;
}

/* Catálogo */
.catalog-shell {
    padding-bottom: 120px;
}

.catalog-shell__header {
    margin-bottom: 28px;
}

.catalog-shell__title {
    margin-bottom: 0;
}

.catalog-section.is-loading .catalog-table-wrap {
    opacity: 0.55;
    pointer-events: none;
}

.catalog-filters {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
    gap: 12px;
    margin-bottom: 22px;
}

.catalog-filters__search {
    position: relative;
}

.catalog-filters__input {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
    font-size: 13px;
    line-height: 1.4;
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.catalog-filters__input--search {
    padding-right: 96px;
    padding-left: 42px;
    background-color: rgba(255, 255, 255, 0.04);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 14px center;
    background-size: 16px 16px;
}

.catalog-filters__input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.catalog-filters__input:focus {
    border-color: rgba(255, 255, 255, 0.28);
    outline: none;
    background-color: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.catalog-filters__select {
    appearance: none;
    padding-right: 36px;
    color-scheme: dark;
    background-color: rgba(255, 255, 255, 0.04);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px 14px;
    cursor: pointer;
}

.catalog-filters__select option {
    color: #fff;
    background: #121212;
}

.catalog-filters__select option:checked {
    color: #fff;
    background: #1f1f1f;
}

.catalog-filters__reset {
    position: absolute;
    top: 50%;
    right: 8px;
    min-height: 34px;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.62);
    background: transparent;
    border: 0;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transform: translateY(-50%);
    transition: color 160ms ease, background-color 160ms ease;
}

.catalog-filters__reset:hover,
.catalog-filters__reset:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.catalog-table-wrap {
    margin-bottom: 24px;
}

.catalog-pagination {
    display: flex;
    justify-content: center;
    min-height: 44px;
}

.catalog-pagination__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.catalog-pagination__btn {
    display: grid;
    min-width: 40px;
    height: 40px;
    place-items: center;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.78);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.catalog-pagination__btn:hover,
.catalog-pagination__btn:focus-visible {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.06);
}

.catalog-pagination__btn.is-current {
    color: #111;
    background: #fff;
    border-color: #fff;
    cursor: default;
}

.remix-table tbody.is-loading {
    opacity: 0.55;
}

/* Mixes */
.mixes-shell {
    padding-bottom: 120px;
}

.mixes-shell__header {
    margin-bottom: 28px;
}

.mixes-shell__title {
    margin-bottom: 0;
}

.mixes-section.is-loading .mixes-grid {
    opacity: 0.55;
    pointer-events: none;
}

.mixes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px 18px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.mixes-grid__empty {
    grid-column: 1 / -1;
    padding: 48px 20px;
    color: rgba(255, 255, 255, 0.58);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 8px;
}

.mix-card {
    display: flex;
    height: 100%;
    flex-direction: column;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.mix-card:hover {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.mix-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #0d0d0d;
}

.mix-card__image,
.mix-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.mix-card__placeholder {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.mix-card__media .mix-card__play {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    margin: 0;
    color: #000;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.92);
}

.mix-card__media .mix-card__play:hover,
.mix-card__media .mix-card__play:focus-visible,
.mix-card__media .mix-card__play.is-playing {
    color: #000;
    background: #fff;
    border-color: #fff;
}

.mix-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
}

.mix-card__title {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.mix-card__download {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0 16px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.mix-card__download:hover,
.mix-card__download:focus-visible {
    color: #111;
    background: #fff;
    border-color: #fff;
}

.mix-card__unavailable {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
    font-weight: 600;
}

.mixes-pagination {
    margin-top: 8px;
}

/* Cotizador */
.quote-shell {
    padding-bottom: 120px;
}

.quote-shell__header {
    margin-bottom: 28px;
}

.quote-shell__title {
    margin-bottom: 0;
}

.quote-section.is-loading .quote-form {
    opacity: 0.55;
    pointer-events: none;
}

.quote-form__feedback {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.quote-form__feedback.is-success {
    color: #d7ffe3;
    background: rgba(72, 199, 116, 0.12);
    border: 1px solid rgba(72, 199, 116, 0.28);
}

.quote-form__feedback.is-error {
    color: #ffd7d7;
    background: rgba(255, 96, 96, 0.12);
    border: 1px solid rgba(255, 96, 96, 0.28);
}

.quote-form {
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
}

.quote-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.quote-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote-form__field--wide {
    grid-column: 1 / -1;
}

.quote-form__field label {
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.quote-form__input {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.quote-form__input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.quote-form__input:focus {
    border-color: rgba(255, 255, 255, 0.28);
    outline: none;
    background-color: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.quote-form__select {
    appearance: none;
    padding-right: 36px;
    color-scheme: dark;
    background-color: rgba(255, 255, 255, 0.04);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px 14px;
    cursor: pointer;
}

.quote-form__select option {
    color: #fff;
    background: #121212;
}

.quote-form__textarea {
    min-height: 132px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
}

.quote-form__input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.quote-form__altcha altcha-widget {
    display: block;
    width: 100%;
    color-scheme: only dark;
    --altcha-max-width: 100%;
    --altcha-border-radius: 8px;
    --altcha-color-base: rgba(255, 255, 255, 0.04);
    --altcha-color-base-content: rgba(255, 255, 255, 0.82);
    --altcha-border-color: rgba(255, 255, 255, 0.14);
    --altcha-color-neutral: rgba(255, 255, 255, 0.18);
    --altcha-color-neutral-content: rgba(255, 255, 255, 0.72);
    --altcha-checkbox-border-color: rgba(255, 255, 255, 0.35);
    --altcha-input-background-color: rgba(255, 255, 255, 0.04);
    --altcha-input-color: rgba(255, 255, 255, 0.82);
    --altcha-spinner-color: rgba(255, 255, 255, 0.72);
    --altcha-shadow: none;
}

.quote-form__actions {
    margin-top: 22px;
}

.quote-form__submit {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    color: #111;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.quote-form__submit:hover,
.quote-form__submit:focus-visible {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.42);
}

.quote-form__submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.quote-rider {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.quote-rider__button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.quote-rider__button:hover,
.quote-rider__button:focus-visible {
    color: #111;
    background: #fff;
    border-color: #fff;
}

/* Auth / login */
.auth-shell {
    max-width: 560px;
    padding-bottom: 120px;
}

.auth-shell__header {
    margin-bottom: 28px;
    text-align: center;
}

.auth-shell__title {
    margin-bottom: 0;
}

.auth-section.is-loading .auth-card {
    opacity: 0.55;
    pointer-events: none;
}

.auth-card {
    max-width: 560px;
    margin: 0 auto;
}

.auth-card__intro,
.auth-card__note {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.55;
    text-align: center;
}

.auth-form__grid {
    grid-template-columns: 1fr;
}

.auth-form__remember {
    margin-top: -4px;
}

.auth-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
}

.auth-checkbox input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #fff;
}

.auth-card__footer,
.auth-card__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 18px;
    margin-top: 18px;
}

.auth-link {
    color: rgba(255, 255, 255, 0.72);
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: color 160ms ease;
}

.auth-link:hover,
.auth-link:focus-visible {
    color: #fff;
}

.auth-section--logged .quote-form__submit {
    text-decoration: none;
}

/* Mi cuenta hub */
.account-shell {
    max-width: 1100px;
    padding-bottom: 120px;
}

.dn-account-hub {
    display: grid;
    grid-template-columns: minmax(200px, 248px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.dn-account-hub__rail {
    position: sticky;
    top: calc(var(--dn-header-height) + 16px);
    padding: 18px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(12px);
}

.dn-account-hub__user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding: 0 4px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dn-account-hub__user .account-avatar {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.dn-account-hub__user-text {
    min-width: 0;
}

.dn-account-hub__user-name {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.dn-account-hub__user-email {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    line-height: 1.35;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dn-account-hub__nav-heading {
    margin: 0 0 8px;
    padding: 0 8px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dn-account-hub__menu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dn-account-hub__menu-item a {
    display: block;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease;
}

.dn-account-hub__menu-item a:hover,
.dn-account-hub__menu-item a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.dn-account-hub__menu-item.is-current a {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
}

.dn-account-hub__menu-item.is-logout {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dn-account-hub__menu-item.is-logout a {
    color: rgba(255, 255, 255, 0.48);
}

.dn-account-hub__main {
    min-width: 0;
    padding: 22px 24px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(12px);
}

.dn-account-hub__title {
    margin: 0 0 6px;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.dn-account-hub__lead {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.5;
}

.dn-account-hub__empty {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.dn-account-hub__inline-link,
.dn-account-hub__cta {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dn-account-hub__cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 0 18px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    color: #111;
    text-decoration: none;
}

.dn-account-hub__cta:hover,
.dn-account-hub__cta:focus-visible {
    color: #fff;
    background: transparent;
}

.dn-account-hub__notice {
    margin: 0 0 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.dn-account-hub__notice--ok {
    color: #d7ffe3;
    background: rgba(72, 199, 116, 0.12);
    border: 1px solid rgba(72, 199, 116, 0.28);
}

.dn-account-hub__notice--err {
    color: #ffd7d7;
    background: rgba(255, 96, 96, 0.12);
    border: 1px solid rgba(255, 96, 96, 0.28);
}

.dn-account-hub__edd {
    overflow-x: auto;
}

.dn-account-hub__edd table {
    width: 100%;
    border-collapse: collapse;
}

.dn-account-hub__edd th,
.dn-account-hub__edd td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    text-align: left;
    vertical-align: top;
}

.dn-account-hub__edd thead th,
.dn-account-hub__edd #edd_user_history thead th,
.dn-account-hub__edd table.edd-table thead th {
    color: #111 !important;
    background: #f0f0f0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dn-account-hub__edd th {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dn-account-hub__edd a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.dn-account-profile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 420px;
}

.dn-account-profile__label,
.dn-account-profile__field > span,
.dn-account-profile__sub {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dn-account-profile__sub {
    margin: 0;
}

.dn-account-profile__avatar-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
}

.dn-account-profile__avatar-wrap .account-avatar,
.account-avatar--xl {
    width: 72px;
    height: 72px;
}

.dn-account-profile__file {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.dn-account-profile__file input {
    display: none;
}

.dn-account-profile__field .quote-form__input {
    margin-top: 8px;
}

.dn-account-profile__readonly {
    margin: 8px 0 0;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.48);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 14px;
}

.dn-account-profile__sep {
    margin: 4px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dn-account-profile__submit {
    width: auto;
    align-self: flex-start;
    min-width: 180px;
    margin-top: 4px;
}

/* Checkout / Finalizar compra — EDD Blocks
 * Markup real:
 * #edd_checkout_form_wrap.edd-blocks__checkout
 * .edd-blocks__cart > .edd-blocks-cart (filas div, no table)
 * .edd-blocks__purchase-form > #edd_purchase_form
 * #edd_checkout_user_info / fieldset.edd-blocks-form
 * .edd-blocks__payment-details
 */
.checkout-shell {
    max-width: 44rem;
    padding-bottom: 120px;
}

.dn-checkout-intro {
    margin: 0 0 18px;
}

.dn-checkout-intro__title {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.dn-checkout-intro__lead {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
}

.dn-checkout-intro__secure {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 14px 0 0;
    padding: 12px 14px;
    color: rgba(255, 255, 255, 0.62);
    background: rgba(22, 163, 74, 0.08);
    border: 1px solid rgba(22, 163, 74, 0.28);
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.45;
}

.dn-checkout-intro__secure svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    color: #16a34a;
}

.dn-checkout-card {
    padding: 0;
    background: transparent;
    border: 0;
}

.dn-checkout-empty {
    max-width: 460px;
    margin: 0 auto;
}

.dn-checkout-empty__card {
    padding: 36px 28px 32px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    backdrop-filter: blur(12px);
}

.dn-checkout-empty__title {
    margin: 0;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.dn-checkout-empty__lead {
    margin: 12px 0 22px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.55;
}

.dn-checkout-empty__cta {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    color: #111;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.dn-checkout-empty__cta:hover,
.dn-checkout-empty__cta:focus-visible {
    color: #fff;
    background: transparent;
}

body.dn-checkout-is-empty .edd_empty_cart {
    display: none !important;
}

body.dn-checkout-page .entry-header,
body.dn-checkout-page .entry-title,
body.dn-checkout-page .page-title {
    display: none !important;
}

/* Contenedor EDD Blocks */
.dn-checkout-card #edd_checkout_form_wrap,
.dn-checkout-card #edd_checkout_form_wrap.edd-blocks__checkout,
.dn-checkout-card #edd_checkout_form_wrap.wp-block-edd-checkout {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
}

.dn-checkout-card .edd-blocks__cart,
.dn-checkout-card #edd_checkout_cart_form.edd-blocks-form__cart {
    display: block !important;
    margin: 0 0 20px;
    padding: 0;
    border: 0;
    background: transparent;
}

/* Carrito: divs, NO table */
.dn-checkout-card #edd_checkout_cart.edd-blocks-cart,
.dn-checkout-card .edd-blocks-cart {
    display: block !important;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-sizing: border-box;
}

.dn-checkout-card .edd-blocks-cart__row {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

.dn-checkout-card .edd-blocks-cart__row:last-child {
    border-bottom: 0;
}

.dn-checkout-card .edd-blocks-cart__row-header {
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dn-checkout-card .edd-blocks-cart__items {
    display: block;
    margin: 0;
    padding: 0;
}

.dn-checkout-card .edd-blocks-cart__row-item .edd_cart_item_name {
    flex: 1 1 auto;
    min-width: 0;
}

.dn-checkout-card .edd_checkout_cart_item_title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dn-checkout-card .edd_cart_item_image img {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    object-fit: cover;
}

.dn-checkout-card .edd-blocks-cart__row-item .edd_cart_item_price {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.dn-checkout-card .edd_cart_item_name,
.dn-checkout-card .edd_checkout_cart_item_title,
.dn-checkout-card .edd_cart_item_price,
.dn-checkout-card .edd_cart_total,
.dn-checkout-card .edd_cart_amount {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.dn-checkout-card .edd-blocks-cart__row-footer {
    background: rgba(255, 255, 255, 0.04);
    justify-content: flex-end;
}

.dn-checkout-card .edd_cart_actions {
    display: inline-flex;
}

.dn-checkout-card a.edd_cart_remove_item_btn,
.dn-checkout-card .edd-blocks-cart__action-remove {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    text-decoration: none;
    line-height: 1;
}

.dn-checkout-card .edd-blocks-cart__action-remove::before {
    content: "×";
    font-size: 16px;
}

.dn-checkout-card a.edd_cart_remove_item_btn:hover,
.dn-checkout-card .edd-blocks-cart__action-remove:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.dn-checkout-card .edd-blocks-cart__discount .edd_discount_link,
.dn-checkout-card .edd-button-secondary {
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: 0;
    padding: 0;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

/* Formulario de compra — forzar visible (EDD Blocks a veces lo colapsa) */
.dn-checkout-card .edd-blocks__purchase-form,
.dn-checkout-card #edd_purchase_form,
.dn-checkout-card #edd_purchase_form.edd-blocks-form,
.dn-checkout-card #edd_purchase_form.edd_form {
    display: block !important;
    visibility: visible !important;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.dn-checkout-card .edd-blocks__user-details,
.dn-checkout-card .edd-blocks__checkout-user,
.dn-checkout-card .edd-checkout-block__personal-info,
.dn-checkout-card .dn-checkout-guest-fields {
    display: block !important;
    visibility: visible !important;
    margin: 0 0 18px;
}

.dn-checkout-card .dn-checkout-account-switch {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.dn-checkout-card .dn-checkout-account-switch a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dn-checkout-card .dn-checkout-register-lead {
    margin: 0 0 14px !important;
}

.dn-checkout-card #edd_checkout_form_wrap fieldset:not(#edd_purchase_submit),
.dn-checkout-card #edd_checkout_form_wrap fieldset.edd-blocks-form:not(#edd_purchase_submit),
.dn-checkout-card #edd_checkout_user_info,
.dn-checkout-card #edd_register_fields,
.dn-checkout-card #edd_cc_address,
.dn-checkout-card .dn-checkout-fieldset,
.dn-checkout-card .edd-blocks__checkout fieldset.edd-blocks-form {
    display: block !important;
    visibility: visible !important;
    margin: 0 0 18px !important;
    padding: 18px 16px 8px !important;
    color: #fff;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 14px !important;
    box-sizing: border-box;
}

.dn-checkout-card #edd_checkout_form_wrap fieldset:not(#edd_purchase_submit) > legend,
.dn-checkout-card #edd_checkout_user_info > legend,
.dn-checkout-card #edd_register_fields > legend,
.dn-checkout-card #edd_cc_address > legend,
.dn-checkout-card .dn-checkout-fieldset > legend,
.dn-checkout-card .edd-blocks__checkout fieldset.edd-blocks-form > legend {
    display: block !important;
    float: none !important;
    width: auto;
    max-width: calc(100% - 1rem);
    margin: 0 0 12px !important;
    padding: 0 6px !important;
    border: 0 !important;
    color: #fff !important;
    background: transparent !important;
    font-size: 13px !important;
    font-weight: 700 !important;
}

.dn-checkout-card .edd-blocks-form__group {
    display: block !important;
    visibility: visible !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
}

.dn-checkout-card .edd-blocks-form__control {
    display: block;
    width: 100%;
    position: relative;
}

.dn-checkout-card label,
.dn-checkout-card .edd-label,
.dn-checkout-card .edd-blocks-form__group > label {
    display: block !important;
    margin: 0 0 8px !important;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dn-checkout-card .edd-required-indicator {
    color: #fff;
    margin-left: 2px;
}

.dn-checkout-card .edd-description {
    display: block !important;
    margin: 6px 0 0 !important;
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 12px;
    line-height: 1.4;
}

.dn-checkout-card #edd_checkout_form_wrap .edd-input,
.dn-checkout-card #edd_checkout_form_wrap input[type="text"],
.dn-checkout-card #edd_checkout_form_wrap input[type="email"],
.dn-checkout-card #edd_checkout_form_wrap input[type="password"],
.dn-checkout-card #edd_checkout_form_wrap input[type="tel"],
.dn-checkout-card #edd_checkout_form_wrap select,
.dn-checkout-card #edd_checkout_form_wrap textarea,
.dn-checkout-card .dn-checkout-guest-fields .edd-input,
.dn-checkout-card .dn-checkout-guest-fields input[type="text"],
.dn-checkout-card .dn-checkout-guest-fields input[type="email"],
.dn-checkout-card .dn-checkout-guest-fields input[type="password"],
.dn-checkout-card fieldset.edd-blocks-form .edd-input,
.dn-checkout-card fieldset.edd-blocks-form input[type="text"],
.dn-checkout-card fieldset.edd-blocks-form input[type="email"],
.dn-checkout-card fieldset.edd-blocks-form input[type="password"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    color-scheme: dark;
    -webkit-appearance: none;
    appearance: none;
}

.dn-checkout-card #edd_checkout_form_wrap textarea {
    min-height: 100px !important;
    height: auto !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.dn-checkout-card #edd_checkout_form_wrap .edd-input:focus,
.dn-checkout-card #edd_checkout_form_wrap input:focus,
.dn-checkout-card #edd_checkout_form_wrap select:focus,
.dn-checkout-card #edd_checkout_form_wrap textarea:focus {
    border-color: rgba(255, 255, 255, 0.28) !important;
    outline: none;
    background: rgba(255, 255, 255, 0.07) !important;
}

.dn-checkout-card #edd_checkout_form_wrap .edd-input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.dn-checkout-card select option {
    color: #fff;
    background: #121212;
}

.dn-checkout-card .edd-blocks__payment-details {
    display: block !important;
    visibility: visible !important;
    margin: 0 0 16px;
}

.dn-checkout-card #edd_purchase_submit {
    display: block !important;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.dn-checkout-card #edd_purchase_submit > legend {
    display: none;
}

.dn-checkout-card #edd-purchase-button,
.dn-checkout-card #edd_purchase_form input[type="submit"].edd-submit,
.dn-checkout-card button.edd-submit {
    display: flex !important;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 20px;
    color: #111 !important;
    background: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 8px !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.dn-checkout-card #edd-purchase-button:hover,
.dn-checkout-card #edd_purchase_form input[type="submit"].edd-submit:hover,
.dn-checkout-card button.edd-submit:hover {
    color: #fff !important;
    background: transparent !important;
}

.dn-checkout-card .edd_errors,
.dn-checkout-card .edd-alert {
    margin: 0 0 14px;
    padding: 12px 14px;
    color: #ffd7d7;
    background: rgba(255, 96, 96, 0.12);
    border: 1px solid rgba(255, 96, 96, 0.28);
    border-radius: 8px;
    font-size: 13px;
}

.dn-checkout-card a {
    color: #fff;
}

.entry-title,
.page-title {
    margin: 0 0 28px;
    color: #fff;
    font-size: clamp(38px, 6vw, 70px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.entry-content {
    color: var(--dn-text-muted);
}

.entry-content a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Footer base */
.site-footer {
    background: #0e0e0e;
    border-top: 1px solid var(--dn-border);
    transition: padding-bottom 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.has-global-player .site-footer {
    padding-bottom: 92px;
}

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 10px;
    padding-block: 22px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
}

.site-footer__copy,
.site-footer__visitors {
    margin: 0;
}

.site-footer__copy a,
.site-footer__legal a {
    color: rgba(255, 255, 255, 0.72);
    font-size: inherit;
    font-weight: inherit;
    text-decoration: none;
    transition: color 160ms ease;
}

.site-footer__copy a:hover,
.site-footer__copy a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
    color: #fff;
}

.site-footer__sep {
    color: rgba(255, 255, 255, 0.28);
    font-size: inherit;
    line-height: 1;
    user-select: none;
}

.site-footer__legal {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-footer__legal a {
    white-space: nowrap;
}

.site-footer__social {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.site-footer__social-link {
    display: inline-flex;
    width: 27px;
    height: 27px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 7px;
    transition: background-color 160ms ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
    background: rgba(255, 255, 255, 0.12);
}

.site-footer__social-box {
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    color: #fff;
    background: #232323;
    border-radius: 5px;
}

.site-footer__social-box svg {
    display: block;
    width: 18px;
    height: 18px;
}

.site-footer__social-box--youtube svg {
    width: 20px;
    height: 20px;
}

.site-footer__social-box--instagram svg {
    width: 18px;
    height: 18px;
}

.site-footer__social-box--tiktok svg {
    width: 18px;
    height: 18px;
}

.site-footer__visitors {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: 0;
    text-transform: none;
    white-space: nowrap;
}

@media (max-width: 1040px) {

    .stage-carousel__item {
        width: 42vw;
    }

    .membership-card__content {
        width: 68%;
        padding-inline: 48px;
    }

    .membership-card__features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 24px;
    }

    .membership-card__feature:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }
    .site-header__inner {
        grid-template-columns: 1fr auto 1fr;
        gap: 14px;
    }

    .primary-navigation,
    .site-header__actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: grid;
        justify-self: start;
    }

    .site-branding {
        justify-self: center;
    }

    .mobile-header-actions {
        display: flex;
        justify-self: end;
        align-items: center;
        gap: 2px;
    }

    .mobile-header-actions .header-action {
        width: 38px;
        height: 38px;
    }

    .mobile-drawer {
        position: fixed;
        z-index: 1200;
        inset: 0;
        display: block;
        visibility: hidden;
        background: rgba(0, 0, 0, 0);
        pointer-events: none;
        transition: visibility 0s linear 320ms, background-color 320ms ease;
    }

    .mobile-drawer.is-open {
        visibility: visible;
        background: rgba(0, 0, 0, 0.48);
        pointer-events: auto;
        transition-delay: 0s;
    }

    .mobile-drawer__panel {
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column;
        padding: max(20px, env(safe-area-inset-top)) 34px max(28px, env(safe-area-inset-bottom));
        background: rgba(18, 18, 18, 0.98);
        border-right: 1px solid var(--dn-border);
        box-shadow: 24px 0 70px rgba(0, 0, 0, 0.4);
        transform: translateX(-102%);
        transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mobile-drawer.is-open .mobile-drawer__panel {
        transform: translateX(0);
    }

    .mobile-drawer__top {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        min-height: 58px;
    }

    .mobile-drawer__close {
        display: grid;
        width: 44px;
        height: 44px;
        place-items: center;
        padding: 0;
        color: #fff;
        background: transparent;
        border: 0;
    }

    .mobile-drawer__logo {
        width: auto;
        max-width: 108px;
        max-height: 54px;
        object-fit: contain;
    }

    .mobile-drawer__icons {
        display: flex;
        justify-self: end;
        gap: 2px;
    }

    .mobile-navigation {
        margin-top: clamp(42px, 10vh, 86px);
    }

    .mobile-drawer__footer {
        margin-top: clamp(52px, 9vh, 84px);
        padding-top: 28px;
        border-top: 1px solid var(--dn-border);
    }

    .account-menu--mobile .account-menu__popover,
    .account-menu--drawer .account-menu__popover {
        min-width: 190px;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    .discover-hero__content {
        width: min(660px, 68%);
    }

    .discover-hero__title {
        font-size: 64px;
    }

    .discover-hero__shade {
        background: linear-gradient(90deg, #121212 0%, rgba(18, 18, 18, 0.98) 35%, rgba(18, 18, 18, 0.45) 72%, rgba(18, 18, 18, 0.12));
    }
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

@media (max-width: 640px) {
    :root {
        --dn-header-height: 76px;
    }
    .home-top10 {
        padding: 64px 0 76px;
    }

    .membership-section {
        padding: 48px 0 8px;
    }

    .membership-card {
        width: calc(100% - 32px);
        min-height: 660px;
        border-radius: 16px;
    }

    .membership-notice {
        padding-bottom: 48px;
    }

    .membership-notice__inner {
        width: calc(100% - 32px);
        padding: 18px;
        font-size: 10px;
    }

    .membership-notice__inner p {
        display: block;
        margin: 8px 0 0;
    }

    .membership-card__media {
        left: 0;
        height: 48%;
    }

    .membership-card__shade {
        background: linear-gradient(180deg, rgba(8, 8, 8, 0.08) 0%, rgba(8, 8, 8, 0.38) 28%, #080808 54%, #080808 100%);
    }

    .membership-card__content {
        width: 100%;
        min-height: 660px;
        justify-content: flex-end;
        padding: 34px 24px 30px;
    }

    .membership-card__eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
    }

    .membership-card__title {
        font-size: 35px;
    }

    .membership-card__intro {
        margin-top: 18px;
        font-size: 14px;
    }

    .membership-card__features {
        margin-top: 28px;
        row-gap: 20px;
    }

    .membership-card__feature {
        min-height: 65px;
        gap: 6px;
        padding: 0 12px;
    }

    .membership-card__feature strong {
        font-size: 12px;
    }

    .membership-card__feature span {
        font-size: 10px;
    }

    .membership-card__button {
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }

    .home-top10__inner {
        width: calc(100% - 32px);
    }

    .home-top10__header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 24px;
    }

    .home-top10__title {
        font-size: 29px;
    }

    .home-top10__catalog-link {
        min-height: 43px;
        padding-inline: 20px;
        font-size: 12px;
    }

    .global-player__main {
        width: calc(100% - 32px);
        min-height: 54px;
        grid-template-columns: auto minmax(0, 1fr) minmax(88px, 112px);
        gap: 10px;
        padding-block: 6px;
    }

    .global-player__title {
        font-size: 12px;
    }

    .global-player__volume {
        gap: 6px;
    }

    .global-player__volume input[type="range"] {
        min-width: 56px;
        max-width: 72px;
    }

    .global-player__progress-wrap {
        width: calc(100% - 32px);
        gap: 8px;
        padding-bottom: 6px;
    }

    .remix-table-wrap {
        overflow-x: auto;
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 8px;
    }

    .remix-table {
        display: table;
        min-width: 0;
        width: 100%;
    }

    .remix-table thead {
        position: static;
        width: auto;
        height: auto;
        overflow: visible;
        clip: auto;
        white-space: normal;
        clip-path: none;
    }

    .remix-table tbody {
        display: table-row-group;
    }

    .remix-table__row {
        display: table-row;
        margin-bottom: 0;
        padding: 0;
        background: transparent !important;
        border: 0;
        border-radius: 0;
    }

    .remix-table th,
    .remix-table td {
        display: table-cell;
        padding: 16px 12px;
    }

    .remix-table th:nth-child(3),
    .remix-table th:nth-child(4),
    .remix-table th:nth-child(5),
    .remix-table td:nth-child(3),
    .remix-table td:nth-child(4),
    .remix-table td:nth-child(5) {
        display: none;
    }

    .remix-table th:nth-child(1),
    .remix-table td:nth-child(1) {
        width: 52px;
        padding-left: 12px;
        padding-right: 8px;
        text-align: center;
    }

    .remix-table th:nth-child(2),
    .remix-table td:nth-child(2) {
        width: auto;
    }

    .remix-table th:nth-child(6),
    .remix-table td:nth-child(6) {
        width: 72px;
        padding-right: 12px;
        text-align: right;
    }

    .remix-table__play-cell {
        grid-row: auto;
        align-self: auto;
    }

    .remix-table__play {
        width: 36px;
        height: 36px;
    }

    .remix-table__play-icon {
        width: 12px;
        height: 12px;
    }

    .remix-table__title {
        grid-column: auto;
        font-size: 12px !important;
        line-height: 1.35;
    }

    .remix-table__purchase {
        grid-column: auto;
        justify-self: auto;
        text-align: right;
    }

    .remix-table__empty-row {
        display: table-row;
    }

    .remix-table__empty {
        display: table-cell;
        padding: 32px 16px !important;
        background: transparent;
        border: 0 !important;
        border-radius: 0;
    }


    .stage-carousel {
        padding: 62px 0 74px;
    }

    .stage-carousel__header {
        width: calc(100% - 32px);
        align-items: flex-end;
        gap: 14px;
        margin-bottom: 25px;
    }

    .stage-carousel__title {
        font-size: 32px;
    }

    .stage-carousel__intro {
        max-width: 290px;
        font-size: 12px;
    }

    .stage-carousel__controls button {
        width: 38px;
        height: 38px;
        font-size: 26px;
    }

    .stage-carousel__viewport {
        padding-inline: 16px;
        scroll-padding-inline: 16px;
    }

    .stage-carousel__item {
        width: 46vw;
        border-radius: 9px;
    }

    .stage-lightbox {
        padding: 68px 16px 24px;
    }

    .stage-lightbox img {
        max-width: 100%;
        max-height: 78vh;
    }

    .stage-lightbox__close {
        top: 14px;
        right: 14px;
    }

    .stage-lightbox__arrow {
        top: auto;
        bottom: 18px;
        transform: none;
    }

    .stage-lightbox__arrow--previous {
        left: calc(50% - 54px);
    }

    .stage-lightbox__arrow--next {
        right: calc(50% - 54px);
    }

    .discover-benefits__inner {
        grid-template-columns: 1fr;
        width: calc(100% - 32px);
    }

    .discover-benefit {
        gap: 17px;
        padding: 22px 0;
    }

    .discover-benefit + .discover-benefit {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 0;
    }

    .discover-benefit__icon.dashicons {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
        font-size: 30px;
    }

    .site-container,
    .content-shell {
        width: min(calc(100% - 32px), var(--dn-container));
    }

    .catalog-filters {
        grid-template-columns: 1fr;
    }

    .catalog-shell {
        padding-bottom: 100px;
    }

    .catalog-shell__header {
        text-align: center;
    }

    .catalog-shell__title {
        font-size: 29px;
    }

    .mixes-shell__header {
        text-align: center;
    }

    .mixes-shell__title {
        font-size: 29px;
    }

    .mixes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 12px;
    }

    .mix-card__body {
        gap: 12px;
        padding: 14px;
    }

    .mix-card__title {
        font-size: 12px;
    }

    .quote-shell__header {
        text-align: center;
    }

    .quote-shell__title {
        font-size: 29px;
    }

    .auth-shell__title {
        font-size: 29px;
    }

    .dn-account-hub {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dn-account-hub__rail {
        position: static;
    }

    .dn-account-hub__menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
    }

    .dn-account-hub__menu-item.is-logout {
        margin-top: 0;
        padding-top: 0;
        border-top: 0;
        width: 100%;
    }

    .dn-account-hub__main {
        padding: 18px 16px 22px;
    }

    .dn-account-hub__title {
        font-size: 22px;
    }

    .dn-checkout-intro__title {
        font-size: 29px;
    }

    .dn-checkout-empty__title {
        font-size: 22px;
    }

    .quote-form {
        padding: 18px;
    }

    .quote-form__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .custom-logo {
        max-width: 150px;
        max-height: 42px;
    }

    .site-branding__text {
        font-size: 15px;
    }

    .site-branding__logo {
        max-width: 102px;
        max-height: 50px;
    }

    .discover-hero {
        min-height: 900px;
        align-items: flex-start;
    }

    .discover-hero__media {
        top: auto;
        bottom: 0;
        height: 43%;
        opacity: 1;
    }

    .discover-hero__media img {
        object-position: 69% center;
    }

    .discover-hero__shade {
        background:
            linear-gradient(180deg, #121212 0%, #121212 54%, rgba(18, 18, 18, 0.96) 61%, rgba(18, 18, 18, 0.2) 82%, rgba(18, 18, 18, 0.06) 100%);
    }

    .discover-hero__inner {
        width: min(calc(100% - 32px), var(--dn-container));
        padding: 54px 0 410px;
    }

    .discover-hero__content {
        width: 100%;
        text-align: center;
    }

    .discover-hero__eyebrow {
        margin-bottom: 20px;
        font-size: 11px;
    }

    .discover-hero__title {
        max-width: 520px;
        margin-inline: auto;
        font-size: clamp(31px, 9.7vw, 48px);
        line-height: 1.02;
        letter-spacing: -0.045em;
    }

    .discover-hero__title-line {
        white-space: nowrap;
    }

    .discover-hero__rule {
        width: 92px;
        height: 3px;
        margin: 26px auto 24px;
    }

    .discover-hero__lead {
        max-width: 520px;
        margin-inline: auto;
        font-size: 13px;
        line-height: 1.58;
    }

    .discover-hero__lead--desktop {
        display: none;
    }

    .discover-hero__lead--mobile {
        display: block;
    }

    .discover-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 26px;
    }

    .discover-button {
        width: 100%;
        min-width: 0;
        min-height: 58px;
        font-size: 11px;
    }

    .site-footer__inner {
        gap: 6px 8px;
        padding-block: 18px;
        font-size: 10px;
    }

    .site-footer__social-link {
        width: 27px;
        height: 27px;
    }

    .site-footer__social-box {
        width: 21px;
        height: 21px;
    }

    .site-footer__social-box svg {
        width: 10px;
        height: 10px;
    }

    .site-footer__social-box--tiktok svg {
        width: 8px;
        height: 8px;
    }
}

/* —— /enlaces link-in-bio (móvil / bio redes) —— */
body.dn-links-page {
    min-height: 100dvh;
    background:
        radial-gradient(120% 80% at 50% -10%, rgba(255, 255, 255, 0.09), transparent 55%),
        radial-gradient(90% 60% at 100% 100%, rgba(255, 255, 255, 0.04), transparent 50%),
        #0a0a0a;
}

body.dn-links-page .site-header,
body.dn-links-page .site-footer,
body.dn-links-page .global-player,
body.dn-links-page .mobile-drawer {
    display: none !important;
}

.dn-links {
    position: relative;
    display: flex;
    min-height: 100dvh;
    align-items: center;
    justify-content: center;
    padding: max(20px, env(safe-area-inset-top)) 16px max(28px, env(safe-area-inset-bottom));
}

.dn-links__glow {
    position: absolute;
    inset: 12% 10% auto;
    height: 220px;
    pointer-events: none;
    background: radial-gradient(closest-side, rgba(255, 255, 255, 0.12), transparent 70%);
    filter: blur(8px);
}

.dn-links__card {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    padding: 28px 18px 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: dn-links-card-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes dn-links-card-in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dn-links__header {
    position: relative;
    display: grid;
    justify-items: center;
    margin: 0 0 22px;
    text-align: center;
}

.dn-links__watermark {
    position: absolute;
    top: 18px;
    left: 50%;
    margin: 0;
    color: rgba(255, 255, 255, 0.07);
    font-size: clamp(28px, 9vw, 48px);
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    pointer-events: none;
    transform: translateX(-50%);
    user-select: none;
    white-space: nowrap;
}

.dn-links__avatar {
    position: relative;
    z-index: 1;
    width: 108px;
    height: 108px;
    margin: 8px 0 14px;
    object-fit: contain;
    background: #111;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
    animation: dn-links-avatar-in 640ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}

@keyframes dn-links-avatar-in {
    from {
        opacity: 0;
        transform: scale(0.88);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.dn-links__handle {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.dn-links__sub {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.dn-links__list {
    display: grid;
    gap: 10px;
}

.dn-links__item {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
    animation: dn-links-item-in 480ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.dn-links__item:nth-child(1) { animation-delay: 60ms; }
.dn-links__item:nth-child(2) { animation-delay: 100ms; }
.dn-links__item:nth-child(3) { animation-delay: 140ms; }
.dn-links__item:nth-child(4) { animation-delay: 180ms; }
.dn-links__item:nth-child(5) { animation-delay: 220ms; }
.dn-links__item:nth-child(6) { animation-delay: 260ms; }
.dn-links__item:nth-child(7) { animation-delay: 300ms; }

@keyframes dn-links-item-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dn-links__item:hover,
.dn-links__item:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
    transform: translateY(-1px);
}

.dn-links__item:active {
    transform: translateY(0) scale(0.985);
}

.dn-links__item--primary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.dn-links__item-left {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
}

.dn-links__icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
}

.dn-links__icon svg {
    width: 18px;
    height: 18px;
}

.dn-links__label {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.dn-links__label strong {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.dn-links__label span {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dn-links__chev {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    place-items: center;
    color: rgba(255, 255, 255, 0.35);
}

.dn-links__chev svg {
    width: 16px;
    height: 16px;
}

.dn-links__footer {
    margin-top: 22px;
    text-align: center;
}

.dn-links__brand {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.dn-links__copy {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    letter-spacing: 0.04em;
}

@media (min-width: 640px) {
    .dn-links {
        padding: 40px 24px;
    }

    .dn-links__card {
        padding: 34px 24px 26px;
    }

    .dn-links__item {
        min-height: 68px;
        padding: 14px 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
