/* Public marketing pages (Home + About) */

.home-refined {
    --home-page: #f8f9fa;
    --home-surface: #ffffff;
    --home-soft: #f3efe3;
    --home-border: #e9ecef;
    --home-border-strong: #dee2e6;
    --home-text: #212529;
    --home-text-secondary: #495057;
    --home-text-muted: #6c757d;
    --home-shell: #212529;
    --home-shell-strong: #111418;
    --home-accent: #daa520;
    --home-accent-strong: #b8860b;
    --home-shadow: 0 12px 30px rgba(17, 20, 24, 0.08);
    color: var(--home-text);
    background: linear-gradient(180deg, #fbfcfd 0%, var(--home-page) 46%, #f7f8f9 100%);
}

.home-refined section {
    padding: clamp(2.45rem, 5vw, 4.2rem) 0;
}

.home-refined .home-title {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--home-text);
}

.home-refined .home-title-light {
    color: #fff;
}

.home-refined .home-hero-refined {
    padding-top: clamp(2.8rem, 7vw, 5.2rem);
}

.home-refined .home-hero-panel {
    max-width: 980px;
    margin: 0 auto;
    padding: 1.2rem;
    border-radius: 22px;
    background: linear-gradient(160deg, #fff 0%, #f8f9fb 100%);
    border: 1px solid var(--home-border);
    box-shadow: var(--home-shadow);
    text-align: center;
}

.home-refined .hero-logo-wide {
    width: min(680px, 92%);
    margin: 0 auto 1rem;
    display: block;
}

.home-refined .hero-subtitle-refined {
    margin: 0;
    font-size: clamp(1.55rem, 3.4vw, 2.55rem);
    line-height: 1.14;
    color: var(--home-shell);
}

.home-refined .hero-description-refined {
    margin: 0.9rem auto 0;
    max-width: 56rem;
    color: var(--home-text-secondary);
    line-height: 1.68;
    font-size: clamp(1rem, 1.9vw, 1.15rem);
}

.home-refined .hero-cta {
    margin-top: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.home-refined .hero-btn {
    min-width: 220px;
    border-radius: 999px;
    padding: 0.82rem 1.32rem;
    font-weight: 700;
    font-size: 0.93rem;
    box-shadow: 0 10px 22px rgba(17, 20, 24, 0.1);
}

.home-refined .btn-modern.btn-primary-modern.hero-btn {
    background: var(--home-accent);
    border-color: var(--home-accent);
    color: #fff;
}

.home-refined .btn-modern.btn-primary-modern.hero-btn:hover {
    background: var(--home-accent-strong);
    border-color: var(--home-accent-strong);
    color: #fff;
    text-decoration: none;
}

.home-refined .btn-modern.btn-secondary-modern.hero-btn {
    background: var(--home-surface);
    border-color: var(--home-border-strong);
    color: var(--home-text);
}

.home-refined .btn-modern.btn-secondary-modern.hero-btn:hover {
    background: var(--home-shell);
    border-color: var(--home-shell-strong);
    color: #f8f9fa;
    text-decoration: none;
}

.home-refined .home-quick-nav {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.home-refined .home-quick-nav a {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--home-border-strong);
    color: var(--home-text-secondary);
    background: var(--home-surface);
    padding: 0.34rem 0.78rem;
    font-size: 0.82rem;
    text-decoration: none;
}

.home-refined .home-quick-nav a:hover {
    color: var(--home-shell);
    border-color: color-mix(in srgb, var(--home-accent) 45%, var(--home-border-strong));
}

.home-refined .home-news {
    padding-top: clamp(1.6rem, 3vw, 2.3rem);
}

.home-refined .section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.9rem;
}

.home-refined .news-link-all {
    color: var(--home-accent-strong);
    text-decoration: none;
    font-weight: 600;
}

.home-refined .news-link-all:hover {
    color: var(--home-shell);
    text-decoration: underline;
}

.home-refined .home-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.85rem;
}

.home-refined .home-news-card {
    border-radius: 16px;
    border: 1px solid var(--home-border);
    background: var(--home-surface);
    box-shadow: var(--home-shadow);
    padding: 1rem;
}

.home-refined .home-news-badge {
    display: inline-flex;
    border-radius: 999px;
    padding: 0.2rem 0.58rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: var(--home-accent-strong);
}

.home-refined .home-news-card h3 {
    margin: 0.55rem 0 0.2rem;
    font-size: 1.1rem;
    color: var(--home-shell);
}

.home-refined .home-news-date {
    color: var(--home-text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.45rem;
}

.home-refined .home-news-card p {
    margin: 0;
    line-height: 1.6;
    color: var(--home-text-secondary);
}

.home-refined .news-card-link {
    margin-top: 0.6rem;
    display: inline-flex;
    color: var(--home-accent-strong);
    text-decoration: none;
    font-weight: 600;
}

.home-refined .news-card-link:hover {
    color: var(--home-shell);
}

.home-refined .overview-lead {
    margin: 0;
    max-width: 70rem;
    line-height: 1.72;
    color: var(--home-text-secondary);
    font-size: clamp(1.02rem, 1.8vw, 1.15rem);
}

.home-refined .game-flow {
    background: linear-gradient(160deg, #15191f 0%, #222b36 100%);
}

.home-refined .game-flow-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 0.9rem;
    align-items: stretch;
}

.home-refined .flow-main-card,
.home-refined .flow-visual,
.home-refined .goal-card {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
}

.home-refined .flow-main-card {
    padding: 1rem;
}

.home-refined .flow-main-card h3,
.home-refined .goal-card h3 {
    margin: 0 0 0.5rem;
    color: #fff;
}

.home-refined .flow-main-card p,
.home-refined .goal-card p {
    margin: 0;
    color: rgba(248, 249, 250, 0.94);
    line-height: 1.65;
}

.home-refined .flow-main-card p + p,
.home-refined .goal-card p + p {
    margin-top: 0.6rem;
}

.home-refined .flow-main-card strong {
    color: #fff7e4;
}

.home-refined .flow-visual {
    margin: 0;
    padding: 0.85rem;
    display: flex;
    align-items: center;
}

.home-refined .overview-image {
    width: 100%;
    display: block;
}

.home-refined .goal-card {
    margin-top: 0.9rem;
    padding: 0.95rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.8rem;
}

.home-refined .goal-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid rgba(218, 165, 32, 0.55);
    background: rgba(218, 165, 32, 0.18);
    color: #ffe6b2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.home-refined .game-note {
    margin-top: 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(218, 165, 32, 0.34);
    background: rgba(218, 165, 32, 0.11);
    color: #fff;
    line-height: 1.67;
    padding: 0.9rem;
}

.home-refined .home-slides {
    padding-top: clamp(1.4rem, 2.4vw, 1.9rem);
}

.home-refined .home-slides-card {
    border-radius: 16px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    box-shadow: var(--home-shadow);
    padding: 0.75rem;
}

.home-refined .editions-grid-refresh {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.88rem;
}

.home-refined .edition-card-refresh {
    border-radius: 16px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    box-shadow: var(--home-shadow);
    padding: 0.95rem;
}

.home-refined .edition-card-muted {
    background: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
}

.home-refined .edition-number-refresh {
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--home-accent-strong);
    line-height: 1;
}

.home-refined .edition-date-refresh {
    margin-top: 0.22rem;
    font-size: 0.86rem;
    color: var(--home-text-muted);
}

.home-refined .edition-theme-refresh {
    margin-top: 0.3rem;
    font-size: 0.93rem;
    line-height: 1.5;
    color: var(--home-text-secondary);
}

.home-refined .edition-players-refresh {
    margin-top: 0.48rem;
    color: var(--home-shell);
    font-weight: 700;
}

.home-refined .charity-highlight {
    margin-top: 1rem;
    border-radius: 18px;
    background: linear-gradient(130deg, #212529 0%, #3f3120 55%, #b8860b 100%);
    text-align: center;
    padding: 1.15rem 0.9rem;
}

.home-refined .charity-value {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
}

.home-refined .charity-label {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.home-refined .organizers-section-refresh {
    background: var(--home-soft);
}

.home-refined .organizers-text-refresh {
    margin: 0;
    max-width: 58rem;
    color: var(--home-text-secondary);
    line-height: 1.72;
}

.home-refined .organizers-grid-refresh {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.home-refined .organizer-card-refresh {
    border-radius: 16px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    box-shadow: var(--home-shadow);
    text-align: center;
    padding: 1rem;
}

.home-refined .organizer-photo-refresh {
    width: 136px;
    height: 136px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(218, 165, 32, 0.6);
}

.home-refined .organizer-card-refresh h3 {
    margin: 0.7rem 0 0.2rem;
    font-size: 1.08rem;
    color: var(--home-shell);
}

.home-refined .organizer-card-refresh p {
    margin: 0;
    color: var(--home-text-muted);
}

.home-refined.about-page-refined .about-hero-refined {
    padding-bottom: 0.8rem;
}

.home-refined.about-page-refined .about-organizers-section {
    padding-top: 0.8rem;
}

@media (max-width: 991px) {
    .home-refined .game-flow-layout {
        grid-template-columns: 1fr;
    }

    .home-refined .goal-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .home-refined section {
        padding: clamp(2rem, 8vw, 2.9rem) 0;
    }

    .home-refined .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-refined .hero-btn {
        width: 100%;
        min-width: 0;
    }

    .home-refined .home-quick-nav {
        justify-content: flex-start;
    }

    .home-refined .organizers-grid-refresh {
        grid-template-columns: 1fr;
    }
}

/* Index.cshtml legacy blocks moved from inline styles */
.ui-showcase-root .section-title-white {
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.ui-showcase-root .formula-stage {
    background: transparent;
}

.ui-showcase-root .formula-lead {
    font-size: 1.36rem;
    line-height: 1.76;
    color: #fff;
    margin-bottom: 1rem;
}

.ui-showcase-root .formula-support {
    font-size: 1.06rem;
    line-height: 1.62;
    color: #d3d3d3;
    margin-bottom: 0;
}

.ui-showcase-root .formula-narrow {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}

.ui-showcase-root .diagram-plain {
    text-align: center;
    padding: 0.35rem 0 0.2rem;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.ui-showcase-root .diagram-image {
    width: min(1140px, 100%);
    max-width: 100%;
    height: auto;
}

.ui-showcase-root .goal-stage {
    background: transparent;
    max-width: 940px;
    margin: 0 auto;
    padding: 1.5rem 1.4rem;
    border-radius: 14px;
}

.ui-showcase-root .goal-postawa {
    font-size: 2.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wnc-accent, #daa520);
    margin: 0.25rem 0 0.55rem;
    text-align: center;
    font-weight: 700;
}

.ui-showcase-root .goal-original {
    display: grid;
    grid-template-columns: 180px minmax(0, 720px);
    gap: 1.9rem;
    justify-content: center;
    align-items: center;
    max-width: 940px;
    margin: 1.25rem auto 0;
    text-align: left;
}

.ui-showcase-root .goal-original-icon {
    color: var(--wnc-accent, #daa520);
    font-size: 7rem;
    line-height: 1;
    text-align: center;
}

.ui-showcase-root .goal-original-content {
    max-width: 720px;
}

.ui-showcase-root .goal-original .game-section-text {
    text-align: center;
    margin-top: 0;
    line-height: 1.82;
}

.ui-showcase-root .goal-stage .formula-support,
.ui-showcase-root .goal-stage .game-section-text {
    color: #495057;
}

.ui-showcase-root .game-goal-character-section {
    padding: 3rem 0 6rem;
    background: linear-gradient(180deg, #c9ced6 0%, #eef1f4 58%, #fafbfc 100%);
}

.ui-showcase-root .game-goal-character-content {
    max-width: 1400px;
    margin: 0 auto;
}

.ui-showcase-root .game-description-section .game-sections-grid,
.ui-showcase-root .game-goal-character-section .game-sections-grid {
    margin-top: 0;
    gap: 0;
}

.ui-showcase-root .game-goal-character-section .goal-original {
    margin-top: 0;
}

.ui-showcase-root .game-goal-character-section .character-card {
    margin-top: 4.5rem;
}

.ui-showcase-root .game-goal-character-section .character-text {
    color: #495057;
    text-align: center;
}

.ui-showcase-root .goal-intro {
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 0.15rem;
}

.ui-showcase-root .goal-body {
    font-size: 1.1rem;
}

.ui-showcase-root .character-card {
    text-align: center;
}

.ui-showcase-root .character-accent {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(242, 245, 248, 0.96) 100%);
    border: 1px solid rgba(173, 181, 189, 0.35);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    max-width: 940px;
    margin: 0 auto;
}

.ui-showcase-root .character-text {
    color: #d3d3d3;
    font-size: 1.1rem;
    line-height: 1.65;
    text-align: center;
}

@media (max-width: 768px) {
    .ui-showcase-root .goal-original {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ui-showcase-root .goal-original .game-section-text {
        text-align: center;
    }

    .ui-showcase-root .formula-narrow {
        margin: 0 auto;
        max-width: 100%;
    }

    .ui-showcase-root .goal-stage {
        padding: 1rem 0.35rem;
    }

    .ui-showcase-root .goal-original-icon {
        font-size: 4.8rem;
    }
}

/* Index.cshtml migrated from inline <style> */
html {
    scroll-behavior: smooth;
}

.ui-showcase-root {
    --primary-gold: var(--wnc-accent, #daa520);
    --goldenrod: var(--wnc-accent-strong, #b8860b);
    --text-gold: var(--wnc-accent-soft, #ffd700);
    --text-white: var(--wnc-on-dark, #ffffff);
    --text-dark: var(--wnc-text-primary, #212529);
    --text-secondary: var(--wnc-text-secondary, #495057);
    --text-muted: var(--wnc-text-muted, #6c757d);
    --bg-dark: var(--wnc-shell-bg, #212529);
    --bg-light-start: var(--wnc-surface-soft, #f8f9fa);
    --bg-light-end: var(--wnc-surface-muted, #e9ecef);
    --border-radius: 15px;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.ui-showcase-root section {
    scroll-margin-top: 88px;
}

.ui-showcase-root .home-edition-notice {
    padding: 0.75rem 0 0.35rem;
    scroll-margin-top: calc(var(--wnc-topbar-offset, 60px) + 12px);
}

/* Above-the-fold notice: no AOS transform (fade-down hides it above the viewport until scroll) */
.ui-showcase-root .home-edition-notice,
.ui-showcase-root .home-edition-notice.aos-init {
    opacity: 1;
    transform: none;
}

.ui-showcase-root .home-edition-notice__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.85rem 1.25rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0.95rem 1.75rem;
    border-radius: var(--border-radius);
    border: 1px solid color-mix(in srgb, var(--primary-gold) 38%, var(--bg-light-end));
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--primary-gold) 9%, #fff) 0%,
        color-mix(in srgb, var(--primary-gold) 4%, var(--bg-light-start)) 100%
    );
    box-shadow: 0 8px 24px color-mix(in srgb, var(--primary-gold) 14%, transparent);
}

.ui-showcase-root .home-edition-notice__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--goldenrod);
    background: color-mix(in srgb, var(--primary-gold) 16%, #fff);
    font-size: 1.05rem;
}

.ui-showcase-root .home-edition-notice__text {
    margin: 0;
    flex: 1 1 12rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.45;
    color: var(--text-dark);
}

.ui-showcase-root .home-edition-notice__text strong {
    color: var(--goldenrod);
    font-weight: 700;
}

.ui-showcase-root .home-edition-notice__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.55rem 0.75rem;
}

.ui-showcase-root .home-edition-notice__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--goldenrod);
    border: 1px solid color-mix(in srgb, var(--primary-gold) 45%, var(--bg-light-end));
    background: #fff;
    transition: var(--transition);
}

.ui-showcase-root .home-edition-notice__link:hover,
.ui-showcase-root .home-edition-notice__link:focus-visible {
    color: var(--text-white);
    background: var(--goldenrod);
    border-color: var(--goldenrod);
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--primary-gold) 28%, transparent);
}

.ui-showcase-root .home-edition-notice__link--primary {
    color: var(--text-white);
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.ui-showcase-root .home-edition-notice__link--primary:hover,
.ui-showcase-root .home-edition-notice__link--primary:focus-visible {
    background: var(--goldenrod);
    border-color: var(--goldenrod);
}

@media (max-width: 575.98px) {
    .ui-showcase-root .home-edition-notice__inner {
        padding: 0.9rem 1rem;
    }

    .ui-showcase-root .home-edition-notice__text {
        flex-basis: 100%;
        font-size: 1rem;
    }

    .ui-showcase-root .home-edition-notice__actions {
        width: 100%;
    }

    .ui-showcase-root .home-edition-notice__link {
        flex: 1 1 auto;
        justify-content: center;
        min-width: 8.5rem;
    }
}

.ui-showcase-root .hero-section {
    background: transparent;
    padding: 1.75rem 0 3.2rem;
    position: relative;
    overflow: hidden;
}

.ui-showcase-root .hero-content {
    --hero-stack-gap: clamp(1.35rem, 3.2vw, 1.85rem);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--hero-stack-gap);
    text-align: center;
    color: var(--text-dark);
}

.ui-showcase-root .hero-logo {
    width: 100%;
    height: auto;
    max-width: 780px;
    margin: 1.6rem auto 0;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.ui-showcase-root .hero-logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
}

.ui-showcase-root .hero-subtitle {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ui-showcase-root .cta-section {
    margin: 0;
    width: 100%;
}

.ui-showcase-root .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.ui-showcase-root .btn-primary-modern {
    background: var(--primary-gold);
    color: var(--text-white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ui-showcase-root .btn-primary-modern:hover {
    background: var(--goldenrod);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    color: var(--text-white);
    text-decoration: none;
}

.ui-showcase-root .btn-secondary-modern {
    background: transparent;
    color: var(--bg-dark);
    border: 3px solid var(--goldenrod);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ui-showcase-root .btn-secondary-modern:hover {
    background: var(--goldenrod);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

.ui-showcase-root .quick-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0;
}

.ui-showcase-root .quick-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: color-mix(in srgb, var(--primary-gold) 12%, transparent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ui-showcase-root .quick-link:hover {
    color: var(--goldenrod);
    background: color-mix(in srgb, var(--primary-gold) 22%, transparent);
    text-decoration: none;
    transform: translateY(-2px);
}

.ui-showcase-root .how-it-works-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, var(--bg-light-start) 0%, var(--bg-light-end) 100%);
    color: var(--text-dark);
}

.ui-showcase-root .how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.ui-showcase-root .how-it-works-card {
    background: var(--wnc-surface, #ffffff);
    border-radius: var(--border-radius);
    padding: 1.2rem 1.2rem 1.15rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid color-mix(in srgb, var(--primary-gold) 20%, transparent);
    border-top: 4px solid color-mix(in srgb, var(--primary-gold) 55%, transparent);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 265px;
}

.ui-showcase-root .how-it-works-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: color-mix(in srgb, var(--primary-gold) 35%, transparent);
}

.ui-showcase-root .how-it-works-icon {
    font-size: 1.35rem;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
    height: 2rem;
    width: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ui-showcase-root .how-it-works-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.66;
    margin-bottom: 0;
    max-width: 92%;
}

.ui-showcase-root .how-it-works-card p strong {
    color: var(--text-dark);
    font-weight: 700;
}

.ui-showcase-root .game-description-section {
    padding: 4rem 0 6rem;
    background: var(--bg-dark);
    color: var(--text-white);
    position: relative;
}

.ui-showcase-root .game-description-content {
    max-width: 1400px;
    margin: 0 auto;
}

.ui-showcase-root .game-sections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.ui-showcase-root .game-section-wide {
    grid-column: 1 / -1;
    background: transparent;
    border-radius: var(--border-radius);
    padding: 1.5rem 1.4rem;
    text-align: left;
    border: 0;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    color: var(--text-dark);
}

.ui-showcase-root .game-section-wide.formula-narrow {
    text-align: center;
}

.ui-showcase-root .game-section-wide.diagram-plain {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    padding-left: 0;
    padding-right: 0;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.ui-showcase-root .game-section-wide.character-accent {
    border: 1px solid rgba(173, 181, 189, 0.35);
}

.ui-showcase-root .game-section-wide .game-section-text {
    max-width: 100%;
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.72;
    color: var(--text-dark);
}

.ui-showcase-root .game-section-text {
    font-size: 1.04rem;
    line-height: 1.7;
    color: #d3d3d3;
    text-align: left;
    font-weight: 400;
    transition: var(--transition);
    opacity: 1;
    margin-top: 0.35rem;
}

.ui-showcase-root .game-section-highlight {
    color: var(--primary-gold);
    font-weight: 700;
}

.ui-showcase-root .game-image {
    width: min(980px, 100%);
    max-width: 100%;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
    transition: var(--transition);
}

.ui-showcase-root .game-image.diagram-image {
    width: min(1140px, 100%);
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.ui-showcase-root .game-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.5));
}

.ui-showcase-root .stats-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, var(--bg-light-start) 0%, var(--bg-light-end) 100%);
    color: var(--text-dark);
    position: relative;
}

.ui-showcase-root .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ui-showcase-root .stat-card {
    background: var(--wnc-surface, #ffffff);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--primary-gold) 20%, transparent);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.ui-showcase-root .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: color-mix(in srgb, var(--primary-gold) 35%, transparent);
}

.ui-showcase-root .stat-number {
    font-size: 3.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.ui-showcase-root .stat-label {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
}

.ui-showcase-root .editions-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(135deg, var(--bg-light-start) 0%, var(--bg-light-end) 100%);
    color: var(--text-dark);
}

.ui-showcase-root .editions-content {
    max-width: 1200px;
    margin: 0 auto;
}

.ui-showcase-root .section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding-bottom: 1.45rem;
}

.ui-showcase-root .section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

.ui-showcase-root .editions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ui-showcase-root .edition-card {
    background: var(--wnc-surface, #ffffff);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid color-mix(in srgb, var(--primary-gold) 20%, transparent);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.ui-showcase-root .edition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: color-mix(in srgb, var(--primary-gold) 35%, transparent);
}

.ui-showcase-root .edition-card .edition-content {
    transition: var(--transition);
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    height: 100%;
}

.ui-showcase-root .edition-card .edition-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.ui-showcase-root .edition-card:hover .edition-content {
    opacity: 0;
}

.ui-showcase-root .edition-card:hover .edition-image {
    opacity: 1;
}

.ui-showcase-root .edition-number {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.ui-showcase-root .edition-date {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.ui-showcase-root .edition-theme {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.4;
}

.ui-showcase-root .edition-players {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-top: 1rem;
}

.ui-showcase-root .organizers-section {
    padding: 4rem 0 6rem;
    background: transparent;
    color: var(--text-dark);
    text-align: center;
}

.ui-showcase-root .organizers-content {
    max-width: 1140px;
    margin: 0 auto;
}

.ui-showcase-root .organizers-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 0.65rem;
    font-style: italic;
    color: var(--text-secondary);
    text-align: center;
}

.ui-showcase-root .organizers-goodluck {
    margin: 0 0 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    text-align: center;
}

.ui-showcase-root .organizers-profiles {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.35rem;
    margin-top: 0;
}

.ui-showcase-root .organizer-profile-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
}

.ui-showcase-root .organizer-caption h4 {
    margin: 0;
    font-size: 1.08rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.ui-showcase-root .organizer-caption p {
    display: none;
}

.ui-showcase-root .organizer-image {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    border: 3px solid color-mix(in srgb, var(--primary-gold) 65%, transparent);
    transition: var(--transition);
}

.ui-showcase-root .organizer-image:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px color-mix(in srgb, var(--primary-gold) 30%, transparent);
}

@media (max-width: 991px) {
    .ui-showcase-root .how-it-works-grid,
    .ui-showcase-root .stats-grid {
        grid-template-columns: 1fr;
    }

    .ui-showcase-root .goal-original {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ui-showcase-root .goal-original .game-section-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .ui-showcase-root .hero-logo {
        max-width: 420px;
    }

    .ui-showcase-root .hero-subtitle {
        font-size: 1.8rem;
    }

    .ui-showcase-root .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ui-showcase-root .quick-links {
        gap: 0.6rem 0.75rem;
    }

    .ui-showcase-root .quick-link {
        padding: 0.4rem 0.85rem;
        font-size: 0.95rem;
    }

    .ui-showcase-root .editions-grid {
        grid-template-columns: 1fr;
    }

    .ui-showcase-root .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .ui-showcase-root .organizers-text {
        text-align: center;
    }

    .ui-showcase-root .organizers-profiles {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ui-showcase-root .hero-logo {
        max-width: 280px;
        margin: 1rem auto 0;
    }

    .ui-showcase-root .hero-subtitle {
        font-size: 1.5rem;
    }

    .ui-showcase-root .quick-links {
        gap: 0.5rem;
    }

    .ui-showcase-root .quick-link {
        padding: 0.35rem 0.7rem;
        font-size: 0.9rem;
    }
}
