:root {
    --ink: #111827;
    --muted: #667085;
    --line: #d9e1ea;
    --paper: #ffffff;
    --soft: #f4f7fb;
    --charcoal: #101820;
    --red: #d71920;
    --red-dark: #9f1117;
    --green: #008f55;
    --yellow: #f4bd2a;
    --blue: #0f6b9f;
    --radius: 8px;
    --shadow: 0 18px 50px rgba(16, 24, 32, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--soft);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    color: #fff;
    background: rgba(10, 16, 24, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.site-header.compact {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 76px;
    padding: 14px clamp(18px, 4vw, 56px);
}

.header-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px clamp(18px, 5vw, 72px);
    color: #cbd7e2;
    background: #070b10;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.header-topline div,
.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.header-topline a,
.social-row a {
    color: #fff;
}

.header-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    min-height: 78px;
    padding: 14px clamp(18px, 5vw, 72px);
}

.brand,
.panel-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand strong,
.panel-brand strong {
    display: block;
    font-size: 1rem;
}

.brand small,
.panel-brand small {
    display: block;
    color: #c8d3df;
    font-size: 0.76rem;
}

.brand-mark,
.footer-logo {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--green));
    border: 2px solid rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    font-weight: 900;
}

.brand-mark.has-logo,
.footer-logo.has-logo {
    padding: 4px;
    background:
        linear-gradient(145deg, rgba(7, 16, 24, 0.96), rgba(12, 28, 45, 0.9));
    border-color: rgba(176, 220, 255, 0.42);
}

.brand-mark.has-logo img,
.footer-logo.has-logo img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    padding: 10px 12px;
    color: #e9eef4;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.92rem;
}

.main-nav a:hover,
.main-nav a.is-active,
.main-nav .nav-pill {
    background: rgba(255, 255, 255, 0.12);
}

.nav-pill {
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.nav-toggle {
    display: none;
    flex: 0 0 44px;
    margin-left: auto;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: transparent;
}

.nav-toggle::before {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    box-shadow: 0 -7px 0 #fff, 0 7px 0 #fff;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #fff;
}

.flash {
    width: min(1120px, calc(100% - 32px));
    margin: 16px auto;
    padding: 14px 16px;
    border-radius: var(--radius);
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(16, 24, 32, 0.08);
}

.flash.success {
    border-color: rgba(0, 143, 85, 0.3);
    background: #ecfff6;
}

.flash.warning {
    border-color: rgba(244, 189, 42, 0.42);
    background: #fff8df;
}

.flash.danger {
    border-color: rgba(215, 25, 32, 0.3);
    background: #fff0f0;
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: 28px;
    min-height: 680px;
    padding: 118px clamp(18px, 5vw, 72px) 52px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(16, 24, 32, 0.96) 0%, rgba(16, 24, 32, 0.82) 38%, rgba(16, 24, 32, 0.2) 100%),
        url("../img/hero-futsal.png") center / cover no-repeat;
}

.hero-content {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.hero-content .eyebrow,
.support-section .eyebrow,
.site-footer .eyebrow {
    color: var(--yellow);
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

.hero-content h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(3.2rem, 8vw, 6.8rem);
    line-height: 0.94;
}

.hero-copy {
    max-width: 620px;
    margin: 22px 0 0;
    color: #d7e1eb;
    font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 900;
    text-align: center;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    box-shadow: 0 12px 24px rgba(215, 25, 32, 0.24);
}

.btn.ghost {
    color: inherit;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn.tiny {
    min-height: 34px;
    padding: 0 12px;
    color: var(--ink);
    background: #edf2f7;
    font-size: 0.82rem;
}

.btn.danger {
    color: #fff;
    background: var(--red-dark);
}

.hero-board {
    display: grid;
    gap: 12px;
}

.hero-board div {
    padding: 18px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    backdrop-filter: blur(14px);
}

.hero-board strong {
    display: block;
    font-size: 2.1rem;
}

.hero-board span {
    color: #d9e3ed;
}

.stories-strip {
    display: flex;
    gap: 16px;
    width: min(1180px, calc(100% - 32px));
    margin: -34px auto 0;
    padding: 16px;
    overflow-x: auto;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.story-bubble {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-width: 92px;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
}

.story-bubble img,
.story-bubble span {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--red);
    outline: 3px solid rgba(0, 143, 85, 0.25);
}

.story-bubble span {
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--charcoal), var(--green));
    font-weight: 900;
}

.story-bubble strong {
    max-width: 92px;
    font-size: 0.82rem;
}

.section,
.support-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 76px 0;
}

.section.band {
    width: 100%;
    padding-inline: max(16px, calc((100vw - 1180px) / 2));
    background: #101820;
    color: #fff;
}

.section-heading {
    margin-bottom: 26px;
}

.section-heading h1,
.section-heading h2,
.two-columns h2,
.support-section h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.05;
}

.two-columns {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
    gap: 46px;
    align-items: start;
}

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

.timeline {
    display: grid;
    gap: 14px;
}

.timeline article,
.match-card,
.result-card,
.news-card,
.panel-card,
.auth-panel,
.admin-form,
.table-wrap,
.stat-grid article {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
}

.timeline article {
    padding: 22px;
}

.timeline span {
    color: var(--green);
    font-weight: 900;
}

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

.card-list {
    display: grid;
    gap: 14px;
}

.match-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 16px;
    align-items: center;
    padding: 16px;
}

.match-card h4,
.match-card p {
    margin: 0;
}

.match-card p,
.match-card span,
.result-card p,
.news-card p,
.muted,
.empty-state,
.small {
    color: var(--muted);
}

.date-box,
.score-box {
    display: grid;
    place-items: center;
    min-height: 72px;
    color: #fff;
    background: var(--charcoal);
    border-radius: var(--radius);
}

.date-box strong,
.score-box strong {
    font-size: 1.6rem;
}

.score-box {
    grid-template-columns: 1fr auto 1fr;
    gap: 4px;
    background: var(--green);
}

.result-grid,
.news-grid,
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.result-card,
.news-card,
.panel-card {
    padding: 20px;
}

.result-card {
    color: var(--ink);
}

.result-card span {
    color: var(--blue);
    font-weight: 900;
}

.result-card strong {
    display: block;
    margin: 12px 0;
    color: var(--green);
    font-size: 1.5rem;
}

.news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card {
    display: grid;
    gap: 16px;
    padding: 0;
    overflow: hidden;
    color: inherit;
}

.news-card img,
.news-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.news-placeholder {
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--charcoal), var(--red), var(--green));
    font-size: 3rem;
    font-weight: 900;
}

.news-card div:not(.news-placeholder) {
    padding: 0 18px 20px;
}

.news-card span {
    color: var(--red);
    font-weight: 900;
    font-size: 0.82rem;
}

.news-read-more {
    display: inline-flex;
    width: fit-content;
    min-height: 34px;
    align-items: center;
    margin-top: 4px;
    padding: 0 12px;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff2b8);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
}

.support-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    margin-bottom: 52px;
    padding: 34px;
    color: #fff;
    background: linear-gradient(135deg, var(--charcoal), #263645);
    border-radius: var(--radius);
}

.support-section p {
    max-width: 760px;
    color: #dbe5ed;
}

.pro-hero,
.support-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
    align-items: end;
    gap: 34px;
    min-height: 700px;
    padding: 132px clamp(18px, 5vw, 72px) 58px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(8, 13, 20, 0.98) 0%, rgba(14, 23, 34, 0.88) 42%, rgba(13, 22, 31, 0.36) 100%),
        url("../img/hero-futsal.png") center / cover no-repeat;
}

.support-hero {
    min-height: 620px;
}

.hero-proof {
    display: inline-grid;
    gap: 2px;
    margin-top: 34px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
}

.hero-proof span,
.competition,
.section-kicker {
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-proof strong {
    font-size: 1rem;
}

.hero-match-panel,
.support-hero-card {
    padding: 24px;
    background: rgba(10, 16, 24, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-match-panel h2,
.support-hero-card h2 {
    margin: 10px 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
}

.hero-match-panel p,
.support-hero-card p {
    color: #d9e3ed;
}

.hero-match-panel time {
    display: inline-flex;
    margin-top: 10px;
    padding: 8px 10px;
    color: #081018;
    background: var(--yellow);
    border-radius: var(--radius);
    font-weight: 900;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.hero-stat-grid div {
    padding: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
}

.hero-stat-grid strong {
    display: block;
    font-size: 1.7rem;
}

.hero-stat-grid span {
    color: #ccd8e3;
    font-size: 0.82rem;
}

.pro-stories {
    margin-top: -36px;
}

.club-command .section-heading,
.partner-benefits .section-heading {
    max-width: 860px;
}

.club-command .section-heading p:not(.eyebrow),
.team-section .section-heading p,
.support-form-copy p {
    color: var(--muted);
    font-size: 1.05rem;
}

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

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

.command-grid article,
.benefit-grid article,
.match-column,
.campaign-panel,
.support-form,
.support-hero-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
}

.command-grid article,
.benefit-grid article {
    padding: 24px;
}

.command-grid span,
.benefit-grid span {
    color: var(--red);
    font-weight: 900;
}

.command-grid h3,
.benefit-grid h3 {
    margin-bottom: 8px;
}

.command-grid p,
.benefit-grid p {
    color: var(--muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.public-athlete-card {
    overflow: hidden;
    color: #fff;
    background: #101820;
    border: 1px solid rgba(16, 24, 32, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 16px 34px rgba(16, 24, 32, 0.14);
}

.athlete-card-media {
    display: grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 4 / 5;
    background:
        linear-gradient(160deg, rgba(215, 25, 32, 0.92), rgba(0, 143, 85, 0.78)),
        url("../img/hero-futsal.png") center / cover no-repeat;
}

.athlete-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.athlete-card-media span {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    background: rgba(255, 255, 255, 0.16);
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 900;
}

.athlete-card-body {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.athlete-card-body h3,
.athlete-card-body p {
    margin: 0;
}

.athlete-card-body p {
    color: #c9d5df;
}

.athlete-card-body strong {
    color: var(--yellow);
    font-size: 1.8rem;
}

.match-center {
    color: #fff;
    background: #0b1118;
}

.match-center-inner {
    padding-block: 82px;
}

.match-center-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 16px;
}

.match-column,
.campaign-panel {
    padding: 20px;
    color: var(--ink);
}

.pro-match-card {
    box-shadow: none;
}

.campaign-row {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.campaign-row span {
    color: var(--red);
    font-weight: 900;
}

.campaign-row p {
    margin: 0;
    color: var(--muted);
}

.pro-news-card {
    min-height: 100%;
}

.partner-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 64px;
    padding: 36px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.96), rgba(0, 143, 85, 0.92)),
        url("../img/hero-futsal.png") center / cover no-repeat;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.partner-band h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.partner-band p {
    max-width: 760px;
    color: #f2f7fb;
}

.support-hero-card {
    color: var(--ink);
}

.support-hero-card span {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--green));
    border-radius: var(--radius);
    font-size: 1.8rem;
    font-weight: 900;
}

.support-hero-card p {
    color: var(--muted);
}

.support-form-section {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
    gap: 28px;
    align-items: start;
}

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

.contact-stack {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.contact-stack a {
    display: inline-flex;
    width: fit-content;
    min-height: 38px;
    align-items: center;
    padding: 0 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 900;
}

.sponsor-rail-light .sponsor-item {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
}

.sponsor-rail-light .sponsor-item small {
    color: var(--muted);
}

.site-footer {
    color: #dbe5ed;
    background: var(--charcoal);
}

.sponsor-footer {
    padding: 42px clamp(18px, 5vw, 72px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section-heading {
    max-width: 760px;
    margin-bottom: 22px;
}

.footer-section-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.05;
}

.sponsor-rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
}

.sponsor-item {
    display: grid;
    gap: 8px;
    min-height: 132px;
    padding: 16px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
}

.sponsor-item img,
.sponsor-item span {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    object-fit: contain;
    background: #fff;
}

.sponsor-item span {
    display: grid;
    place-items: center;
    color: var(--charcoal);
    font-weight: 900;
}

.sponsor-item small {
    color: #aebdca;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
    padding: 48px clamp(18px, 5vw, 72px);
}

.footer-identity {
    max-width: 520px;
}

.footer-grid h2,
.footer-grid h3 {
    color: #fff;
}

.footer-grid a {
    display: block;
    margin: 8px 0;
    color: #fff;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px clamp(18px, 5vw, 72px);
    color: #aebdca;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .developer-credit {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    color: #f8fbff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-bottom .developer-credit strong {
    color: var(--yellow);
}

.footer-bottom .developer-credit:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(244, 189, 42, 0.38);
}

.story-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(16, 24, 32, 0.76);
}

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

.story-modal-content {
    width: min(420px, 100%);
    padding: 16px;
    color: #fff;
    background: #111827;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.story-modal-content button {
    float: right;
    color: #fff;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-weight: 800;
}

.story-modal-media {
    display: grid;
    place-items: center;
    min-height: 420px;
    margin-bottom: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--red), var(--green));
    border-radius: var(--radius);
}

.story-modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-modal-media span {
    font-size: 4rem;
    font-weight: 900;
}

.auth-shell {
    display: grid;
    place-items: start center;
    min-height: 72vh;
    padding: 58px 16px;
    background:
        linear-gradient(135deg, rgba(16, 24, 32, 0.92), rgba(16, 24, 32, 0.72)),
        url("../img/hero-futsal.png") center / cover no-repeat;
}

.auth-panel {
    width: min(560px, 100%);
    padding: 28px;
}

.auth-panel.wide {
    width: min(960px, 100%);
}

.auth-panel h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3rem);
}

.unified-login-shell {
    min-height: 78vh;
    place-items: center;
    background:
        radial-gradient(circle at 76% 20%, rgba(244, 189, 42, 0.2), transparent 24%),
        linear-gradient(125deg, rgba(5, 10, 16, 0.97), rgba(14, 23, 34, 0.86)),
        url("../img/hero-futsal.png") center / cover no-repeat;
}

.unified-login-panel {
    width: min(680px, 100%);
    color: #fff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.unified-login-panel h1 {
    color: #0b1118;
}

.unified-login-panel p:not(.eyebrow),
.unified-login-panel label {
    color: #475569;
}

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

.login-routing-grid article {
    padding: 14px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(16, 24, 32, 0.95), rgba(0, 143, 85, 0.76));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
}

.login-routing-grid strong,
.login-routing-grid span {
    display: block;
}

.login-routing-grid span {
    margin-top: 4px;
    color: #dce8f1;
    font-size: 0.9rem;
}

.stack-form,
.form-grid {
    display: grid;
    gap: 16px;
}

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

.full {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 7px;
    color: #263645;
    font-weight: 800;
}

label small {
    color: var(--muted);
    font-weight: 600;
}

input,
select,
textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #cbd5df;
    border-radius: var(--radius);
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 143, 85, 0.14);
}

.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-row input {
    width: 18px;
    height: 18px;
    min-height: 18px;
}

.text-link {
    color: var(--red);
    font-weight: 900;
}

.panel-page {
    min-height: 100vh;
    background: #eef3f7;
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 40;
    display: flex;
    flex-direction: column;
    width: 276px;
    padding: 20px;
    color: #fff;
    background: #101820;
}

.panel-brand {
    margin-bottom: 22px;
}

.side-nav {
    display: grid;
    gap: 6px;
}

.side-nav a,
.logout-link {
    padding: 12px 14px;
    color: #dbe5ed;
    border-radius: var(--radius);
    font-weight: 800;
}

.side-nav a:hover,
.side-nav a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.11);
}

.logout-link {
    margin-top: auto;
    color: #fff;
    background: rgba(215, 25, 32, 0.22);
}

.panel-main {
    min-height: 100vh;
    margin-left: 276px;
}

.panel-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.panel-topbar strong,
.panel-topbar span {
    display: block;
}

.panel-topbar span {
    color: var(--muted);
    font-size: 0.9rem;
}

.panel-menu-button {
    display: none;
    min-height: 42px;
    padding: 0 14px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 900;
}

.panel-section,
.athlete-dashboard {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 56px;
}

.row-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.admin-form {
    margin-bottom: 22px;
    padding: 20px;
}

.admin-stats {
    margin-bottom: 22px;
}

.admin-dashboard-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.admin-dashboard-heading h1 {
    margin: 0;
    font-size: 1.8rem;
}

.danger-zone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
    padding: 20px;
    border-color: rgba(215, 25, 32, 0.32);
    background: #fff7f7;
}

.danger-zone h2,
.danger-zone p {
    margin: 0;
}

.danger-zone p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 6px;
    color: var(--muted);
}

.admin-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    place-items: center;
    padding: 20px;
    background: rgba(16, 24, 32, 0.76);
}

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

.admin-modal-content {
    position: relative;
    width: min(520px, 100%);
    padding: 24px;
    background: var(--paper);
    border: 1px solid rgba(215, 25, 32, 0.3);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.admin-modal-content h2 {
    margin: 0 0 10px;
}

.admin-modal-content p:not(.eyebrow) {
    color: var(--muted);
}

.admin-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    color: var(--ink);
    background: #edf2f7;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.danger-confirm-form {
    margin: 18px 0 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.stat-grid article {
    padding: 20px;
}

.stat-grid strong {
    display: block;
    color: var(--red);
    font-size: 2.2rem;
}

.stat-grid span {
    color: var(--muted);
    font-weight: 800;
}

.panel-card h2 {
    margin-top: 0;
    font-size: 1.24rem;
}

.list-row,
.notice-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
}

.notice-item {
    display: block;
}

.list-row strong,
.list-row span,
.notice-item strong,
.notice-item span {
    display: block;
}

.list-row span,
.notice-item span {
    color: var(--muted);
    font-size: 0.9rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    white-space: nowrap;
}

.badge.is-green {
    color: #055c39;
    background: #dff8ed;
}

.badge.is-yellow {
    color: #735000;
    background: #fff2c2;
}

.badge.is-red {
    color: #8f1116;
    background: #ffe1e1;
}

.badge.is-muted {
    color: #4b5563;
    background: #e9eef4;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

th,
td {
    padding: 14px;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid var(--line);
}

th {
    color: #435266;
    background: #f6f8fb;
    font-size: 0.82rem;
    text-transform: uppercase;
}

td strong,
td span {
    display: block;
}

td span {
    color: var(--muted);
    font-size: 0.9rem;
}

.actions {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 160px;
}

.actions form {
    margin: 0;
}

.athlete-dashboard {
    padding-top: 36px;
}

.athlete-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
    padding: 24px;
    color: #fff;
    background: linear-gradient(135deg, #101820, #263645);
    border-radius: var(--radius);
}

.athlete-hero h1 {
    margin: 0;
    font-size: clamp(2.2rem, 6vw, 4rem);
}

.athlete-hero p {
    color: #dbe5ed;
}

.athlete-avatar {
    display: grid;
    place-items: center;
    width: 112px;
    height: 112px;
    flex: 0 0 auto;
    overflow: hidden;
    color: #fff;
    background: var(--red);
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.32);
    font-size: 2rem;
    font-weight: 900;
}

.athlete-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1050px) {
    .result-grid,
    .stat-grid,
    .team-grid,
    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-grid,
    .split-grid,
    .dashboard-grid,
    .two-columns,
    .pro-hero,
    .support-hero,
    .match-center-grid,
    .support-form-section {
        grid-template-columns: 1fr;
    }

    .hero-section {
        grid-template-columns: 1fr;
        min-height: 620px;
    }

    .pro-hero,
    .support-hero {
        min-height: 640px;
    }

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

@media (max-width: 860px) {
    .nav-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav-toggle span {
        display: none;
    }

    .main-nav {
        position: absolute;
        inset: calc(100% + 8px) 0 auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        background: #101820;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .site-header.compact .main-nav {
        position: static;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0;
        border: 0;
        box-shadow: none;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.2s ease;
    }

    .sidebar.is-open {
        transform: translateX(0);
    }

    .panel-main {
        margin-left: 0;
    }

    .panel-menu-button {
        display: inline-flex;
        align-items: center;
    }

    .footer-grid,
    .footer-bottom,
    .support-section,
    .partner-band,
    .header-topline {
        display: grid;
    }
}

@media (max-width: 640px) {
    .site-header {
        min-height: 70px;
        padding-inline: 14px;
    }

    .hero-section {
        min-height: 580px;
        padding: 92px 16px 40px;
        background-position: center right;
    }

    .pro-hero,
    .support-hero {
        min-height: 620px;
        padding: 98px 16px 42px;
        background-position: center right;
    }

    .hero-content h1 {
        font-size: clamp(2.8rem, 16vw, 4.2rem);
    }

    .stories-strip {
        width: calc(100% - 20px);
        margin-top: -22px;
    }

    .section,
    .support-section,
    .panel-section,
    .athlete-dashboard {
        width: calc(100% - 20px);
        padding-block: 48px;
    }

    .section.band {
        width: 100%;
    }

    .form-grid,
    .result-grid,
    .stat-grid,
    .news-grid,
    .team-grid,
    .benefit-grid,
    .support-form,
    .hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .match-card {
        grid-template-columns: 62px 1fr;
    }

    .date-box,
    .score-box {
        min-height: 62px;
    }

    .auth-panel,
    .admin-form,
    .support-section,
    .panel-card,
    .partner-band,
    .support-form,
    .hero-match-panel {
        padding: 18px;
    }

    .row-heading,
    .athlete-hero,
    .list-row,
    .actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .athlete-avatar {
        width: 88px;
        height: 88px;
    }
}

/* Hero alignment pass */
.public-page .pro-hero {
    grid-template-columns: minmax(0, 640px) minmax(360px, 430px);
    align-items: center;
    justify-content: space-between;
    gap: clamp(28px, 5vw, 74px);
    min-height: 640px;
    padding-top: clamp(76px, 10vh, 104px);
    padding-bottom: 46px;
}

.public-page .pro-hero .hero-content {
    max-width: 640px;
    align-self: center;
}

.public-page .pro-hero .hero-content h1 {
    max-width: none;
    font-size: clamp(3.8rem, 5vw, 5.25rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.public-page .pro-hero .hero-copy {
    max-width: 570px;
    margin-top: 18px;
    font-size: clamp(1rem, 1.4vw, 1.13rem);
}

.public-page .pro-hero .hero-actions {
    margin-top: 22px;
}

.public-page .hero-metrics {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 610px;
    gap: 8px;
    margin-top: 26px;
}

.public-page .hero-metrics div {
    min-height: 72px;
    padding: 12px 10px;
}

.public-page .hero-metrics strong {
    font-size: clamp(1.45rem, 2.2vw, 1.95rem);
}

.public-page .hero-metrics span {
    font-size: 0.68rem;
}

.public-page .hero-side-stack {
    width: min(100%, 430px);
    align-self: center;
    justify-self: end;
    gap: 12px;
}

.public-page .hero-player-stage,
.public-page .hero-match-panel {
    width: 100%;
    padding: 18px;
}

.public-page .hero-player-card {
    grid-template-columns: 46px 1fr auto;
    padding: 9px;
}

.public-page .mini-player-photo,
.public-page .club-crest {
    width: 46px;
    height: 46px;
}

.public-page .hero-match-panel h2 {
    margin: 12px 0 8px;
    font-size: clamp(1.72rem, 2.7vw, 2.35rem);
    line-height: 1.05;
}

.public-page .hero-match-panel p {
    margin: 0;
}

.public-page .hero-match-panel time {
    margin-top: 18px;
}

.public-page .hero-scoreline {
    margin: 14px 0 8px;
}

@media (max-width: 1050px) {
    .public-page .pro-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 82px;
    }

    .public-page .hero-side-stack,
    .public-page .pro-hero .hero-content {
        width: 100%;
        max-width: 720px;
        justify-self: start;
    }

    .public-page .hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 720px;
    }
}

@media (max-width: 640px) {
    .public-page .pro-hero {
        padding: 62px 16px 36px;
    }

    .public-page .pro-hero .hero-content h1 {
        font-size: clamp(3.05rem, 14vw, 4rem);
    }

    .public-page .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-page .player-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .public-page .hero-player-card {
        grid-template-columns: 44px 1fr auto;
    }
}

/* Premium public experience */
.public-page {
    background:
        linear-gradient(180deg, #071018 0%, #eef3f7 42%, #f6f8fb 100%);
}

.public-page .site-header {
    background: rgba(5, 10, 16, 0.78);
    border-bottom-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(22px) saturate(1.25);
}

.public-page .site-header::after {
    content: "";
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 189, 42, 0.9), rgba(0, 143, 85, 0.8), transparent);
}

.header-topline {
    background: linear-gradient(90deg, rgba(215, 25, 32, 0.18), rgba(0, 143, 85, 0.16), rgba(244, 189, 42, 0.14));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon-link,
.header-topline a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.social-icon-link svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.brand {
    isolation: isolate;
}

.brand-mark,
.footer-logo {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(244, 189, 42, 0.24), 0 0 28px rgba(215, 25, 32, 0.32);
}

.brand-mark::before,
.footer-logo::before {
    content: "";
    position: absolute;
    inset: -35%;
    background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.46), transparent 62%);
    transform: translateX(-70%) rotate(18deg);
    transition: transform 0.55s ease;
}

.brand:hover .brand-mark::before,
.footer-logo:hover::before {
    transform: translateX(70%) rotate(18deg);
}

.brand-mark span,
.footer-logo span,
.brand-mark img,
.footer-logo img {
    position: relative;
    z-index: 1;
}

.main-nav {
    padding: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.main-nav a {
    position: relative;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    transform: translateY(-1px);
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.main-nav .nav-pill {
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff3bf);
    border-color: rgba(244, 189, 42, 0.65);
    box-shadow: 0 0 26px rgba(244, 189, 42, 0.25);
}

.btn {
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(16, 24, 32, 0.12);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: translateX(-120%);
    transition: transform 0.42s ease;
}

.btn:hover::before {
    transform: translateX(120%);
}

.btn.primary {
    background: linear-gradient(135deg, #ff2630, #b70f16 56%, #067e51);
    box-shadow: 0 16px 34px rgba(215, 25, 32, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.btn.ghost {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
}

.pro-hero,
.support-hero {
    position: relative;
    isolation: isolate;
    grid-template-columns: minmax(0, 0.95fr) minmax(350px, 0.58fr);
    min-height: 760px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(3, 8, 14, 0.99) 0%, rgba(8, 15, 23, 0.9) 39%, rgba(5, 12, 18, 0.36) 100%),
        linear-gradient(0deg, rgba(0, 143, 85, 0.16), transparent 45%),
        url("../img/hero-futsal.png") center / cover no-repeat;
}

.pro-hero::before,
.support-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(115deg, transparent 0 42%, rgba(244, 189, 42, 0.18) 43%, transparent 56%),
        linear-gradient(75deg, transparent 0 52%, rgba(215, 25, 32, 0.16) 53%, transparent 66%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 92px);
    mix-blend-mode: screen;
    opacity: 0.9;
}

.pro-hero::after,
.support-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(4, 9, 14, 0.96));
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.28;
    background-image: radial-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, #000, transparent 76%);
    animation: premiumDrift 18s linear infinite;
}

@keyframes premiumDrift {
    from { background-position: 0 0; }
    to { background-position: 84px 42px; }
}

.hero-content {
    position: relative;
    max-width: 860px;
}

.hero-content h1 {
    text-shadow: 0 16px 40px rgba(0, 0, 0, 0.38), 0 0 34px rgba(215, 25, 32, 0.18);
}

.hero-copy {
    max-width: 720px;
}

.hero-metrics,
.support-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(86px, 1fr));
    gap: 10px;
    max-width: 760px;
    margin-top: 34px;
}

.support-metrics {
    grid-template-columns: repeat(4, minmax(86px, 1fr));
}

.hero-metrics div,
.support-metrics div {
    padding: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 30px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(16px);
}

.hero-metrics strong,
.support-metrics strong {
    display: block;
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1;
}

.hero-metrics span,
.support-metrics span {
    color: #d9e3ed;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-side-stack {
    display: grid;
    gap: 16px;
}

.hero-player-stage,
.hero-match-panel,
.support-hero-card,
.support-form,
.match-column,
.campaign-panel,
.command-grid article,
.benefit-grid article,
.support-plan-grid article {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.64);
    box-shadow: 0 22px 54px rgba(5, 10, 16, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(18px) saturate(1.2);
}

.hero-player-stage,
.hero-match-panel {
    padding: 20px;
    color: #fff;
    background: linear-gradient(180deg, rgba(10, 16, 24, 0.78), rgba(10, 16, 24, 0.58));
    border-color: rgba(255, 255, 255, 0.18);
}

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

.hero-player-card {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
}

.mini-player-photo,
.club-crest {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--green));
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50%;
    font-weight: 900;
}

.mini-player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-player-card strong,
.hero-player-card span {
    display: block;
}

.hero-player-card span {
    color: #cbd7e2;
    font-size: 0.86rem;
}

.hero-player-card small {
    padding: 4px 7px;
    color: #071018;
    background: var(--yellow);
    border-radius: 999px;
    font-weight: 900;
}

.hero-scoreline,
.match-teams {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0 8px;
}

.hero-scoreline strong,
.match-teams strong {
    color: var(--yellow);
    font-size: 0.8rem;
}

.club-crest.opponent {
    background: linear-gradient(135deg, #1f2937, #52616f);
}

.club-crest.small {
    width: 34px;
    height: 34px;
    font-size: 0.74rem;
}

.stories-strip {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(255, 255, 255, 0.68);
    backdrop-filter: blur(18px);
}

.story-bubble {
    transition: transform 0.2s ease;
}

.story-bubble:hover {
    transform: translateY(-3px);
}

.story-bubble img,
.story-bubble span {
    box-shadow: 0 0 0 4px rgba(244, 189, 42, 0.18), 0 12px 24px rgba(16, 24, 32, 0.16);
}

.section-heading h2 {
    color: #0b1118;
    text-wrap: balance;
}

.match-center .section-heading h2 {
    color: #fff;
}

.command-grid article,
.benefit-grid article,
.support-plan-grid article {
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.command-grid article::before,
.benefit-grid article::before,
.support-plan-grid article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
}

.command-grid article:hover,
.benefit-grid article:hover,
.support-plan-grid article:hover,
.public-athlete-card:hover,
.pro-news-card:hover,
.pro-match-card:hover,
.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 62px rgba(16, 24, 32, 0.18);
}

.public-athlete-card {
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(160deg, rgba(8, 13, 20, 0.98), rgba(16, 24, 32, 0.92)),
        linear-gradient(45deg, rgba(215, 25, 32, 0.24), rgba(0, 143, 85, 0.24));
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.public-athlete-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(135deg, transparent 20%, rgba(244, 189, 42, 0.08) 21% 22%, transparent 23%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 24px);
    opacity: 0.8;
}

.captain-ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 6px 9px;
    color: #071018;
    background: var(--yellow);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.athlete-card-media {
    position: relative;
}

.athlete-card-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(8, 13, 20, 0.92));
}

.athlete-card-body {
    position: relative;
}

.player-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 4px;
}

.player-stats div {
    padding: 9px 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.player-stats strong {
    display: block;
    color: var(--yellow);
    font-size: 1.2rem;
}

.player-stats span {
    color: #b8c6d1;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.player-profile-link {
    display: inline-flex;
    justify-content: center;
    min-height: 36px;
    align-items: center;
    margin-top: 6px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    font-weight: 900;
}

.match-center {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #071018, #0d1720),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 80px);
}

.match-center::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(110deg, transparent 0 42%, rgba(244, 189, 42, 0.1) 43%, transparent 52%),
        linear-gradient(70deg, transparent 0 56%, rgba(0, 143, 85, 0.12) 57%, transparent 68%);
    pointer-events: none;
}

.match-center-inner {
    position: relative;
}

.pro-match-card {
    background: linear-gradient(180deg, #fff, #f7fafc);
    border: 1px solid rgba(217, 225, 234, 0.9);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.date-box,
.score-box {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 18px rgba(16, 24, 32, 0.14);
}

.campaign-panel {
    background: linear-gradient(180deg, #ffffff, #f3f7fb);
}

.campaign-row {
    transition: padding-left 0.2s ease;
}

.campaign-row:hover {
    padding-left: 8px;
}

.pro-news-card {
    position: relative;
    border: 1px solid rgba(217, 225, 234, 0.92);
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pro-news-card img,
.news-placeholder {
    transition: transform 0.34s ease;
}

.pro-news-card:hover img,
.pro-news-card:hover .news-placeholder {
    transform: scale(1.04);
}

.news-placeholder {
    background:
        linear-gradient(135deg, rgba(8, 13, 20, 0.92), rgba(215, 25, 32, 0.86), rgba(0, 143, 85, 0.8)),
        url("../img/hero-futsal.png") center / cover no-repeat;
    font-size: 1.3rem;
    text-transform: uppercase;
}

.news-placeholder span {
    color: #fff;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
}

.news-detail-shell {
    min-height: 72vh;
    padding: clamp(42px, 7vw, 82px) 16px;
    background:
        linear-gradient(180deg, #071018 0%, #eef3f7 38%, #f6f8fb 100%);
}

.news-detail-card {
    width: min(1040px, 100%);
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(217, 225, 234, 0.92);
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(16, 24, 32, 0.16);
}

.news-detail-card > .text-link {
    display: inline-flex;
    margin: 22px 24px 0;
}

.news-detail-header {
    padding: clamp(24px, 5vw, 52px);
}

.news-detail-header h1 {
    max-width: 900px;
    margin: 0;
    color: #0b1118;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 0.98;
}

.news-detail-header > p:not(.eyebrow) {
    max-width: 760px;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.news-detail-meta span,
.news-detail-meta time {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    color: #071018;
    background: #edf2f7;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
}

.news-detail-meta span {
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--green));
    border-color: transparent;
}

.news-detail-media img,
.news-detail-media .news-placeholder {
    width: 100%;
    max-height: 520px;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    border-radius: 0;
}

.news-detail-content {
    max-width: 820px;
    padding: clamp(24px, 5vw, 52px);
}

.news-detail-content p {
    margin: 0 0 18px;
    color: #263645;
    font-size: 1.08rem;
    line-height: 1.78;
}

.news-related-section {
    padding-bottom: 0;
}

.news-article-page {
    min-height: 72vh;
    background:
        linear-gradient(180deg, #071018 0%, #101820 48%, #eef3f7 48%, #f6f8fb 100%);
}

.news-article-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    min-height: clamp(560px, 76vh, 760px);
    padding: clamp(96px, 12vw, 150px) max(24px, calc((100vw - 1180px) / 2)) clamp(86px, 10vw, 132px);
    overflow: hidden;
    color: #fff;
}

.news-article-hero::before,
.news-article-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.news-article-hero::before {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(5, 10, 16, 0.96), rgba(8, 13, 20, 0.74) 52%, rgba(0, 143, 85, 0.28)),
        linear-gradient(0deg, rgba(5, 10, 16, 0.9), transparent 54%);
}

.news-article-hero::after {
    z-index: -1;
    background:
        radial-gradient(circle at 78% 20%, rgba(244, 189, 42, 0.22), transparent 22%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 88px);
    mix-blend-mode: screen;
}

.news-article-hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.news-article-hero-media img,
.news-article-generated-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-article-generated-media {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(8, 13, 20, 0.7), rgba(215, 25, 32, 0.58), rgba(0, 143, 85, 0.5)),
        url("../img/hero-futsal.png") center / cover no-repeat;
}

.news-article-generated-media span {
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: clamp(1rem, 2vw, 1.45rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    backdrop-filter: blur(14px);
}

.news-article-hero-content {
    width: min(920px, 100%);
}

.news-back-link {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    margin-bottom: 22px;
    padding: 0 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 900;
    backdrop-filter: blur(14px);
}

.news-article-hero-content h1 {
    max-width: 980px;
    margin: 0;
    color: #fff;
    font-size: clamp(3rem, 6vw, 6.5rem);
    line-height: 0.92;
    letter-spacing: 0;
    text-shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
}

.news-article-hero-content > p:not(.eyebrow) {
    max-width: 760px;
    margin: 24px 0 0;
    color: #e3edf6;
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.news-article-hero .news-detail-meta span,
.news-article-hero .news-detail-meta time {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.news-article-hero .news-detail-meta span:first-child {
    background: linear-gradient(135deg, var(--red), var(--green));
    border-color: transparent;
}

.news-article-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 800px) minmax(280px, 340px);
    gap: 24px;
    width: min(1180px, calc(100% - 32px));
    margin: -64px auto 0;
    padding-bottom: clamp(58px, 7vw, 92px);
}

.news-article-body,
.news-side-card,
.news-empty-state {
    background: #fff;
    border: 1px solid rgba(217, 225, 234, 0.94);
    border-radius: var(--radius);
    box-shadow: 0 28px 76px rgba(16, 24, 32, 0.16);
}

.news-article-body {
    padding: clamp(28px, 5vw, 58px);
}

.news-article-body p {
    margin: 0 0 20px;
    color: #263645;
    font-size: clamp(1.06rem, 1.3vw, 1.18rem);
    line-height: 1.82;
}

.news-article-body p:first-child {
    color: #152233;
    font-size: clamp(1.16rem, 1.55vw, 1.35rem);
    font-weight: 700;
}

.news-article-sidebar {
    position: sticky;
    top: 108px;
    display: grid;
    gap: 14px;
}

.news-side-card {
    padding: 22px;
}

.news-side-card strong,
.news-side-card span {
    display: block;
}

.news-side-card strong {
    color: #0b1118;
    font-size: 1.2rem;
    line-height: 1.18;
}

.news-side-card span {
    margin-top: 10px;
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 900;
}

.news-side-card p {
    color: var(--muted);
}

.news-side-card.dark {
    color: #fff;
    background:
        linear-gradient(145deg, rgba(16, 24, 32, 0.96), rgba(0, 143, 85, 0.78)),
        url("../img/hero-futsal.png") center / cover no-repeat;
    border-color: rgba(255, 255, 255, 0.18);
}

.news-side-card.dark strong,
.news-side-card.dark p {
    color: #fff;
}

.news-related-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 clamp(64px, 8vw, 104px);
}

.news-empty-state {
    width: min(760px, calc(100% - 32px));
    margin: clamp(58px, 8vw, 96px) auto;
    padding: clamp(28px, 5vw, 52px);
}

.news-empty-state h1 {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    line-height: 1;
}

@media (max-width: 920px) {
    .news-article-layout {
        grid-template-columns: 1fr;
    }

    .news-article-sidebar {
        position: static;
    }
}

@media (max-width: 640px) {
    .news-article-hero {
        min-height: 620px;
        padding: 72px 16px 96px;
    }

    .news-article-hero-content h1 {
        font-size: clamp(2.6rem, 13vw, 4rem);
    }

    .news-article-layout {
        width: min(100% - 24px, 1180px);
        margin-top: -48px;
    }
}

.partner-band,
.support-hero {
    box-shadow: 0 30px 70px rgba(16, 24, 32, 0.22);
}

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

.support-plan-grid article {
    padding: 24px;
}

.support-plan-grid article > span {
    color: var(--red);
    font-weight: 900;
    text-transform: uppercase;
}

.support-plan-grid article strong {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    margin-top: 10px;
    padding: 0 10px;
    color: #071018;
    background: var(--yellow);
    border-radius: 999px;
}

.support-plan-grid .is-featured {
    color: #fff;
    background:
        linear-gradient(145deg, rgba(215, 25, 32, 0.94), rgba(16, 24, 32, 0.94)),
        url("../img/hero-futsal.png") center / cover no-repeat;
    border-color: rgba(244, 189, 42, 0.42);
}

.support-plan-grid .is-featured p,
.support-plan-grid .is-featured span {
    color: #f5f8fb;
}

.support-form input,
.support-form select,
.support-form textarea {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(203, 213, 223, 0.9);
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #091018, #05080c),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 74px);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(115deg, transparent, rgba(0, 143, 85, 0.08), transparent 54%, rgba(215, 25, 32, 0.08));
    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("../img/footer-chuteiras.jpg") center / cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
}

.site-footer > * {
    position: relative;
    z-index: 2;
}

.site-footer .footer-logo.has-logo {
    width: 58px;
    height: 58px;
    padding: 5px;
}

.sponsor-item {
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.site-footer .sponsor-item {
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(14px);
}

@media (max-width: 1050px) {
    .pro-hero,
    .support-hero {
        grid-template-columns: 1fr;
    }

    .hero-metrics,
    .support-metrics,
    .support-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .public-page .site-header {
        background: rgba(5, 10, 16, 0.94);
    }

    .main-nav {
        border-radius: var(--radius);
        background: rgba(7, 16, 24, 0.98);
    }

    .main-nav .nav-pill {
        color: #071018;
    }
}

@media (max-width: 640px) {
    .site-header {
        min-height: 0;
        padding-inline: 0;
    }

    .header-main {
        min-height: 70px;
        padding-inline: 14px;
    }

    .header-topline {
        padding-inline: 14px;
    }

    .brand small {
        display: none;
    }

    .pro-hero,
    .support-hero {
        min-height: 720px;
    }

    .hero-metrics,
    .support-metrics,
    .support-plan-grid,
    .player-stats {
        grid-template-columns: 1fr;
    }

    .hero-player-card {
        grid-template-columns: 44px 1fr;
    }

    .hero-player-card small {
        width: fit-content;
    }

    .login-routing-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium revision: hero, WOW section and attendance control */
.public-page .pro-hero {
    grid-template-columns: minmax(0, 720px) minmax(320px, 460px);
    align-items: center;
    justify-content: space-between;
    gap: clamp(26px, 5vw, 80px);
    min-height: clamp(620px, 76vh, 760px);
    padding-top: clamp(92px, 11vh, 132px);
    padding-bottom: clamp(44px, 7vh, 76px);
    background:
        radial-gradient(circle at 76% 26%, rgba(244, 189, 42, 0.18), transparent 28%),
        radial-gradient(circle at 58% 58%, rgba(0, 143, 85, 0.18), transparent 36%),
        linear-gradient(90deg, rgba(5, 10, 16, 0.9) 0%, rgba(8, 16, 24, 0.7) 46%, rgba(6, 12, 18, 0.18) 100%),
        url("../img/hero-futsal.png") center / cover no-repeat;
}

.public-page .pro-hero::before {
    opacity: 0.66;
}

.public-page .pro-hero::after {
    height: 34%;
}

.public-page .pro-hero .hero-content {
    max-width: 720px;
}

.public-page .pro-hero .hero-content h1 {
    max-width: 720px;
    font-size: clamp(3.7rem, 6.1vw, 6.35rem);
    line-height: 0.94;
    letter-spacing: 0;
}

.public-page .pro-hero .hero-copy {
    max-width: 610px;
    color: #eef5fb;
}

.public-page .hero-side-stack {
    width: min(100%, 460px);
    justify-self: end;
}

.public-page .hero-player-stage,
.public-page .hero-match-panel {
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.wow-section {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(24px, 4vw, 46px);
    margin-top: clamp(34px, 5vw, 66px);
    margin-bottom: clamp(48px, 6vw, 86px);
    padding: clamp(28px, 5vw, 54px);
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(6, 11, 18, 0.96), rgba(16, 24, 32, 0.9) 50%, rgba(0, 143, 85, 0.72)),
        url("../img/hero-futsal.png") center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 34px 90px rgba(5, 10, 16, 0.28);
}

.wow-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 78% 20%, rgba(244, 189, 42, 0.24), transparent 24%),
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 84px);
    mix-blend-mode: screen;
}

.wow-copy h2 {
    max-width: 680px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.1rem, 4.1vw, 4.15rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.wow-copy p:not(.eyebrow) {
    max-width: 580px;
    color: #dfeaf3;
    font-size: 1.05rem;
}

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

.wow-grid article {
    min-height: 188px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.wow-grid article:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
}

.wow-grid span {
    display: block;
    color: var(--yellow);
    font-size: clamp(2.3rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
}

.wow-grid strong {
    display: block;
    margin-top: 12px;
    color: #fff;
    font-size: 1rem;
}

.wow-grid p {
    margin-bottom: 0;
    color: #dbe6ef;
    font-size: 0.92rem;
}

.attendance-selector {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    align-items: end;
    gap: 16px;
}

.attendance-summary {
    margin-bottom: 22px;
}

.attendance-board,
.attendance-history {
    margin-bottom: 24px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.attendance-call-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding: 18px;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(16, 24, 32, 0.96), rgba(215, 25, 32, 0.78)),
        url("../img/hero-futsal.png") center / cover no-repeat;
    border-radius: var(--radius);
}

.attendance-call-header h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.45rem, 2.6vw, 2.2rem);
}

.attendance-call-header span {
    display: block;
    color: #dce7ef;
    font-weight: 800;
}

.attendance-list {
    display: grid;
    gap: 12px;
}

.attendance-row {
    display: grid;
    grid-template-columns: minmax(240px, 1.05fr) minmax(300px, 0.95fr) minmax(220px, 0.85fr);
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.attendance-athlete {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.attendance-athlete strong,
.attendance-athlete span {
    display: block;
}

.attendance-athlete span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

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

.presence-option {
    position: relative;
    cursor: pointer;
}

.presence-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.presence-option span {
    display: grid;
    min-height: 42px;
    place-items: center;
    padding: 0 10px;
    color: #344154;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-size: 0.84rem;
    font-weight: 900;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.presence-option:hover span {
    transform: translateY(-1px);
}

.presence-option input:checked + span {
    color: #fff;
    box-shadow: 0 12px 24px rgba(16, 24, 32, 0.18);
}

.presence-option.is-presente input:checked + span {
    background: linear-gradient(135deg, var(--green), #087047);
    border-color: rgba(0, 143, 85, 0.45);
}

.presence-option.is-falta input:checked + span {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-color: rgba(215, 25, 32, 0.45);
}

.presence-option.is-justificado input:checked + span {
    color: #111827;
    background: linear-gradient(135deg, var(--yellow), #ffe08a);
    border-color: rgba(244, 189, 42, 0.55);
}

.attendance-note {
    display: grid;
    gap: 6px;
}

.attendance-note span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.attendance-note input {
    min-height: 42px;
}

.attendance-footer-actions {
    justify-content: flex-end;
}

.attendance-mini-counts {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: max-content;
    padding: 7px 10px;
    color: #344154;
    background: #f3f6fa;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 900;
}

.attendance-mini-counts b {
    color: var(--red);
}

@media (max-width: 1050px) {
    .public-page .pro-hero,
    .wow-section {
        grid-template-columns: 1fr;
    }

    .public-page .hero-side-stack {
        justify-self: start;
        width: min(100%, 720px);
    }

    .attendance-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .wow-grid,
    .attendance-options,
    .attendance-selector {
        grid-template-columns: 1fr;
    }

    .attendance-call-header {
        align-items: stretch;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .public-page .pro-hero {
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 36px;
    }

    .public-page .pro-hero .hero-content h1 {
        font-size: clamp(3.05rem, 15vw, 4.15rem);
    }

    .wow-section {
        padding: 24px 18px;
    }

    .wow-grid article {
        min-height: 0;
        padding: 16px;
    }

    .wow-grid span {
        font-size: 2.05rem;
    }

    .attendance-board,
    .attendance-history {
        padding: 14px;
    }
}

/* Public home refinement: full-width professional impact band */
.club-showcase {
    position: relative;
    isolation: isolate;
    width: 100%;
    margin: 0;
    padding: clamp(70px, 8vw, 120px) max(24px, calc((100vw - 1460px) / 2));
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(5, 10, 16, 0.98), rgba(9, 17, 27, 0.9) 48%, rgba(0, 143, 85, 0.64)),
        url("../img/hero-futsal.png") center / cover no-repeat;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.club-showcase::before,
.club-showcase::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.club-showcase::before {
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 72% 24%, rgba(244, 189, 42, 0.28), transparent 22%),
        radial-gradient(circle at 18% 78%, rgba(215, 25, 32, 0.2), transparent 30%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 86px);
    mix-blend-mode: screen;
}

.club-showcase::after {
    inset: auto 0 0;
    z-index: -1;
    height: 44%;
    background: linear-gradient(180deg, transparent, rgba(5, 10, 16, 0.96));
}

.showcase-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
    align-items: center;
    gap: clamp(28px, 5vw, 76px);
}

.showcase-copy h2 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.6rem, 5.2vw, 5.9rem);
    line-height: 0.94;
    letter-spacing: 0;
    text-shadow: 0 24px 62px rgba(0, 0, 0, 0.46);
}

.showcase-copy p:not(.eyebrow) {
    max-width: 720px;
    margin: 22px 0 0;
    color: #e6eef6;
    font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.showcase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.showcase-panel {
    display: grid;
    gap: 14px;
}

.showcase-live-card,
.showcase-metrics article {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.showcase-live-card {
    min-height: 230px;
    padding: 26px;
}

.showcase-live-card span,
.showcase-metrics span {
    display: block;
    color: var(--yellow);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.showcase-live-card strong {
    display: block;
    margin-top: 16px;
    color: #fff;
    font-size: clamp(1.65rem, 3vw, 2.8rem);
    line-height: 1;
}

.showcase-live-card p {
    color: #dce8f1;
}

.showcase-live-card time {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    margin-top: 14px;
    padding: 0 12px;
    color: #071018;
    background: var(--yellow);
    border-radius: 999px;
    font-weight: 900;
}

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

.showcase-metrics article {
    min-height: 134px;
    padding: 20px;
}

.showcase-metrics strong {
    display: block;
    color: #fff;
    font-size: clamp(2.1rem, 4vw, 3.7rem);
    line-height: 1;
}

.showcase-metrics span {
    margin-top: 10px;
    color: #dce8f1;
}

.club-command {
    position: relative;
    z-index: 2;
    width: min(1460px, calc(100% - 48px));
    margin-top: -52px;
    margin-bottom: clamp(48px, 6vw, 86px);
    padding: clamp(28px, 4vw, 46px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 251, 0.9)),
        radial-gradient(circle at 82% 10%, rgba(244, 189, 42, 0.22), transparent 24%);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(16, 24, 32, 0.18);
}

.club-command .section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
    align-items: end;
    gap: 26px;
    max-width: none;
}

.club-command .section-heading h2 {
    max-width: 720px;
}

.club-command .section-heading p:not(.eyebrow) {
    margin: 0;
    font-size: 1rem;
}

.club-command .command-grid {
    gap: 14px;
}

.club-command .command-grid article {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 254, 0.88));
    border-color: rgba(203, 213, 223, 0.82);
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.12);
}

.club-command .command-grid article::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
}

.club-command .command-grid span {
    display: inline-flex;
    min-height: 34px;
    min-width: 34px;
    align-items: center;
    justify-content: center;
    color: #071018;
    background: var(--yellow);
    border-radius: 999px;
}

@media (max-width: 980px) {
    .showcase-inner,
    .club-command .section-heading {
        grid-template-columns: 1fr;
    }

    .club-command {
        margin-top: -30px;
    }
}

@media (max-width: 640px) {
    .club-showcase {
        padding: 48px 16px 76px;
    }

    .showcase-copy h2 {
        font-size: clamp(2.35rem, 13vw, 3.8rem);
    }

    .showcase-metrics {
        grid-template-columns: 1fr;
    }

    .showcase-live-card,
    .showcase-metrics article {
        min-height: 0;
        padding: 18px;
    }

    .club-command {
        width: min(100% - 24px, 1460px);
        padding: 22px 16px;
    }
}

/* Stories and roster polish */
.public-page .stories-strip.pro-stories {
    align-items: center;
    width: min(1460px, calc(100% - 48px));
    margin-top: -44px;
    padding: 18px 22px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8, 13, 20, 0.92), rgba(16, 24, 32, 0.78)),
        radial-gradient(circle at 20% 20%, rgba(244, 189, 42, 0.18), transparent 28%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 28px 70px rgba(5, 10, 16, 0.26);
    backdrop-filter: blur(20px);
}

.stories-strip-title {
    display: grid;
    gap: 2px;
    min-width: 180px;
    padding-right: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stories-strip-title span {
    color: var(--yellow);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.stories-strip-title strong {
    color: #fff;
    font-size: 1rem;
}

.public-page .story-bubble {
    min-width: 96px;
    color: #f3f7fb;
}

.public-page .story-bubble img,
.public-page .story-bubble > span {
    width: 72px;
    height: 72px;
    border: 2px solid rgba(244, 189, 42, 0.78);
    outline: 2px solid rgba(215, 25, 32, 0.78);
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.96), rgba(0, 143, 85, 0.92));
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.06), 0 16px 34px rgba(0, 0, 0, 0.24);
}

.public-page .story-bubble strong {
    color: #eef5fb;
    font-size: 0.8rem;
}

.team-section {
    position: relative;
    isolation: isolate;
    width: 100%;
    padding: clamp(72px, 8vw, 118px) max(24px, calc((100vw - 1460px) / 2));
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(6, 11, 18, 0.96), rgba(9, 17, 27, 0.98)),
        url("../img/hero-futsal.png") center / cover no-repeat;
}

.team-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 78% 24%, rgba(244, 189, 42, 0.18), transparent 24%),
        radial-gradient(circle at 14% 80%, rgba(215, 25, 32, 0.16), transparent 28%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 76px);
    mix-blend-mode: screen;
}

.team-section .section-heading {
    max-width: 1460px;
    margin-inline: auto;
}

.team-section .section-heading h2 {
    color: #fff;
    font-size: clamp(2.8rem, 5.4vw, 5.5rem);
    line-height: 0.96;
}

.team-section .section-heading p {
    max-width: 640px;
    color: #dce8f1;
}

.team-section .btn.tiny {
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff2b8);
    box-shadow: 0 18px 44px rgba(244, 189, 42, 0.18);
}

.team-section .team-grid {
    width: min(1460px, 100%);
    margin-inline: auto;
    grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
    gap: 24px;
}

.team-section .team-grid.is-single {
    grid-template-columns: minmax(320px, 440px);
}

.public-page .public-athlete-card {
    min-height: 620px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(16, 24, 32, 0.96), rgba(5, 10, 16, 0.98)),
        radial-gradient(circle at 20% 12%, rgba(244, 189, 42, 0.16), transparent 32%);
    border: 1px solid rgba(244, 189, 42, 0.36);
    box-shadow: 0 34px 88px rgba(0, 0, 0, 0.34);
}

.public-page .public-athlete-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--radius) - 2px);
    pointer-events: none;
}

.public-page .athlete-card-number {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.92);
    font-size: 2.05rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.36);
}

.public-page .captain-ribbon {
    top: 16px;
    right: 16px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.public-page .athlete-card-media {
    min-height: 360px;
    aspect-ratio: 1 / 1.08;
    background:
        radial-gradient(circle at 50% 28%, rgba(244, 189, 42, 0.22), transparent 28%),
        linear-gradient(160deg, rgba(215, 25, 32, 0.68), rgba(0, 143, 85, 0.56)),
        url("../img/hero-futsal.png") center / cover no-repeat;
}

.public-page .athlete-card-media img {
    object-position: center top;
    filter: saturate(1.08) contrast(1.04);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.public-page .public-athlete-card:hover .athlete-card-media img {
    transform: scale(1.045);
    filter: saturate(1.18) contrast(1.08);
}

.public-page .athlete-card-media::after {
    height: 58%;
    background:
        linear-gradient(180deg, transparent 0%, rgba(5, 10, 16, 0.45) 42%, rgba(5, 10, 16, 0.98) 100%);
}

.public-page .athlete-card-body {
    gap: 10px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(5, 10, 16, 0.86), rgba(5, 10, 16, 0.98));
}

.public-page .public-athlete-card .badge {
    width: fit-content;
    min-height: 30px;
    padding: 0 13px;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff1ad);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(244, 189, 42, 0.18);
}

.public-page .athlete-card-body h3 {
    color: #fff;
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    line-height: 1;
}

.public-page .athlete-card-body p {
    color: #cbd8e2;
}

.public-page .player-stats {
    gap: 10px;
    margin-top: 8px;
}

.public-page .player-stats div {
    min-height: 74px;
    padding: 11px;
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.public-page .player-stats strong {
    font-size: 1.35rem;
}

.public-page .player-profile-link {
    min-height: 44px;
    margin-top: 10px;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff1ad);
    border-color: rgba(244, 189, 42, 0.5);
}

@media (max-width: 760px) {
    .public-page .stories-strip.pro-stories {
        width: min(100% - 24px, 1460px);
        align-items: flex-start;
        padding: 16px;
    }

    .stories-strip-title {
        min-width: 150px;
    }

    .team-section {
        padding-inline: 16px;
    }

    .team-section .row-heading {
        align-items: flex-start;
    }

    .team-section .team-grid,
    .team-section .team-grid.is-single {
        grid-template-columns: minmax(0, 1fr);
    }

    .public-page .public-athlete-card {
        min-height: 0;
    }
}

/* Premium sponsor showcase in footer */
.site-footer .sponsor-footer {
    padding: clamp(42px, 6vw, 76px) max(24px, calc((100vw - 1460px) / 2));
    background:
        radial-gradient(circle at 14% 22%, rgba(244, 189, 42, 0.12), transparent 24%),
        linear-gradient(115deg, rgba(5, 10, 16, 0.92), rgba(12, 22, 26, 0.86) 54%, rgba(32, 18, 28, 0.9));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer .footer-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 760px) auto;
    grid-template-areas:
        "eyebrow badge"
        "title badge";
    align-items: end;
    gap: 8px 22px;
    max-width: 1180px;
    margin: 0 auto 24px;
}

.site-footer .footer-section-heading .eyebrow {
    grid-area: eyebrow;
    margin: 0;
}

.site-footer .footer-section-heading::after {
    grid-area: badge;
    content: "Parceiros oficiais da temporada";
    justify-self: end;
    align-self: end;
    width: fit-content;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff2b8);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.site-footer .footer-section-heading h2 {
    grid-area: title;
    max-width: 860px;
    font-size: clamp(2.1rem, 4vw, 3.65rem);
    line-height: 0.98;
}

.site-footer .sponsor-rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    justify-content: start;
    gap: 16px;
    max-width: 1180px;
    margin: 0 auto;
}

.site-footer .sponsor-footer .sponsor-item {
    position: relative;
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    grid-template-areas:
        "logo name"
        "logo type";
    align-items: center;
    gap: 8px 14px;
    min-height: 112px;
    padding: 16px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
        radial-gradient(circle at 20% 20%, rgba(244, 189, 42, 0.12), transparent 30%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 48px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

.site-footer .sponsor-footer .sponsor-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
}

.site-footer .sponsor-footer .sponsor-item img,
.site-footer .sponsor-footer .sponsor-item > span {
    grid-area: logo;
    width: 68px;
    height: 68px;
    padding: 8px;
    object-fit: contain;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.site-footer .sponsor-footer .sponsor-item > span {
    display: grid;
    place-items: center;
    color: #071018;
    font-size: 1rem;
    font-weight: 900;
}

.site-footer .sponsor-footer .sponsor-item strong {
    grid-area: name;
    align-self: end;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.12;
}

.site-footer .sponsor-footer .sponsor-item small {
    grid-area: type;
    align-self: start;
    width: fit-content;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    color: #dce8f1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
}

.site-footer .sponsor-footer .sponsor-item:hover {
    transform: translateY(-4px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.075)),
        radial-gradient(circle at 20% 20%, rgba(244, 189, 42, 0.16), transparent 30%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 26px 62px rgba(0, 0, 0, 0.24);
}

@media (max-width: 760px) {
    .site-footer .footer-section-heading {
        grid-template-columns: 1fr;
        grid-template-areas:
            "eyebrow"
            "title"
            "badge";
    }

    .site-footer .footer-section-heading::after {
        justify-self: start;
    }

    .site-footer .sponsor-rail {
        grid-template-columns: 1fr;
    }
}

/* Admin UX upgrades */
.compact-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.live-search-hint {
    margin: -4px 0 0;
}

.live-search-hint strong {
    color: var(--red);
}

.story-bubble small {
    color: var(--yellow);
    font-size: 0.72rem;
    font-weight: 900;
}

.admin-thumb {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, var(--charcoal), var(--green));
    border: 1px solid rgba(16, 24, 32, 0.14);
    border-radius: var(--radius);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-thumb.wide {
    width: 92px;
    height: 58px;
}

.admin-thumb img,
.club-crest img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    background: #fff;
}

.admin-image-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 14px;
    color: #435266;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 251, 0.82));
    border: 1px dashed #b9c6d4;
    border-radius: var(--radius);
}

.admin-image-preview img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.athlete-photo-preview {
    min-height: 148px;
}

.athlete-photo-preview img {
    width: 112px;
    height: 112px;
    object-fit: cover;
}

.admin-image-preview span,
.admin-form small {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
}

.rich-editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 10px;
}

.rich-editor-toolbar .btn.tiny {
    min-width: 42px;
    background: #fff;
    border-color: var(--line);
}

.notice-preview-card {
    display: grid;
    gap: 8px;
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(16, 24, 32, 0.96), rgba(34, 47, 61, 0.92)),
        radial-gradient(circle at 18% 0, rgba(244, 189, 42, 0.2), transparent 28%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.16);
}

.notice-preview-card strong {
    color: #fff;
    font-size: 1.18rem;
}

.notice-preview-card p {
    margin: 0;
    color: #dce7ef;
}

.instagram-api-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    padding: 20px;
    background:
        linear-gradient(145deg, rgba(16, 24, 32, 0.96), rgba(35, 45, 58, 0.94)),
        radial-gradient(circle at 12% 0, rgba(244, 189, 42, 0.2), transparent 30%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.18);
}

.instagram-api-card h2 {
    color: #fff;
}

.instagram-api-card p {
    color: #dce8f1;
}

.instagram-api-actions {
    display: grid;
    gap: 10px;
}

.instagram-api-actions form {
    margin: 0;
}

.instagram-api-actions code {
    display: inline-block;
    max-width: 100%;
    padding: 4px 7px;
    overflow-wrap: anywhere;
    color: #071018;
    background: #fff;
    border-radius: 6px;
    font-size: 0.82rem;
}

.instagram-api-actions .btn:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}

.training-calendar {
    margin-bottom: 22px;
    padding: 20px;
}

.calendar-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.calendar-heading h2 {
    margin: 0;
}

.calendar-help {
    display: block;
    margin-top: 6px;
    color: #66758a;
    font-size: 0.86rem;
    font-weight: 700;
}

.calendar-actions {
    display: flex;
    gap: 8px;
}

.training-calendar-shell {
    overflow-x: auto;
    padding: 2px 2px 8px;
    scrollbar-color: rgba(0, 143, 85, 0.6) rgba(16, 24, 32, 0.08);
}

.training-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(118px, 1fr));
    min-width: 840px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(241, 245, 249, 0.9)),
        radial-gradient(circle at 14% 0, rgba(239, 30, 36, 0.08), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(0, 143, 85, 0.12), transparent 28%);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.calendar-weekday {
    padding: 12px 14px;
    color: #f8fafc;
    background:
        linear-gradient(135deg, rgba(11, 18, 28, 0.98), rgba(20, 31, 43, 0.96)),
        radial-gradient(circle at 50% 0, rgba(246, 197, 61, 0.22), transparent 34%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}

.calendar-day {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 134px;
    padding: 12px;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.88)),
        radial-gradient(circle at 20% 0, rgba(0, 143, 85, 0.08), transparent 30%);
    border: 0;
    border-right: 1px solid rgba(15, 23, 42, 0.1);
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 0;
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.calendar-day:hover {
    z-index: 1;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
}

.calendar-day-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.calendar-day strong {
    color: #0b121c;
    font-size: 1.25rem;
    line-height: 1;
}

.calendar-day em {
    color: #063f2b;
    font-size: 0.65rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    background: #ffd24a;
    border-radius: 999px;
    padding: 5px 8px;
}

.calendar-events {
    display: grid;
    gap: 6px;
}

.calendar-event {
    display: block;
    overflow: hidden;
    color: #334155;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    padding: 7px 8px;
}

.calendar-event b {
    color: #ef1e24;
    margin-right: 5px;
}

.calendar-empty-state,
.calendar-events small {
    color: #7a8798;
    font-size: 0.72rem;
    font-weight: 900;
}

.calendar-day.has-training {
    color: #fff;
    background:
        linear-gradient(145deg, rgba(16, 24, 32, 0.96), rgba(0, 143, 85, 0.86)),
        radial-gradient(circle at 24% 0, rgba(244, 189, 42, 0.22), transparent 30%);
    border-color: rgba(0, 143, 85, 0.28);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.calendar-day.has-training strong {
    color: #fff;
}

.calendar-day.has-training .calendar-event {
    color: #eaf5f0;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
}

.calendar-day.has-training .calendar-event b,
.calendar-day.has-training .calendar-events small {
    color: #ffd24a;
}

.calendar-day.is-other-month {
    background: #eef3f8;
}

.calendar-day.is-other-month strong,
.calendar-day.is-other-month .calendar-empty-state {
    color: #98a5b6;
}

.calendar-day.is-today {
    outline: 2px solid #ffd24a;
    outline-offset: -4px;
}

.calendar-day.has-training .calendar-empty-state {
    color: #dce8f1;
}

.opponent-team-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 0 0 22px;
}

.opponent-team-strip article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 4px 12px;
    align-items: center;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
}

.opponent-team-strip .admin-thumb {
    grid-row: span 2;
}

.opponent-team-strip strong,
.opponent-team-strip small {
    display: block;
}

.opponent-team-strip small {
    color: var(--muted);
    font-weight: 800;
}

.callup-athlete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.callup-athlete-card {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 2px 10px;
    align-items: center;
    min-height: 82px;
    padding: 12px;
    color: var(--ink);
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.callup-athlete-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.callup-athlete-card .mini-player-photo {
    grid-row: span 2;
    width: 48px;
    height: 48px;
}

.callup-athlete-card strong,
.callup-athlete-card small {
    display: block;
}

.callup-athlete-card small {
    color: var(--muted);
    font-weight: 800;
}

.callup-athlete-card:has(input:checked) {
    color: #fff;
    background:
        linear-gradient(145deg, rgba(16, 24, 32, 0.98), rgba(0, 143, 85, 0.9));
    border-color: rgba(244, 189, 42, 0.54);
    box-shadow: 0 16px 34px rgba(16, 24, 32, 0.16);
    transform: translateY(-2px);
}

.callup-athlete-card:has(input:checked) small {
    color: #dce8f1;
}

.attendance-card-deck {
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
}

.attendance-card {
    position: relative;
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 330px;
    overflow: hidden;
    background:
        linear-gradient(180deg, #fff, #f7fafc);
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.attendance-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--green), var(--yellow), var(--red));
}

.attendance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(16, 24, 32, 0.16);
}

.attendance-card.is-presente {
    border-color: rgba(0, 143, 85, 0.36);
}

.attendance-card.is-falta {
    border-color: rgba(215, 25, 32, 0.42);
}

.attendance-card.is-justificado {
    border-color: rgba(244, 189, 42, 0.54);
}

.attendance-card .attendance-athlete {
    align-items: flex-start;
}

.attendance-card .mini-player-photo {
    width: 72px;
    height: 72px;
    box-shadow: 0 12px 28px rgba(16, 24, 32, 0.16);
}

.attendance-card .attendance-athlete strong {
    font-size: 1.25rem;
}

.attendance-card .attendance-athlete small {
    display: inline-flex;
    width: fit-content;
    min-height: 28px;
    align-items: center;
    margin-top: 6px;
    padding: 0 10px;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff2b8);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.attendance-card .attendance-options {
    margin-top: 10px;
}

.attendance-card .presence-option span {
    min-height: 54px;
}

.attendance-swipe-hud {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding: 18px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7, 16, 24, 0.96), rgba(9, 35, 28, 0.92)),
        radial-gradient(circle at 90% 10%, rgba(244, 189, 42, 0.22), transparent 28%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.16);
}

.attendance-swipe-hud strong,
.attendance-swipe-hud span {
    display: block;
}

.attendance-swipe-hud strong {
    font-size: 1.12rem;
}

.attendance-swipe-hud span {
    color: #cfd9e4;
    font-size: 0.92rem;
    font-weight: 800;
}

.attendance-swipe-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.attendance-swipe-actions .btn.tiny {
    color: #071018;
    background: #f5f8fb;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.attendance-swipe-actions .btn.tiny.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--green), #05653f);
}

.attendance-swipe-actions .btn.tiny.danger {
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.attendance-swipe-actions .btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}

.attendance-swipe-deck.is-swipe-mode {
    position: relative;
    display: grid;
    min-height: 500px;
    place-items: center;
    perspective: 1200px;
}

.attendance-swipe-deck.is-swipe-mode::after {
    content: "Chamada marcada. Revise os cartões se precisar e salve para gravar no histórico.";
    display: none;
    width: min(720px, 100%);
    padding: 28px;
    color: #fff;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(0, 143, 85, 0.92), rgba(7, 16, 24, 0.96));
    border: 1px solid rgba(244, 189, 42, 0.34);
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(16, 24, 32, 0.22);
    font-size: 1.12rem;
    font-weight: 900;
}

.attendance-swipe-deck.is-swipe-mode.is-finished::after {
    display: block;
}

.attendance-swipe-deck.is-swipe-mode .attendance-card {
    display: none;
    width: min(720px, 100%);
    min-height: 430px;
    padding: 24px;
    color: #fff;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
    background:
        radial-gradient(circle at 88% 12%, rgba(244, 189, 42, 0.2), transparent 22%),
        radial-gradient(circle at 12% 88%, rgba(0, 143, 85, 0.22), transparent 24%),
        linear-gradient(145deg, rgba(7, 16, 24, 0.98), rgba(22, 32, 44, 0.96));
    border-color: rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    box-shadow: 0 30px 90px rgba(16, 24, 32, 0.26);
    transform-origin: center 120%;
    transition: transform 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
}

.attendance-swipe-deck.is-swipe-mode .attendance-card.is-active {
    display: grid;
}

.attendance-swipe-deck.is-swipe-mode .attendance-card:hover {
    transform: translateY(-2px);
}

.attendance-swipe-deck.is-swipe-mode .attendance-card.is-dragging {
    cursor: grabbing;
    transition: none;
}

.attendance-swipe-deck.is-swipe-mode .attendance-card.is-throwing-right {
    opacity: 0;
    transform: translateX(130%) rotate(16deg) !important;
}

.attendance-swipe-deck.is-swipe-mode .attendance-card.is-throwing-left {
    opacity: 0;
    transform: translateX(-130%) rotate(-16deg) !important;
}

.attendance-swipe-deck.is-swipe-mode .attendance-card::before {
    height: 7px;
}

.attendance-swipe-deck.is-swipe-mode .attendance-athlete span,
.attendance-swipe-deck.is-swipe-mode .attendance-note span {
    color: #b9c6d4;
}

.attendance-swipe-deck.is-swipe-mode .attendance-athlete strong {
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.attendance-swipe-deck.is-swipe-mode .mini-player-photo {
    width: 96px;
    height: 96px;
    border: 3px solid rgba(244, 189, 42, 0.72);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.attendance-swipe-deck.is-swipe-mode .presence-option span,
.attendance-swipe-deck.is-swipe-mode .attendance-note input {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.attendance-swipe-deck.is-swipe-mode .attendance-note input::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.attendance-swipe-index {
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 2;
    padding: 7px 10px;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff2b8);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 950;
}

.swipe-decision {
    position: absolute;
    top: 34px;
    z-index: 4;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 950;
    letter-spacing: 0.04em;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    transform: rotate(-8deg);
    transition: opacity 0.12s ease;
}

.swipe-decision.is-right {
    right: 28px;
    color: #dbffe9;
    background: rgba(0, 143, 85, 0.22);
    border: 2px solid rgba(97, 255, 171, 0.72);
    transform: rotate(8deg);
}

.swipe-decision.is-left {
    left: 28px;
    color: #ffe1e3;
    background: rgba(215, 25, 32, 0.22);
    border: 2px solid rgba(255, 115, 122, 0.72);
}

.attendance-card.is-dragging-right .swipe-decision.is-right,
.attendance-card.is-dragging-left .swipe-decision.is-left {
    opacity: var(--swipe-opacity, 0.85);
}

@media (max-width: 900px) {
    .compact-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .training-calendar-grid {
        grid-template-columns: repeat(7, minmax(108px, 1fr));
        min-width: 760px;
    }
}

@media (max-width: 620px) {
    .compact-stats,
    .attendance-card-deck,
    .callup-athlete-grid,
    .opponent-team-strip,
    .instagram-api-card {
        grid-template-columns: 1fr;
    }

    .calendar-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-image-preview {
        align-items: flex-start;
        flex-direction: column;
    }

    .attendance-swipe-hud {
        align-items: stretch;
        flex-direction: column;
    }

    .attendance-swipe-actions {
        justify-content: stretch;
    }

    .attendance-swipe-actions .btn {
        flex: 1 1 44%;
    }

    .attendance-swipe-deck.is-swipe-mode {
        min-height: 560px;
    }

    .attendance-swipe-deck.is-swipe-mode .attendance-card {
        min-height: 520px;
        padding: 20px;
    }
}

/* Public home composition pass */
.public-page .pro-hero {
    grid-template-columns: minmax(0, 760px) minmax(360px, 470px);
    min-height: clamp(690px, 82vh, 820px);
    padding: clamp(112px, 12vh, 148px) max(32px, calc((100vw - 1460px) / 2)) clamp(76px, 9vh, 112px);
    background:
        radial-gradient(circle at 74% 28%, rgba(244, 189, 42, 0.16), transparent 25%),
        radial-gradient(circle at 92% 72%, rgba(215, 25, 32, 0.18), transparent 26%),
        radial-gradient(circle at 42% 86%, rgba(0, 143, 85, 0.2), transparent 30%),
        linear-gradient(90deg, rgba(3, 8, 14, 0.98) 0%, rgba(6, 13, 20, 0.88) 44%, rgba(5, 10, 16, 0.18) 100%),
        url("../img/hero-futsal.png") center / cover no-repeat;
}

.public-page .pro-hero::before {
    background:
        linear-gradient(118deg, transparent 0 39%, rgba(244, 189, 42, 0.15) 40%, transparent 52%),
        linear-gradient(76deg, transparent 0 56%, rgba(215, 25, 32, 0.14) 57%, transparent 67%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 104px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 104px);
    opacity: 0.72;
}

.public-page .pro-hero::after {
    height: 28%;
    background: linear-gradient(180deg, transparent, rgba(4, 9, 14, 0.96));
}

.public-page .pro-hero .hero-content {
    display: grid;
    align-content: center;
    min-height: 430px;
}

.public-page .pro-hero .hero-content h1 {
    font-size: clamp(4.15rem, 6.4vw, 7rem);
}

.public-page .pro-hero .hero-copy {
    max-width: 630px;
    color: #edf5fb;
    font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.public-page .hero-metrics {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    width: min(720px, 100%);
    margin-top: 30px;
}

.public-page .hero-metrics div {
    position: relative;
    min-height: 92px;
    padding: 16px 14px 14px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
        radial-gradient(circle at 26% 0, rgba(244, 189, 42, 0.18), transparent 36%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
}

.public-page .hero-metrics div::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
}

.public-page .hero-metrics strong {
    color: #fff;
    font-size: clamp(1.7rem, 2.2vw, 2.25rem);
}

.public-page .hero-metrics span {
    color: #dce8f1;
    font-size: 0.72rem;
    letter-spacing: 0;
}

.public-page .hero-side-stack {
    transform: translateY(20px);
}

.public-page .hero-player-stage,
.public-page .hero-match-panel {
    background:
        linear-gradient(180deg, rgba(11, 18, 28, 0.88), rgba(11, 18, 28, 0.7)),
        radial-gradient(circle at 100% 0, rgba(244, 189, 42, 0.16), transparent 34%);
}

.public-page .stories-strip.pro-stories {
    position: relative;
    z-index: 4;
    width: min(1180px, calc(100% - 48px));
    margin: -48px auto -48px;
    padding: 16px 18px;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.public-page .stories-strip-title {
    min-width: 210px;
}

.public-page .story-bubble {
    min-width: 92px;
}

.public-page .story-bubble img,
.public-page .story-bubble > span {
    width: 66px;
    height: 66px;
}

.public-page .club-showcase {
    padding-top: clamp(118px, 10vw, 160px);
}

/* Homepage clarity pass: remove repeated agenda cards and give each section a distinct role */
.public-page .pro-hero {
    grid-template-columns: minmax(0, 820px);
    align-items: center;
    justify-content: start;
    min-height: clamp(620px, 76vh, 760px);
    padding-bottom: clamp(96px, 11vh, 132px);
    background:
        radial-gradient(circle at 78% 18%, rgba(244, 189, 42, 0.13), transparent 24%),
        radial-gradient(circle at 84% 70%, rgba(215, 25, 32, 0.16), transparent 24%),
        linear-gradient(90deg, rgba(3, 8, 14, 0.98) 0%, rgba(5, 12, 20, 0.94) 48%, rgba(6, 13, 20, 0.28) 100%),
        url("../img/hero-futsal.png") center / cover no-repeat;
}

.public-page .hero-side-stack {
    display: none;
}

.public-page .pro-hero .hero-content {
    max-width: 820px;
}

.public-page .pro-hero .hero-content::after {
    content: "Clube competitivo  •  Gestão esportiva  •  Base e comunidade";
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    min-height: 42px;
    align-items: center;
    margin-top: 24px;
    padding: 0 16px;
    color: #f8fbff;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
        radial-gradient(circle at 0 0, rgba(244, 189, 42, 0.18), transparent 34%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.public-page .stories-strip.pro-stories {
    margin: -42px auto 0;
}

.public-page .club-showcase {
    padding-top: clamp(74px, 8vw, 112px);
    background:
        radial-gradient(circle at 82% 20%, rgba(244, 189, 42, 0.16), transparent 24%),
        radial-gradient(circle at 16% 82%, rgba(215, 25, 32, 0.14), transparent 30%),
        linear-gradient(135deg, #050a10 0%, #07131d 46%, #092217 100%);
}

.showcase-pillars {
    grid-template-columns: 1fr;
}

.showcase-pillars .showcase-live-card,
.showcase-pillars .showcase-metrics {
    display: none;
}

.showcase-pillars > article:not(.showcase-live-card) {
    position: relative;
    display: grid;
    gap: 10px;
    min-height: 154px;
    padding: 22px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
        radial-gradient(circle at 100% 0, rgba(244, 189, 42, 0.14), transparent 28%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.showcase-pillars > article:not(.showcase-live-card)::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
}

.showcase-pillars > article:not(.showcase-live-card) span {
    display: inline-flex;
    width: fit-content;
    min-height: 30px;
    align-items: center;
    padding: 0 10px;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff0a6);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 950;
}

.showcase-pillars > article:not(.showcase-live-card) strong {
    color: #fff;
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.05;
}

.showcase-pillars > article:not(.showcase-live-card) p {
    margin: 0;
    color: #dce8f1;
    font-weight: 700;
}

.team-section .team-grid.has-roster-panel {
    grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
    align-items: stretch;
}

.team-section .team-grid.has-roster-panel .public-athlete-card {
    min-height: 560px;
}

.roster-command-panel {
    position: relative;
    display: grid;
    align-content: center;
    gap: 22px;
    min-height: 560px;
    padding: clamp(24px, 4vw, 42px);
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
        radial-gradient(circle at 78% 12%, rgba(244, 189, 42, 0.18), transparent 28%),
        radial-gradient(circle at 12% 86%, rgba(0, 143, 85, 0.16), transparent 32%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 34px 88px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.roster-command-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(110deg, transparent 0 44%, rgba(244, 189, 42, 0.12) 45%, transparent 56%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 72px);
}

.roster-command-panel > * {
    position: relative;
}

.roster-command-panel h3 {
    max-width: 760px;
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.98;
}

.roster-command-panel p:not(.eyebrow) {
    max-width: 760px;
    margin: 0;
    color: #dce8f1;
    font-size: 1.04rem;
}

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

.roster-panel-grid article {
    min-height: 104px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
}

.roster-panel-grid strong {
    display: block;
    color: var(--yellow);
    font-size: 2rem;
    line-height: 1;
}

.roster-panel-grid span,
.roster-panel-list span {
    color: #dce8f1;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.roster-panel-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.roster-panel-list span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff2b8);
    border-radius: 999px;
}

.team-section .team-grid.has-roster-panel > .empty-state {
    min-height: 240px;
    display: grid;
    place-items: center;
    padding: 24px;
    color: #dce8f1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

@media (max-width: 1050px) {
    .public-page .pro-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 92px;
    }

    .public-page .pro-hero .hero-content {
        min-height: 0;
    }

    .public-page .hero-side-stack {
        transform: none;
    }

    .team-section .team-grid.has-roster-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .public-page .hero-metrics,
    .roster-panel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-page .stories-strip.pro-stories {
        width: calc(100% - 24px);
        margin: -34px auto -34px;
        overflow-x: auto;
    }

    .public-page .stories-strip-title {
        min-width: 170px;
    }

    .public-page .club-showcase {
        padding-top: 92px;
    }
}

@media (max-width: 520px) {
    .public-page .hero-metrics,
    .roster-panel-grid {
        grid-template-columns: 1fr;
    }

    .public-page .pro-hero .hero-content::after {
        width: 100%;
        min-height: auto;
        padding: 12px 14px;
        border-radius: 16px;
        line-height: 1.4;
        white-space: normal;
    }
}

@media (max-width: 760px) {
    .public-page .stories-strip.pro-stories {
        margin: -34px auto 0;
    }
}

/* Support page premium commercial presentation */
.support-page {
    background:
        linear-gradient(180deg, #061018 0%, #08141d 34%, #eef3f7 34%, #f7f9fc 100%);
}

.support-page .support-hero {
    grid-template-columns: minmax(0, 780px) minmax(360px, 500px);
    align-items: center;
    justify-content: space-between;
    min-height: clamp(620px, 74vh, 760px);
    padding: clamp(88px, 9vh, 116px) max(32px, calc((100vw - 1460px) / 2)) clamp(70px, 7vh, 92px);
    background:
        radial-gradient(circle at 82% 22%, rgba(244, 189, 42, 0.22), transparent 24%),
        radial-gradient(circle at 58% 78%, rgba(0, 143, 85, 0.18), transparent 34%),
        radial-gradient(circle at 16% 82%, rgba(215, 25, 32, 0.18), transparent 28%),
        linear-gradient(90deg, rgba(4, 9, 14, 0.98) 0%, rgba(7, 15, 24, 0.86) 50%, rgba(5, 10, 16, 0.32) 100%),
        url("../img/footer-chuteiras.jpg") center / cover no-repeat;
}

.support-page .support-hero::before {
    background:
        linear-gradient(112deg, transparent 0 42%, rgba(244, 189, 42, 0.14) 43%, transparent 55%),
        linear-gradient(70deg, transparent 0 56%, rgba(0, 143, 85, 0.14) 57%, transparent 68%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 96px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 96px);
    opacity: 0.78;
}

.support-page .support-hero::after {
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(5, 10, 16, 0.96));
}

.support-hero-copy {
    position: relative;
    display: grid;
    align-content: center;
    gap: 16px;
}

.support-page .support-hero h1 {
    max-width: 840px;
    margin: 0;
    color: #fff;
    font-size: clamp(3.1rem, 4.4vw, 5.15rem);
    line-height: 0.96;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}

.support-page .support-hero-copy > p:not(.eyebrow) {
    max-width: 690px;
    margin: 0;
    color: #e7f0f7;
    font-size: clamp(1.04rem, 1.45vw, 1.22rem);
}

.support-page .support-metrics {
    width: min(720px, 100%);
    margin-top: 8px;
}

.support-page .support-metrics div {
    position: relative;
    min-height: 82px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.065)),
        radial-gradient(circle at 28% 0, rgba(244, 189, 42, 0.18), transparent 34%);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.support-page .support-metrics div::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
}

.support-page .support-metrics span {
    letter-spacing: 0;
}

.support-page .support-commercial-card {
    position: relative;
    display: grid;
    gap: 14px;
    align-self: center;
    padding: clamp(22px, 2.6vw, 30px);
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(150deg, rgba(12, 20, 30, 0.92), rgba(10, 16, 24, 0.76)),
        radial-gradient(circle at 86% 6%, rgba(244, 189, 42, 0.18), transparent 34%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(22px);
}

.support-page .support-commercial-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
}

.support-page .support-commercial-card span,
.support-page .support-commercial-card small {
    display: inline;
    width: auto;
    height: auto;
    color: inherit;
    background: transparent;
    border-radius: 0;
}

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

.support-page .support-commercial-card .support-card-logo {
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    padding: 8px;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(7, 16, 24, 0.96), rgba(12, 28, 45, 0.9));
    border: 1px solid rgba(176, 220, 255, 0.42);
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24), 0 0 28px rgba(244, 189, 42, 0.16);
}

.support-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support-page .support-commercial-card .support-card-top small {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff2b8);
    border-radius: 999px;
    font-weight: 900;
    text-transform: uppercase;
}

.support-page .support-commercial-card h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.75rem, 2.45vw, 2.75rem);
    line-height: 1;
}

.support-page .support-commercial-card p {
    margin: 0;
    color: #dce8f1;
}

.support-commercial-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.support-commercial-card li {
    position: relative;
    padding-left: 28px;
    color: #edf5fb;
    font-weight: 800;
}

.support-commercial-card li::before {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--yellow), var(--green));
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(244, 189, 42, 0.32);
}

.support-card-highlight {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.support-card-highlight strong {
    color: var(--yellow);
    font-size: 2.35rem;
    line-height: 1;
}

.support-page .support-commercial-card .support-card-highlight span {
    display: block;
    color: #dce8f1;
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
}

.support-proof-strip {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    width: min(1180px, calc(100% - 48px));
    margin: -58px auto 0;
    padding: 14px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(8, 13, 20, 0.94), rgba(16, 24, 32, 0.78)),
        radial-gradient(circle at 14% 0, rgba(244, 189, 42, 0.2), transparent 28%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
}

.support-proof-strip article {
    min-height: 118px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.support-proof-strip span {
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 900;
}

.support-proof-strip strong {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 1.14rem;
}

.support-proof-strip p {
    margin: 6px 0 0;
    color: #cbd8e2;
}

.support-page .partner-benefits {
    width: 100%;
    padding: clamp(92px, 10vw, 142px) max(24px, calc((100vw - 1460px) / 2)) clamp(64px, 7vw, 96px);
    color: #071018;
    background:
        radial-gradient(circle at 86% 8%, rgba(244, 189, 42, 0.18), transparent 26%),
        radial-gradient(circle at 12% 18%, rgba(0, 143, 85, 0.1), transparent 28%),
        linear-gradient(180deg, #eef3f7 0%, #f7f9fc 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.support-page .partner-benefits .section-heading,
.support-page .support-plans-section .section-heading,
.support-page .current-sponsors .section-heading {
    max-width: 920px;
}

.support-page .partner-benefits .section-heading h2,
.support-page .support-plans-section .section-heading h2,
.support-page .current-sponsors .section-heading h2 {
    font-size: clamp(2.4rem, 4.6vw, 5rem);
    line-height: 0.98;
}

.support-page .partner-benefits .section-heading h2 {
    color: #071018;
}

.support-page .partner-benefits .section-heading .eyebrow {
    color: var(--red);
}

.support-page .benefit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.support-page .benefit-grid article {
    min-height: 260px;
    padding: 24px;
    background:
        linear-gradient(180deg, #fff, #f5f8fb),
        radial-gradient(circle at 18% 0, rgba(0, 143, 85, 0.1), transparent 28%);
    border-color: rgba(203, 213, 223, 0.92);
    box-shadow: 0 22px 54px rgba(16, 24, 32, 0.1);
}

.support-page .benefit-grid span {
    color: var(--red);
    font-size: 0.78rem;
}

.support-page .benefit-grid h3 {
    margin: 24px 0 10px;
    font-size: 1.32rem;
    line-height: 1.05;
}

.support-page .support-plans-section {
    width: 100%;
    padding: clamp(68px, 8vw, 110px) max(24px, calc((100vw - 1460px) / 2));
    color: #fff;
    background:
        linear-gradient(180deg, rgba(6, 11, 18, 0.97), rgba(9, 17, 27, 0.98)),
        url("../img/hero-futsal.png") center / cover no-repeat;
}

.support-page .support-plans-section .section-heading h2 {
    color: #fff;
}

.support-page .support-plan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.support-page .support-plan-grid article {
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 380px;
    padding: 28px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
        radial-gradient(circle at 16% 0, rgba(244, 189, 42, 0.16), transparent 30%);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.support-page .support-plan-grid article > span,
.support-page .support-plan-grid article p {
    color: #dce8f1;
}

.support-page .support-plan-grid h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 2.2vw, 2.35rem);
    line-height: 1.02;
}

.support-page .support-plan-grid article strong {
    margin: 0;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff2b8);
}

.support-page .support-plan-grid article .btn {
    align-self: end;
    margin-top: auto;
}

.support-page .support-plan-grid .is-featured {
    transform: translateY(-12px);
    background:
        linear-gradient(145deg, rgba(215, 25, 32, 0.9), rgba(9, 17, 27, 0.92)),
        radial-gradient(circle at 88% 10%, rgba(244, 189, 42, 0.24), transparent 30%);
    border-color: rgba(244, 189, 42, 0.42);
    box-shadow: 0 34px 90px rgba(215, 25, 32, 0.22), 0 34px 90px rgba(0, 0, 0, 0.28);
}

.support-page .support-plan-grid .is-featured small {
    width: fit-content;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff2b8);
    border-radius: 999px;
    font-weight: 900;
    text-transform: uppercase;
}

.support-page .support-form-section {
    width: min(1460px, calc(100% - 48px));
    grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.9fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: stretch;
    padding: clamp(72px, 8vw, 112px) 0;
}

.support-page .support-form-copy {
    position: sticky;
    top: 110px;
    align-self: start;
    display: grid;
    gap: 18px;
}

.support-page .support-form-copy h2 {
    margin: 0;
    font-size: clamp(2.35rem, 4.5vw, 4.7rem);
    line-height: 0.98;
}

.support-page .support-form-copy p {
    max-width: 640px;
}

.proposal-summary {
    display: grid;
    gap: 12px;
    margin: 8px 0;
}

.proposal-summary article {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 38px rgba(16, 24, 32, 0.08);
}

.proposal-summary strong,
.proposal-summary span {
    display: block;
}

.proposal-summary span {
    color: var(--muted);
    font-weight: 800;
}

.support-page .contact-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.support-page .contact-stack a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff2b8);
    border-radius: 999px;
    font-weight: 900;
}

.support-page .support-form {
    position: relative;
    overflow: hidden;
    padding: clamp(22px, 3vw, 34px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.92)),
        radial-gradient(circle at 92% 0, rgba(0, 143, 85, 0.12), transparent 30%);
    border-color: rgba(203, 213, 223, 0.9);
    box-shadow: 0 30px 80px rgba(16, 24, 32, 0.16);
}

.support-page .support-form::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
}

.support-page .support-form label {
    color: #111827;
    font-weight: 900;
}

.support-page .support-form input,
.support-page .support-form select,
.support-page .support-form textarea {
    min-height: 48px;
    background: #fff;
    border-color: rgba(175, 188, 203, 0.9);
    box-shadow: inset 0 1px 0 rgba(16, 24, 32, 0.04);
}

.support-page .current-sponsors {
    width: 100%;
    padding: clamp(72px, 8vw, 112px) max(24px, calc((100vw - 1460px) / 2));
    color: #fff;
    background:
        radial-gradient(circle at 16% 18%, rgba(244, 189, 42, 0.14), transparent 24%),
        linear-gradient(115deg, #050a10, #0b151f 54%, #1b111b);
}

.support-page .current-sponsors .section-heading h2 {
    color: #fff;
}

.support-page .current-sponsors .section-heading p:not(.eyebrow) {
    color: #dce8f1;
}

.support-page .sponsor-rail-light {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.support-page .sponsor-rail-light .sponsor-item {
    position: relative;
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-areas:
        "logo name"
        "logo type";
    align-items: center;
    min-height: 112px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
        radial-gradient(circle at 18% 18%, rgba(244, 189, 42, 0.12), transparent 30%);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.support-page .sponsor-rail-light .sponsor-item img,
.support-page .sponsor-rail-light .sponsor-item > span {
    grid-area: logo;
    width: 64px;
    height: 64px;
    padding: 8px;
    object-fit: contain;
    background: #fff;
    border-radius: 14px;
}

.support-page .sponsor-rail-light .sponsor-item strong {
    grid-area: name;
    color: #fff;
}

.support-page .sponsor-rail-light .sponsor-item small {
    grid-area: type;
    width: fit-content;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    color: #dce8f1;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    font-weight: 800;
}

@media (max-width: 1050px) {
    .support-page .support-hero,
    .support-page .support-form-section {
        grid-template-columns: 1fr;
    }

    .support-page .support-commercial-card {
        max-width: 720px;
    }

    .support-proof-strip,
    .support-page .benefit-grid,
    .support-page .support-plan-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-page .support-form-copy {
        position: static;
    }
}

@media (max-width: 680px) {
    .support-page .support-hero {
        min-height: auto;
        padding: 82px 16px 86px;
    }

    .support-page .support-hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.15rem);
    }

    .support-proof-strip,
    .support-page .benefit-grid,
    .support-page .support-plan-grid,
    .support-page .support-form,
    .support-page .support-card-highlight {
        grid-template-columns: 1fr;
    }

    .support-page .support-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-page .support-metrics div {
        min-height: 74px;
        padding: 12px;
    }

    .support-page .support-commercial-card {
        display: none;
    }

    .support-proof-strip,
    .support-page .support-form-section {
        width: calc(100% - 24px);
    }

    .support-page .support-plan-grid .is-featured {
        transform: none;
    }
}

/* Athlete panel premium experience */
body.athlete-page {
    min-height: 100vh;
    color: #edf5fb;
    background:
        radial-gradient(circle at 16% 18%, rgba(215, 25, 32, 0.22), transparent 28%),
        radial-gradient(circle at 84% 14%, rgba(244, 189, 42, 0.18), transparent 24%),
        radial-gradient(circle at 78% 78%, rgba(0, 143, 85, 0.2), transparent 30%),
        linear-gradient(135deg, #050a10 0%, #07111c 46%, #120b12 100%);
}

body.athlete-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(4, 9, 14, 0.92), rgba(4, 9, 14, 0.72)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 96px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 96px),
        url("../img/hero-futsal.png") center / cover no-repeat;
    opacity: 0.82;
}

.athlete-page > * {
    position: relative;
    z-index: 1;
}

.athlete-page .site-header.compact {
    position: sticky;
    top: 14px;
    z-index: 30;
    width: min(1460px, calc(100% - 48px));
    min-height: 74px;
    margin: 14px auto 0;
    padding: 12px 14px;
    background:
        linear-gradient(135deg, rgba(13, 20, 30, 0.84), rgba(7, 14, 21, 0.68)),
        radial-gradient(circle at 8% 0, rgba(244, 189, 42, 0.14), transparent 28%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(22px);
}

.athlete-page .site-header.compact::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
    border-radius: 22px 22px 0 0;
}

.athlete-page .brand-mark.has-logo {
    box-shadow: 0 0 22px rgba(244, 189, 42, 0.22);
}

.athlete-page .main-nav {
    padding: 6px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.athlete-page .main-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
}

.athlete-page .main-nav a:hover,
.athlete-page .main-nav .nav-pill {
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff1ad);
}

.athlete-dashboard-pro {
    width: min(1460px, calc(100% - 48px));
    padding: clamp(28px, 4vw, 52px) 0 80px;
}

.athlete-hero.athlete-hero-pro {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
    align-items: center;
    gap: clamp(22px, 4vw, 52px);
    min-height: 360px;
    margin: 0;
    padding: clamp(24px, 4vw, 46px);
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(6, 11, 18, 0.96) 0%, rgba(9, 17, 27, 0.84) 48%, rgba(7, 12, 20, 0.54) 100%),
        radial-gradient(circle at 78% 12%, rgba(244, 189, 42, 0.18), transparent 26%),
        url("../img/hero-futsal.png") center / cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.athlete-hero-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(116deg, transparent 0 42%, rgba(244, 189, 42, 0.12) 43%, transparent 55%),
        linear-gradient(68deg, transparent 0 58%, rgba(0, 143, 85, 0.13) 59%, transparent 70%);
    opacity: 0.8;
}

.athlete-hero-pro > * {
    position: relative;
    z-index: 1;
}

.athlete-profile-block {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 28px);
}

.athlete-hero-pro .athlete-avatar {
    width: clamp(116px, 14vw, 156px);
    height: clamp(116px, 14vw, 156px);
    background:
        linear-gradient(135deg, rgba(215, 25, 32, 0.96), rgba(0, 143, 85, 0.82));
    border: 3px solid rgba(255, 255, 255, 0.46);
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32), 0 0 34px rgba(244, 189, 42, 0.18);
}

.athlete-identity h1 {
    margin: 0;
    max-width: 720px;
    color: #fff;
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 0.88;
    text-shadow: 0 18px 46px rgba(0, 0, 0, 0.4);
}

.athlete-identity p:not(.eyebrow) {
    max-width: 620px;
    margin: 12px 0 0;
    color: #dce8f1;
    font-size: 1.05rem;
}

.athlete-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.athlete-hero-tags span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff1ad);
    border-radius: 999px;
    font-weight: 900;
}

.athlete-next-stack {
    display: grid;
    gap: 14px;
}

.athlete-next-stack article,
.athlete-kpi-grid article,
.athlete-panel {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
        radial-gradient(circle at 16% 0, rgba(244, 189, 42, 0.14), transparent 32%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
}

.athlete-next-stack article {
    min-height: 126px;
    padding: 18px;
    border-radius: 18px;
}

.athlete-next-stack span,
.athlete-kpi-grid span,
.athlete-panel-heading .eyebrow {
    display: block;
    margin: 0 0 8px;
    color: var(--yellow);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.athlete-next-stack strong {
    display: block;
    color: #fff;
    font-size: clamp(1.35rem, 2vw, 2.05rem);
    line-height: 1.03;
}

.athlete-next-stack small,
.athlete-kpi-grid small,
.athlete-list-row span,
.athlete-notice-card span,
.athlete-notice-card p {
    color: #cbd8e2;
}

.athlete-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.athlete-kpi-grid article {
    min-height: 138px;
    padding: 20px;
    border-radius: 20px;
}

.athlete-kpi-grid article::before,
.athlete-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
}

.athlete-kpi-grid strong {
    display: block;
    color: #fff;
    font-size: clamp(2.4rem, 4vw, 3.7rem);
    line-height: 0.9;
}

.athlete-workspace {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.44fr);
    gap: 18px;
    align-items: start;
}

.athlete-main-column,
.athlete-side-column,
.athlete-card-grid {
    display: grid;
    gap: 18px;
}

.athlete-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.athlete-panel {
    color: #fff;
    border-radius: 22px;
    padding: clamp(18px, 2.4vw, 26px);
}

.athlete-panel h2,
.athlete-panel h3,
.athlete-panel strong {
    color: #fff;
}

.athlete-panel h2,
.athlete-panel h3,
.athlete-panel p {
    margin-top: 0;
}

.athlete-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.athlete-panel-heading h2 {
    margin: 0;
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1;
}

.athlete-panel-heading > strong {
    min-width: 54px;
    min-height: 54px;
    display: grid;
    place-items: center;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff1ad);
    border-radius: 16px;
    font-size: 1.55rem;
}

.athlete-notice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.athlete-notice-grid section {
    display: grid;
    align-content: start;
    gap: 12px;
}

.athlete-notice-card,
.athlete-list-row {
    background: rgba(5, 10, 16, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.athlete-notice-card {
    padding: 16px;
}

.athlete-notice-card p {
    margin-bottom: 10px;
}

.athlete-list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 10px;
    padding: 14px;
}

.athlete-list-row.compact {
    align-items: flex-start;
    padding: 12px;
}

.athlete-list-row strong,
.athlete-list-row span {
    display: block;
}

.athlete-panel .empty-state {
    margin: 0;
    padding: 16px;
    color: #cbd8e2;
    background: rgba(255, 255, 255, 0.07);
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 16px;
}

.attendance-pro-card {
    background:
        linear-gradient(150deg, rgba(7, 14, 22, 0.92), rgba(18, 29, 42, 0.78)),
        radial-gradient(circle at 72% 0, rgba(0, 143, 85, 0.18), transparent 32%);
}

.attendance-ring {
    position: relative;
    display: grid;
    place-items: center;
    width: 158px;
    height: 158px;
    margin: 10px auto 18px;
    border-radius: 50%;
    background: conic-gradient(var(--green) var(--attendance-rate), rgba(255, 255, 255, 0.12) 0);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28), 0 0 30px rgba(0, 143, 85, 0.18);
}

.attendance-ring::before {
    content: "";
    position: absolute;
    inset: 13px;
    background: #071018;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.attendance-ring span {
    position: relative;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 900;
}

.attendance-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.attendance-mini-grid div {
    min-height: 86px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.attendance-mini-grid strong {
    display: block;
    color: var(--yellow);
    font-size: 1.75rem;
    line-height: 1;
}

.attendance-mini-grid span {
    display: block;
    margin-top: 8px;
    color: #cbd8e2;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.score-pill {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: #071018;
    background: linear-gradient(135deg, var(--yellow), #fff1ad);
    border-radius: 999px;
    font-weight: 900;
    white-space: nowrap;
}

.athlete-page .badge {
    color: #071018;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 1180px) {
    .athlete-hero.athlete-hero-pro,
    .athlete-workspace {
        grid-template-columns: 1fr;
    }

    .athlete-card-grid,
    .athlete-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .athlete-page .site-header.compact {
        top: 8px;
        width: calc(100% - 16px);
        flex-direction: column;
        align-items: stretch;
        border-radius: 18px;
    }

    .athlete-page .brand {
        justify-content: center;
    }

    .athlete-page .main-nav {
        justify-content: center;
        width: 100%;
        overflow-x: auto;
    }

    .athlete-dashboard-pro {
        width: calc(100% - 20px);
        padding-top: 18px;
    }

    .athlete-profile-block {
        align-items: flex-start;
        flex-direction: column;
    }

    .athlete-card-grid,
    .athlete-kpi-grid,
    .athlete-notice-grid,
    .attendance-mini-grid {
        grid-template-columns: 1fr;
    }

    .athlete-list-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .athlete-panel-heading {
        flex-direction: column;
    }
}

.estreia-page {
    background: #071018;
}

.estreia-main {
    color: #fff;
    background: #071018;
    overflow: hidden;
}

.estreia-hero {
    position: relative;
    isolation: isolate;
    min-height: min(780px, 84svh);
    padding: 96px clamp(18px, 5vw, 72px) 34px;
    display: grid;
    align-content: end;
    background: #071018;
}

.estreia-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 16, 24, 0.98) 0%, rgba(7, 16, 24, 0.88) 34%, rgba(7, 16, 24, 0.2) 100%),
        linear-gradient(180deg, rgba(7, 16, 24, 0.1) 0%, rgba(7, 16, 24, 0.86) 100%),
        url("../img/hero-futsal.png") center / cover no-repeat;
}

.estreia-hero::before,
.estreia-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.estreia-hero::before {
    inset: 0;
    z-index: -1;
    background:
        repeating-linear-gradient(105deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 42px),
        linear-gradient(90deg, rgba(215, 25, 32, 0.26), transparent 34%, rgba(0, 143, 85, 0.22));
    mix-blend-mode: screen;
    opacity: 0.54;
}

.estreia-hero::after {
    right: clamp(18px, 6vw, 96px);
    bottom: 0;
    width: min(420px, 54vw);
    height: 6px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green), var(--blue));
}

.estreia-hero-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 28px;
    align-items: end;
}

.estreia-hero-copy {
    max-width: 760px;
}

.estreia-eyebrow {
    color: var(--yellow);
}

.estreia-hero h1 {
    max-width: 880px;
    margin: 0;
    color: #fff;
    font-size: 6.8rem;
    line-height: 0.86;
}

.estreia-lead {
    max-width: 700px;
    margin: 24px 0 0;
    color: #e6eef7;
    font-size: 1.18rem;
    line-height: 1.65;
}

.estreia-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.estreia-page .btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 42px rgba(215, 25, 32, 0.34);
}

.estreia-page .btn.ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.34);
}

.estreia-event-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    color: #fff;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07)),
        linear-gradient(135deg, rgba(215, 25, 32, 0.38), rgba(0, 143, 85, 0.24));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
}

.estreia-event-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green));
}

.estreia-event-card > span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 0 10px;
    color: #071018;
    background: var(--yellow);
    border-radius: var(--radius);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.estreia-event-card strong {
    display: block;
    margin-top: 18px;
    color: #fff;
    font-size: 5.2rem;
    line-height: 0.9;
}

.estreia-event-card p {
    margin: 12px 0 18px;
    color: #f7fbff;
    font-size: 1.08rem;
    font-weight: 800;
}

.estreia-event-card dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.estreia-event-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.estreia-event-card dt,
.estreia-event-card dd {
    margin: 0;
}

.estreia-event-card dt {
    color: #cbd8e2;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.estreia-event-card dd {
    color: #fff;
    font-weight: 800;
    text-align: right;
}

.estreia-countdown {
    width: min(1180px, 100%);
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

.estreia-countdown div {
    min-height: 112px;
    padding: 18px;
    display: grid;
    align-content: center;
    background: rgba(7, 16, 24, 0.62);
}

.estreia-countdown strong {
    color: #fff;
    font-size: 3.2rem;
    line-height: 0.9;
}

.estreia-countdown span {
    margin-top: 8px;
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.estreia-intro {
    padding: 42px clamp(18px, 5vw, 72px);
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
    gap: 24px;
    align-items: center;
    color: var(--ink);
    background: #fff;
}

.estreia-intro > * {
    width: min(100%, 640px);
}

.estreia-intro h2,
.estreia-section h2,
.estreia-program h2,
.estreia-cta h2 {
    margin: 0;
    color: inherit;
    line-height: 1;
}

.estreia-intro h2 {
    font-size: 3rem;
}

.estreia-intro p:last-child {
    margin: 0;
    color: #465568;
    font-size: 1.05rem;
}

.estreia-section {
    padding: 74px clamp(18px, 5vw, 72px);
    color: var(--ink);
    background: var(--soft);
}

.estreia-heading {
    width: min(1180px, 100%);
    margin: 0 auto 24px;
}

.estreia-heading h2 {
    max-width: 720px;
    font-size: 3.1rem;
}

.estreia-feature-grid {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.estreia-feature-grid article {
    min-height: 260px;
    padding: 22px;
    display: grid;
    align-content: space-between;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(16, 24, 32, 0.08);
}

.estreia-feature-grid article:nth-child(2) {
    border-top: 4px solid var(--green);
}

.estreia-feature-grid article:nth-child(3) {
    border-top: 4px solid var(--blue);
}

.estreia-feature-grid span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--red);
    border-radius: var(--radius);
    font-weight: 900;
}

.estreia-feature-grid article:nth-child(2) span {
    background: var(--green);
}

.estreia-feature-grid article:nth-child(3) span {
    background: var(--blue);
}

.estreia-feature-grid h3 {
    margin: 28px 0 10px;
    font-size: 1.6rem;
    line-height: 1.08;
}

.estreia-feature-grid p {
    margin: 0;
    color: #566579;
}

.estreia-split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
    gap: 0;
    color: #fff;
    background: #071018;
}

.estreia-photo-panel {
    min-height: 560px;
    position: relative;
    overflow: hidden;
}

.estreia-photo-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(7, 16, 24, 0.18) 68%, rgba(7, 16, 24, 0.9) 100%),
        linear-gradient(180deg, rgba(215, 25, 32, 0.18), rgba(0, 143, 85, 0.2));
}

.estreia-photo-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.estreia-program {
    padding: clamp(44px, 6vw, 82px) clamp(18px, 5vw, 72px);
    display: grid;
    align-content: center;
}

.estreia-program h2 {
    max-width: 520px;
    font-size: 3.35rem;
}

.estreia-program ol {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.estreia-program li {
    position: relative;
    padding: 18px 18px 18px 62px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius);
}

.estreia-program li::before {
    content: counter(list-item, decimal-leading-zero);
    position: absolute;
    left: 16px;
    top: 18px;
    color: var(--yellow);
    font-weight: 900;
}

.estreia-program strong,
.estreia-program span {
    display: block;
}

.estreia-program strong {
    color: #fff;
    font-size: 1.08rem;
}

.estreia-program span {
    margin-top: 6px;
    color: #cbd8e2;
}

.estreia-cta {
    padding: 58px clamp(18px, 5vw, 72px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
    background:
        linear-gradient(100deg, rgba(7, 16, 24, 0.94), rgba(7, 16, 24, 0.66)),
        linear-gradient(90deg, var(--red), var(--green));
}

.estreia-cta div {
    max-width: 760px;
}

.estreia-cta .eyebrow {
    color: var(--yellow);
}

.estreia-cta h2 {
    font-size: 3.6rem;
}

.estreia-cta p {
    max-width: 680px;
    margin: 14px 0 0;
    color: #e6eef7;
    font-size: 1.05rem;
}

@media (max-width: 1040px) {
    .estreia-hero h1 {
        font-size: 5.2rem;
    }

    .estreia-hero-grid,
    .estreia-intro,
    .estreia-split {
        grid-template-columns: 1fr;
    }

    .estreia-event-card {
        max-width: 460px;
    }

    .estreia-feature-grid {
        grid-template-columns: 1fr;
    }

    .estreia-photo-panel {
        min-height: 420px;
    }

    .estreia-photo-panel::after {
        background: linear-gradient(180deg, transparent 0%, rgba(7, 16, 24, 0.82) 100%);
    }
}

@media (max-width: 760px) {
    .estreia-hero {
        min-height: auto;
        padding-top: 72px;
    }

    .estreia-hero h1 {
        font-size: 3.4rem;
    }

    .estreia-lead {
        font-size: 1rem;
    }

    .estreia-event-card strong {
        font-size: 4rem;
    }

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

    .estreia-countdown div {
        min-height: 96px;
    }

    .estreia-countdown strong {
        font-size: 2.4rem;
    }

    .estreia-intro h2,
    .estreia-heading h2,
    .estreia-program h2,
    .estreia-cta h2 {
        font-size: 2.35rem;
    }

    .estreia-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .estreia-actions .btn,
    .estreia-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .estreia-event-card dl div {
        align-items: flex-start;
        flex-direction: column;
    }

    .estreia-event-card dd {
        text-align: left;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .estreia-hero::before {
        animation: estreiaCourtSweep 12s linear infinite;
    }
}

@keyframes estreiaCourtSweep {
    from {
        transform: translateX(-42px);
    }

    to {
        transform: translateX(42px);
    }
}
