/* ==========================================================================
   World Cup 2026 Pillar Page Styles
   ========================================================================== */

/* --- Color Tokens (from Tailwind config) --- */
:root {
    --wc-primary: #091426;
    --wc-primary-container: #1e293b;
    --wc-primary-fixed-dim: #bcc7de;
    --wc-on-primary: #ffffff;
    --wc-secondary: #0051d5;
    --wc-on-secondary: #ffffff;
    --wc-secondary-container: #316bf3;
    --wc-secondary-fixed: #dbe1ff;
    --wc-secondary-fixed-dim: #b4c5ff;
    --wc-on-surface: #0a1d2d;
    --wc-on-surface-variant: #45474c;
    --wc-outline: #75777d;
    --wc-outline-variant: #c5c6cd;
    --wc-surface: #f7f9ff;
    --wc-surface-container-low: #eef4ff;
    --wc-surface-container-lowest: #ffffff;
    --wc-surface-container: #e4efff;
    --wc-surface-container-high: #d9eaff;
    --wc-surface-container-highest: #d2e4fb;
    --wc-tertiary-fixed: #ffdcc2;
    --wc-tertiary-fixed-dim: #ffb77a;
    --wc-tertiary-container: #412000;
    --wc-on-primary-container: #8590a6;
    --wc-error: #ba1a1a;
}

/* --- Hero Section --- */
.wc-hero {
    background: linear-gradient(135deg, #091426 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem;
    min-height: 38rem;
}

.wc-hero-inner {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .wc-hero-inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* Left column */
.wc-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wc-hero-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    background: rgba(0, 81, 213, 0.2);
    color: var(--wc-secondary-fixed-dim);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wc-hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0;
}

@media (min-width: 768px) {
    .wc-hero-title {
        font-size: 4.25rem;
    }
}

.wc-hero-title-highlight {
    color: #0f4bf0;
}

.wc-hero-subtitle {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 36rem;
    line-height: 1.7;
    margin: 0;
}

/* CTA buttons row */
.wc-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.wc-btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--wc-primary), var(--wc-secondary-container));
    color: #ffffff;
    font-weight: 700;
    border-radius: 0.375rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: filter 0.2s, transform 0.1s;
}

.wc-btn-primary:hover {
    filter: brightness(1.1);
    color: #ffffff;
    text-decoration: none;
}

.wc-btn-primary:active {
    transform: scale(0.95);
}

.wc-btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid rgba(197, 198, 205, 0.15);
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    border-radius: 0.375rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.wc-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    text-decoration: none;
}

.wc-btn-outline:active {
    transform: scale(0.95);
}

/* Secondary links row */
.wc-hero-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.wc-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: text-decoration 0.15s;
}

.wc-hero-link:hover {
    text-decoration: underline;
}

.wc-hero-link--accent {
    color: var(--wc-tertiary-fixed);
}

.wc-hero-link--muted {
    color: #94a3b8;
}

.wc-hero-link svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* Right column — stats card */
.wc-hero-card-wrap {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .wc-hero-card-wrap {
        display: block;
    }
}

.wc-hero-glow {
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(0, 81, 213, 0.3);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.wc-hero-card {
    background: rgba(210, 228, 251, 0.1);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.wc-hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: center;
}

.wc-hero-stat {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
}

.wc-hero-stat-value {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--wc-secondary-fixed-dim);
    line-height: 1;
}

.wc-hero-stat-value--sm {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

.wc-hero-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.wc-hero-card-img {
    display: block;
    margin-top: 2rem;
    border-radius: 0.75rem;
    aspect-ratio: 8 / 3;
    object-fit: cover;
    height: 12rem;
    width: 100%;
    mix-blend-mode: lighten;
    opacity: 0.6;
}

/* --- Tournament Quick Facts Bar --- */
.wc-quick-facts-wrap {
    max-width: 80rem;
    margin: -2.5rem auto 0;
    padding: 0 2rem;
    position: relative;
    z-index: 20;
}

.wc-quick-facts {
    background: #ffffff;
    padding: 2rem;
    min-height: 8.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 24px 24px rgba(10, 29, 45, 0.06);
    border: 1px solid var(--wc-surface-container);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .wc-quick-facts {
        flex-direction: row;
    }
}

.wc-quick-facts-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: rgba(0, 81, 213, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-quick-facts-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--wc-secondary);
}

.wc-quick-facts-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--wc-on-surface);
}

.wc-quick-facts-body p {
    margin: 0;
    color: var(--wc-on-surface-variant);
    line-height: 1.7;
}

.wc-quick-facts-action {
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .wc-quick-facts-action {
        margin-left: auto;
    }
}

.wc-btn-pill {
    display: inline-block;
    white-space: nowrap;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid var(--wc-secondary);
    color: var(--wc-secondary);
    font-weight: 700;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.wc-btn-pill:hover {
    background: rgba(0, 81, 213, 0.05);
    color: var(--wc-secondary);
    text-decoration: none;
}

/* ==========================================================================
   Tournament Groups
   ========================================================================== */

.wc-groups-section {
    padding: 5rem 0;
}

.wc-groups {
    max-width: 80rem;
    margin: 0 auto;
}

.wc-groups-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.wc-groups-heading {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: var(--wc-on-surface);
    margin: 0;
}

.wc-groups-subheading {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0.25rem 0 0;
}

.wc-groups-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--wc-secondary);
    text-decoration: none;
}

.wc-groups-link:hover {
    text-decoration: underline;
    color: var(--wc-primary);
}

.wc-groups-link svg {
    width: 0.875rem;
    height: 0.875rem;
}

/* Jump navigation — desktop range badges + mobile dropdown */
.wc-groups-jumpnav {
    display: none; /* hidden on mobile */
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.wc-groups-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4375rem 1rem;
    border-radius: 9999px;
    border: 1px solid transparent;
    background: #eef2f7;
    color: var(--wc-on-surface);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
}

.wc-groups-pill:hover {
    background: #e2e8f0;
    color: var(--wc-primary);
    text-decoration: none;
}

.wc-groups-pill:focus-visible {
    outline: 2px solid var(--wc-secondary);
    outline-offset: 2px;
}

.wc-groups-pill.is-active {
    background: var(--wc-secondary);
    color: #ffffff;
}

/* Mobile dropdown variant */
.wc-groups-jumpselect-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.wc-groups-jumpselect-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--wc-on-surface-variant);
    white-space: nowrap;
}

.wc-groups-jumpselect {
    flex: 1;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0.5rem 2rem 0.5rem 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2345474c'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1.125rem;
    color: var(--wc-on-surface);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    line-height: 1.4;
}

.wc-groups-jumpselect:focus {
    outline: 2px solid var(--wc-secondary);
    outline-offset: 2px;
}

@media (min-width: 768px) {
    .wc-groups-jumpnav {
        display: inline-flex;
    }

    .wc-groups-jumpselect-wrap {
        display: none;
    }
}

/* Grid */
.wc-groups-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .wc-groups-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Card */
.wc-group-card {
    background: var(--wc-surface);
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    overflow-x: auto;
}

.wc-group-card-header {
    background: #0f172a;
    color: #ffffff;
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.wc-group-card-name {
    font-size: 0.8125rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Table */
.wc-group-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
    line-height: 1.2;
}

.wc-group-table thead {
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

.wc-group-table th {
    padding: 0.5rem 0.375rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
}

.wc-group-table th.wc-gt-pos {
    width: 2rem;
    text-align: center;
}

.wc-group-table th.wc-gt-team {
    text-align: left;
    width: auto;
}

.wc-group-table th.wc-gt-form {
    width: 5.5rem;
    text-align: center;
}

.wc-group-table td {
    padding: 0.5rem 0.375rem;
    text-align: center;
    color: var(--wc-on-surface);
    border-bottom: 1px solid #f1f5f9;
}

.wc-group-table td.wc-gt-pos {
    font-weight: 700;
    text-align: center;
}

.wc-group-table td.wc-gt-team {
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 8rem;
}

.wc-group-table td.wc-gt-pts {
    font-weight: 800;
}

.wc-group-table td.wc-gt-form {
    text-align: center;
}

/* Qualifying row accent */
.wc-group-row.wc-group-qualify td:first-child {
    box-shadow: inset 3px 0 0 #16a34a;
}

/* Goal difference colors */
.wc-gd-pos {
    color: #16a34a;
    font-weight: 600;
}

.wc-gd-neg {
    color: var(--wc-error);
    font-weight: 600;
}

/* Form badges */
.wc-form-badge {
    display: inline-block;
    width: 1.125rem;
    height: 1.125rem;
    line-height: 1.125rem;
    text-align: center;
    font-size: 0.5625rem;
    font-weight: 700;
    border-radius: 0.1875rem;
    color: #ffffff;
}

.wc-form-w {
    background: #16a34a;
}

.wc-form-d {
    background: #94a3b8;
}

.wc-form-l {
    background: var(--wc-error);
}

.wc-form-none {
    color: #94a3b8;
}

.wc-groups-empty {
    color: #64748b;
    font-style: italic;
}

/* ==========================================================================
   Competition CTA Banner
   ========================================================================== */

.wc-comp {
    max-width: 80rem;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.wc-comp-card {
    background: var(--wc-tertiary-fixed);
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .wc-comp-card {
        flex-direction: row;
    }
}

/* Background image overlay */
.wc-comp-bg {
    display: none;
}

@media (min-width: 1024px) {
    .wc-comp-bg {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        width: 33.333%;
        height: 100%;
    }

    .wc-comp-bg img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        mix-blend-mode: multiply;
        opacity: 0.5;
    }
}

/* Content */
.wc-comp-content {
    padding: 2rem;
    position: relative;
    z-index: 10;
    flex: 1;
}

@media (min-width: 1024px) {
    .wc-comp-content {
        padding: 3rem 3.5rem;
    }
}

.wc-comp-badge {
    display: inline-block;
    padding: 0.3rem 0.875rem;
    border-radius: 9999px;
    background: #412000;
    color: var(--wc-tertiary-fixed);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.wc-comp-title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--wc-primary);
    letter-spacing: -0.025em;
    margin: 0 0 1rem;
}

@media (min-width: 768px) {
    .wc-comp-title {
        font-size: 2.25rem;
    }
}

.wc-comp-text {
    font-size: 0.9375rem;
    color: rgba(9, 20, 38, 0.8);
    max-width: 32rem;
    line-height: 1.6;
    margin: 0 0 1.75rem;
}

.wc-comp-pool {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem 1rem;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0 0 1.75rem;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(65, 32, 0, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.wc-comp-pool-label {
    color: #6d3a00;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.wc-comp-pool-value {
    color: var(--wc-primary);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}

.wc-comp-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.wc-comp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 0.375rem;
    text-decoration: none;
    text-transform: none;
    text-shadow: none;
    letter-spacing: 0;
    line-height: 1;
    cursor: pointer;
    transition: filter 0.15s, transform 0.1s;
    border: none;
}

.wc-comp-btn:active {
    transform: scale(0.95);
}

.wc-comp-btn--primary {
    background: var(--wc-primary);
    color: #ffffff;
}

.wc-comp-btn--primary:hover {
    filter: brightness(1.3);
    color: #ffffff;
    text-decoration: none;
}

.wc-comp-btn--white {
    background: #ffffff;
    color: var(--wc-primary);
}

.wc-comp-btn--white:hover {
    background: rgba(255, 255, 255, 0.8);
    color: var(--wc-primary);
    text-decoration: none;
}

.wc-comp-btn--outline {
    background: transparent;
    border: 2px solid var(--wc-primary);
    color: var(--wc-primary);
}

.wc-comp-btn--outline:hover {
    background: rgba(9, 20, 38, 0.05);
    color: var(--wc-primary);
    text-decoration: none;
}

/* Mobile competition card overrides */
@media (max-width: 767px) {
    .wc-comp-content {
        padding: 1.5rem;
    }

    .wc-comp-badge {
        margin-bottom: 1.25rem;
    }

    .wc-comp-title {
        font-size: 1.5rem;
    }

    .wc-comp-pool {
        width: 100%;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .wc-comp-ctas {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    /* Primary button full width */
    .wc-comp-btn--primary {
        width: 100%;
        box-sizing: border-box;
        flex: none;
        justify-content: center;
    }

    /* Secondary two share the row equally */
    .wc-comp-btn--white,
    .wc-comp-btn--outline {
        flex: 1 1 0;
        min-width: 0;
        justify-content: center;
    }
}

/* ==========================================================================
   Competition Hero  [wc2026_competition_hero]
   ========================================================================== */

.wc-ch {
    position: relative;
    overflow: hidden;
    background: var(--wc-primary);
    padding: 5.5rem clamp(1.25rem, 4vw, 3rem) 6.5rem;
    min-height: 42rem;
}

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

.wc-ch-accent {
    position: absolute;
    pointer-events: none;
}

.wc-ch-accent--sweep {
    inset: 0 0 0 auto;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(30, 41, 59, 0.4) 0%, rgba(30, 41, 59, 0) 58%);
}

.wc-ch-accent--orb-right {
    top: 22%;
    right: -12rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: rgba(49, 107, 243, 0.2);
    filter: blur(120px);
}

.wc-ch-accent--orb-left {
    left: 20%;
    bottom: -5rem;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: rgba(255, 220, 194, 0.1);
    filter: blur(100px);
}

.wc-ch-shell {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.wc-ch-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4.5rem;
    align-items: center;
}

@media (min-width: 1180px) {
    .wc-ch-grid {
        grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 0.88fr);
        gap: clamp(3rem, 5vw, 5rem);
    }
}

.wc-ch-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
    max-width: 46rem;
}

.wc-ch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    background: rgba(6, 78, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #34d399;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-ch-badge svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.wc-ch-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.6rem, 6vw, 4.25rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.wc-ch-title-accent {
    background: linear-gradient(90deg, var(--wc-secondary) 0%, #4db8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.wc-ch-subtitle {
    margin: 0;
    max-width: 38rem;
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--wc-primary-fixed-dim);
}

.wc-ch-callout {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    max-width: 38rem;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    background: rgba(30, 41, 59, 0.95);
    border-left: 0.25rem solid var(--wc-secondary);
}

.wc-ch-callout-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--wc-secondary-fixed-dim);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.wc-ch-callout-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wc-ch-callout-text {
    margin: 0;
    color: var(--wc-on-primary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.wc-ch-callout-text strong {
    font-weight: 700;
}

.wc-ch-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding-top: 0.125rem;
}

.wc-ch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, filter 0.2s ease, transform 0.1s ease;
}

.wc-ch-btn:active {
    transform: scale(0.98);
}

.wc-ch-btn--primary {
    background: linear-gradient(90deg, var(--wc-secondary) 0%, var(--wc-secondary-container) 100%);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 81, 213, 0.3);
}

.wc-ch-btn--primary:hover {
    filter: brightness(1.1);
    color: #ffffff;
    text-decoration: none;
}

.wc-ch-btn--ghost {
    background: transparent;
    border: 1px solid rgba(197, 198, 205, 0.3);
    color: var(--wc-secondary-fixed);
}

.wc-ch-btn--ghost:hover {
    background: rgba(30, 41, 59, 0.5);
    color: var(--wc-secondary-fixed);
    text-decoration: none;
}

.wc-ch-link {
    color: var(--wc-tertiary-fixed);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.wc-ch-link:hover {
    color: var(--wc-tertiary-fixed-dim);
}

.wc-ch-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 46rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(197, 198, 205, 0.1);
}

@media (min-width: 768px) {
    .wc-ch-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.wc-ch-feature {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(30, 41, 59, 0.4);
}

.wc-ch-feature-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.wc-ch-feature-icon--tertiary {
    color: var(--wc-tertiary-fixed);
}

.wc-ch-feature-icon--secondary {
    color: var(--wc-secondary-fixed);
}

.wc-ch-feature-icon--success {
    color: #34d399;
}

.wc-ch-feature-icon--violet {
    color: #c084fc;
}

.wc-ch-feature-value {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.2;
}

.wc-ch-feature-value--success {
    color: #34d399;
}

.wc-ch-feature-label {
    color: var(--wc-primary-fixed-dim);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-ch-card-wrap {
    position: relative;
    width: 100%;
    max-width: 34rem;
    margin: 0 auto;
}

@media (min-width: 1180px) {
    .wc-ch-card-wrap {
        max-width: none;
        margin: 2rem 0 0;
    }
}

.wc-ch-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 198, 205, 0.1);
    box-shadow: 0 32px 64px rgba(10, 29, 45, 0.4);
}

.wc-ch-card-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.wc-ch-card-head,
.wc-ch-card-body,
.wc-ch-mini-stats {
    position: relative;
    z-index: 1;
}

.wc-ch-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 2rem 0;
}

.wc-ch-card-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: linear-gradient(135deg, var(--wc-tertiary-fixed) 0%, var(--wc-tertiary-fixed-dim) 100%);
    color: var(--wc-tertiary-container);
    box-shadow: 0 8px 24px rgba(255, 220, 194, 0.2);
}

.wc-ch-card-icon svg {
    width: 1.85rem;
    height: 1.85rem;
}

.wc-ch-card-pill {
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-ch-card-body {
    padding: 2rem;
}

.wc-ch-card-title {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
}

.wc-ch-board {
    overflow: hidden;
    border-radius: 0.875rem;
    border: 1px solid rgba(197, 198, 205, 0.1);
    background: rgba(9, 20, 38, 0.5);
}

.wc-ch-board-head,
.wc-ch-board-row {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
}

.wc-ch-board-head {
    padding: 0.875rem 1rem;
    background: rgba(9, 20, 38, 0.8);
    border-bottom: 1px solid rgba(197, 198, 205, 0.1);
    color: var(--wc-primary-fixed-dim);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-ch-board-head-profit {
    text-align: right;
}

.wc-ch-board-row {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid rgba(197, 198, 205, 0.05);
    transition: background 0.2s ease;
}

.wc-ch-board-row:last-child {
    border-bottom: 0;
}

.wc-ch-board-row:hover {
    background: rgba(210, 228, 251, 0.05);
}

.wc-ch-board-rank {
    color: var(--wc-tertiary-fixed);
    font-size: 1rem;
    font-weight: 800;
}

.wc-ch-board-name {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.wc-ch-board-avatar {
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(30, 41, 59, 0.95);
    border: 1px solid rgba(197, 198, 205, 0.2);
    color: #ffffff;
    flex-shrink: 0;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.wc-ch-board-avatar--leader {
    background: var(--wc-secondary);
    border-color: transparent;
}

.wc-ch-board-user,
a.wc-ch-board-user {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
}

a.wc-ch-board-user:hover {
    color: #ffffff;
    text-decoration: underline;
}

.wc-ch-board-profit {
    color: #34d399;
    text-align: right;
    white-space: nowrap;
    font-size: 0.9375rem;
    font-weight: 800;
}

.wc-ch-board-profit--negative {
    color: #f87171;
}

.wc-ch-board-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
}

.wc-ch-board-empty-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(219, 225, 255, 0.08);
    color: var(--wc-secondary-fixed);
}

.wc-ch-board-empty-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.wc-ch-board-empty-eyebrow {
    margin: 0;
    color: var(--wc-secondary-fixed-dim);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wc-ch-board-empty-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
}

.wc-ch-board-empty-text {
    margin: 0;
    max-width: 18rem;
    color: var(--wc-primary-fixed-dim);
    font-size: 0.875rem;
    line-height: 1.6;
}

.wc-ch-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0 2rem 2rem;
}

.wc-ch-mini-stat {
    min-height: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.875rem 0.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(197, 198, 205, 0.05);
    background: rgba(30, 41, 59, 0.8);
    text-align: center;
}

.wc-ch-mini-stat-value {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1;
}

.wc-ch-mini-stat-label {
    color: var(--wc-primary-fixed-dim);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.wc-ch-mini-stat--icon {
    gap: 0.5rem;
}

.wc-ch-mini-stat-globe {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--wc-secondary-fixed);
}

@media (max-width: 767px) {
    .wc-ch {
        padding: 3rem 1.25rem;
        min-height: 40rem;
    }

    .wc-ch-subtitle {
        font-size: 1.0625rem;
    }

    .wc-ch-callout {
        padding: 1rem 1.25rem;
        width: 100%;
    }

    .wc-ch-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .wc-ch-btn {
        width: 100%;
    }

    .wc-ch-link {
        margin-top: 0.25rem;
        margin-left: 0;
        align-self: center;
    }

    .wc-ch-card-head {
        padding: 1.5rem 1.5rem 0;
    }

    .wc-ch-card-body {
        padding: 1.5rem;
    }

    .wc-ch-board-head,
    .wc-ch-board-row {
        grid-template-columns: 2.25rem minmax(0, 1fr) auto;
        gap: 0.5rem;
    }

    .wc-ch-mini-stats {
        gap: 0.5rem;
        padding: 0 1.5rem 1.5rem;
    }

    .wc-ch-mini-stat {
        min-height: 4.5rem;
        padding: 0.75rem 0.375rem;
    }

    .wc-ch-mini-stat-value {
        font-size: 1rem;
    }

    .wc-ch-mini-stat-label {
        font-size: 0.5625rem;
    }
}

/* ==========================================================================
   Competition How It Works  [wc2026_competition_how_it_works]
   ========================================================================== */

.wc-chw {
    background: #ffffff;
    padding: 5rem 0 5.5rem;
}

.wc-chw-shell {
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wc-chw-header {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.wc-chw-heading {
    margin: 0 0 1.5rem;
    color: var(--wc-primary);
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.wc-chw-subtitle {
    margin: 0;
    color: var(--wc-on-surface-variant);
    font-size: 1.125rem;
    line-height: 1.7;
}

.wc-chw-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 5.5rem;
}

@media (min-width: 768px) {
    .wc-chw-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.5rem;
    }
}

.wc-chw-card {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 1.5rem 1.125rem;
    border-radius: 0.75rem;
    background: var(--wc-surface-container-highest);
    box-shadow: 0 8px 24px rgba(10, 29, 45, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wc-chw-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(10, 29, 45, 0.08);
}

.wc-chw-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 0.25rem;
    height: 100%;
}

.wc-chw-card-accent--secondary {
    background: var(--wc-secondary);
}

.wc-chw-card-accent--success {
    background: #10b981;
}

.wc-chw-card-accent--tertiary {
    background: var(--wc-tertiary-fixed-dim);
}

.wc-chw-card-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 9999px;
    background: var(--wc-surface-container-lowest);
    box-shadow: 0 8px 24px rgba(10, 29, 45, 0.06);
}

.wc-chw-card-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.wc-chw-card-icon--secondary {
    color: var(--wc-secondary);
}

.wc-chw-card-icon--success {
    color: #10b981;
}

.wc-chw-card-icon--tertiary {
    color: var(--wc-tertiary-fixed-dim);
}

.wc-chw-card-title {
    margin: 0 0 0.5rem;
    color: var(--wc-primary);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.3;
}

.wc-chw-card-text {
    margin: 0;
    color: var(--wc-on-surface-variant);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.wc-chw-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 4rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(197, 198, 205, 0.15);
    border-radius: 0.75rem;
    background: var(--wc-surface-container-low);
}

@media (min-width: 768px) {
    .wc-chw-info {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
}

.wc-chw-info-body {
    flex: 1;
    min-width: 0;
}

.wc-chw-info-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    margin-bottom: 0.75rem;
}

.wc-chw-info-title {
    margin: 0;
    color: var(--wc-primary);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.wc-chw-info-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem 0.85rem;
    border-radius: 9999px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wc-chw-info-text {
    margin: 0;
    max-width: 46rem;
    color: var(--wc-on-surface-variant);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.wc-chw-info-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wc-primary-fixed-dim);
    opacity: 0.55;
    flex-shrink: 0;
}

.wc-chw-info-icon svg {
    width: 2.3rem;
    height: 2.3rem;
}

.wc-chw-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wc-chw-actions {
        flex-direction: row;
        align-items: center;
    }
}

.wc-chw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: filter 0.2s ease, background 0.2s ease, transform 0.1s ease;
    box-shadow: 0 8px 24px rgba(10, 29, 45, 0.06);
}

.wc-chw-btn:active {
    transform: scale(0.98);
}

.wc-chw-btn--primary {
    background: linear-gradient(90deg, var(--wc-primary) 0%, var(--wc-secondary-container) 100%);
    color: #ffffff;
}

.wc-chw-btn--primary:hover {
    filter: brightness(1.05);
    color: #ffffff;
    text-decoration: none;
}

.wc-chw-btn--outline {
    border: 1px solid rgba(197, 198, 205, 0.5);
    background: transparent;
    color: var(--wc-secondary);
}

.wc-chw-btn--outline:hover {
    background: var(--wc-surface-container);
    color: var(--wc-secondary);
    text-decoration: none;
}

@media (max-width: 767px) {
    .wc-chw {
        padding: 3rem 0;
    }

    .wc-chw-shell {
        padding: 0 1.25rem;
    }

    .wc-chw-header {
        margin-bottom: 2.75rem;
    }

    .wc-chw-subtitle {
        font-size: 1rem;
    }

    .wc-chw-grid,
    .wc-chw-info {
        margin-bottom: 2.75rem;
    }

    .wc-chw-card,
    .wc-chw-info {
        padding: 1.5rem;
    }

    .wc-chw-card-title,
    .wc-chw-info-title {
        font-size: 1.125rem;
    }

    .wc-chw-info-icon {
        width: 3.25rem;
        height: 3.25rem;
    }

    .wc-chw-info-icon svg {
        width: 2rem;
        height: 2rem;
    }
}

/* ==========================================================================
   Competition Prizes  [wc2026_competition_prizes]
   ========================================================================== */

.wc-cp {
    background: var(--wc-surface);
    padding: 5rem 0 5.5rem;
}

.wc-cp-shell {
    max-width: 78rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wc-cp-header {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.wc-cp-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: var(--wc-tertiary-fixed);
    color: #6d3a00;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wc-cp-badge-divider {
    opacity: 0.6;
}

.wc-cp-badge-value {
    font-weight: 900;
}

.wc-cp-heading {
    margin: 0 0 1.5rem;
    color: var(--wc-primary);
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.wc-cp-subtitle {
    margin: 0;
    color: var(--wc-on-surface-variant);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.7;
}

.wc-cp-podium {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.wc-cp-podium-glow {
    display: none;
}

.wc-cp-podium-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(10, 29, 45, 0.05);
    border-radius: 0.75rem;
    background: var(--wc-surface-container-highest);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease;
}

.wc-cp-podium-card:hover {
    box-shadow: 0 14px 34px rgba(10, 29, 45, 0.08);
}

.wc-cp-podium-card--first {
    z-index: 2;
    padding: 2.5rem 2rem 2rem;
    border-color: rgba(255, 255, 255, 0.1);
    background: var(--wc-primary-container);
    box-shadow: 0 20px 50px rgba(0, 81, 213, 0.15);
}

.wc-cp-podium-badge {
    position: absolute;
    top: -0.875rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    background: var(--wc-tertiary-fixed);
    color: #6d3a00;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(10, 29, 45, 0.12);
}

.wc-cp-podium-emblem {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-radius: 9999px;
    border: 4px solid rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.wc-cp-podium-emblem--first {
    width: 4.75rem;
    height: 4.75rem;
    background: linear-gradient(135deg, #f4cf5d 0%, #c88517 100%);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(10, 29, 45, 0.18);
}

.wc-cp-podium-emblem--first svg {
    width: 2.15rem;
    height: 2.15rem;
}

.wc-cp-podium-emblem--second {
    background: #e2e8f0;
    color: #334155;
}

.wc-cp-podium-emblem--third {
    background: rgba(180, 83, 9, 0.16);
    color: #92400e;
}

.wc-cp-podium-value {
    margin-bottom: 0.5rem;
    color: var(--wc-primary);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}

.wc-cp-podium-card--first .wc-cp-podium-value {
    color: #ffffff;
    font-size: clamp(2.75rem, 4vw, 3.25rem);
}

.wc-cp-podium-bonus {
    color: var(--wc-secondary);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.wc-cp-podium-card--first .wc-cp-podium-bonus {
    color: var(--wc-tertiary-fixed);
    font-size: 0.9375rem;
}

.wc-cp-podium-meta {
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.wc-cp-podium-card--first .wc-cp-podium-meta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top-color: rgba(255, 255, 255, 0.12);
}

.wc-cp-podium-tier {
    margin: 0;
    color: var(--wc-on-surface-variant);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.5;
}

.wc-cp-podium-card--first .wc-cp-podium-tier {
    color: var(--wc-primary-fixed-dim);
    font-size: 0.875rem;
}

.wc-cp-more {
    max-width: 50rem;
    margin: 0 auto 3.5rem;
    padding: 2rem;
    border: 1px solid rgba(10, 29, 45, 0.05);
    border-radius: 0.75rem;
    background: var(--wc-surface-container-lowest);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.wc-cp-more-heading {
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--wc-surface-container-low);
    color: var(--wc-primary);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
}

.wc-cp-more-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wc-cp-more-row {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--wc-surface);
}

.wc-cp-more-row-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wc-cp-more-range {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 9999px;
    background: var(--wc-surface-container-highest);
    color: var(--wc-primary);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
}

.wc-cp-more-title {
    color: var(--wc-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.wc-cp-more-values {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
}

.wc-cp-more-value {
    color: var(--wc-primary);
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.2;
}

.wc-cp-more-bonus {
    color: var(--wc-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.wc-cp-note {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-top: 1.75rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: var(--wc-surface-container-low);
}

.wc-cp-note-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wc-secondary);
    flex-shrink: 0;
}

.wc-cp-note-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.wc-cp-note-text {
    margin: 0;
    color: var(--wc-on-surface-variant);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.7;
}

.wc-cp-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .wc-cp-actions {
        flex-direction: row;
        align-items: center;
    }

    .wc-cp-more-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .wc-cp-more-values {
        align-items: flex-end;
        text-align: right;
    }
}

.wc-cp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: filter 0.2s ease, background 0.2s ease, transform 0.1s ease;
    box-shadow: 0 8px 24px rgba(10, 29, 45, 0.06);
}

.wc-cp-btn:active {
    transform: scale(0.98);
}

.wc-cp-btn--primary {
    background: linear-gradient(90deg, var(--wc-primary) 0%, var(--wc-secondary-container) 100%);
    color: #ffffff;
}

.wc-cp-btn--primary:hover {
    filter: brightness(1.05);
    color: #ffffff;
    text-decoration: none;
}

.wc-cp-btn--outline {
    border: 1px solid rgba(197, 198, 205, 0.5);
    background: transparent;
    color: var(--wc-secondary);
}

.wc-cp-btn--outline:hover {
    background: var(--wc-surface-container);
    color: var(--wc-secondary);
    text-decoration: none;
}

@media (min-width: 1024px) {
    .wc-cp-podium {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: end;
        gap: 1.5rem;
        margin-bottom: 4.5rem;
        padding: 0 3rem;
    }

    .wc-cp-podium-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 24rem;
        height: 24rem;
        border-radius: 9999px;
        background: var(--wc-tertiary-fixed);
        opacity: 0.2;
        filter: blur(100px);
        pointer-events: none;
        transform: translate(-50%, -50%);
    }

    .wc-cp-podium-card--second {
        order: 1;
        margin-top: 2.5rem;
    }

    .wc-cp-podium-card--first {
        order: 2;
        transform: translateY(-2.5rem);
    }

    .wc-cp-podium-card--third {
        order: 3;
        margin-top: 2.5rem;
    }
}

@media (max-width: 767px) {
    .wc-cp {
        padding: 3rem 0;
    }

    .wc-cp-shell {
        padding: 0 1.25rem;
    }

    .wc-cp-header {
        margin-bottom: 2.75rem;
    }

    .wc-cp-subtitle {
        font-size: 1rem;
    }

    .wc-cp-podium,
    .wc-cp-more {
        margin-bottom: 2.75rem;
    }

    .wc-cp-podium-card,
    .wc-cp-more {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .wc-cp-podium-card {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }

    .wc-cp-podium-card--first {
        padding-top: 2.5rem;
    }
}

/* ==========================================================================
   Competition OwnTheGame  [wc2026_competition_ownthegame]
   ========================================================================== */

.wc-otg {
    background: var(--wc-surface);
    padding: 3.5rem 0;
}

.wc-otg-shell {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wc-otg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.wc-otg-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wc-otg-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wc-otg-eyebrow {
    display: inline-block;
    color: var(--wc-secondary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.wc-otg-heading {
    margin: 0;
    color: var(--wc-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.wc-otg-copy {
    margin: 0;
    color: var(--wc-on-surface-variant);
    font-size: 1rem;
    line-height: 1.75;
}

.wc-otg-copy--lead {
    font-size: 1.125rem;
}

.wc-otg-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wc-otg-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.wc-otg-feature-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 9999px;
    background: var(--wc-surface-container-high);
    color: var(--wc-secondary);
    box-shadow: 0 10px 24px rgba(10, 29, 45, 0.06);
}

.wc-otg-feature-icon svg {
    width: 1.375rem;
    height: 1.375rem;
}

.wc-otg-feature-copy {
    padding-top: 0.2rem;
}

.wc-otg-feature-title {
    margin: 0;
    color: var(--wc-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.wc-otg-feature-text {
    margin: 0.35rem 0 0;
    color: var(--wc-on-surface-variant);
    font-size: 0.875rem;
    line-height: 1.7;
}

.wc-otg-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-top: 0.5rem;
}

.wc-otg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0.95rem 2rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: filter 0.2s ease, background 0.2s ease, transform 0.1s ease;
    box-shadow: 0 8px 24px rgba(10, 29, 45, 0.06);
}

.wc-otg-btn:active {
    transform: scale(0.98);
}

.wc-otg-btn--primary {
    background: linear-gradient(90deg, var(--wc-primary) 0%, var(--wc-secondary-container) 100%);
    color: #ffffff;
}

.wc-otg-btn--primary:hover {
    filter: brightness(1.05);
    color: #ffffff;
    text-decoration: none;
}

.wc-otg-btn--outline {
    border: 1px solid rgba(197, 198, 205, 0.5);
    background: transparent;
    color: var(--wc-secondary);
}

.wc-otg-btn--outline:hover {
    background: var(--wc-surface-container-low);
    color: var(--wc-secondary);
    text-decoration: none;
}

.wc-otg-preview {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 32rem;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--wc-primary);
    box-shadow: 0 26px 56px rgba(10, 29, 45, 0.28);
}

.wc-otg-preview::before,
.wc-otg-preview::after {
    content: "";
    position: absolute;
    border-radius: 9999px;
    pointer-events: none;
    filter: blur(100px);
}

.wc-otg-preview::before {
    top: -8rem;
    right: -4rem;
    width: 16rem;
    height: 16rem;
    background: rgba(0, 81, 213, 0.28);
}

.wc-otg-preview::after {
    left: -4rem;
    bottom: -5rem;
    width: 12rem;
    height: 12rem;
    background: rgba(255, 183, 122, 0.14);
}

.wc-otg-preview-badges,
.wc-otg-dashboard,
.wc-otg-preview-footer {
    position: relative;
    z-index: 1;
}

.wc-otg-preview-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.wc-otg-preview-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    line-height: 1.2;
    letter-spacing: 0.06em;
    white-space: nowrap;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.wc-otg-preview-pill--primary {
    border: 1px solid rgba(49, 107, 243, 0.3);
    background: rgba(0, 81, 213, 0.18);
    color: var(--wc-secondary-fixed);
    font-weight: 700;
}

.wc-otg-preview-pill--secondary {
    border: 1px solid rgba(197, 198, 205, 0.18);
    background: rgba(210, 228, 251, 0.08);
    color: rgba(255, 255, 255, 0.84);
    font-weight: 600;
}

.wc-otg-preview-pill-icon {
    width: 0.9rem;
    height: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wc-otg-preview-pill-icon svg {
    width: 100%;
    height: 100%;
}

.wc-otg-dashboard {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
    flex: 1;
}

.wc-otg-site-card,
.wc-otg-widget {
    border: 1px solid rgba(197, 198, 205, 0.12);
    border-radius: 0.875rem;
    background: rgba(30, 41, 59, 0.84);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.wc-otg-site-card {
    padding: 1.25rem;
}

.wc-otg-site-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(197, 198, 205, 0.08);
}

.wc-otg-site-avatar {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 9999px;
    background: var(--wc-secondary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
}

.wc-otg-site-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.wc-otg-site-name {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.4;
}

.wc-otg-site-domain {
    color: var(--wc-on-primary-container);
    font-size: 0.75rem;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wc-otg-site-lines {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.wc-otg-site-line {
    display: block;
    height: 0.45rem;
    border-radius: 9999px;
    background: rgba(210, 228, 251, 0.16);
}

.wc-otg-site-line--sm {
    width: 52%;
}

.wc-otg-site-line--md {
    width: 76%;
}

.wc-otg-site-line--lg {
    width: 100%;
    opacity: 0.72;
}

.wc-otg-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.wc-otg-widget {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem;
}

.wc-otg-widget--center {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.wc-otg-widget-label {
    color: var(--wc-on-primary-container);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.wc-otg-widget-value {
    color: var(--wc-tertiary-fixed-dim);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}

.wc-otg-widget-title {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.3;
}

.wc-otg-widget-note {
    color: var(--wc-on-primary-container);
    font-size: 0.6875rem;
    line-height: 1.5;
}

.wc-otg-widget-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--wc-secondary-fixed-dim);
    margin-bottom: 0.2rem;
}

.wc-otg-widget-icon svg {
    width: 100%;
    height: 100%;
}

.wc-otg-preview-footer {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(197, 198, 205, 0.12);
}

.wc-otg-tier-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 0;
    color: var(--wc-on-primary-container);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.6;
}

.wc-otg-tier-item strong {
    color: #ffffff;
    font-weight: 700;
}

.wc-otg-tier-separator {
    color: rgba(197, 198, 205, 0.3);
}

@media (min-width: 640px) {
    .wc-otg-actions {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .wc-otg-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
        gap: 4rem;
    }
}

@media (max-width: 767px) {
    .wc-otg {
        padding: 2rem 0;
    }

    .wc-otg-shell {
        padding: 0 1.25rem;
    }

    .wc-otg-grid {
        gap: 2.5rem;
    }

    .wc-otg-copy--lead {
        font-size: 1rem;
    }

    .wc-otg-preview {
        min-height: 0;
        padding: 1.5rem;
    }

    .wc-otg-site-card,
    .wc-otg-widget {
        padding: 1rem;
    }
}

@media (max-width: 479px) {
    .wc-otg-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Competition Timeline  [wc2026_competition_timeline]
   ========================================================================== */

.wc-timeline {
    background: var(--wc-surface);
    padding: 3.5rem 0;
}

.wc-timeline-shell {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wc-timeline-header {
    max-width: 48rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.wc-timeline-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(197, 198, 205, 0.15);
    border-radius: 9999px;
    background: var(--wc-surface-container-high);
    color: var(--wc-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.wc-timeline-heading {
    margin: 0 0 1.25rem;
    color: var(--wc-primary);
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.wc-timeline-subtitle {
    margin: 0;
    color: var(--wc-on-surface-variant);
    font-size: 1.125rem;
    line-height: 1.75;
}

.wc-timeline-track {
    position: relative;
    margin-bottom: 5rem;
}

.wc-timeline-line {
    display: none;
}

.wc-timeline-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.wc-timeline-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 1.75rem 1.5rem 1.6rem;
    border-radius: 0.75rem;
    background: var(--wc-surface-container-lowest);
    box-shadow: 0 24px 48px rgba(10, 29, 45, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wc-timeline-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 56px rgba(10, 29, 45, 0.08);
}

.wc-timeline-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.25rem;
}

.wc-timeline-card-accent--muted {
    background: var(--wc-surface-container-high);
}

.wc-timeline-card-accent--primary {
    background: var(--wc-secondary);
}

.wc-timeline-card-accent--finished {
    background: var(--wc-primary-fixed-dim);
}

.wc-timeline-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.wc-timeline-card-icon {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 9999px;
}

.wc-timeline-card-icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.wc-timeline-card-icon--soft {
    border: 1px solid rgba(197, 198, 205, 0.15);
    background: var(--wc-surface-container);
    color: var(--wc-secondary);
}

.wc-timeline-card-icon--filled {
    background: var(--wc-secondary);
    color: var(--wc-on-secondary);
    box-shadow: 0 12px 24px rgba(0, 81, 213, 0.2);
}

.wc-timeline-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.4rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.wc-timeline-pill--muted {
    background: var(--wc-surface-container-high);
    color: var(--wc-secondary);
}

.wc-timeline-pill--in-progress {
    background: rgba(16, 185, 129, 0.16);
    color: #065f46;
}

.wc-timeline-pill--finished,
.wc-timeline-pill--tertiary {
    background: var(--wc-tertiary-fixed);
    color: var(--wc-tertiary-container);
}

.wc-timeline-pill--success {
    background: rgba(209, 250, 229, 1);
    color: #065f46;
}

.wc-timeline-card-title {
    margin: 0 0 0.5rem;
    color: var(--wc-primary);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    overflow-wrap: break-word;
}

.wc-timeline-card-date {
    margin: 0 0 0.75rem;
    color: var(--wc-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
}

.wc-timeline-card-text {
    margin: 0;
    color: var(--wc-on-surface-variant);
    font-size: 0.875rem;
    line-height: 1.7;
}

.wc-timeline-note {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
    max-width: 68rem;
    margin: 0 auto;
    padding: 2rem;
    border: 1px solid rgba(197, 198, 205, 0.15);
    border-radius: 0.75rem;
    background: var(--wc-surface-container-low);
}

.wc-timeline-note-body {
    flex: 1;
    min-width: 0;
}

.wc-timeline-note-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.wc-timeline-note-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--wc-secondary);
}

.wc-timeline-note-icon svg {
    width: 100%;
    height: 100%;
}

.wc-timeline-note-title {
    margin: 0;
    color: var(--wc-primary);
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
}

.wc-timeline-note-text {
    margin: 0;
    color: var(--wc-on-surface-variant);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.wc-timeline-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wc-timeline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: filter 0.2s ease, background 0.2s ease, transform 0.1s ease;
    box-shadow: 0 8px 16px rgba(10, 29, 45, 0.12);
}

.wc-timeline-btn:active {
    transform: scale(0.98);
}

.wc-timeline-btn--primary {
    background: linear-gradient(90deg, var(--wc-primary) 0%, var(--wc-secondary-container) 100%);
    color: var(--wc-on-primary);
}

.wc-timeline-btn--primary:hover {
    filter: brightness(1.05);
    color: var(--wc-on-primary);
    text-decoration: none;
}

.wc-timeline-btn--outline {
    border: 1px solid rgba(197, 198, 205, 0.5);
    background: transparent;
    color: var(--wc-secondary);
}

.wc-timeline-btn--outline:hover {
    background: var(--wc-surface-container-high);
    color: var(--wc-secondary);
    text-decoration: none;
}

@media (min-width: 640px) {
    .wc-timeline-actions {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 768px) {
    .wc-timeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wc-timeline-note {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .wc-timeline-line {
        display: block;
        position: absolute;
        top: 3rem;
        left: 6%;
        right: 6%;
        height: 0.5rem;
        border-radius: 9999px;
        background: var(--wc-tertiary-fixed);
        z-index: 0;
    }

    .wc-timeline-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 767px) {
    .wc-timeline {
        padding: 2rem 0;
    }

    .wc-timeline-shell {
        padding: 0 1.25rem;
    }

    .wc-timeline-header {
        margin-bottom: 2rem;
    }

    .wc-timeline-subtitle {
        font-size: 1rem;
    }

    .wc-timeline-track {
        margin-bottom: 1.5rem;
    }

    .wc-timeline-card,
    .wc-timeline-note {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   Competition Rules  [wc2026_competition_rules]
   ========================================================================== */

.wc-cr {
    background: var(--wc-surface);
    padding: 0 0 2.5rem;
}

.wc-cr-shell {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wc-cr-header {
    max-width: 48rem;
    margin-bottom: 4rem;
}

.wc-cr-badge {
    margin: 0 0 1rem;
    color: var(--wc-primary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.wc-cr-heading {
    margin: 0 0 1.5rem;
    color: var(--wc-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.wc-cr-subtitle {
    margin: 0;
    color: var(--wc-on-surface-variant);
    font-size: 1.125rem;
    line-height: 1.7;
}

.wc-cr-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 3.5rem;
}

.wc-cr-card {
    min-height: 100%;
    border-radius: 0.75rem;
    padding: 2rem;
}

.wc-cr-card--checklist {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(197, 198, 205, 0.15);
    background: var(--wc-surface-container-lowest);
    box-shadow: 0 4px 24px rgba(10, 29, 45, 0.06);
}

.wc-cr-card--ranking {
    display: flex;
    flex-direction: column;
    background: var(--wc-surface-container-highest);
}

.wc-cr-card-title {
    margin: 0 0 1.5rem;
    color: var(--wc-primary);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.wc-cr-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
    flex: 1;
}

.wc-cr-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--wc-on-surface-variant);
    font-size: 1rem;
    line-height: 1.6;
}

.wc-cr-checklist-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.wc-cr-checklist-icon svg {
    width: 1.3rem;
    height: 1.3rem;
}

.wc-cr-checklist-text {
    flex: 1;
}

.wc-cr-checklist-footer {
    margin-top: auto;
}

.wc-cr-minimum-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1rem;
    border-radius: 9999px;
    background: var(--wc-secondary);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
}

.wc-cr-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.wc-cr-metric {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(197, 198, 205, 0.15);
    border-radius: 0.5rem;
    background: var(--wc-surface-container-lowest);
}

.wc-cr-metric-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: var(--wc-surface-container-low);
    color: var(--wc-secondary);
    flex-shrink: 0;
}

.wc-cr-metric-icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.wc-cr-metric-copy {
    min-width: 0;
}

.wc-cr-metric-label {
    margin: 0 0 0.25rem;
    color: var(--wc-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-transform: uppercase;
}

.wc-cr-metric-value {
    margin: 0;
    color: var(--wc-on-surface);
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.wc-cr-ranking-note {
    margin: 0;
    color: var(--wc-on-surface-variant);
    font-size: 0.875rem;
    font-style: italic;
    line-height: 1.6;
}

.wc-cr-entry {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(197, 198, 205, 0.15);
    border-left: 4px solid #10b981;
    border-radius: 0.75rem;
    background: var(--wc-surface-container-lowest);
    box-shadow: 0 4px 24px rgba(10, 29, 45, 0.06);
}

.wc-cr-entry-body {
    flex: 1;
    min-width: 0;
}

.wc-cr-entry-title {
    margin: 0 0 0.25rem;
    color: var(--wc-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.wc-cr-entry-text {
    margin: 0;
    color: var(--wc-on-surface-variant);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.wc-cr-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
}

.wc-cr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: filter 0.2s ease, background 0.2s ease, transform 0.1s ease;
    box-shadow: 0 8px 24px rgba(10, 29, 45, 0.06);
}

.wc-cr-btn:active {
    transform: scale(0.98);
}

.wc-cr-btn--primary {
    background: linear-gradient(90deg, var(--wc-primary) 0%, var(--wc-secondary-container) 100%);
    color: #ffffff;
}

.wc-cr-btn--primary:hover {
    filter: brightness(1.05);
    color: #ffffff;
    text-decoration: none;
}

.wc-cr-btn--outline {
    border: 1px solid rgba(197, 198, 205, 0.5);
    background: transparent;
    color: var(--wc-secondary);
}

.wc-cr-btn--outline:hover {
    background: rgba(210, 228, 251, 0.2);
    color: var(--wc-secondary);
    text-decoration: none;
}

@media (min-width: 640px) {
    .wc-cr-actions {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        width: auto;
    }
}

@media (min-width: 1024px) {
    .wc-cr-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .wc-cr-entry {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .wc-cr {
        padding: 2rem 0;
    }

    .wc-cr-shell {
        padding: 0 1.25rem;
    }

    .wc-cr-header {
        margin-bottom: 2rem;
    }

    .wc-cr-subtitle {
        font-size: 1rem;
    }

    .wc-cr-grid {
        padding-bottom: 0;
        margin-bottom: 1.5rem;
    }

    .wc-cr-card,
    .wc-cr-entry {
        padding: 1.5rem;
    }

    .wc-cr-card-title {
        font-size: 1.25rem;
    }

    .wc-cr-metric-value {
        font-size: 1.25rem;
    }

    .wc-cr-checklist-footer {
        display: none;
    }
}

/* ==========================================================================
   Competition Standings  [wc2026_competition_standings]
   ========================================================================== */

.wc-cs {
    position: relative;
    overflow: hidden;
    background: var(--wc-primary);
    color: #ffffff;
}

.wc-cs-shell {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 3.5rem;
}

.wc-cs-accent {
    position: absolute;
    border-radius: 9999px;
    pointer-events: none;
    mix-blend-mode: screen;
    filter: blur(120px);
    opacity: 0.9;
}

.wc-cs-accent--top {
    top: -15rem;
    left: 20%;
    width: 50rem;
    height: 50rem;
    background: rgba(0, 81, 213, 0.18);
}

.wc-cs-accent--bottom {
    right: 10%;
    bottom: -10rem;
    width: 37.5rem;
    height: 37.5rem;
    background: rgba(255, 220, 194, 0.08);
    filter: blur(100px);
}

.wc-cs-header {
    max-width: 42rem;
    margin-bottom: 3rem;
}

.wc-cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(49, 107, 243, 0.3);
    border-radius: 9999px;
    background: rgba(30, 41, 59, 0.4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    color: var(--wc-secondary-fixed-dim);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wc-cs-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--wc-secondary);
    box-shadow: 0 0 0 0 rgba(0, 81, 213, 0.45);
    animation: wc-cs-pulse 1.8s ease-out infinite;
}

.wc-cs-heading {
    margin: 0 0 1rem;
    color: #ffffff;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.wc-cs-subtitle {
    margin: 0;
    color: var(--wc-on-primary-container);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.wc-cs-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.wc-cs-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wc-cs-panel {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    background: rgba(30, 41, 59, 0.4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
}

.wc-cs-panel--status,
.wc-cs-panel--info {
    padding: 1.5rem;
}

.wc-cs-panel--info {
    border-left: 4px solid var(--wc-secondary);
}

.wc-cs-panel-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.5rem;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
}

.wc-cs-panel-icon,
.wc-cs-info-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--wc-secondary);
}

.wc-cs-facts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0;
}

.wc-cs-fact {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin: 0;
}

.wc-cs-fact-label {
    color: var(--wc-on-primary-container);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.wc-cs-fact-value {
    margin: 0;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.5;
}

.wc-cs-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.wc-cs-status-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.wc-cs-status--coming-soon {
    color: var(--wc-tertiary-fixed);
}

.wc-cs-status--in-progress {
    color: #10b981;
}

.wc-cs-status--finished {
    color: var(--wc-primary-fixed-dim);
}

.wc-cs-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.wc-cs-info-copy {
    min-width: 0;
}

.wc-cs-info-title {
    margin: 0 0 0.35rem;
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.4;
}

.wc-cs-info-text {
    margin: 0;
    color: var(--wc-on-primary-container);
    font-size: 0.8125rem;
    line-height: 1.7;
}

.wc-cs-main {
    min-width: 0;
}

.wc-cs-table-shell {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    background: rgba(30, 41, 59, 0.4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.wc-cs-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.wc-cs-table {
    width: 100%;
    min-width: 50rem;
    border-collapse: separate;
    border-spacing: 0;
}

.wc-cs-table thead tr {
    background: rgba(9, 20, 38, 0.45);
}

.wc-cs-table th {
    padding: 1rem 1.5rem;
    border: 0;
    border-bottom: 1px solid rgba(197, 198, 205, 0.1);
    color: var(--wc-on-primary-container);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
    white-space: nowrap;
}

.wc-cs-cell--center {
    text-align: center;
}

.wc-cs-cell--right {
    text-align: right;
}

.wc-cs-row {
    transition: background 0.2s ease;
}

.wc-cs-row:nth-child(even) {
    background: rgba(210, 228, 251, 0.05);
}

.wc-cs-row:hover {
    background: rgba(210, 228, 251, 0.09);
}

.wc-cs-row td {
    padding: 1.25rem 1.5rem;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(197, 198, 205, 0.06);
    border-left: 0;
    vertical-align: middle;
}

.wc-cs-row:last-child td {
    border-bottom: 0;
}

.wc-cs-rank-cell {
    position: relative;
    width: 5rem;
}

.wc-cs-rank-accent {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0.25rem;
}

.wc-cs-row--rank-1 .wc-cs-rank-accent {
    background: #f59e0b;
}

.wc-cs-row--rank-2 .wc-cs-rank-accent {
    background: #94a3b8;
}

.wc-cs-row--rank-3 .wc-cs-rank-accent {
    background: #b45309;
}

.wc-cs-rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid transparent;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
}

.wc-cs-row--rank-1 .wc-cs-rank-badge {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.2);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.wc-cs-row--rank-2 .wc-cs-rank-badge {
    border-color: rgba(148, 163, 184, 0.3);
    background: rgba(148, 163, 184, 0.2);
    color: #e2e8f0;
}

.wc-cs-row--rank-3 .wc-cs-rank-badge {
    border-color: rgba(180, 83, 9, 0.3);
    background: rgba(180, 83, 9, 0.2);
    color: #fdba74;
}

.wc-cs-rank-text {
    color: var(--wc-on-primary-container);
    font-size: 0.9375rem;
    font-weight: 700;
}

.wc-cs-tipster-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.wc-cs-tipster-media {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.5rem;
    background: var(--wc-primary-container);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

.wc-cs-tipster-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wc-cs-tipster-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.wc-cs-tipster-name {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

a.wc-cs-tipster-name:hover {
    color: var(--wc-secondary-fixed-dim);
    text-decoration: none;
}

.wc-cs-tipster-note {
    margin-top: 0.2rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.wc-cs-tipster-note--prize {
    color: var(--wc-tertiary-fixed);
}

.wc-cs-tipster-note--qualified {
    color: var(--wc-on-primary-container);
}

.wc-cs-tipster-note--pending {
    color: var(--wc-secondary-fixed-dim);
}

.wc-cs-stat {
    color: var(--wc-on-primary-container);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

.wc-cs-profit,
.wc-cs-yield {
    color: #10b981;
    font-size: 0.9375rem;
    font-weight: 800;
    line-height: 1.4;
}

.wc-cs-profit--negative,
.wc-cs-trend--down {
    color: var(--wc-error);
}

.wc-cs-hit-rate {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
}

.wc-cs-trend-cell {
    padding-left: 1rem;
    padding-right: 1rem;
}

.wc-cs-trend {
    width: 1.25rem;
    height: 1.25rem;
    vertical-align: middle;
}

.wc-cs-trend--up {
    color: #10b981;
}

.wc-cs-trend--flat {
    color: var(--wc-on-primary-container);
}

.wc-cs-empty {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 1.5rem;
}

.wc-cs-empty-icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(210, 228, 251, 0.08);
    color: var(--wc-secondary-fixed-dim);
    flex-shrink: 0;
}

.wc-cs-empty-icon svg {
    width: 1.4rem;
    height: 1.4rem;
}

.wc-cs-empty-copy {
    min-width: 0;
}

.wc-cs-empty-title {
    margin: 0 0 0.4rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.wc-cs-empty-text {
    margin: 0;
    color: var(--wc-on-primary-container);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.wc-cs-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(197, 198, 205, 0.1);
    background: rgba(9, 20, 38, 0.22);
}

.wc-cs-footer-note {
    color: var(--wc-on-primary-container);
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
}

.wc-cs-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.wc-cs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s ease, filter 0.2s ease, transform 0.1s ease;
}

.wc-cs-btn:active {
    transform: scale(0.98);
}

.wc-cs-btn--ghost {
    border: 1px solid rgba(197, 198, 205, 0.15);
    background: transparent;
    color: var(--wc-secondary-fixed-dim);
}

.wc-cs-btn--ghost:hover {
    background: rgba(210, 228, 251, 0.06);
    color: var(--wc-secondary-fixed-dim);
    text-decoration: none;
}

.wc-cs-btn--primary {
    background: linear-gradient(90deg, var(--wc-primary) 0%, var(--wc-secondary-container) 100%);
    box-shadow: 0 18px 40px rgba(49, 107, 243, 0.18);
    color: #ffffff;
}

.wc-cs-btn--primary:hover {
    filter: brightness(1.08);
    color: #ffffff;
    text-decoration: none;
}

@keyframes wc-cs-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 81, 213, 0.45);
    }

    70% {
        box-shadow: 0 0 0 0.45rem rgba(0, 81, 213, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 81, 213, 0);
    }
}

@media (min-width: 640px) {
    .wc-cs-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .wc-cs-actions {
        flex-direction: row;
        justify-content: flex-end;
        width: auto;
    }
}

@media (min-width: 1024px) {
    .wc-cs-grid {
        grid-template-columns: minmax(16rem, 18rem) minmax(0, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .wc-cs-shell {
        padding: 2rem 1.25rem;
    }

    .wc-cs-header {
        margin-bottom: 2.5rem;
    }

    .wc-cs-subtitle {
        font-size: 1rem;
    }

    .wc-cs-panel--status,
    .wc-cs-panel--info,
    .wc-cs-empty,
    .wc-cs-footer {
        padding: 1.25rem;
    }

    .wc-cs-table th,
    .wc-cs-row td {
        padding: 1rem;
    }

    .wc-cs-actions {
        width: 100%;
    }
}

/* ==========================================================================
   Competition Predictions  [wc2026_competition_predictions]
   ========================================================================== */

.wc-cpred {
    background: var(--wc-surface);
}

.wc-cpred-shell {
    max-width: 80rem;
    margin: 0 auto;
    padding: 3.5rem 1.5rem;
}

.wc-cpred-header {
    max-width: 48rem;
    margin-bottom: 3rem;
}

.wc-cpred-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--wc-secondary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.wc-cpred-heading {
    margin: 0 0 1.5rem;
    color: var(--wc-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.wc-cpred-subtitle {
    margin: 0;
    color: var(--wc-on-surface-variant);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.7;
}

.wc-cpred-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.wc-cpred-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    border-radius: 9999px;
    background: var(--wc-surface-variant);
    color: var(--wc-on-surface-variant);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.wc-cpred-filter:visited {
    color: var(--wc-on-surface-variant);
}

.wc-cpred-filter:hover {
    background: var(--wc-surface-dim);
    color: var(--wc-on-surface);
    text-decoration: none;
}

.wc-cpred-filter:active {
    transform: scale(0.98);
}

.wc-cpred-filter--active,
.wc-cpred-filter--active:hover {
    background: var(--wc-secondary);
    color: var(--wc-on-secondary);
}

.wc-cpred-filter--active:visited,
.wc-cpred-filter--active[aria-current="page"] {
    color: var(--wc-on-secondary);
}

.wc-cpred-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.wc-cpred-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 2rem;
    border: 1px solid rgba(197, 198, 205, 0.15);
    border-radius: 0.75rem;
    background: var(--wc-surface-container-highest);
    box-shadow: 0 4px 24px rgba(10, 29, 45, 0.06);
    color: inherit;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wc-cpred-card:hover {
    transform: translateY(-4px);
    border-color: rgba(49, 107, 243, 0.2);
    box-shadow: 0 12px 30px rgba(10, 29, 45, 0.1);
    color: inherit;
    text-decoration: none;
}

.wc-cpred-card-accent {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0.25rem;
    background: var(--wc-secondary);
}

.wc-cpred-card--won .wc-cpred-card-accent {
    background: #10b981;
}

.wc-cpred-card--lost .wc-cpred-card-accent {
    background: var(--wc-error);
}

.wc-cpred-card--void .wc-cpred-card-accent {
    background: var(--wc-on-surface-variant);
}

.wc-cpred-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.wc-cpred-card-headline {
    min-width: 0;
}

.wc-cpred-card-title {
    margin: 0 0 0.35rem;
    color: var(--wc-primary);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.wc-cpred-card-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wc-on-surface-variant);
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
}

.wc-cpred-card-date-icon,
.wc-cpred-card-tipster-icon,
.wc-cpred-card-selection-icon {
    width: 1rem;
    height: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--wc-secondary);
    flex-shrink: 0;
}

.wc-cpred-card-date-icon svg,
.wc-cpred-card-tipster-icon svg,
.wc-cpred-card-selection-icon svg,
.wc-cpred-empty-icon svg,
.wc-cpred-footer-icon svg {
    width: 100%;
    height: 100%;
}

.wc-cpred-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: var(--wc-tertiary-fixed);
    color: var(--wc-on-tertiary-fixed);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.wc-cpred-card-panel {
    padding: 1.25rem;
    border-radius: 0.5rem;
    background: var(--wc-surface-container-low);
    margin-bottom: 1.5rem;
}

.wc-cpred-card-tipster {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(197, 198, 205, 0.1);
}

.wc-cpred-card-tipster-name {
    color: var(--wc-primary);
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.4;
}

.wc-cpred-card-pick-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.wc-cpred-card-selection {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.wc-cpred-card-selection-label {
    color: var(--wc-primary);
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.45;
}

.wc-cpred-card-odds {
    text-align: right;
    flex-shrink: 0;
}

.wc-cpred-card-odds-label {
    display: block;
    margin-bottom: 0.15rem;
    color: var(--wc-on-surface-variant);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.wc-cpred-card-odds-value {
    color: var(--wc-secondary);
    font-size: 1.125rem;
    font-weight: 900;
    line-height: 1.2;
}

.wc-cpred-card-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    color: var(--wc-secondary);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.wc-cpred-card-status--won {
    color: #10b981;
}

.wc-cpred-card-status--lost {
    color: var(--wc-error);
}

.wc-cpred-card-status--void {
    color: var(--wc-on-surface-variant);
}

.wc-cpred-card-status-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.wc-cpred-card-status--pending .wc-cpred-card-status-dot {
    animation: wc-cpred-pulse 1.8s ease-out infinite;
}

.wc-cpred-empty {
    max-width: 44rem;
    margin: 0 auto 4rem;
    padding: 3.5rem 2rem;
    border: 1px dashed rgba(197, 198, 205, 0.35);
    border-radius: 0.75rem;
    background: var(--wc-surface-container-low);
    text-align: center;
}

.wc-cpred-empty-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 9999px;
    background: var(--wc-surface-container-highest);
    color: var(--wc-secondary);
}

.wc-cpred-empty-eyebrow {
    margin: 0 0 0.75rem;
    color: var(--wc-secondary);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.wc-cpred-empty-title {
    margin: 0 0 0.75rem;
    color: var(--wc-primary);
    font-size: 1.625rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.wc-cpred-empty-text {
    max-width: 32rem;
    margin: 0 auto;
    color: var(--wc-on-surface-variant);
    font-size: 1rem;
    line-height: 1.7;
}

.wc-cpred-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(197, 198, 205, 0.15);
    border-radius: 0.75rem;
    background: var(--wc-surface-container-low);
    box-shadow: 0 4px 24px rgba(10, 29, 45, 0.06);
}

.wc-cpred-footer-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.wc-cpred-footer-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: var(--wc-surface-container-highest);
    color: var(--wc-secondary);
    flex-shrink: 0;
}

.wc-cpred-footer-copy {
    min-width: 0;
}

.wc-cpred-footer-title {
    margin: 0 0 0.35rem;
    color: var(--wc-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
}

.wc-cpred-footer-text {
    margin: 0;
    color: var(--wc-on-surface-variant);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.wc-cpred-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.wc-cpred-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
    transition: filter 0.2s ease, background 0.2s ease, transform 0.1s ease;
}

.wc-cpred-btn:active {
    transform: scale(0.98);
}

.wc-cpred-btn--primary {
    background: linear-gradient(90deg, var(--wc-primary) 0%, var(--wc-secondary-container) 100%);
    box-shadow: 0 4px 24px rgba(10, 29, 45, 0.06);
    color: #ffffff;
}

.wc-cpred-btn--primary:hover {
    filter: brightness(1.05);
    color: #ffffff;
    text-decoration: none;
}

.wc-cpred-btn--ghost {
    border: 1px solid rgba(197, 198, 205, 0.15);
    background: var(--wc-surface-container-lowest);
    color: var(--wc-secondary);
}

.wc-cpred-btn--ghost:hover {
    background: var(--wc-surface-container-highest);
    color: var(--wc-secondary);
    text-decoration: none;
}

@keyframes wc-cpred-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 81, 213, 0.4);
    }

    70% {
        box-shadow: 0 0 0 0.4rem rgba(0, 81, 213, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 81, 213, 0);
    }
}

@media (min-width: 768px) {
    .wc-cpred-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wc-cpred-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .wc-cpred-actions {
        flex-direction: row;
        justify-content: flex-end;
        width: auto;
    }
}

@media (min-width: 1024px) {
    .wc-cpred-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .wc-cpred-shell {
        padding: 2rem 1.25rem;
    }

    .wc-cpred-header {
        margin-bottom: 2.5rem;
    }

    .wc-cpred-subtitle {
        font-size: 1rem;
    }

    .wc-cpred-card,
    .wc-cpred-empty,
    .wc-cpred-footer {
        padding: 1.5rem;
    }

    .wc-cpred-btn {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        font-size: 0.875rem;
    }

    .wc-cpred-card-top,
    .wc-cpred-card-pick-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .wc-cpred-card-badge,
    .wc-cpred-card-odds {
        align-self: flex-start;
        text-align: left;
    }
}

/* ==========================================================================
   Tournament News
   ========================================================================== */

.wc-news {
    max-width: 80rem;
    margin: 0 auto;
    padding: 5rem 2rem;
    border-top: 1px solid var(--wc-surface-container);
}

.wc-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.wc-news-heading {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--wc-primary);
    letter-spacing: -0.025em;
    margin: 0;
}

.wc-news-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--wc-secondary);
    text-decoration: none;
}

.wc-news-link:hover {
    text-decoration: underline;
    color: var(--wc-secondary);
}

/* Grid */
.wc-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .wc-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card */
.wc-news-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.wc-news-card:hover {
    text-decoration: none;
    color: inherit;
}

/* Image */
.wc-news-img-wrap {
    aspect-ratio: 16 / 10;
    background: var(--wc-surface-container-highest);
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.wc-news-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wc-news-card:hover .wc-news-img {
    transform: scale(1.1);
}

/* Category label */
.wc-news-cat {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--wc-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Title */
.wc-news-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    min-height: 2.6em;
    margin: 0.5rem 0 0;
    color: var(--wc-on-surface);
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wc-news-card:hover .wc-news-title {
    color: var(--wc-secondary);
}

/* Excerpt */
.wc-news-excerpt {
    font-size: 0.875rem;
    color: var(--wc-on-surface-variant);
    line-height: 1.6;
    min-height: 3.2em;
    margin: 0.75rem 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Date */
.wc-news-date {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.625rem;
    font-weight: 700;
    color: #94a3b8;
}

.wc-news-empty {
    color: #64748b;
    font-style: italic;
}

/* ==========================================================================
   Static Content Section
   ========================================================================== */

.wc-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.wc-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .wc-content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Image column */
.wc-content-images {
    order: 2;
}

@media (min-width: 1024px) {
    .wc-content-images {
        order: 1;
    }
}

.wc-content-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.wc-content-img-wrap {
    aspect-ratio: 1 / 1;
    background: var(--wc-surface-container-highest);
    border-radius: 1rem;
    overflow: hidden;
}

.wc-content-img-offset {
    margin-top: 3rem;
}

.wc-content-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text column */
.wc-content-body {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .wc-content-body {
        order: 2;
    }
}

.wc-content-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--wc-primary);
    letter-spacing: -0.025em;
    margin: 0;
    line-height: 39px;
}

.wc-content-intro {
    color: var(--wc-on-surface-variant);
    line-height: 1.7;
    margin: 0;
}

/* Feature list */
.wc-content-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wc-content-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.wc-content-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(0, 81, 213, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
    color: var(--wc-secondary);
}

.wc-content-icon svg {
    width: 0.875rem;
    height: 0.875rem;
}

.wc-content-item-title {
    font-weight: 700;
    color: var(--wc-primary);
    margin: 0 0 0.25rem;
    font-size: 1rem;
}

.wc-content-item-text {
    font-size: 0.875rem;
    color: var(--wc-on-surface-variant);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   Competition FAQ
   ========================================================================== */

.wc-cfaq {
    padding: 3.5rem 1.5rem;
    background: var(--wc-surface);
}

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

.wc-cfaq-shell {
    max-width: 88rem;
    margin: 0 auto;
}

.wc-cfaq-header {
    max-width: 47.5rem;
    margin: 0 0 2.5rem;
}

.wc-cfaq-badge {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wc-secondary);
}

.wc-cfaq-heading {
    margin: 0;
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--wc-on-surface);
}

.wc-cfaq-subtitle {
    max-width: 45rem;
    margin: 1rem 0 0;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--wc-on-surface-variant);
}

.wc-cfaq-grid {
    display: grid;
    gap: 1.75rem;
    align-items: start;
}

.wc-cfaq-sidebar,
.wc-cfaq-accordion {
    min-width: 0;
}

.wc-cfaq-help-card {
    display: grid;
    gap: 1.375rem;
    padding: 1.75rem;
    border: 1px solid rgba(10, 29, 45, 0.08);
    border-radius: 2rem;
    background: var(--wc-surface-container-highest);
    box-shadow: 0 18px 44px rgba(10, 29, 45, 0.06);
}

.wc-cfaq-help-copy {
    display: grid;
    gap: 0.75rem;
}

.wc-cfaq-help-title {
    margin: 0;
    font-size: 1.75rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--wc-on-surface);
}

.wc-cfaq-help-text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--wc-on-surface-variant);
}

.wc-cfaq-help-list {
    display: grid;
    gap: 0.75rem;
}

.wc-cfaq-help-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    min-width: 0;
    padding: 1rem 1.125rem;
    border: 1px solid rgba(10, 29, 45, 0.06);
    border-radius: 1.25rem;
    background: var(--wc-surface-container-lowest);
}

.wc-cfaq-help-item--tertiary {
    border-left: 4px solid var(--wc-tertiary-fixed);
}

.wc-cfaq-help-item--primary {
    border-left: 4px solid var(--wc-primary);
}

.wc-cfaq-help-icon,
.wc-cfaq-question-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.72);
    color: var(--wc-secondary);
}

.wc-cfaq-help-icon svg,
.wc-cfaq-question-icon svg,
.wc-cfaq-question-toggle svg {
    width: 1.25rem;
    height: 1.25rem;
}

.wc-cfaq-help-icon--secondary,
.wc-cfaq-question-icon--secondary {
    color: var(--wc-secondary);
}

.wc-cfaq-help-icon--tertiary,
.wc-cfaq-question-icon--tertiary {
    color: var(--wc-tertiary-fixed);
}

.wc-cfaq-help-icon--primary,
.wc-cfaq-question-icon--primary {
    color: var(--wc-primary);
}

.wc-cfaq-help-label {
    min-width: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--wc-on-surface);
}

.wc-cfaq-actions {
    display: grid;
    gap: 0.75rem;
}

.wc-cfaq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.25rem;
    padding: 0 1.125rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.wc-cfaq-btn--primary {
    background: var(--wc-secondary);
    color: var(--wc-on-secondary);
}

.wc-cfaq-btn--primary:hover {
    background: var(--wc-secondary-hover);
    color: var(--wc-on-secondary);
}

.wc-cfaq-btn--secondary {
    border-color: rgba(10, 29, 45, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: var(--wc-on-surface);
}

.wc-cfaq-btn--secondary:hover {
    border-color: rgba(10, 29, 45, 0.22);
    background: rgba(255, 255, 255, 0.94);
    color: var(--wc-on-surface);
}

.wc-cfaq-accordion {
    display: grid;
    gap: 1rem;
}

.wc-cfaq-item {
    overflow: hidden;
    border: 1px solid rgba(10, 29, 45, 0.08);
    border-radius: 1.625rem;
    background: var(--wc-surface-container-lowest);
    box-shadow: 0 12px 28px rgba(10, 29, 45, 0.04);
}

.wc-cfaq-item[open] {
    box-shadow: 0 18px 36px rgba(10, 29, 45, 0.08);
}

.wc-cfaq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.125rem;
    width: 100%;
    padding: 1.375rem 1.5rem;
    list-style: none;
    cursor: pointer;
}

.wc-cfaq-question::-webkit-details-marker {
    display: none;
}

.wc-cfaq-question::marker {
    content: '';
}

.wc-cfaq-question-copy {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.wc-cfaq-question-text {
    min-width: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--wc-on-surface);
}

.wc-cfaq-question-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(10, 29, 45, 0.05);
    color: var(--wc-on-surface-variant);
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.wc-cfaq-item[open] .wc-cfaq-question-toggle {
    transform: rotate(180deg);
    background: rgba(22, 123, 244, 0.12);
    color: var(--wc-secondary);
}

.wc-cfaq-answer {
    padding: 0 1.5rem 1.5rem;
}

.wc-cfaq-item[open] .wc-cfaq-answer {
    border-top: 1px solid rgba(10, 29, 45, 0.08);
}

.wc-cfaq-answer-inner {
    padding-top: 1.125rem;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--wc-on-surface-variant);
}

.wc-cfaq-mark {
    font-weight: 700;
    color: var(--wc-on-surface);
}

.wc-cfaq-mark--tertiary {
    color: var(--wc-tertiary-fixed);
}

.wc-cfaq-mark--secondary {
    color: var(--wc-secondary);
}

.wc-cfaq-mark--primary {
    color: var(--wc-primary);
}

@media (min-width: 1024px) {
    .wc-cfaq-grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.68fr);
        gap: 2rem;
    }

    .wc-cfaq-help-card {
        position: sticky;
        top: 6rem;
    }
}

@media (max-width: 767px) {
    .wc-cfaq {
        padding: 2rem 1rem;
    }

    .wc-cfaq-help-card {
        padding: 1.5rem;
        border-radius: 1.75rem;
    }

    .wc-cfaq-help-title {
        font-size: 1.5rem;
    }

    .wc-cfaq-question {
        padding: 1.125rem 1.25rem;
        gap: 0.875rem;
    }

    .wc-cfaq-question-copy {
        gap: 0.875rem;
        align-items: flex-start;
    }

    .wc-cfaq-help-icon,
    .wc-cfaq-question-icon,
    .wc-cfaq-question-toggle {
        width: 2.25rem;
        height: 2.25rem;
    }

    .wc-cfaq-question-text {
        font-size: 1rem;
    }

    .wc-cfaq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* ==========================================================================
   Competition CTA
   ========================================================================== */

.wc-ccta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 3.5rem 1.5rem;
    background: linear-gradient(180deg, rgba(9, 20, 38, 0.98) 0%, rgba(17, 28, 45, 1) 100%);
}

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

.wc-ccta-media,
.wc-ccta-glow {
    position: absolute;
    pointer-events: none;
}

.wc-ccta-media {
    inset: 0;
    z-index: 0;
}

.wc-ccta-media-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.16;
    mix-blend-mode: screen;
}

.wc-ccta-media-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 20, 38, 0.58) 0%, rgba(9, 20, 38, 0.92) 100%),
        radial-gradient(circle at top center, rgba(49, 107, 243, 0.2) 0%, rgba(49, 107, 243, 0) 52%);
}

.wc-ccta-glow {
    top: -5rem;
    left: 50%;
    z-index: 0;
    width: min(90vw, 50rem);
    height: 24rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(49, 107, 243, 0.34) 0%, rgba(49, 107, 243, 0.12) 36%, rgba(49, 107, 243, 0) 72%);
    transform: translateX(-50%);
    filter: blur(72px);
}

.wc-ccta-shell {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
}

.wc-ccta-panel {
    display: grid;
    gap: 1.75rem;
    max-width: 64rem;
    margin: 0 auto;
    padding: 3rem 2rem;
    border: 1px solid rgba(197, 198, 205, 0.14);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.76) 0%, rgba(9, 20, 38, 0.86) 100%);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 48px -12px rgba(10, 29, 45, 0.45);
    text-align: center;
}

.wc-ccta-icon-ring {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.75rem;
    height: 4.75rem;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--wc-tertiary-fixed) 0%, rgba(255, 220, 194, 0.32) 100%);
    box-shadow: 0 0 0 0.375rem rgba(255, 220, 194, 0.18);
}

.wc-ccta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    color: var(--wc-primary);
}

.wc-ccta-icon svg,
.wc-ccta-note-icon svg,
.wc-ccta-feature-icon svg,
.wc-ccta-link-arrow svg {
    width: 100%;
    height: 100%;
}

.wc-ccta-heading {
    margin: 0;
    color: var(--wc-on-primary);
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.wc-ccta-copy {
    max-width: 49rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.75;
}

.wc-ccta-copy-highlight {
    color: var(--wc-on-primary);
    font-weight: 700;
}

.wc-ccta-note {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0.9375rem 1.25rem;
    border: 1px solid rgba(197, 198, 205, 0.12);
    border-radius: 0.875rem;
    background: rgba(9, 20, 38, 0.36);
}

.wc-ccta-note-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 1.125rem;
    height: 1.125rem;
    color: var(--wc-secondary);
}

.wc-ccta-note-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.6;
}

.wc-ccta-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 56rem;
    margin: 0 auto;
}

.wc-ccta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 7.75rem;
    padding: 1.125rem 1rem;
    border: 1px solid rgba(197, 198, 205, 0.12);
    border-radius: 1rem;
    background: rgba(9, 20, 38, 0.34);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.wc-ccta-feature:hover {
    transform: translateY(-2px);
    background: rgba(9, 20, 38, 0.46);
    border-color: rgba(197, 198, 205, 0.22);
}

.wc-ccta-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.875rem;
    background: rgba(255, 255, 255, 0.06);
    color: var(--wc-tertiary-fixed);
}

.wc-ccta-feature-icon--success {
    color: #10b981;
}

.wc-ccta-feature-icon--tertiary {
    color: var(--wc-tertiary-fixed);
}

.wc-ccta-feature-label {
    color: var(--wc-on-primary);
    font-size: 0.8125rem;
    font-weight: 800;
    line-height: 1.45;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wc-ccta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 44rem;
    margin: 0 auto;
}

.wc-ccta-btn-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.wc-ccta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.5rem;
    padding: 0 2rem;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    color: var(--wc-on-primary);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.15s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.wc-ccta-btn:active {
    transform: scale(0.98);
}

.wc-ccta-btn--primary {
    background: linear-gradient(180deg, var(--wc-secondary) 0%, var(--wc-secondary-container) 100%);
    box-shadow: 0 4px 14px 0 rgba(0, 81, 213, 0.39);
    color: var(--wc-on-secondary);
}

.wc-ccta-btn--primary:hover {
    filter: brightness(1.1);
    color: var(--wc-on-secondary);
    text-decoration: none;
}

.wc-ccta-btn--secondary {
    border-color: rgba(197, 198, 205, 0.32);
    background: transparent;
    color: var(--wc-on-primary);
}

.wc-ccta-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(197, 198, 205, 0.48);
    color: var(--wc-on-primary);
    text-decoration: none;
}

.wc-ccta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(219, 225, 255, 0.96);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wc-ccta-link:hover {
    color: var(--wc-on-primary);
    text-decoration: none;
}

.wc-ccta-link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
}

.wc-ccta-link-arrow svg {
    transition: transform 0.2s ease;
}

.wc-ccta-link:hover .wc-ccta-link-arrow svg {
    transform: translateX(2px);
}

@media (min-width: 768px) {
    .wc-ccta-panel {
        padding: 4rem 3rem;
    }

    .wc-ccta-btn-group {
        flex-direction: row;
        justify-content: center;
    }

    .wc-ccta-btn {
        width: auto;
        min-width: 15rem;
    }
}

@media (min-width: 1024px) {
    .wc-ccta {
        padding: 3.5rem 2rem;
    }

    .wc-ccta-panel {
        padding: 4rem;
    }

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

@media (max-width: 767px) {
    .wc-ccta {
        padding: 2rem 1rem;
    }

    .wc-ccta-panel {
        padding: 2.5rem 1.25rem;
        border-radius: 1.5rem;
    }

    .wc-ccta-icon-ring {
        width: 4rem;
        height: 4rem;
    }

    .wc-ccta-icon {
        width: 1.6rem;
        height: 1.6rem;
    }

    .wc-ccta-note {
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }

    .wc-ccta-feature {
        min-height: 7rem;
        padding: 1rem 0.875rem;
    }

    .wc-ccta-feature-label {
        font-size: 0.75rem;
    }

    .wc-ccta-btn {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        font-size: 0.9375rem;
    }

    .wc-ccta-glow {
        width: min(90vw, 30rem);
        height: 18rem;
    }
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.wc-faq {
    background: var(--wc-surface-container);
    padding: 6rem 2rem;
}

.wc-faq-inner {
    max-width: 48rem;
    margin: 0 auto;
}

.wc-faq-heading {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--wc-primary);
    letter-spacing: -0.025em;
    text-align: center;
    margin: 0 0 3rem;
}

.wc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Each item */
.wc-faq-item {
    background: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(117, 119, 125, 0.15);
}

/* Question / trigger button */
.wc-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.wc-faq-question:focus-visible {
    box-shadow: inset 0 0 0 2px var(--wc-secondary);
    border-radius: 0.75rem;
}

.wc-faq-question-text {
    font-weight: 700;
    color: var(--wc-primary);
    font-size: 1rem;
}

/* Arrow icon (inline SVG) */
.wc-faq-arrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-left: 1rem;
    transition: transform 0.25s ease;
}

.wc-faq-open > .wc-faq-question > .wc-faq-arrow {
    transform: rotate(180deg);
}

/* Answer panel — hidden by default */
.wc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.wc-faq-open > .wc-faq-answer {
    max-height: 40rem;
}

.wc-faq-answer p {
    margin: 0;
    padding: 0 2rem 1.5rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
    font-size: 0.875rem;
    color: var(--wc-on-surface-variant);
    line-height: 1.7;
}

/* ==========================================================================
   Top Tipsters Leaderboard
   ========================================================================== */

.wc-tipsters {
    background: var(--wc-primary);
    padding: 6rem 2rem;
    overflow: hidden;
    position: relative;
}

.wc-tipsters-inner {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Header */
.wc-tipsters-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .wc-tipsters-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
    }
}

.wc-tipsters-heading {
    font-size: 1.875rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.025em;
    margin: 0;
    line-height: 25px;
}

.wc-tipsters-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wc-secondary-fixed-dim);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
}

.wc-tipsters-link:hover {
    text-decoration: underline;
    color: var(--wc-secondary-fixed-dim);
}

.wc-tipsters-link svg {
    flex-shrink: 0;
}

/* Scroll wrapper */
.wc-tipsters-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Table */
.wc-tipsters-table {
    width: 100%;
    text-align: left;
    border-collapse: separate;
    border-spacing: 0 1rem;
    min-width: 640px;
}

/* Header cells */
.wc-tipsters-table thead tr {
    color: #94a3b8;
}

.wc-tipsters-table th {
    padding: 0.5rem 1.5rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    white-space: nowrap;
    border: none;
    background: transparent;
}

.wc-tipsters-table th.wc-tt-trend {
    text-align: right;
}

/* Body rows */
.wc-tipsters-row {
    background: var(--wc-primary-container);
    transition: background 0.15s;
}

.wc-tipsters-row:hover {
    background: #253347;
}

.wc-tipsters-row td {
    padding: 1.5rem;
    border: none;
    vertical-align: middle;
}

.wc-tipsters-row td:first-child {
    border-radius: 0.75rem 0 0 0.75rem;
}

.wc-tipsters-row td:last-child {
    border-radius: 0 0.75rem 0.75rem 0;
}

/* Tipster cell */
.wc-tt-tipster-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wc-tt-rank {
    font-size: 1.5rem;
    font-weight: 900;
    color: #64748b;
    min-width: 2rem;
}

.wc-tt-avatar {
    width: 2.5rem;
    height: 2.5rem;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: #334155;
    overflow: hidden;
    flex-shrink: 0;
}

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

.wc-tt-name {
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

a.wc-tt-name:hover {
    text-decoration: underline;
    color: #ffffff;
}

/* Profit cell */
.wc-tt-profit-val {
    font-weight: 900;
    color: var(--wc-secondary-fixed-dim);
}

/* Stat cells (yield, hit rate) */
.wc-tt-stat {
    font-weight: 700;
    color: #ffffff;
}

/* Trend cell */
td.wc-tt-trend {
    text-align: right;
}

.wc-tt-trend-up {
    color: #4ade80;
}

.wc-tt-trend-down {
    color: var(--wc-error);
}

.wc-tt-trend-flat {
    color: #64748b;
}

/* Empty state */
.wc-tipsters-empty {
    color: #64748b;
    font-style: italic;
    text-align: center;
}

/* ==========================================================================
   Featured Fixtures
   ========================================================================== */

/* Full-width tinted surface so the section separates from neighbouring white sections */
.wc-fixtures {
    background: var(--wc-surface-container);
    padding: 5rem 2rem;
}

/* Inner content constrained to page max-width */
.wc-fixtures-inner {
    max-width: 80rem;
    margin: 0 auto;
}

/* Header row: heading left, timezone label right */
.wc-fixtures-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.wc-fixtures-heading {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--wc-primary);
    margin: 0;
}

/* Muted timezone label aligned right */
.wc-fixtures-tz {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #94a3b8;
    white-space: nowrap;
}

.wc-fixtures-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Match card */
.wc-fix-card {
    background: var(--wc-surface);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
    transition: box-shadow 0.2s;
}

.wc-fix-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
    .wc-fix-card {
        flex-direction: row;
    }
}

.wc-fix-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Date & time */
.wc-fix-datetime {
    text-align: center;
    width: 6rem;
    flex-shrink: 0;
}

.wc-fix-date {
    font-size: 0.625rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
}

.wc-fix-time {
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--wc-on-surface);
    line-height: 1.2;
}

/* Teams */
.wc-fix-teams {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wc-fix-team {
    font-weight: 700;
    color: var(--wc-on-surface);
    width: 7rem;
}

.wc-fix-team--home {
    text-align: right;
}

.wc-fix-team--away {
    text-align: left;
}

.wc-fix-vs {
    width: 3rem;
    height: 3rem;
    background: var(--wc-surface-container);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--wc-on-surface);
    flex-shrink: 0;
}

/* Odds */
.wc-fix-odds {
    display: flex;
    gap: 0.5rem;
}

.wc-fix-odd {
    background: #f8fafc;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    text-align: center;
    min-width: 3.75rem;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
    display: block;
}

.wc-fix-odd:hover {
    background: var(--wc-surface-container);
    border-color: var(--wc-secondary);
    text-decoration: none;
}

.wc-fix-odd-label {
    display: block;
    font-size: 0.5rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
}

.wc-fix-odd-val {
    display: block;
    font-weight: 900;
    color: var(--wc-primary);
    font-size: 0.9375rem;
    position: relative;
}

/* Odds change arrows */
.wc-odds-arrow {
    position: absolute;
    top: 0;
    left: -2px;
}

.wc-odds-arrow svg {
    height: 7px;
    width: auto;
}

.wc-odds-down svg {
    fill: red;
}

.wc-odds-up svg {
    fill: #00b300;
}

/* Mobile fixture card overrides */
@media (max-width: 767px) {
    .wc-fix-card {
        padding: 1rem;
        gap: 1rem;
        align-items: stretch;
    }

    .wc-fix-left {
        flex-direction: column;
        gap: 0.625rem;
        width: 100%;
    }

    .wc-fix-datetime {
        width: auto;
        display: flex;
        align-items: baseline;
        gap: 0.5rem;
        text-align: left;
    }

    .wc-fix-time {
        font-size: 0.9375rem;
    }

    .wc-fix-teams {
        gap: 0.5rem;
        width: 100%;
    }

    .wc-fix-team {
        flex: 1;
        width: auto;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.875rem;
    }

    .wc-fix-vs {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.875rem;
        flex-shrink: 0;
    }

    .wc-fix-odds {
        width: 100%;
    }

    .wc-fix-odd {
        flex: 1;
        min-width: 0;
        padding: 0.5rem 0.25rem;
    }
}

/* Footer with CTA */
.wc-fixtures-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Empty state */
.wc-fixtures-empty {
    color: #64748b;
    font-style: italic;
}

/* Predictions teaser */
.wc-predictions-cta {
    background: rgba(226, 232, 240, 0.5);
    border-radius: 1rem;
    border: 2px dashed #cbd5e1;
    padding: 3rem;
    text-align: center;
    margin-top: 3rem;
}

.wc-predictions-icon {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.wc-predictions-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--wc-on-surface);
    margin: 0;
}

/* ============================================================
 * Predictions Preview  [wc2026_predictions]
 * Premium football-inspired design
 * ============================================================ */

/* Section: soft pitch-toned gradient background */
.wc-pred {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(170deg, #f0f7f4 0%, #eaf3f8 55%, #f4f8fc 100%);
    overflow: hidden;
}

/* Ultra-subtle pitch-line grid overlay */
.wc-pred-bg {
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 72px,
            rgba(30, 100, 60, 0.028) 72px,
            rgba(30, 100, 60, 0.028) 73px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 72px,
            rgba(30, 100, 60, 0.028) 72px,
            rgba(30, 100, 60, 0.028) 73px
        );
    pointer-events: none;
}

/* Outer gutter: constrains max-width and provides side padding */
.wc-pred-panel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* White card panel sitting on the tinted background */
.wc-pred-inner {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    box-shadow:
        0 2px 8px rgba(9, 20, 38, 0.04),
        0 8px 32px rgba(9, 20, 38, 0.06);
    border: 1px solid rgba(30, 100, 60, 0.10);
}

/* --- Header --- */
.wc-pred-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Eyebrow: editorial accent above the main heading */
.wc-pred-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #2a7a50;
    margin-bottom: 0.625rem;
}

.wc-pred-heading {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 900;
    color: var(--wc-primary);
    letter-spacing: -0.025em;
    margin: 0 0 0.625rem;
    line-height: 25px;
}

.wc-pred-subheading {
    color: #64748b;
    font-size: 1rem;
    margin: 0 auto;
    max-width: 34rem;
    line-height: 1.6;
}

/* --- Cards grid --- */
.wc-pred-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Card */
.wc-pred-card {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcfb 100%);
    border: 1px solid #cddbd4;
    border-radius: 1rem;
    padding: 1.375rem 1.5rem;
    text-decoration: none;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.wc-pred-card:hover {
    box-shadow: 0 8px 32px rgba(9, 20, 38, 0.12);
    border-color: var(--wc-secondary);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Meta row: date + league badge */
.wc-pred-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.wc-pred-card-date {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.wc-pred-card-time {
    font-weight: 500;
    color: #94a3b8;
}

/* League displayed as a subtle green pill */
.wc-pred-card-league {
    font-size: 0.6875rem;
    color: #2a7a50;
    font-weight: 700;
    background: rgba(42, 122, 80, 0.09);
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
}

/* Match teams row */
.wc-pred-card-match {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--wc-primary);
    padding: 0.125rem 0;
}

.wc-pred-card-team {
    flex: 1;
    line-height: 1.35;
}

.wc-pred-card-team--home {
    text-align: right;
}

.wc-pred-card-team--away {
    text-align: left;
}

.wc-pred-card-vs {
    font-size: 0.625rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #f1f5f9;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    flex-shrink: 0;
}

/* Pick + odds strip */
.wc-pred-card-pick {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(125deg, #091426 0%, #162338 100%);
    border-radius: 0.625rem;
    padding: 0.625rem 1rem;
    gap: 0.75rem;
}

.wc-pred-card-pick-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wc-pred-card-odds {
    font-size: 1rem;
    font-weight: 900;
    color: #fbbf24;
    font-style: italic;
    flex-shrink: 0;
}

/* Tipster row: two-line layout */
.wc-pred-card-tipster {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5eeea;
    margin-top: auto;
}

.wc-pred-card-avatar {
    display: block;
    width: 28px;
    height: 28px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddeee6;
    flex-shrink: 0;
}

.wc-pred-card-tipster-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.wc-pred-card-tipster-label {
    font-size: 0.625rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
}

.wc-pred-card-tipster-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--wc-primary);
    line-height: 1.2;
}

/* --- Footer CTA --- */
.wc-pred-footer {
    text-align: center;
    padding-top: 0.5rem;
}

/* Solid gradient pill button with animated arrow */
.wc-pred-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.875rem;
    background: linear-gradient(135deg, var(--wc-secondary) 0%, var(--wc-secondary-container) 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 10px rgba(0, 81, 213, 0.28);
}

.wc-pred-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(0, 81, 213, 0.38);
    color: #ffffff;
    text-decoration: none;
}

.wc-pred-cta svg {
    transition: transform 0.15s;
}

.wc-pred-cta:hover svg {
    transform: translateX(3px);
}

.wc-pred-cta--sm {
    padding: 0.625rem 1.375rem;
    font-size: 0.875rem;
}

/* --- Empty state --- */
.wc-pred-empty {
    background: linear-gradient(165deg, #f6fbf8 0%, #f2f8fb 100%);
    border: 2px dashed #bdd5c8;
    border-radius: 1.25rem;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.wc-pred-empty-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e4f2eb 0%, #d9ece3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #2a7a50;
}

.wc-pred-empty-eyebrow {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #2a7a50;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}

.wc-pred-empty-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--wc-primary);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.wc-pred-empty-text {
    color: #64748b;
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0 0 2rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .wc-pred {
        padding: 3.5rem 0;
    }

    .wc-pred-inner {
        padding: 2rem 1.5rem;
        border-radius: 1rem;
    }

    .wc-pred-list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .wc-pred-empty {
        padding: 3rem 1.5rem;
    }
}

/* ==========================================================================
   WC2026 — Third-Place Standings  [wc2026_third_place]
   ========================================================================== */

.wc-tp-section {
    padding: 5rem 2rem;
    background: var(--wc-surface);
}

.wc-tp {
    max-width: 80rem;
    margin: 0 auto;
}

.wc-tp-card {
    background: var(--wc-surface-container-highest);
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.wc-tp-deco {
    position: absolute;
    right: -5rem;
    top: -5rem;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(0, 81, 213, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wc-tp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .wc-tp-grid {
        grid-template-columns: 1fr 2fr;
        gap: 3rem;
        align-items: start;
    }
}

.wc-tp-intro {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wc-tp-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--wc-secondary);
}

.wc-tp-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--wc-primary);
    margin: 0;
    line-height: 1.2;
}

.wc-tp-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--wc-on-surface-variant);
    margin: 0;
}

.wc-tp-table-col {
    min-width: 0;
}

.wc-tp-table-wrap {
    background: var(--wc-surface);
    border-radius: 0.5rem;
    border: 1px solid rgba(197, 198, 205, 0.35);
    overflow: hidden;
}

.wc-tp-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.8125rem;
}

.wc-tp-table thead tr {
    background: var(--wc-surface-container);
}

.wc-tp-table thead th {
    padding: 0.625rem 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--wc-on-surface-variant);
    white-space: nowrap;
    text-align: center;
}

.wc-tp-th-team {
    width: 100%;
    text-align: left;
}

/* Team header in tp table uses wc-gt-team class */
.wc-tp-table thead th.wc-gt-pos {
    text-align: left;
}

.wc-tp-table thead th.wc-gt-team {
    text-align: left;
}

.wc-tp-table td.wc-gt-team {
    padding: 0.625rem 1rem;
    text-align: left;
}

/* GD column (#3) — td has wc-gd-pos/wc-gd-neg/no class, target by position */
.wc-tp-table td:nth-child(3) {
    text-align: center;
}

/* Center Pts and Form columns scoped to tp table */
.wc-tp-table td.wc-gt-pts {
    text-align: center;
    font-weight: 800;
}

.wc-tp-table td.wc-gt-form,
.wc-tp-table th.wc-gt-form {
    text-align: center;
}

.wc-tp-th-num {
    text-align: center;
}

.wc-tp-table tbody tr {
    border-top: 1px solid var(--wc-surface-container);
}

.wc-tp-row--qualify {
    background: rgba(255, 220, 194, 0.18);
}

.wc-tp-rank {
    padding: 0.625rem 1rem;
    font-weight: 500;
    color: var(--wc-on-surface-variant);
    white-space: nowrap;
    text-align: left;
}

.wc-tp-rank--qualify {
    font-weight: 700;
    color: var(--wc-secondary-container);
}

.wc-tp-group {
    padding: 0.625rem 1rem;
    font-weight: 600;
    color: var(--wc-on-surface-variant);
    white-space: nowrap;
}

.wc-tp-team {
    padding: 0.625rem 1rem;
    font-weight: 500;
    color: var(--wc-on-surface-variant);
}

.wc-tp-team--qualify {
    font-weight: 700;
    color: var(--wc-primary);
}

.wc-tp-num {
    padding: 0.5rem 1rem;
    text-align: center;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.wc-tp-pts {
    padding: 0.625rem 1rem;
    text-align: center;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    color: var(--wc-on-surface);
    white-space: nowrap;
}

.wc-tp-empty {
    padding: 2rem;
    text-align: center;
    color: var(--wc-on-surface-variant);
    font-size: 0.875rem;
}

/* ==========================================================================
   WC2026 — Hero Bento  [wc2026_hero_bento]
   ========================================================================== */

.wc-hb {
    position: relative;
    overflow: hidden;
    background: var(--wc-primary);
    padding: 6rem 2rem 8rem;
    min-height: 40rem;
}

.wc-hb-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.wc-hb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(9, 20, 38, 0.8), var(--wc-primary));
    pointer-events: none;
}

.wc-hb-inner {
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .wc-hb-inner {
        flex-direction: row;
        align-items: center;
    }
}

/* Left column */
.wc-hb-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.wc-hb-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 220, 194, 0.3);
    background: rgba(210, 228, 251, 0.1);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: var(--wc-tertiary-fixed);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.wc-hb-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0;
}

.wc-hb-subtitle {
    font-size: 1.0625rem;
    color: #cbd5e1;
    max-width: 36rem;
    line-height: 1.7;
    margin: 0;
}

.wc-hb-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.wc-hb-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 0.375rem;
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.2s, transform 0.1s;
    border: none;
    line-height: 1;
}

.wc-hb-btn:active {
    transform: scale(0.95);
}

.wc-hb-btn--primary {
    background: linear-gradient(135deg, var(--wc-secondary) 0%, var(--wc-secondary-container) 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 81, 213, 0.35);
}

.wc-hb-btn--primary:hover {
    filter: brightness(1.1);
    color: #ffffff;
    text-decoration: none;
}

.wc-hb-btn--primary svg {
    flex-shrink: 0;
    transition: transform 0.15s;
}

.wc-hb-btn--primary:hover svg {
    transform: translateX(3px);
}

.wc-hb-btn--outline {
    background: transparent;
    border: 1px solid rgba(197, 198, 205, 0.3);
    color: #ffffff;
}

.wc-hb-btn--outline:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    text-decoration: none;
}

/* Right column: bento stat grid */
.wc-hb-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}

@media (min-width: 1024px) {
    .wc-hb-stats {
        max-width: 28rem;
    }
}

.wc-hb-stat {
    background: rgba(210, 228, 251, 0.08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wc-hb-stat--accent {
    background: linear-gradient(135deg, rgba(49, 107, 243, 0.7) 0%, rgba(9, 20, 38, 0.85) 100%);
    border-color: rgba(49, 107, 243, 0.35);
}

.wc-hb-stat-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.wc-hb-stat-icon--tertiary {
    color: var(--wc-tertiary-fixed);
}

.wc-hb-stat-icon--secondary {
    color: var(--wc-secondary-fixed-dim);
}

.wc-hb-stat-icon--white {
    color: #ffffff;
}

.wc-hb-stat-value {
    font-size: 2.25rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.wc-hb-stat-value--lg {
    font-size: 1.25rem;
    font-weight: 800;
}

.wc-hb-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ==========================================================================
   Global responsive: section padding overrides (mobile ≤ 768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* Hero */
    .wc-hero {
        padding: 4rem 1.25rem;
        min-height: 36rem;
    }

    /* Hero Bento */
    .wc-hb {
        padding: 4rem 1.25rem 5rem;
        min-height: 34rem;
    }

    /* Contained white sections */
    .wc-groups-section,
    .wc-tp-section,
    .wc-comp,
    .wc-news,
    .wc-content,
    .wc-fixtures {
        padding: 3rem 1.25rem;
    }

    .wc-tp-card {
        padding: 1.5rem;
    }

    /* Full-width background sections */
    .wc-faq,
    .wc-tipsters {
        padding: 4rem 1.25rem;
    }

    .wc-tipsters-heading {
        font-size: 1.375rem;
    }

    .wc-tipsters-header {
        margin-bottom: 2rem;
    }

    /* Unified section title size across all shortcodes */
    .wc-content-title,
    .wc-news-heading,
    .wc-faq-heading,
    .wc-comp-title,
    .wc-tp-title,
    .wc-groups-heading {
        font-size: 1.375rem;
        line-height: 25px;
    }
}
