/* =========================
   SkyrScout
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #080b0f;
}

body {
    min-height: 100vh;
    font-family:
    Arial,
    Helvetica,
    "Segoe UI Emoji",
    "Apple Color Emoji",
    "Noto Color Emoji",
    sans-serif;
    color: #f5f7f8;
    background: #080b0f;
}

/* =========================
   Banner and navigation
   ========================= */

.site-banner {
    display: block;
    width: 100%;
    height: auto;
}

.navigation {
    position: relative;
    min-height: 46px;
    background: rgba(7, 11, 15, 0.98);
    border-bottom: 1px solid rgba(83, 200, 238, 0.55);
}

.navigation-links {
    min-height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 4vw, 52px);
    padding: 0 24px;
}

.navigation-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.navigation-links a:hover {
    color: #53c8ee;
}

.menu-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.menu-button {
    display: none;
}

/* =========================
   Shared page background
   ========================= */

.page-background {
    min-height: calc(100vh - 46px);
    padding: clamp(40px, 6vw, 80px) 24px 90px;

    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* =========================
   Homepage
   ========================= */

.content {
    width: min(1000px, 100%);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 52px);

    background: rgba(8, 12, 16, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.content h1 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* =========================
   Player page
   ========================= */

.player-page {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.player-header {
    margin-bottom: 28px;
    padding: 28px 32px;

    background: rgba(7, 11, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 4px solid #53c8ee;
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.player-header h1 {
    max-width: 950px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.player-subtitle {
    margin-top: 8px;
    color: #d8e0e4;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 500;
    line-height: 1.4;
}

img.emoji {
    width: 1.15em;
    height: 1.15em;
    margin: 0 0.08em;
    vertical-align: -0.18em;
}

.report-byline {
    margin-top: 18px;
    margin-bottom: 8px;
    color: #9daab1;
    font-size: 0.9rem;
    line-height: 1.4;
}
.report-date {
    color: #7f8b91;
}
}
/* YouTube video */

.player-video {
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 9;

    background: #000000;
    border-radius: 14px;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.12);
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Shared content panels */

.player-section {
    margin-bottom: 30px;
    padding: clamp(26px, 4vw, 42px);

    background: rgba(7, 11, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.player-section h2 {
    margin-bottom: 22px;
    padding-bottom: 13px;

    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.2;

    border-bottom: 1px solid rgba(83, 200, 238, 0.42);
}

/* Summary */

.player-summary {
    background: rgba(4, 8, 12, 0.94);
}

.summary-content {
    max-width: 820px;
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    line-height: 1.85;
}

.summary-content br {
    content: "";
    display: block;
    margin-bottom: 8px;
}

/* Report */

.report-content {
    max-width: 820px;
    font-size: 1.05rem;
    line-height: 1.78;
}

.report-content p {
    margin-bottom: 1.25em;
}

.report-content h2,
.report-content h3 {
    margin-top: 2em;
    margin-bottom: 0.75em;
    padding-bottom: 8px;

    line-height: 1.25;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.report-content h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.report-content h3 {
    font-size: 1.3rem;
}

/* Podcast */

.podcast-time {
    margin-bottom: 18px;
    color: #d8e0e4;
}

/* Data sources */

.source-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 720px;
}

.source-links a {
    display: flex;
    flex-direction: column;
    gap: 5px;

    padding: 18px 20px;

    color: #ffffff;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

.source-links a:hover {
    transform: translateY(-2px);
    background: rgba(83, 200, 238, 0.09);
    border-color: rgba(83, 200, 238, 0.65);
}

.source-name {
    color: #67d3f3;
    font-size: 1.08rem;
    font-weight: 700;
}

.source-description {
    color: #b9c4ca;
    font-size: 0.94rem;
    line-height: 1.45;
}

/* =========================
   Mobile
   ========================= */

@media (max-width: 720px) {
    .navigation {
        min-height: 46px;
    }

    .menu-button {
        width: 46px;
        height: 46px;
        margin-left: auto;

        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;

        padding: 0 14px;
        cursor: pointer;
    }

    .menu-button span {
        display: block;
        width: 100%;
        height: 2px;

        background: #ffffff;
        border-radius: 2px;
    }

    .navigation-links {
        display: none;
        min-height: 0;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 0;

        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navigation-links a {
        padding: 14px 22px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .menu-toggle:checked ~ .navigation-links {
        display: flex;
    }

    .page-background {
        padding: 30px 14px 60px;
        background-attachment: scroll;
        background-position: 68% top;
    }

    .content,
    .player-header,
    .player-section {
        padding: 24px 20px;
    }

    .player-header {
        margin-bottom: 20px;
    }

    .player-video,
    .player-section {
        margin-bottom: 20px;
    }

    .summary-content,
    .report-content {
        font-size: 1rem;
        line-height: 1.68;
    }
}
/* =========================
   Players archive
   ========================= */

.players-page {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.players-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;

    margin-bottom: 24px;
    padding: clamp(26px, 4vw, 42px);

    background: rgba(7, 11, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 4px solid #53c8ee;
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

.players-page-header h1 {
    margin-bottom: 10px;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
}

.players-page-header p {
    max-width: 660px;
    color: #c1cbd0;
    font-size: 1.05rem;
    line-height: 1.55;
}

.players-count {
    min-width: 130px;
    text-align: right;
}

.players-count strong {
    display: block;
    color: #53c8ee;
    font-size: 2.3rem;
    line-height: 1;
}

.players-count span {
    display: block;
    margin-top: 7px;
    color: #9eabb2;
    font-size: 0.9rem;
}

.players-tools {
    margin-bottom: 22px;
    padding: 20px;

    background: rgba(7, 11, 15, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
}

.player-search {
    display: block;
}

.player-search span {
    display: block;
    margin-bottom: 9px;

    color: #dce4e8;
    font-size: 0.92rem;
    font-weight: 700;
}

.player-search input {
    width: 100%;
    height: 48px;
    padding: 0 16px;

    color: #ffffff;
    font: inherit;

    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    outline: none;
}

.player-search input:focus {
    border-color: #53c8ee;
    box-shadow: 0 0 0 3px rgba(83, 200, 238, 0.13);
}

.player-search input::placeholder {
    color: #839097;
}

.players-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.player-list-card {
    display: grid;
    grid-template-columns: minmax(260px, 38%) 1fr;
    overflow: hidden;

    min-height: 230px;

    background: rgba(7, 11, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.28);

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.player-list-card:hover {
    transform: translateY(-3px);
    border-color: rgba(83, 200, 238, 0.58);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.38);
}

.player-list-image {
    display: block;
    min-height: 230px;
    overflow: hidden;
    background: #050709;
}

.player-list-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.player-list-card:hover .player-list-image img {
    transform: scale(1.025);
}

.player-list-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: clamp(24px, 4vw, 38px);
}

.player-list-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.player-list-heading h2 {
    margin-bottom: 8px;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    line-height: 1.15;
}

.player-list-heading h2 a {
    color: #ffffff;
    text-decoration: none;
}

.player-list-heading h2 a:hover {
    color: #67d3f3;
}

.player-list-details {
    color: #c3cdd2;
    font-size: 1rem;
    line-height: 1.45;
}

.player-list-summary {
    max-width: 680px;
    margin-top: 22px;

    color: #e2e7e9;
    font-size: 1rem;
    line-height: 1.65;
}

.player-list-byline {
    margin-top: 18px;

    color: #98a5ac;
    font-size: 0.88rem;
}

.player-list-action {
    flex-shrink: 0;
    padding: 11px 16px;

    color: #081015;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;

    background: #53c8ee;
    border-radius: 7px;

    transition:
        transform 0.18s ease,
        background 0.18s ease;
}

.player-list-action:hover {
    transform: translateY(-2px);
    background: #78daf5;
}

.players-no-results,
.players-empty {
    padding: 32px;

    color: #c2ccd1;
    text-align: center;

    background: rgba(7, 11, 15, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
}

.player-list-card[hidden],
.players-no-results[hidden] {
    display: none;
}

@media (max-width: 760px) {
    .players-page-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .players-count {
        text-align: left;
    }

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

    .player-list-image,
    .player-list-image img {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .player-list-heading {
        flex-direction: column;
    }

    .player-list-action {
        align-self: flex-start;
    }
}
.player-sort {
    display: block;
    min-width: 230px;
}

.player-sort span {
    display: block;
    margin-bottom: 9px;
    color: #dce4e8;
    font-size: 0.92rem;
    font-weight: 700;
}

.player-sort select {
    width: 100%;
    height: 48px;
    padding: 0 42px 0 16px;

    color: #ffffff;
    font: inherit;

    background-color: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
}

.player-sort select:focus {
    border-color: #53c8ee;
    box-shadow: 0 0 0 3px rgba(83, 200, 238, 0.13);
}

.player-sort option {
    color: #ffffff;
    background: #10151a;
}

@media (min-width: 760px) {
    .players-tools {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 230px;
        align-items: end;
        gap: 18px;
    }
}
/* =========================
   Construction notice
   ========================= */

.construction-notice {
    width: min(920px, calc(100% - 32px));
    margin: 24px auto 48px;
    padding: 28px 32px;

    background: rgba(7, 11, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 4px solid #53c8ee;
    border-radius: 14px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.construction-notice h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
}

.construction-notice p {
    margin: 0;
    max-width: 760px;
    color: #c5cfd4;
    font-size: 1rem;
    line-height: 1.65;
}

.construction-notice p + p {
    margin-top: 12px;
}
/* =========================
   Updates archive
   ========================= */

.updates-page {
    width: min(1050px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
}

.updates-page-header {
    margin-bottom: 28px;
    padding: clamp(26px, 4vw, 40px);

    background: rgba(7, 11, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 4px solid #53c8ee;
    border-radius: 14px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.updates-page-header h1 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.1;
}

.updates-page-header p {
    margin: 0;
    max-width: 720px;
    color: #c5cfd4;
    font-size: 1.05rem;
    line-height: 1.6;
}

.updates-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.update-card {
    padding: clamp(24px, 4vw, 34px);

    background: rgba(7, 11, 15, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.26);
}

.update-date {
    margin: 0 0 10px;
    color: #53c8ee;
    font-size: 0.9rem;
    font-weight: 700;
}

.update-card h2 {
    margin: 0 0 12px;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.2;
}

.update-card h2 a {
    color: #ffffff;
    text-decoration: none;
}

.update-card h2 a:hover {
    color: #67d3f3;
}

.update-excerpt {
    max-width: 760px;
    color: #d6dde1;
    font-size: 1rem;
    line-height: 1.65;
}

.update-link {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 15px;

    color: #081015;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;

    background: #53c8ee;
    border-radius: 7px;
}

.update-link:hover {
    background: #78daf5;
}

.updates-empty {
    padding: 30px;

    color: #c5cfd4;
    text-align: center;

    background: rgba(7, 11, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
}


/* =========================
   Individual update page
   ========================= */

.update-article {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
}

.update-article-header,
.update-article-content,
.update-source,
.update-action {
    background: rgba(7, 11, 15, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.update-article-header {
    margin-bottom: 20px;
    padding: clamp(26px, 4vw, 40px);
    border-left: 4px solid #53c8ee;
}

.update-article-date {
    margin: 0 0 10px;
    color: #53c8ee;
    font-size: 0.9rem;
    font-weight: 700;
}

.update-article-header h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.12;
}

.update-related-player {
    margin: 16px 0 0;
    color: #b8c3c9;
}

.update-related-player a {
    color: #67d3f3;
    text-decoration: none;
}

.update-article-content {
    padding: clamp(24px, 4vw, 38px);
    color: #e2e7e9;
    font-size: 1.05rem;
    line-height: 1.7;
}

.update-article-content > p:first-child {
    margin-top: 0;
}

.update-article-content > p:last-child {
    margin-bottom: 0;
}

.update-article-content .twitter-tweet {
    margin: 28px auto 0 !important;
}

.update-source,
.update-action {
    margin-top: 20px;
    padding: 20px 24px;
}

.update-source span {
    display: block;
    margin-bottom: 6px;
    color: #9daab1;
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.update-source a {
    color: #67d3f3;
    text-decoration: none;
}

.update-action a {
    display: inline-block;
    padding: 11px 16px;

    color: #081015;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;

    background: #53c8ee;
    border-radius: 7px;
}

.update-action a:hover {
    background: #78daf5;
}

@media (max-width: 640px) {
    .updates-page,
    .update-article {
        width: min(100% - 20px, 920px);
        padding: 28px 0;
    }

    .update-article-content {
        font-size: 1rem;
    }
}
.update-article {
    width: min(1040px, calc(100% - 32px));
}

.update-article-header h1 {
    font-size: clamp(2rem, 4.2vw, 3rem);
}
/* =========================
   About page
   ========================= */

.about-page {
    width: min(960px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
}

.about-header,
.about-content,
.about-links {
    background: rgba(7, 11, 15, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.about-header {
    margin-bottom: 20px;
    padding: clamp(28px, 5vw, 44px);
    border-left: 4px solid #53c8ee;
}

.about-header h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
}

.about-content {
    padding: clamp(26px, 4vw, 40px);
}

.about-content p {
    margin: 0 0 20px;
    color: #d5dde1;
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-links {
    margin-top: 20px;
    padding: clamp(26px, 4vw, 40px);
}

.about-links h2 {
    margin: 0 0 22px;
    padding-bottom: 14px;

    color: #ffffff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);

    border-bottom: 1px solid rgba(83, 200, 238, 0.55);
}

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

.about-link-card {
    display: flex;
    align-items: center;
    gap: 16px;

    min-height: 84px;
    padding: 16px 18px;

    color: #ffffff;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

.about-link-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(83, 200, 238, 0.65);
}

.about-link-card img {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    object-fit: contain;
}

.about-link-card span {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-link-card strong {
    color: #ffffff;
    font-size: 1rem;
}

.about-link-card small {
    color: #aeb9bf;
    font-size: 0.9rem;
}

@media (max-width: 650px) {
    .about-page {
        width: min(100% - 20px, 960px);
        padding: 28px 0;
    }

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

    .about-content p {
        font-size: 1rem;
    }
}
.about-links-intro {
    margin-bottom: 2rem;
    color: #b8c2cc;
}

/* =========================
   Podcast page
   ========================= */

.podcast-page {
    width: min(960px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
}

.podcast-page-header,
.podcast-about,
.podcast-platforms {
    background: rgba(7, 11, 15, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.podcast-page-header {
    margin-bottom: 20px;
    padding: clamp(28px, 5vw, 44px);
    border-left: 4px solid #53c8ee;
}

.podcast-label {
    margin: 0 0 10px;
    color: #53c8ee;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.podcast-page-header h1 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
}

.podcast-page-header p:last-child {
    margin: 0;
    max-width: 720px;
    color: #c5cfd4;
    font-size: 1.05rem;
    line-height: 1.6;
}

.podcast-about,
.podcast-platforms {
    padding: clamp(26px, 4vw, 40px);
}

.podcast-about {
    margin-bottom: 20px;
}

.podcast-about h2,
.podcast-platforms h2 {
    margin: 0 0 22px;
    padding-bottom: 14px;
    color: #ffffff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    border-bottom: 1px solid rgba(83, 200, 238, 0.55);
}

.podcast-about p {
    margin: 0 0 20px;
    color: #d5dde1;
    font-size: 1.05rem;
    line-height: 1.7;
}

.podcast-about p:last-child {
    margin-bottom: 0;
}

.podcast-language-note {
    padding: 14px 16px;
    color: #bfcbd1 !important;
    background: rgba(83, 200, 238, 0.08);
    border-left: 3px solid #53c8ee;
    border-radius: 7px;
}

.podcast-platforms-intro {
    margin: 0 0 24px;
    color: #b8c2cc;
    line-height: 1.6;
}

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

.podcast-platform-card {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 88px;
    padding: 16px 18px;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease;
}

.podcast-platform-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(83, 200, 238, 0.65);
}

.podcast-platform-card img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}

.podcast-platform-card span:not(.podcast-platform-arrow) {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 5px;
}

.podcast-platform-card strong {
    color: #ffffff;
    font-size: 1rem;
}

.podcast-platform-card small {
    color: #aeb9bf;
    font-size: 0.9rem;
}

.podcast-platform-arrow {
    color: #53c8ee;
    font-size: 1.5rem;
    font-weight: 700;
}

@media (max-width: 650px) {
    .podcast-page {
        width: min(100% - 20px, 960px);
        padding: 28px 0;
    }

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

    .podcast-about p {
        font-size: 1rem;
    }
}
.podcast-episodes {
    margin-top: 20px;
    padding: clamp(26px, 4vw, 40px);

    background: rgba(7, 11, 15, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.podcast-episodes h2 {
    margin: 0 0 14px;
    padding-bottom: 14px;

    color: #ffffff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);

    border-bottom: 1px solid rgba(83, 200, 238, 0.55);
}

.podcast-episodes-intro {
    margin: 0 0 22px;
    color: #b8c2cc;
    line-height: 1.6;
}

.podcast-episodes iframe {
    display: block;
    width: 100%;
    border-radius: 12px;
}
/* =========================
   Podcast episode list
   ========================= */

.podcast-episode-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.podcast-episode-card {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    overflow: hidden;

    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 12px;
}

.podcast-episode-image {
    display: block;
    min-height: 190px;
    background: rgba(255, 255, 255, 0.035);
}

.podcast-episode-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
}

.podcast-episode-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 24px 26px;
}

.podcast-episode-content h3 {
    margin: 0 0 12px;
    font-size: clamp(1.25rem, 2.5vw, 1.65rem);
    line-height: 1.25;
}

.podcast-episode-content h3 a {
    color: #ffffff;
    text-decoration: none;
}

.podcast-episode-content h3 a:hover {
    color: #67d3f3;
}

.podcast-episode-meta {
    margin: 0 0 20px;
    color: #aeb9bf;
    font-size: 0.92rem;
}

.podcast-episode-action {
    display: inline-block;
    padding: 10px 15px;

    color: #081015;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;

    background: #53c8ee;
    border-radius: 7px;
}

.podcast-episode-action:hover {
    background: #78daf5;
}

.podcast-loading {
    color: #b8c2cc;
}

@media (max-width: 650px) {
    .podcast-episode-card {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .podcast-episode-image,
    .podcast-episode-image img {
        min-height: 130px;
    }

    .podcast-episode-content {
        padding: 16px;
    }

    .podcast-episode-content h3 {
        font-size: 1.05rem;
    }

    .podcast-episode-meta {
        margin-bottom: 14px;
        font-size: 0.82rem;
    }
}
/* Podcast episode improvements */

.podcast-episode-search {
    display: block;
    margin: 0 0 24px;
}

.podcast-episode-search span {
    display: block;
    margin-bottom: 9px;
    color: #dce4e8;
    font-size: 0.92rem;
    font-weight: 700;
}

.podcast-episode-search input {
    width: 100%;
    height: 50px;
    padding: 0 16px;

    color: #ffffff;
    font: inherit;

    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    outline: none;
}

.podcast-episode-search input::placeholder {
    color: #96a4ab;
}

.podcast-episode-search input:focus {
    border-color: #53c8ee;
    box-shadow: 0 0 0 3px rgba(83, 200, 238, 0.13);
}

.podcast-episode-no-results {
    margin: 0 0 20px;
    padding: 16px 18px;

    color: #c5cfd4;

    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 9px;
}

.podcast-episode-card {
    grid-template-columns: 230px minmax(0, 1fr);
}

.podcast-episode-image {
    min-height: 230px;
}

.podcast-episode-image img {
    min-height: 230px;
}

.podcast-episode-number {
    margin: 0 0 8px;

    color: #53c8ee;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.podcast-episode-description {
    display: -webkit-box;
    overflow: hidden;

    margin: 0 0 20px;
    max-width: 650px;

    color: #c5cfd4;
    font-size: 0.95rem;
    line-height: 1.55;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.podcast-episode-action {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.podcast-episode-action img {
    width: 18px;
    height: 18px;
}

@media (max-width: 650px) {
    .podcast-episode-card {
        grid-template-columns: 125px minmax(0, 1fr);
    }

    .podcast-episode-image,
    .podcast-episode-image img {
        min-height: 150px;
    }

    .podcast-episode-description {
        -webkit-line-clamp: 2;
        font-size: 0.88rem;
    }
}
/* Keep podcast artwork square and uncropped */

.podcast-episode-card {
    grid-template-columns: 230px minmax(0, 1fr);
}

.podcast-episode-image {
    width: 230px;
    height: 230px;
    min-height: 0;
    align-self: center;
    background: #090d11;
}

.podcast-episode-image img {
    width: 230px;
    height: 230px;
    min-height: 0;
    object-fit: contain;
}

@media (max-width: 650px) {
    .podcast-episode-card {
        grid-template-columns: 125px minmax(0, 1fr);
    }

    .podcast-episode-image {
        width: 125px;
        height: 125px;
    }

    .podcast-episode-image img {
        width: 125px;
        height: 125px;
    }
}
/* =========================
   Music page
   ========================= */

.music-page {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
}

.music-page-header,
.music-latest,
.music-playlist,
.music-channel {
    background: rgba(7, 11, 15, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.music-page-header {
    margin-bottom: 20px;
    padding: clamp(28px, 5vw, 44px);
    border-left: 4px solid #53c8ee;
}

.music-label {
    margin: 0 0 10px;
    color: #53c8ee;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.music-page-header h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    line-height: 1.08;
}

.music-page-header p {
    margin: 0;
    max-width: 800px;
    color: #cbd4d9;
    font-size: 1.05rem;
    line-height: 1.7;
}

.music-page-header p + p {
    margin-top: 12px;
}

.music-latest,
.music-playlist,
.music-channel {
    margin-top: 20px;
    padding: clamp(26px, 4vw, 40px);
}

.music-latest h2,
.music-playlist h2,
.music-channel h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.2;
}

.music-latest > h2 {
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(83, 200, 238, 0.55);
}

.music-latest-video {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    gap: 28px;
    align-items: start;
}

.music-latest-details {
    min-width: 0;
}

.music-latest-details h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.25;
}

.music-latest-date {
    margin: 0 0 16px;
    color: #53c8ee;
    font-size: 0.9rem;
    font-weight: 700;
}

.music-latest-description {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 22px;
    color: #c5cfd4;
    font-size: 0.97rem;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
}

.music-video-frame {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 12px;
}

.music-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.music-youtube-action,
.music-channel > a,
.music-playlist-heading > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 16px;
    color: #081015;
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    background: #53c8ee;
    border-radius: 7px;
}

.music-youtube-action:hover,
.music-channel > a:hover,
.music-playlist-heading > a:hover {
    background: #78daf5;
}

.music-youtube-action img,
.music-channel a img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.music-playlist-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(83, 200, 238, 0.55);
}

.music-playlist-heading p {
    margin: 8px 0 0;
    color: #b8c2cc;
    line-height: 1.55;
}

.music-playlist-heading > a {
    flex-shrink: 0;
}

.music-channel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 48px;
}

.music-channel p {
    margin: 10px 0 0;
    color: #b8c2cc;
    line-height: 1.6;
}

.music-loading {
    color: #b8c2cc;
}

@media (max-width: 800px) {
    .music-latest-video {
        grid-template-columns: 1fr;
    }

    .music-playlist-heading,
    .music-channel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 650px) {
    .music-page {
        width: min(100% - 20px, 1040px);
        padding: 28px 0;
    }

    .music-page-header,
    .music-latest,
    .music-playlist,
    .music-channel {
        padding: 22px;
    }

    .music-playlist-heading > a,
    .music-channel > a {
        width: 100%;
    }
}
/* =========================
   Scoutland Yard homepage
   ========================= */

.yard-page {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
}

.yard-header,
.yard-section,
.yard-music {
    background: rgba(7, 11, 15, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.yard-header {
    padding: clamp(30px, 5vw, 48px);
    border-left: 4px solid #53c8ee;
}

.yard-label,
.yard-section-label {
    margin: 0 0 10px;
    color: #53c8ee;
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.yard-header h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(2.7rem, 7vw, 5rem);
    line-height: 1;
}

.yard-intro {
    margin: 0;
    max-width: 760px;
    color: #cbd4d9;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.65;
}

.yard-construction {
    width: 100%;
    margin: 20px 0 0;
}

.yard-section {
    margin-top: 20px;
    padding: clamp(26px, 4vw, 40px);
}

.yard-section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(83, 200, 238, 0.5);
}

.yard-section-heading h2,
.yard-music h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.2;
}

.yard-section-heading p:not(.yard-section-label),
.yard-music-content > p:not(.yard-section-label) {
    margin: 10px 0 0;
    max-width: 720px;
    color: #b8c2cc;
    line-height: 1.6;
}

.yard-section-heading > a {
    flex-shrink: 0;
    padding: 10px 14px;
    color: #67d3f3;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid rgba(83, 200, 238, 0.48);
    border-radius: 7px;
}

.yard-section-heading > a:hover {
    color: #ffffff;
    background: rgba(83, 200, 238, 0.12);
}

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

.yard-report-card {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    min-width: 0;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
}

.yard-report-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #080b0e;
}

.yard-report-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yard-report-content {
    display: flex;
    align-items: flex-start;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.yard-report-added,
.yard-update-date,
.yard-podcast-meta {
    margin: 0 0 8px;
    color: #53c8ee;
    font-size: 0.82rem;
    font-weight: 700;
}

.yard-report-content h3,
.yard-update-card h3,
.yard-podcast-content h3 {
    margin: 0 0 10px;
    line-height: 1.25;
}

.yard-report-content h3 {
    font-size: 1.35rem;
}

.yard-report-content h3 a,
.yard-update-card h3 a,
.yard-podcast-content h3 a {
    color: #ffffff;
    text-decoration: none;
}

.yard-report-content h3 a:hover,
.yard-update-card h3 a:hover,
.yard-podcast-content h3 a:hover {
    color: #67d3f3;
}

.yard-report-details {
    margin: 0 0 12px;
    color: #c8d1d5;
    font-size: 0.92rem;
    line-height: 1.5;
}

.yard-report-date {
    margin: 0 0 20px;
    color: #98a5ac;
    font-size: 0.87rem;
}

.yard-card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 10px 15px;
    color: #081015;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    background: #53c8ee;
    border-radius: 7px;
}

.yard-card-action:hover {
    background: #78daf5;
}

.yard-update-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.yard-update-card {
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
}

.yard-update-card h3 {
    font-size: 1.3rem;
}

.yard-update-card > p:not(.yard-update-date) {
    margin: 0 0 14px;
    color: #c5cfd4;
    line-height: 1.6;
}

.yard-text-link {
    color: #67d3f3;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}

.yard-text-link:hover {
    color: #ffffff;
}

.yard-podcast {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
}

.yard-podcast-image {
    display: block;
    width: 230px;
    height: 230px;
    background: #080b0e;
}

.yard-podcast-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.yard-podcast-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 26px 30px;
}

.yard-podcast-content h3 {
    font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.yard-podcast-description {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 20px;
    color: #c5cfd4;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.yard-music {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    overflow: hidden;
    margin-top: 20px;
}

.yard-music-image {
    min-height: 175px;
    background: #080b0e;
}

.yard-music-image a,
.yard-music-image img {
    display: block;
    width: 100%;
    height: 100%;
}

.yard-music-image img {
    object-fit: cover;
}

.yard-music-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 28px 32px;
}

.yard-music-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
}

.yard-music-actions .yard-card-action {
    margin-top: 0;
}

.yard-loading,
.yard-empty {
    margin: 0;
    color: #b8c2cc;
}

@media (max-width: 850px) {
    .yard-report-grid {
        grid-template-columns: 1fr;
    }

    .yard-report-card {
        display: grid;
        grid-template-columns: 210px minmax(0, 1fr);
    }

    .yard-report-image {
        height: 100%;
        aspect-ratio: auto;
    }

    .yard-podcast {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .yard-podcast-image {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 650px) {
    .yard-page {
        width: min(100% - 20px, 1120px);
        padding: 28px 0;
    }

    .yard-section-heading {
        flex-direction: column;
    }

    .yard-section-heading > a {
        width: 100%;
        text-align: center;
    }

    .yard-report-card,
    .yard-podcast,
    .yard-music {
        display: flex;
        flex-direction: column;
    }

    .yard-report-image {
        aspect-ratio: 16 / 9;
    }

    .yard-podcast-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .yard-music-image {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .yard-music-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .yard-music-actions .yard-card-action {
        width: 100%;
    }
}
.short-video-section {
    display: flex;
    justify-content: center;
    padding: 32px;
}

.short-video-frame {
    width: 100%;
    max-width: 760px;
    padding: 28px;
    background: rgba(7, 12, 17, 0.96);
    border: 1px solid rgba(65, 199, 231, 0.28);
    border-radius: 16px;
    box-sizing: border-box;
}

.short-video-wrapper {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
}

.short-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
    display: block;
}
.report-button {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;
    background: #18b7d8;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.report-button:hover {
    background: #0f97b5;
}
.shorts-index-page {
    max-width: 1180px;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 28px;
}

.short-card {
    overflow: hidden;
    background: rgba(7, 12, 17, 0.96);
    border: 1px solid rgba(65, 199, 231, 0.25);
    border-radius: 14px;
}

.short-card-image-link {
    position: relative;
    display: block;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #05080b;
}

.short-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.short-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 4px;
    background: rgba(0, 0, 0, 0.78);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
}

.short-card-content {
    padding: 22px;
}

.short-card-content h2 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.25;
}

.short-card-content h2 a {
    color: #fff;
    text-decoration: none;
}

.short-card-content h2 a:hover {
    color: #41c7e7;
}

.short-card-player {
    margin: 0 0 14px;
    color: #b8c3cc;
    font-weight: 600;
}

.short-card-description {
    margin: 0 0 18px;
    line-height: 1.55;
    color: #e2e6e9;
}

@media (max-width: 640px) {
    .shorts-grid {
        grid-template-columns: 1fr;
    }

    .short-card {
        max-width: 420px;
        margin: 0 auto;
    }
}
.short-list-image {
    flex: 0 0 220px;
    height: 390px;
    background: #05080b;
}

.short-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 760px) {
    .short-list-card {
        align-items: stretch;
    }

    .short-list-image {
        flex: none;
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 9 / 16;
        margin: 0 auto;
    }
}
.yard-report-card[hidden] {
    display: none;
}
.report-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.7rem 1rem;
    background: #4fc3e8;
    color: #071015;
    font-weight: 700;
    text-decoration: none;
    border-radius: 7px;
    transition: 0.2s ease;
}

.report-button:hover {
    background: #74d3ef;
}
/* =========================
   Player profile sharing
   ========================= */

.player-share-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
    padding: 10px 15px;

    color: #ffffff;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 700;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(83, 200, 238, 0.5);
    border-radius: 8px;

    cursor: pointer;
}

.player-share-button:hover {
    background: rgba(83, 200, 238, 0.12);
    border-color: #53c8ee;
}

.player-share-button svg {
    width: 19px;
    height: 19px;

    fill: #53c8ee;
    stroke: #53c8ee;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.player-share-dialog {
    width: min(600px, calc(100vw - 32px));
    padding: 24px;

    color: #f5f7f8;
    background: #0d1217;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
}

.player-share-dialog::backdrop {
    background: rgba(0, 0, 0, 0.72);
}

.player-share-dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 24px;
}

.player-share-dialog-header h2 {
    margin: 0;
    font-size: 1.35rem;
}

.player-share-close {
    width: 38px;
    height: 38px;

    color: #ffffff;
    font-size: 1.7rem;
    line-height: 1;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;

    cursor: pointer;
}

.player-share-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;

    margin-bottom: 24px;
}

.player-share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;

    padding: 8px;

    color: #ffffff;
    font-size: 0.88rem;
    text-align: center;
    text-decoration: none;

    border-radius: 10px;
}

.player-share-option:hover {
    background: rgba(255, 255, 255, 0.06);
}

.player-share-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.player-share-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9px;
}

.player-share-copy input {
    min-width: 0;
    padding: 12px 14px;

    color: #c8d1d5;
    font: inherit;
    font-size: 0.9rem;

    background: transparent;
    border: 0;
    outline: 0;
}

.player-share-copy button {
    padding: 0 18px;

    color: #081015;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 800;

    background: #53c8ee;
    border: 0;

    cursor: pointer;
}

.player-share-copy button:hover {
    background: #78daf5;
}

@media (max-width: 600px) {

    .player-share-dialog {
        padding: 20px;
    }

    .player-share-options {
        grid-template-columns: repeat(2, 1fr);
    }

}
/* Desktop share dialog adjustment */

.player-share-dialog {
    margin: auto;
}
/* =========================
   SkyrScout crew cards
   ========================= */

.about-team {
    margin-top: 20px;
    padding: clamp(26px, 4vw, 40px);

    background: rgba(7, 11, 15, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.about-team-heading {
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(83, 200, 238, 0.55);
}

.about-team-label {
    margin: 0 0 8px;

    color: #53c8ee;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.about-team-heading h2 {
    margin: 0 0 10px;

    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.about-team-heading > p:last-child {
    margin: 0;
    color: #b8c2cc;
    line-height: 1.6;
}

.scout-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.scout-card {
    display: flex;
    flex-direction: column;

    padding: 24px;

    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-top: 3px solid #53c8ee;
    border-radius: 12px;
}

.scout-card-header {
    margin-bottom: 18px;
}

.scout-card-role {
    margin: 0 0 8px;

    color: #53c8ee;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.scout-card h3 {
    margin: 0;

    color: #ffffff;
    font-size: 1.65rem;
    line-height: 1.1;
}

.scout-card-quote {
    margin: 10px 0 0;

    color: #98a5ac;
    font-size: 0.9rem;
    font-style: italic;
}

.scout-card-bio {
    margin: 0 0 24px;

    color: #d4dce0;
    font-size: 0.94rem;
    line-height: 1.65;
}

.scout-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-bottom: 24px;
}

.scout-stat {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 9px;
}

.scout-stat > span:first-child {
    color: #c1cbd0;
    font-size: 0.78rem;
    font-weight: 700;
}

.scout-stat strong {
    color: #ffffff;
    font-size: 0.88rem;
    text-align: right;
}

.scout-stat-bar {
    display: block;
    overflow: hidden;

    height: 6px;

    background: rgba(255, 255, 255, 0.09);
    border-radius: 999px;
}

.scout-stat-bar > span {
    display: block;
    height: 100%;

    background: #53c8ee;
    border-radius: inherit;
}

.scout-trait {
    margin-top: auto;
    padding: 15px 16px;

    background: rgba(83, 200, 238, 0.07);
    border: 1px solid rgba(83, 200, 238, 0.22);
    border-radius: 9px;
}

.scout-trait > span {
    display: block;
    margin-bottom: 5px;

    color: #53c8ee;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.scout-trait strong {
    display: block;
    margin-bottom: 7px;

    color: #ffffff;
    font-size: 1rem;
}

.scout-trait p {
    margin: 0;

    color: #bfc9ce;
    font-size: 0.84rem;
    line-height: 1.5;
}

#bon-scout,
#scout-pilgrim,
#scouty-pippen {
    scroll-margin-top: 20px;
}

@media (max-width: 900px) {
    .scout-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .about-team {
        padding: 22px;
    }

    .scout-card {
        padding: 20px;
    }

    .scout-stat {
        grid-template-columns: 82px minmax(0, 1fr) 28px;
    }
}
/* Scouting report author links */

.report-author-link {
    color: #67d3f3;
    font-weight: 700;
    text-decoration: none;
}

.report-author-link:hover {
    color: #ffffff;
    text-decoration: underline;
}
/* Players - scouting crew counters */

.players-scout-counts {
    margin: 0 0 28px;
    padding: 18px 20px;
    background: rgba(9, 20, 27, 0.78);
    border: 1px solid rgba(103, 211, 243, 0.18);
    border-radius: 12px;
}

.players-scout-counts-label {
    display: block;
    margin-bottom: 12px;
    color: #8f9ca3;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.players-scout-counts-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.players-scout-count {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    color: #ffffff;
    text-decoration: none;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.players-scout-count:hover {
    background: rgba(103, 211, 243, 0.08);
    border-color: rgba(103, 211, 243, 0.35);
    transform: translateY(-1px);
}

.players-scout-count strong {
    flex: 0 0 auto;
    color: #67d3f3;
    font-size: 1.55rem;
    line-height: 1;
}

.players-scout-count span {
    min-width: 0;
    color: #dce5e9;
    font-size: 0.92rem;
    font-weight: 700;
}

.player-list-author-link {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
}

.player-list-author-link:hover {
    color: #67d3f3;
    text-decoration: underline;
}

@media (max-width: 650px) {

    .players-scout-counts {
        padding: 16px;
    }

    .players-scout-counts-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .players-scout-count {
        padding: 10px 12px;
    }

    .players-scout-count strong {
        min-width: 32px;
        font-size: 1.4rem;
    }
}
/* Additional player videos */

.additional-videos-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.additional-video-card {
    overflow: hidden;
    background: rgba(8, 15, 20, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
}

.additional-video-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
}

.additional-video-heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.35;
}

.additional-video-date {
    flex: 0 0 auto;
    color: #8f9ca3;
    font-size: 0.8rem;
    white-space: nowrap;
}

.additional-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.additional-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 700px) {

    .additional-videos-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================
   Scoutland Yard - Latest Updates Marquee
   ========================= */

.yard-marquee {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    margin-top: 20px;
    background:
        linear-gradient(
            110deg,
            rgba(8, 13, 18, 0.94),
            rgba(15, 25, 31, 0.92)
        );
    border: 1px solid rgba(83, 200, 238, 0.45);
    border-radius: 12px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.28),
        0 0 22px rgba(239, 169, 76, 0.10);
}

.yard-marquee::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(255, 181, 82, 0.08) 50%,
        transparent 65%
    );
}

.yard-marquee-label {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: #ffffff;
    background: rgba(83, 200, 238, 0.14);
    border-right: 1px solid rgba(83, 200, 238, 0.4);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.yard-marquee-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex: 1;
}

.yard-marquee-item {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: #e8eef2;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.yard-marquee-item:last-child {
    border-right: 0;
}

.yard-marquee-item:hover {
    color: #ffffff;
    background: rgba(255, 181, 82, 0.08);
}

@media (max-width: 760px) {
    .yard-marquee {
        display: block;
    }

    .yard-marquee-label {
        border-right: 0;
        border-bottom: 1px solid rgba(83, 200, 238, 0.4);
    }

    .yard-marquee-items {
        grid-template-columns: 1fr;
    }

    .yard-marquee-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .yard-marquee-item:last-child {
        border-bottom: 0;
    }
}
@keyframes yard-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.yard-marquee-items {
    display: flex;
    width: max-content;
    animation: yard-marquee-scroll 24s linear infinite;
}

.yard-marquee:hover .yard-marquee-items {
    animation-play-state: paused;
}

.yard-marquee-item {
    min-width: 360px;
}
/* MARQUEE – clipping + light treatment */

.yard-marquee-label {
    position: relative;
    z-index: 10;
    flex: 0 0 auto;
    background:
        linear-gradient(
            135deg,
            rgba(13, 33, 42, 0.98),
            rgba(9, 20, 27, 0.98)
        );
    box-shadow:
        8px 0 18px rgba(0, 0, 0, 0.55),
        inset -1px 0 rgba(83, 200, 238, 0.45);
}

.yard-marquee-items {
    position: relative;
    z-index: 1;
}

.yard-marquee-item {
    min-width: 360px;
    border-right: 0;
}

.yard-marquee-item::before {
    content: "◆";
    color: #d9a34a;
    margin-right: 14px;
    font-size: 0.65rem;
    text-shadow:
        0 0 8px rgba(255, 181, 82, 0.75);
}

.yard-marquee {
    border-color: rgba(83, 200, 238, 0.55);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        0 0 18px rgba(83, 200, 238, 0.10),
        0 0 28px rgba(255, 174, 68, 0.10);
}

.yard-marquee::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        linear-gradient(
            105deg,
            transparent 25%,
            rgba(255, 184, 85, 0.10) 48%,
            transparent 70%
        );
}/* MARQUEE – clipping + light treatment */

.yard-marquee-label {
    position: relative;
    z-index: 10;
    flex: 0 0 auto;
    background:
        linear-gradient(
            135deg,
            rgba(13, 33, 42, 0.98),
            rgba(9, 20, 27, 0.98)
        );
    box-shadow:
        8px 0 18px rgba(0, 0, 0, 0.55),
        inset -1px 0 rgba(83, 200, 238, 0.45);
}

.yard-marquee-items {
    position: relative;
    z-index: 1;
}

.yard-marquee-item {
    min-width: 360px;
    border-right: 0;
}

.yard-marquee-item::before {
    content: "◆";
    color: #d9a34a;
    margin-right: 14px;
    font-size: 0.65rem;
    text-shadow:
        0 0 8px rgba(255, 181, 82, 0.75);
}

.yard-marquee {
    border-color: rgba(83, 200, 238, 0.55);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        0 0 18px rgba(83, 200, 238, 0.10),
        0 0 28px rgba(255, 174, 68, 0.10);
}

.yard-marquee::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        linear-gradient(
            105deg,
            transparent 25%,
            rgba(255, 184, 85, 0.10) 48%,
            transparent 70%
        );
}
.yard-marquee-items {
    flex: 0 0 auto;
    width: max-content;
}
/* Update articles – improve readability */

.update-article-content {
    line-height: 1.75;
}

.update-article-content p {
    margin: 0 0 1.25rem;
}

.update-article-content p:last-child {
    margin-bottom: 0;
}

.update-article-content .report-button {
    margin-top: 0.75rem;
}

/* =========================
   Structured player facts
   ========================= */

.player-report-age {
    color: #9daab1;
}

.player-facts {
    padding: clamp(24px, 3.5vw, 34px);
}

.player-facts-heading {
    margin-bottom: 18px;
}

.player-facts-kicker {
    margin: 0 0 5px;
    color: #67d3f3;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.player-facts .player-facts-heading h2 {
    margin: 0;
    padding: 0;
    border-bottom: 0;
}

.player-compact-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px;
    margin: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 11px;
}

.player-compact-fact {
    min-width: 0;
    padding: 16px 18px;
    background: #12171b;
}

.player-compact-fact dt {
    margin-bottom: 5px;
    color: #8f9ca3;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.player-compact-fact dd {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.player-fact-separator,
.player-current-age {
    color: #9daab1;
}

.player-compact-positions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 16px;
}

.player-compact-positions dt {
    margin-bottom: 0;
}

.player-position-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.player-position-chips > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    color: #e9f1f4;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.player-position-chips b {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: #061016;
    background: #67d3f3;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 900;
}

.player-position-chips small {
    color: #8f9ca3;
    font-size: 0.76rem;
    font-weight: 600;
}

@media (max-width: 720px) {
    .player-compact-facts {
        grid-template-columns: 1fr;
    }

    .player-compact-positions {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .player-position-chips {
        flex-direction: column;
        align-items: stretch;
    }
}
