:root {
    --ink: #061b2a;
    --ink-deep: #03131f;
    --surface: #0a2638;
    --surface-raised: #0d3045;
    --surface-soft: #123b51;
    --cyan: #20cee0;
    --cyan-soft: #8cecf3;
    --gold: #f4c34e;
    --gold-soft: #ffe39b;
    --blue: #397cf6;
    --white: #f7fbfd;
    --text: #dbe7ee;
    --muted: #9cb1bd;
    --line: rgba(65, 207, 224, 0.25);
    --line-strong: rgba(65, 207, 224, 0.52);
    --gold-line: rgba(244, 195, 78, 0.48);
    --danger: #ff8b91;
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 15px;
    --radius-sm: 10px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    --header-height: 76px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 26px);
    scrollbar-color: var(--cyan) var(--ink-deep);
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 11px;
    height: 11px;
}

::-webkit-scrollbar-track {
    background: var(--ink-deep);
}

::-webkit-scrollbar-thumb {
    background: #1596a9;
    border: 2px solid var(--ink-deep);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--text);
    background: var(--ink);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.72;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

button,
summary {
    font: inherit;
}

button,
a,
summary {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p {
    text-wrap: pretty;
}

.shell {
    width: min(1220px, calc(100% - 44px));
    margin-inline: auto;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 1000;
    padding: 12px 18px;
    color: var(--ink-deep);
    background: var(--gold);
    border-radius: var(--radius-sm);
    font-weight: 800;
    text-decoration: none;
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

.reading-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1001;
    height: 4px;
    background: var(--ink-deep);
}

.reading-progress span {
    width: 0;
    height: 100%;
    display: block;
    background: var(--cyan);
}

.document-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    background: rgba(3, 19, 31, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.document-header__inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.document-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.document-brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 50%;
}

.document-brand span {
    display: grid;
    line-height: 1.2;
}

.document-brand strong {
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.12rem;
    letter-spacing: 0.035em;
}

.document-brand small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.69rem;
}

.document-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.document-nav a {
    color: #d8e7ee;
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
}

.document-nav a:hover {
    color: var(--cyan-soft);
}

.document-nav__pdf {
    min-height: 42px;
    padding: 8px 15px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink-deep) !important;
    background: var(--gold);
    border-radius: 999px;
}

.mobile-menu {
    display: none;
    position: relative;
}

.mobile-menu summary {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--white);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    cursor: pointer;
    list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
    display: none;
}

.mobile-menu > div {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(280px, calc(100vw - 32px));
    padding: 10px;
    display: grid;
    gap: 4px;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    z-index: 5;
}

.mobile-menu a {
    padding: 11px 12px;
    color: var(--white);
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: var(--ink-deep);
    background: var(--cyan);
}

.bases-hero {
    position: relative;
    isolation: isolate;
    padding: clamp(62px, 8vw, 108px) 0 92px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.bases-hero::before {
    position: absolute;
    inset: 0 0 0 54%;
    z-index: -1;
    content: "";
    background: url("../images/bases-claretiano-2026/portada-bases-2026.png") center 36% / cover no-repeat;
    opacity: 0.08;
    filter: blur(26px);
    transform: scale(1.08);
}

.bases-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.65fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
}

.bases-hero__content {
    max-width: 720px;
}

.edition-chip {
    width: fit-content;
    margin: 0 0 18px;
    padding: 8px 15px;
    color: var(--white);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.edition-chip span {
    padding-inline: 4px;
    color: var(--cyan);
}

.document-status {
    margin: 0 0 20px;
    color: var(--gold-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.document-status i {
    margin-right: 7px;
    color: var(--gold);
}

.bases-hero h1,
.section-intro h2,
.reader-heading h2,
.annex-hero h2,
.institutional-close h2,
.official-channels h2 {
    margin: 0;
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 0.98;
}

.bases-hero h1 {
    max-width: 690px;
    font-size: clamp(3.65rem, 7vw, 6.9rem);
}

.festival-name {
    max-width: 660px;
    margin: 28px 0 0;
    color: var(--cyan);
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2.15rem);
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
}

.memorial-name {
    margin: 8px 0 0;
    color: #c9d8e0;
    font-size: 0.98rem;
    font-weight: 600;
}

.hero-intro {
    max-width: 640px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.hero-facts {
    margin: 30px 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-block: 1px solid var(--line);
}

.hero-facts div {
    padding: 17px 18px 17px 0;
}

.hero-facts div + div {
    padding-left: 18px;
    border-left: 1px solid var(--line);
}

.hero-facts dt {
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-facts dd {
    margin: 5px 0 0;
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-actions,
.final-actions,
.channel-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.button {
    min-height: 50px;
    padding: 12px 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.86rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--gold {
    color: var(--ink-deep);
    background: var(--gold);
}

.button--outline {
    color: var(--white);
    background: rgba(32, 206, 224, 0.07);
    border-color: var(--line-strong);
}

.button--outline:hover {
    background: rgba(32, 206, 224, 0.14);
}

.button--quiet {
    color: #dce8ed;
    background: transparent;
    border-color: rgba(220, 232, 237, 0.18);
}

.button--whatsapp {
    color: #03160a;
    background: #4aeb7c;
    border-color: rgba(157, 255, 187, 0.8);
    box-shadow: 0 0 24px rgba(37, 211, 102, 0.2);
}

.button--whatsapp:hover {
    background: #70f49a;
    box-shadow: 0 0 34px rgba(37, 211, 102, 0.32);
}

.official-cover {
    width: min(100%, 410px);
    margin: 0 auto;
    padding: 9px;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.official-cover img {
    width: 100%;
    aspect-ratio: 2480 / 3508;
    object-fit: cover;
    border-radius: 22px;
}

.official-cover figcaption {
    padding: 12px 10px 5px;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.whatsapp-spotlight {
    position: relative;
    z-index: 2;
    padding: 0 0 18px;
    background: var(--ink-deep);
}

.whatsapp-spotlight__panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    margin-top: -42px;
    padding: clamp(28px, 4vw, 46px);
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) 250px;
    align-items: center;
    gap: clamp(24px, 4vw, 52px);
    background:
        radial-gradient(circle at 92% 12%, rgba(37, 211, 102, 0.2), transparent 35%),
        linear-gradient(125deg, #0b382f, #0a293a 50%, #0b2434);
    border: 1px solid rgba(93, 239, 138, 0.52);
    border-radius: var(--radius-xl);
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.34), 0 0 46px rgba(37, 211, 102, 0.1);
}

.whatsapp-spotlight__panel::after {
    position: absolute;
    inset: auto -10% -70% 28%;
    z-index: -1;
    height: 320px;
    content: "";
    background: radial-gradient(ellipse, rgba(32, 206, 224, 0.16), transparent 68%);
    pointer-events: none;
}

.whatsapp-spotlight__symbol {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    color: #082317;
    background: #65f493;
    border: 1px solid #a8ffc3;
    border-radius: 24px;
    box-shadow: 0 0 34px rgba(37, 211, 102, 0.28);
    font-size: 2.6rem;
}

.whatsapp-spotlight__content h2 {
    max-width: 700px;
    margin: 0;
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(2.25rem, 4.5vw, 3.7rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 0.98;
}

.whatsapp-spotlight__content > p:not(.section-kicker) {
    max-width: 720px;
    margin: 17px 0 0;
    color: #bfd4ce;
    line-height: 1.65;
}

.whatsapp-spotlight__actions {
    margin-top: 23px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
}

.whatsapp-spotlight__actions > span {
    color: #a5c4b9;
    font-size: 0.69rem;
    font-weight: 700;
}

.whatsapp-spotlight__actions > span i {
    margin-right: 6px;
    color: #65f493;
}

.whatsapp-spotlight__qr {
    width: 250px;
    justify-self: end;
    padding: 12px;
    display: block;
    color: #eafff0;
    background: rgba(3, 23, 20, 0.9);
    border: 1px solid rgba(168, 255, 195, 0.46);
    border-radius: 20px;
    text-align: center;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.whatsapp-spotlight__qr:hover,
.whatsapp-spotlight__qr:focus-visible {
    transform: translateY(-4px);
    border-color: #a8ffc3;
    box-shadow: 0 0 34px rgba(37, 211, 102, 0.28);
}

.whatsapp-spotlight__qr > span:first-child {
    padding: 2px 4px 10px;
    display: block;
    color: #9effbd;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.whatsapp-spotlight__qr-viewport {
    overflow: hidden;
    display: block;
    aspect-ratio: 1;
    background: #fff;
    border: 7px solid #fff;
    border-radius: 13px;
}

.whatsapp-spotlight__qr-viewport img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transform: scale(1.38);
}

.whatsapp-spotlight__qr strong {
    padding-top: 10px;
    display: block;
    color: #9effbd;
    font-size: 0.72rem;
}

.whatsapp-spotlight__qr strong i {
    margin-left: 5px;
    font-size: 0.62rem;
}

.tournament-overview {
    padding: 96px 0 108px;
    background: var(--ink-deep);
    border-bottom: 1px solid var(--line);
}

.section-intro {
    max-width: 760px;
}

.section-intro--compact {
    max-width: 690px;
}

.section-kicker {
    margin: 0 0 11px;
    color: var(--cyan);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.section-intro h2,
.reader-heading h2,
.official-channels h2 {
    font-size: clamp(2.55rem, 5vw, 4.6rem);
}

.section-intro > p:last-child,
.reader-heading > p:last-child {
    max-width: 670px;
    margin: 18px 0 0;
    color: var(--muted);
}

.tournament-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tournament-card {
    min-height: 235px;
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    gap: 22px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid rgba(220, 232, 237, 0.19);
    border-top: 5px solid var(--cyan);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease;
}

.tournament-card:hover {
    transform: translateY(-5px);
    border-color: var(--line-strong);
}

.tournament-card--rapid {
    border-top-color: var(--gold);
}

.tournament-card--blitz {
    border-top-color: var(--blue);
}

.tournament-card__number {
    color: var(--cyan);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.tournament-card--rapid .tournament-card__number {
    color: var(--gold);
}

.tournament-card--blitz .tournament-card__number {
    color: #80aaff;
}

.tournament-card > div {
    grid-column: 1 / -1;
    align-self: end;
}

.tournament-card > i {
    color: var(--muted);
}

.tournament-card p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.tournament-card h3 {
    margin: 0;
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.7rem, 2.7vw, 2.25rem);
    line-height: 1;
}

.tournament-card div > span {
    margin-top: 11px;
    display: block;
    color: #b6c8d1;
    font-size: 0.78rem;
}

.compatibility-panel {
    margin-top: 22px;
    padding: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: 36px;
    background: var(--surface);
    border: 1px solid var(--gold-line);
    border-radius: var(--radius-lg);
}

.compatibility-panel h3 {
    margin: 0;
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.05;
}

.compatibility-panel p:last-child {
    margin: 13px 0 0;
    color: var(--muted);
}

.compatibility-list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    list-style: none;
}

.compatibility-list li {
    min-height: 42px;
    padding: 8px 11px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #dbf7f8;
    background: rgba(32, 206, 224, 0.08);
    border: 1px solid rgba(32, 206, 224, 0.2);
    border-radius: 9px;
    font-size: 0.77rem;
    font-weight: 700;
}

.compatibility-list i {
    color: var(--cyan);
}

.compatibility-list__no {
    color: #ffd8db !important;
    background: rgba(255, 139, 145, 0.08) !important;
    border-color: rgba(255, 139, 145, 0.26) !important;
}

.compatibility-list__no i {
    color: var(--danger);
}

.document-reader {
    padding: 112px 0 124px;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
    gap: clamp(46px, 6vw, 84px);
}

.reader-toc {
    position: sticky;
    top: calc(var(--header-height) + 25px);
    max-height: calc(100vh - var(--header-height) - 50px);
    overflow-y: auto;
    scrollbar-width: thin;
}

.reader-toc details {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.reader-toc summary {
    padding: 15px 17px;
    color: var(--white);
    border-bottom: 1px solid transparent;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    list-style-position: inside;
}

.reader-toc details[open] summary {
    border-bottom-color: var(--line);
}

.reader-toc nav {
    padding: 12px 9px 14px;
}

.reader-toc nav p {
    margin: 12px 9px 6px;
    color: var(--gold);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.reader-toc nav a {
    padding: 8px 10px;
    display: block;
    color: #adc0ca;
    border-left: 2px solid transparent;
    border-radius: 0 7px 7px 0;
    font-size: 0.73rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
}

.reader-toc nav a:hover,
.reader-toc nav a.is-active {
    color: var(--white);
    background: rgba(32, 206, 224, 0.08);
    border-left-color: var(--cyan);
}

.toc-download {
    margin-top: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-deep);
    background: var(--gold);
    border-radius: var(--radius-md);
    text-decoration: none;
}

.toc-download > i {
    font-size: 1.45rem;
}

.toc-download span {
    display: grid;
    line-height: 1.2;
}

.toc-download strong {
    font-size: 0.82rem;
}

.toc-download small {
    margin-top: 3px;
    font-size: 0.63rem;
}

.reader-content {
    min-width: 0;
}

.reader-heading {
    max-width: 800px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--line);
}

.rule-section,
.annex,
.institutional-close {
    scroll-margin-top: calc(var(--header-height) + 28px);
}

.rule-section {
    max-width: 850px;
    padding: 58px 0;
    border-bottom: 1px solid var(--line);
}

.rule-section > header {
    margin-bottom: 27px;
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: start;
    gap: 18px;
}

.rule-section > header > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--ink-deep);
    background: var(--cyan);
    border-radius: var(--radius-sm);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.rule-section > header p {
    margin: 1px 0 3px;
    color: var(--gold);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.rule-section > header h2 {
    margin: 0;
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    line-height: 1;
}

.rule-section > p,
.annex section > p,
.institutional-close > p {
    max-width: 76ch;
}

.rule-section > p + p,
.annex section > p + p {
    margin-top: 16px;
}

.rule-section ul,
.annex section > ul {
    margin: 22px 0 0;
    padding-left: 1.3rem;
}

.rule-section li + li,
.annex section > ul li + li {
    margin-top: 10px;
}

.rule-section li::marker,
.annex li::marker {
    color: var(--cyan);
}

.venue-grid {
    margin: 26px 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.venue-grid section {
    padding: 20px;
    display: flex;
    gap: 15px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.venue-grid i {
    margin-top: 5px;
    color: var(--gold);
    font-size: 1.15rem;
}

.venue-grid h3 {
    margin: 0;
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.23rem;
    line-height: 1.08;
}

.venue-grid p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

.information-card,
.deadline-note,
.bond-card {
    margin-top: 26px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--surface);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
}

.information-card > i,
.deadline-note > i,
.bond-card > i {
    margin-top: 4px;
    color: var(--cyan);
    font-size: 1.2rem;
}

.information-card strong,
.deadline-note strong,
.bond-card strong {
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.18rem;
}

.information-card p,
.deadline-note p,
.bond-card p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 0.83rem;
}

.information-card a {
    color: var(--cyan-soft);
}

.information-card--gold {
    border-color: var(--gold-line);
}

.information-card--gold > i {
    color: var(--gold);
}

.inline-action {
    width: fit-content;
    margin-top: 20px;
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan-soft);
    border-bottom: 1px solid var(--cyan);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
}

.process-steps {
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.process-steps li {
    min-height: 108px;
    padding: 18px;
    display: flex;
    gap: 13px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.process-steps li + li {
    margin-top: 0;
}

.process-steps span {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    display: grid;
    place-items: center;
    color: var(--ink-deep);
    background: var(--gold);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
}

.process-steps strong {
    color: var(--white);
}

.process-steps p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

.delegation-card {
    margin-top: 28px;
    padding: 24px;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    background: var(--surface-raised);
    border: 1px solid var(--gold-line);
    border-radius: var(--radius-lg);
}

.delegation-card > i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--ink-deep);
    background: var(--gold);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
}

.delegation-card h3 {
    margin: 0;
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.7rem;
}

.delegation-card p:not(.section-kicker) {
    margin: 8px 0 0;
    color: #c5d4db;
    font-size: 0.87rem;
}

.table-scroll {
    max-width: 100%;
    margin-top: 24px;
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    background: var(--surface);
}

th,
td {
    padding: 15px 16px;
    border-bottom: 1px solid rgba(65, 207, 224, 0.16);
    text-align: left;
    vertical-align: top;
}

thead th {
    color: var(--ink-deep);
    background: var(--cyan);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

tbody th {
    color: var(--white);
    font-size: 0.84rem;
}

tbody td {
    color: #c6d5dc;
    font-size: 0.8rem;
}

tbody tr:last-child th,
tbody tr:last-child td {
    border-bottom: 0;
}

.fine-print {
    color: var(--muted);
    font-size: 0.78rem;
}

.payment-card {
    margin-top: 32px;
    padding: 28px;
    background: var(--surface-raised);
    border: 1px solid var(--gold-line);
    border-radius: var(--radius-lg);
}

.payment-card__heading {
    display: flex;
    align-items: center;
    gap: 17px;
}

.payment-card__heading > i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--ink-deep);
    background: var(--gold);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
}

.payment-card__heading h3 {
    margin: 0;
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.75rem;
    line-height: 1;
}

.payment-card__heading p:last-child {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.payment-card dl {
    margin: 26px 0 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.payment-card dl > div {
    padding: 17px;
    background: var(--ink-deep);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.payment-card dt {
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.payment-card dd {
    margin: 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.payment-card code {
    color: var(--white);
    font-family: "Inter", sans-serif;
    font-size: clamp(0.78rem, 1.5vw, 0.96rem);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.copy-button {
    min-height: 40px;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ink-deep);
    background: var(--cyan);
    border: 0;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
}

.copy-button.is-copied {
    background: var(--gold);
}

.payment-warning {
    margin: 20px 0 0;
    padding-top: 18px;
    color: #c7d5dc;
    border-top: 1px solid var(--gold-line);
    font-size: 0.8rem;
}

.payment-warning i {
    margin-right: 7px;
    color: var(--gold);
}

.deadline-note {
    border-color: var(--gold-line);
}

.deadline-note > i {
    color: var(--gold);
}

.channel-list {
    padding: 0 !important;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
}

.channel-list li {
    min-height: 116px;
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.channel-list li + li {
    margin-top: 0;
}

.channel-list i {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    color: var(--ink-deep);
    background: var(--cyan);
    border-radius: 8px;
}

.channel-list span {
    min-width: 0;
    display: grid;
}

.channel-list strong {
    color: var(--white);
    font-size: 0.8rem;
}

.channel-list a {
    margin-top: 3px;
    color: var(--cyan-soft);
    font-size: 0.78rem;
    overflow-wrap: anywhere;
}

.channel-list small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.4;
}

.annex {
    margin-top: 82px;
    padding: 8px 0 64px;
    border-bottom: 1px solid var(--line);
}

.annex-hero {
    padding: 28px;
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: center;
    gap: 22px;
    background: var(--surface-raised);
    border: 1px solid var(--line-strong);
    border-top: 6px solid var(--cyan);
    border-radius: var(--radius-lg);
}

.annex--rapid .annex-hero {
    border-color: var(--gold-line);
    border-top-color: var(--gold);
}

.annex--blitz .annex-hero {
    border-top-color: var(--blue);
}

.annex-hero > span {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    color: var(--ink-deep);
    background: var(--cyan);
    border-radius: var(--radius-md);
    font-family: "Rajdhani", sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.annex--rapid .annex-hero > span {
    background: var(--gold);
}

.annex--blitz .annex-hero > span {
    color: var(--white);
    background: var(--blue);
}

.annex-hero p:first-child {
    margin: 0 0 4px;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.annex-hero h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.annex-hero p:last-child {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.annex-stats {
    margin: 16px 0 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.annex-stats--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.annex-stats div {
    padding: 16px;
    background: var(--surface);
}

.annex-stats dt {
    color: var(--muted);
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.annex-stats dd {
    margin: 4px 0 0;
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.15;
}

.annex > section {
    padding-top: 48px;
}

.annex > section > h3 {
    margin: 0;
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.65rem, 3.3vw, 2.45rem);
    line-height: 1.08;
}

.bond-card {
    border-color: var(--gold-line);
}

.bond-card > i {
    color: var(--gold);
}

.schedule {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.schedule > section {
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.schedule h4 {
    margin: 0;
    padding-bottom: 12px;
    color: var(--gold);
    border-bottom: 1px solid var(--line);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.15rem;
}

.schedule dl {
    margin: 10px 0 0;
}

.schedule dl div {
    padding: 7px 0;
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 10px;
}

.schedule dt {
    color: var(--cyan-soft);
    font-size: 0.72rem;
    font-weight: 800;
}

.schedule dd {
    margin: 0;
    color: #c2d0d7;
    font-size: 0.75rem;
    line-height: 1.45;
}

.prize-grid {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.prize-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.prize-card summary {
    min-height: 58px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--white);
    background: var(--surface-raised);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.prize-card summary::-webkit-details-marker {
    display: none;
}

.prize-card summary i {
    color: var(--cyan);
    font-size: 0.8rem;
    transition: transform 180ms ease;
}

.prize-card[open] summary i {
    transform: rotate(180deg);
}

.prize-columns {
    padding: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.prize-columns--single {
    grid-template-columns: 1fr;
}

.prize-columns h4 {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.prize-columns ol,
.prize-columns ul {
    margin: 0;
    padding-left: 1.25rem;
}

.prize-columns li {
    color: #c5d3da;
    font-size: 0.79rem;
}

.prize-columns li + li {
    margin-top: 7px;
}

.prize-columns p {
    color: var(--muted);
    font-size: 0.75rem;
}

.official-channels {
    margin-top: 82px;
    padding: 32px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 180px;
    align-items: center;
    gap: 24px;
    background: var(--surface-raised);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-xl);
}

.official-channels h2 {
    max-width: 600px;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.official-channels > div > p:not(.section-kicker) {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--muted);
}

.official-channels figure {
    margin: 0;
    padding: 7px;
    background: var(--white);
    border-radius: var(--radius-md);
}

.official-channels figure img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 9px;
}

.official-channels figure:first-of-type img {
    object-fit: cover;
    object-position: center 40%;
}

.official-channels figcaption {
    padding: 8px 4px 3px;
    color: var(--ink-deep);
    font-size: 0.62rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.institutional-close {
    margin-top: 82px;
    padding: clamp(34px, 6vw, 62px);
    background: var(--ink-deep);
    border: 1px solid var(--gold-line);
    border-radius: var(--radius-xl);
}

.institutional-close h2 {
    max-width: 790px;
    font-size: clamp(2.75rem, 5.5vw, 5rem);
}

.institutional-close > p {
    color: #c2d1d8;
}

.institutional-close blockquote {
    margin: 34px 0;
    padding: 24px 0 24px 26px;
    color: var(--white);
    border-left: 4px solid var(--cyan);
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 600;
    line-height: 1.35;
}

.closing-call {
    margin-top: 30px;
    color: var(--cyan) !important;
    font-family: "Rajdhani", sans-serif;
    font-size: clamp(1.9rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.closing-call span {
    color: var(--gold);
    font-size: 0.55em;
}

.signature-date {
    margin-top: 46px;
    padding-top: 24px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 0.76rem;
    font-weight: 700;
}

.signatures {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.signatures > div,
.signatures > .signature-link {
    padding: 17px;
    display: grid;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.signature-link {
    color: inherit;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.signature-link:hover,
.signature-link:focus-visible {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 0 28px rgba(244, 195, 78, 0.18);
}

.signatures strong {
    color: var(--white);
    font-family: "Rajdhani", sans-serif;
    font-size: 1.08rem;
}

.signatures span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.72rem;
}

.document-footer {
    padding: 44px 0;
    background: var(--ink-deep);
    border-top: 1px solid var(--line);
}

.document-footer .shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.document-footer .shell > div {
    max-width: 490px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.document-footer img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
}

.document-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
}

.document-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
}

.document-footer nav a {
    color: #c4d5dd;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
}

.document-footer nav a:hover {
    color: var(--cyan);
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--ink-deep);
    background: var(--gold);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 170ms ease, transform 170ms ease;
}

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

@media (max-width: 1080px) {
    .bases-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
        gap: 42px;
    }

    .tournament-grid {
        grid-template-columns: 1fr;
    }

    .tournament-card {
        min-height: 170px;
    }

    .compatibility-panel {
        grid-template-columns: 1fr;
    }

    .document-reader {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .reader-toc {
        top: var(--header-height);
        z-index: 30;
        max-height: none;
        overflow: visible;
        background: var(--ink);
    }

    .reader-toc details {
        max-height: min(68vh, 560px);
        overflow-y: auto;
    }

    .reader-toc details:not([open]) {
        overflow: hidden;
    }

    .reader-toc nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 10px;
    }

    .reader-toc nav p {
        grid-column: 1 / -1;
    }

    .toc-download {
        display: none;
    }

    .official-channels {
        grid-template-columns: minmax(0, 1fr) 160px 160px;
    }

    .whatsapp-spotlight__panel {
        grid-template-columns: minmax(0, 1fr) 220px;
    }

    .whatsapp-spotlight__symbol {
        display: none;
    }

    .whatsapp-spotlight__qr {
        width: 220px;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 68px;
    }

    .shell {
        width: min(calc(100% - 32px), 1220px);
    }

    .document-header__inner {
        min-height: var(--header-height);
    }

    .document-brand img {
        width: 40px;
        height: 40px;
    }

    .document-brand small {
        display: none;
    }

    .document-nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .bases-hero {
        padding-top: 56px;
    }

    .bases-hero__grid {
        grid-template-columns: 1fr;
    }

    .official-cover {
        width: min(100%, 520px);
    }

    .tournament-overview,
    .document-reader {
        padding-block: 82px;
    }

    .hero-actions .button {
        flex: 1 1 220px;
    }

    .whatsapp-spotlight__panel {
        margin-top: -24px;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .whatsapp-spotlight__content > p:not(.section-kicker) {
        margin-inline: auto;
    }

    .whatsapp-spotlight__actions {
        justify-content: center;
    }

    .whatsapp-spotlight__qr {
        width: min(100%, 280px);
        justify-self: center;
    }

    .venue-grid,
    .schedule,
    .channel-list,
    .signatures {
        grid-template-columns: 1fr;
    }

    .payment-card dl,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .annex-stats,
    .annex-stats--five {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .official-channels > div {
        grid-column: 1 / -1;
    }

    .official-channels figure {
        width: min(100%, 220px);
        justify-self: center;
    }

    .document-footer .shell {
        align-items: flex-start;
        flex-direction: column;
    }

    .document-footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 0.96rem;
    }

    .shell {
        width: min(calc(100% - 24px), 1220px);
    }

    .document-brand strong {
        font-size: 1rem;
    }

    .bases-hero h1 {
        font-size: clamp(3.05rem, 16vw, 4.8rem);
    }

    .hero-facts {
        grid-template-columns: 1fr;
    }

    .hero-facts div {
        padding: 13px 0;
    }

    .hero-facts div + div {
        padding-left: 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .hero-actions,
    .final-actions,
    .channel-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .official-cover {
        padding: 6px;
        border-radius: 20px;
    }

    .official-cover img {
        border-radius: 15px;
    }

    .tournament-card {
        padding: 20px;
    }

    .compatibility-panel {
        padding: 22px;
    }

    .compatibility-list {
        grid-template-columns: 1fr;
    }

    .document-reader {
        width: 100%;
        padding-top: 0;
    }

    .reader-toc {
        top: var(--header-height);
        width: 100%;
        padding: 9px 12px;
    }

    .reader-toc nav {
        grid-template-columns: 1fr;
    }

    .reader-content {
        width: min(100% - 24px, 1220px);
        margin-inline: auto;
    }

    .reader-heading {
        padding-top: 66px;
    }

    .rule-section {
        padding: 48px 0;
    }

    .rule-section > header {
        grid-template-columns: 46px 1fr;
        gap: 13px;
    }

    .rule-section > header > span {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .delegation-card {
        grid-template-columns: 1fr;
    }

    .payment-card {
        padding: 21px;
    }

    .payment-card__heading {
        align-items: flex-start;
    }

    .payment-card dd {
        align-items: stretch;
        flex-direction: column;
    }

    .copy-button {
        width: 100%;
        justify-content: center;
    }

    .annex {
        margin-top: 64px;
    }

    .annex-hero {
        padding: 21px;
        grid-template-columns: 54px 1fr;
        gap: 14px;
    }

    .annex-hero > span {
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }

    .annex-stats,
    .annex-stats--five {
        grid-template-columns: 1fr 1fr;
    }

    .schedule dl div {
        grid-template-columns: 84px 1fr;
    }

    .prize-columns {
        grid-template-columns: 1fr;
    }

    .official-channels {
        padding: 22px;
        grid-template-columns: 1fr;
    }

    .official-channels > div,
    .official-channels figure {
        grid-column: auto;
    }

    .institutional-close {
        margin-inline: -2px;
        border-radius: var(--radius-lg);
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    :root {
        --white: #061b2a;
        --text: #172e3b;
        --muted: #4e606a;
    }

    body {
        color: #172e3b;
        background: #fff;
        font-size: 10pt;
    }

    .reading-progress,
    .document-header,
    .reader-toc,
    .back-to-top,
    .hero-actions,
    .final-actions,
    .channel-actions,
    .whatsapp-spotlight,
    .official-channels,
    .document-footer {
        display: none !important;
    }

    .bases-hero,
    .tournament-overview,
    .document-reader,
    .rule-section,
    .annex,
    .institutional-close {
        padding: 18px 0;
        color: #172e3b;
        background: #fff;
        border-color: #d8e0e5;
        box-shadow: none;
    }

    .bases-hero::before,
    .official-cover,
    .tournament-grid,
    .compatibility-panel {
        display: none;
    }

    .bases-hero__grid,
    .document-reader {
        display: block;
    }

    .rule-section,
    .annex {
        max-width: none;
        break-inside: auto;
    }

    .prize-card,
    .payment-card,
    .information-card,
    .deadline-note,
    .bond-card,
    .schedule > section,
    .signatures > div,
    .signatures > .signature-link {
        color: #172e3b;
        background: #fff;
        border-color: #c8d4da;
        break-inside: avoid;
    }

    a {
        color: #075f6c;
        text-decoration: none;
    }
}
