:root {
    --cwf-black: #050505;
    --cwf-panel: #111111;
    --cwf-panel-soft: #171717;
    --cwf-line: rgba(255,255,255,.14);
    --cwf-line-red: rgba(160, 22, 22, .65);
    --cwf-red: #8f1111;
    --cwf-red-bright: #c51b1b;
    --cwf-gold: #c89a3f;
    --cwf-gold-bright: #f0c76a;
    --cwf-text: #f5f2ea;
    --cwf-muted: #a7a7a7;
    --cwf-font-head: 'Antonio', Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    --cwf-font-body: 'Inter', Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top center, rgba(143,17,17,.22), transparent 34rem),
        linear-gradient(180deg, #0b0b0b 0%, #030303 100%);
    color: var(--cwf-text);
    font-family: var(--cwf-font-body);
}

body.cwf-mobile-menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.cwf-site {
    min-height: 100vh;
    background:
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 48px 48px;
}

.cwf-topbar {
    position: relative;
    z-index: 20;
    background:
        linear-gradient(180deg, rgba(14,14,14,.96), rgba(5,5,5,.96)),
        radial-gradient(circle at top right, rgba(176,22,22,.28), transparent 22rem);
    border-bottom: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 10px 30px rgba(0,0,0,.55);
}

.cwf-topbar-inner {
    width: min(1510px, calc(100% - 44px));
    min-height: 86px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 28px;
}

.cwf-brand {
    width: auto;
    max-width: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}

.cwf-logo-img {
    display: block;
    width: auto;
    height: 82px;
    max-width: 120px;
    max-height: 82px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 7px 14px rgba(0,0,0,.75));
}

.cwf-footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.cwf-footer-brand .cwf-brand {
    width: 92px;
    height: 92px;
    max-width: 92px;
    min-width: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    overflow: hidden;
}

.cwf-footer-brand .cwf-logo-img {
    display: block;
    width: 92px;
    height: 92px;
    max-width: 92px;
    max-height: 92px;
    object-fit: contain;
    object-position: center;
    background: transparent;
    filter: drop-shadow(0 7px 14px rgba(0,0,0,.75));
}

.cwf-footer-brand p {
    margin: 0;
    max-width: 280px;
    color: #d8d8d8;
    line-height: 1.55;
}

.cwf-main-nav {
    display: flex;
    align-items: stretch;
    margin-left: auto;
    border-left: 1px solid rgba(255,255,255,.08);
}

.cwf-main-nav a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #eeeeee;
    font-family: var(--cwf-font-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255,.08);
    transition: background .2s ease, color .2s ease;
}

.cwf-main-nav a:hover,
.cwf-main-nav a.is-active {
    color: #fff;
    background: linear-gradient(180deg, rgba(132,14,14,.85), rgba(50,4,4,.38));
}

.cwf-main-nav a.is-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--cwf-red-bright);
}

.cwf-top-actions {
    display: flex;
    align-items: center;
}

.cwf-join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    padding: 0 28px;
    background: linear-gradient(135deg, #f4ce77, #a86a1c 50%, #f1c767);
    color: #16100a;
    border: 1px solid rgba(255,226,148,.65);
    font-family: var(--cwf-font-head);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 0 22px rgba(190,134,50,.22);
}

.cwf-crown {
    margin-right: 9px;
    font-size: 20px;
}

.cwf-mobile-menu-btn {
    display: none;
    align-self: center;
    margin-left: auto;
    width: 48px;
    height: 48px;
    color: #fff;
    background: rgba(136,13,13,.85);
    border: 1px solid rgba(255,255,255,.18);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.cwf-hero {
    min-height: 514px;
    background-position: center;
    background-size: cover;
    border-bottom: 1px solid rgba(255,255,255,.12);
    box-shadow: inset 0 -120px 100px rgba(0,0,0,.64);
}

.cwf-hero-inner {
    width: min(1510px, calc(100% - 44px));
    margin: 0 auto;
    min-height: 514px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cwf-hero-copy {
    margin-top: 22px;
    text-shadow: 0 6px 18px rgba(0,0,0,.9);
}

.cwf-hero-kicker {
    font-family: var(--cwf-font-head);
    font-size: clamp(36px, 4.2vw, 68px);
    font-weight: 700;
    line-height: .84;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #e8e0d6;
}

.cwf-hero h1 {
    margin: 0;
    font-family: var(--cwf-font-head);
    font-size: clamp(68px, 8vw, 144px);
    font-weight: 700;
    line-height: .9;
    letter-spacing: .025em;
    text-transform: uppercase;
    color: var(--cwf-gold-bright);
    text-shadow:
        0 3px 0 #4b2e13,
        0 6px 10px rgba(0,0,0,.98),
        0 0 20px rgba(238,191,86,.3);
}

.cwf-hero p {
    margin: 22px 0 0;
    color: #f3f3f3;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.55;
}

.cwf-hero-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 34px;
}

.cwf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 66px;
    padding: 0 26px;
    font-family: var(--cwf-font-head);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 16px 26px rgba(0,0,0,.48);
}

.cwf-btn-red {
    background: linear-gradient(180deg, #a91818, #4f0707);
    color: #fff;
    border-color: rgba(229,49,49,.56);
}

.cwf-btn-dark {
    background: rgba(4,4,4,.78);
    color: #fff;
    border-color: rgba(200,154,63,.78);
}

.cwf-main {
    width: min(1510px, calc(100% - 44px));
    margin: 24px auto 0;
}

.cwf-home-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px;
    gap: 26px;
}

.cwf-feed {
    border: 1px solid var(--cwf-line);
    background: rgba(7,7,7,.55);
}

.cwf-news-block + .cwf-news-block {
    border-top: 1px solid rgba(255,255,255,.1);
}

.cwf-section-head {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    background: linear-gradient(90deg, #871212, #211111 70%, #171717);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.cwf-section-head h2,
.cwf-widget-head h2 {
    margin: 0;
    color: #fff;
    font-family: var(--cwf-font-head);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.cwf-section-head a {
    color: #fff;
    font-family: var(--cwf-font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    opacity: .9;
}

.cwf-news-item {
    display: grid;
    grid-template-columns: 356px minmax(0, 1fr);
    min-height: 204px;
    background: linear-gradient(90deg, rgba(18,18,18,.94), rgba(10,10,10,.96));
}

.cwf-news-thumb {
    min-height: 204px;
    background-size: cover;
    background-position: center;
    border-right: 1px solid rgba(255,255,255,.1);
}

.cwf-news-copy {
    padding: 30px 28px;
}

.cwf-news-copy h3 {
    margin: 0;
    color: #fff;
    font-family: var(--cwf-font-head);
    font-size: 31px;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: .01em;
}

.cwf-news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: #d7d7d7;
    font-size: 14px;
    font-weight: 500;
}

.cwf-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--cwf-red-bright);
}

.cwf-news-copy p {
    max-width: 610px;
    margin: 18px 0 0;
    color: #d5d5d5;
    font-size: 17px;
    line-height: 1.62;
}

.cwf-sidebar {
    display: grid;
    gap: 18px;
    align-content: start;
}

.cwf-widget {
    border: 1px solid var(--cwf-line);
    background: linear-gradient(180deg, rgba(15,15,15,.96), rgba(6,6,6,.96));
    box-shadow: 0 18px 30px rgba(0,0,0,.28);
}

.cwf-widget-head {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    background: linear-gradient(90deg, #951313, #3d0808);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.cwf-next-show-body {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
    padding: 16px 16px 14px;
}

.cwf-next-show-art {
    min-height: 132px;
    background-size: cover;
    background-position: left center;
    border: 1px solid rgba(255,255,255,.12);
}

.cwf-next-show-title {
    margin-top: 2px;
    font-family: var(--cwf-font-head);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.cwf-next-show-meta {
    margin-top: 10px;
    color: #dedede;
    font-size: 14px;
    line-height: 1.45;
}

.cwf-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-top: 14px;
}

.cwf-countdown span {
    display: block;
    padding: 7px 2px 6px;
    background: #140d07;
    border: 1px solid rgba(200,154,63,.48);
    color: var(--cwf-gold-bright);
    text-align: center;
    font-family: var(--cwf-font-head);
    font-size: 21px;
    line-height: .9;
}

.cwf-countdown small {
    display: block;
    margin-top: 5px;
    color: #e8d5a5;
    font-family: var(--cwf-font-body);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .05em;
}

.cwf-view-card {
    display: block;
    margin: 0 16px 16px;
    padding: 12px 15px;
    background: linear-gradient(180deg, #9f1515, #530808);
    border: 1px solid rgba(220,42,42,.55);
    color: #fff;
    text-align: center;
    font-family: var(--cwf-font-head);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
}

.cwf-link-list {
    padding: 6px 18px 10px;
}

.cwf-link-list a {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    color: #e6e6e6;
    border-bottom: 1px solid rgba(255,255,255,.09);
    font-size: 15px;
}

.cwf-link-list a:last-child {
    border-bottom: 0;
}

.cwf-link-list a::after {
    content: '›';
    color: #fff;
    font-size: 26px;
    line-height: 14px;
}

.cwf-champions {
    padding: 12px 18px 16px;
}

.cwf-champion-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 70px;
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.cwf-champion-row:last-child {
    border-bottom: 0;
}

.cwf-belt-icon {
    width: 84px;
    height: 50px;
    background-image: url('/assets/conquest/cwf-belts-sheet.png');
    background-size: 120px auto;
    background-repeat: no-repeat;
    filter: drop-shadow(0 5px 9px rgba(0,0,0,.7));
}

.cwf-belt-world { background-position: center 2px; }
.cwf-belt-pure { background-position: center -78px; }
.cwf-belt-tag { background-position: center -158px; }
.cwf-belt-warzone { background-position: center -238px; }
.cwf-belt-vanguard { background-position: center -318px; }

.cwf-champion-title {
    color: var(--cwf-gold-bright);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.cwf-champion-name {
    margin-top: 2px;
    color: #fff;
    font-family: var(--cwf-font-head);
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.cwf-champion-sub {
    margin-top: 1px;
    color: #a9a9a9;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.cwf-connect-buttons {
    display: grid;
    gap: 10px;
    padding: 16px;
}

.cwf-connect-btn {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) 20px;
    gap: 12px;
    align-items: center;
    min-height: 68px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,.16);
}

.cwf-connect-discord {
    background: linear-gradient(90deg, #50528e, #161735);
}

.cwf-connect-forums {
    background: linear-gradient(90deg, #7e1717, #240707);
}

.cwf-connect-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 48px;
    color: #fff;
    font-size: 34px;
}

.cwf-connect-title {
    color: #fff;
    font-family: var(--cwf-font-head);
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.cwf-connect-sub {
    margin-top: 3px;
    color: #dfdfdf;
    font-size: 11px;
    font-weight: 600;
}

.cwf-connect-arrow {
    color: #fff;
    font-size: 30px;
}

.cwf-footer-cards {
    width: min(1510px, calc(100% - 44px));
    margin: 24px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.cwf-footer-card {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    min-height: 190px;
    padding: 26px 30px;
    background: linear-gradient(135deg, rgba(20,20,20,.98), rgba(8,8,8,.98));
    border: 1px solid var(--cwf-line);
}

.cwf-footer-card-icon {
    color: var(--cwf-gold-bright);
    font-size: 82px;
    line-height: 1;
    text-align: center;
    text-shadow: 0 0 22px rgba(200,154,63,.28);
}

.cwf-footer-card h3 {
    margin: 0;
    color: var(--cwf-gold-bright);
    font-family: var(--cwf-font-head);
    font-size: 27px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.cwf-footer-card p {
    margin: 12px 0 18px;
    color: #d5d5d5;
    font-size: 15px;
    line-height: 1.45;
}

.cwf-footer-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 164px;
    min-height: 48px;
    color: var(--cwf-gold-bright);
    border: 1px solid rgba(200,154,63,.75);
    font-family: var(--cwf-font-head);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.cwf-footer {
    margin-top: 28px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,.14);
}

.cwf-footer-inner {
    width: min(1510px, calc(100% - 44px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr .55fr .65fr .65fr;
    gap: 70px;
    padding: 42px 0 38px;
}

.cwf-footer-brand img {
    width: 330px;
    max-width: 100%;
    display: block;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 8px 14px rgba(0,0,0,.85));
}

.cwf-footer-brand p {
    margin: 8px 0 0 168px;
    max-width: 300px;
    color: #bdbdbd;
    font-size: 15px;
    line-height: 1.55;
}

.cwf-footer-title {
    margin-bottom: 14px;
    color: #fff;
    font-family: var(--cwf-font-head);
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
}

.cwf-footer-col a {
    display: block;
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.55;
}

.cwf-footer-col a:hover {
    color: var(--cwf-gold-bright);
}

.cwf-socials {
    display: flex;
    gap: 18px;
    align-items: center;
}

.cwf-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.cwf-footer-bottom {
    display: flex;
    justify-content: space-between;
    width: min(1510px, calc(100% - 44px));
    margin: 0 auto;
    padding: 18px 0;
    color: #a7a7a7;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13px;
}

@media (max-width: 1280px) {
    .cwf-topbar-inner {
        width: min(100% - 28px, 1180px);
        gap: 18px;
    }

    .cwf-brand {
        width: 320px;
    }

    .cwf-main-nav a {
        padding: 0 10px;
        font-size: 13px;
    }

    .cwf-home-layout {
        grid-template-columns: minmax(0, 1fr) 390px;
    }

    .cwf-news-item {
        grid-template-columns: 280px minmax(0, 1fr);
    }

    .cwf-next-show-body {
        grid-template-columns: 1fr;
    }

    .cwf-next-show-art {
        min-height: 145px;
    }

    .cwf-footer-cards,
    .cwf-main,
    .cwf-footer-inner,
    .cwf-footer-bottom,
    .cwf-hero-inner {
        width: min(100% - 28px, 1180px);
    }
}

@media (max-width: 1020px) {
    .cwf-topbar-inner {
        min-height: 76px;
        align-items: center;
    }

    .cwf-brand {
        width: 285px;
        max-width: calc(100% - 70px);
    }

    .cwf-main-nav,
    .cwf-top-actions {
        display: none;
    }

    .cwf-mobile-menu-btn {
        display: block;
    }

    .cwf-mobile-menu-open .cwf-main-nav {
        display: grid;
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        z-index: 80;
        margin: 0;
        background: rgba(3,3,3,.98);
        border-top: 1px solid rgba(255,255,255,.12);
        border-left: 0;
        box-shadow: 0 20px 40px rgba(0,0,0,.75);
    }

    .cwf-mobile-menu-open .cwf-main-nav a {
        min-height: 52px;
        justify-content: center;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.09);
    }

    .cwf-hero,
    .cwf-hero-inner {
        min-height: 450px;
    }

    .cwf-home-layout {
        grid-template-columns: 1fr;
    }

    .cwf-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cwf-widget-champions,
    .cwf-widget-connect {
        grid-column: span 2;
    }

    .cwf-footer-cards,
    .cwf-footer-inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cwf-footer-card {
        min-height: 0;
    }

    .cwf-footer-brand p {
        margin-left: 0;
    }
}

@media (max-width: 720px) {
    .cwf-hero h1 {
        font-size: 60px;
    }

    .cwf-hero-kicker {
        font-size: 32px;
    }

    .cwf-hero p {
        font-size: 16px;
    }

    .cwf-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cwf-news-item {
        grid-template-columns: 1fr;
    }

    .cwf-news-thumb {
        min-height: 190px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .cwf-sidebar,
    .cwf-widget-champions,
    .cwf-widget-connect {
        grid-template-columns: 1fr;
        grid-column: span 1;
    }

    .cwf-footer-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cwf-footer-bottom {
        display: grid;
        gap: 8px;
        text-align: center;
    }
}

.cwf-hero {
    position: relative;
    min-height: 390px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(120, 16, 16, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cwf-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 35%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.88) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
}

.cwf-hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 70px 20px;
}

.cwf-hero-kicker {
    font-family: "Antonio", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #d0a14b;
    font-size: 15px;
    margin-bottom: 10px;
}

.cwf-hero h1 {
    margin: 0;
    font-family: "Antonio", Arial, sans-serif;
    text-transform: uppercase;
    color: #f2f2f2;
    font-size: clamp(46px, 7vw, 92px);
    line-height: 0.9;
    letter-spacing: 0.05em;
    text-shadow: 0 5px 0 #111, 0 0 24px rgba(0,0,0,.85);
}

.cwf-hero h1 span {
    display: block;
    color: #d6aa58;
    text-shadow: 0 5px 0 #241400, 0 0 22px rgba(155, 30, 20, .75);
}

.cwf-hero p {
    max-width: 470px;
    margin: 22px auto 0;
    color: #f4f4f4;
    font-size: 17px;
    line-height: 1.55;
}

.cwf-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.cwf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 48px;
    padding: 13px 22px;
    font-family: "Antonio", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid rgba(214, 170, 88, .75);
}

.cwf-btn-red {
    background: linear-gradient(180deg, #9e1717, #610909);
    color: #fff;
    border-color: #b72a2a;
}

.cwf-btn-dark {
    background: rgba(5, 5, 5, .8);
    color: #fff;
}

.cwf-home-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 26px 20px 36px;
}

.cwf-home-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 22px;
    align-items: start;
}

.cwf-main-column,
.cwf-sidebar {
    min-width: 0;
}

.cwf-news-block,
.cwf-side-panel,
.cwf-lower-card {
    background: linear-gradient(180deg, rgba(28,28,28,.98), rgba(11,11,11,.98));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.cwf-news-block {
    margin-bottom: 12px;
}

.cwf-panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #8c1717, #2a1010);
    border-bottom: 1px solid rgba(255,255,255,.1);
    min-height: 36px;
    padding: 8px 13px;
    font-family: "Antonio", Arial, sans-serif;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .06em;
    font-size: 17px;
    font-weight: 800;
}

.cwf-panel-title a {
    color: #eee;
    text-decoration: none;
    font-size: 12px;
}

.cwf-news-card {
    display: grid;
    grid-template-columns: 285px minmax(0, 1fr);
    gap: 18px;
    padding: 10px 14px 10px 10px;
}

.cwf-news-image {
    display: block;
    min-height: 150px;
    background: #111;
    overflow: hidden;
}

.cwf-news-image img {
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
    display: block;
}

.cwf-news-copy {
    padding: 14px 0;
}

.cwf-news-copy h2 {
    margin: 0;
    font-family: "Antonio", Arial, sans-serif;
    text-transform: none;
    letter-spacing: .02em;
    font-size: 24px;
    line-height: 1.1;
}

.cwf-news-copy h2 a {
    color: #fff;
    text-decoration: none;
}

.cwf-news-copy h2 a:hover {
    color: #d6aa58;
}

.cwf-news-meta {
    margin-top: 8px;
    color: #d7d7d7;
    font-size: 13px;
}

.cwf-news-copy p {
    margin: 13px 0 0;
    color: #d1d1d1;
    line-height: 1.55;
    font-size: 15px;
}

.cwf-sidebar {
    display: grid;
    gap: 12px;
}

.cwf-side-panel {
    overflow: hidden;
}

.cwf-next-show-inner {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 13px;
    padding: 12px;
}

.cwf-next-show-img {
    width: 100%;
    height: 108px;
    object-fit: cover;
    display: block;
    background: #111;
}

.cwf-next-show-info h3 {
    margin: 0;
    color: #fff;
    font-family: "Antonio", Arial, sans-serif;
    text-transform: uppercase;
    font-size: 24px;
}

.cwf-next-show-info p {
    margin: 3px 0;
    color: #ddd;
    font-size: 13px;
}

.cwf-countdown-static {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-top: 10px;
}

.cwf-countdown-static span {
    display: block;
    border: 1px solid rgba(214, 170, 88, .55);
    background: #111;
    text-align: center;
    padding: 4px 2px;
}

.cwf-countdown-static b {
    display: block;
    color: #d6aa58;
    font-size: 17px;
    line-height: 1;
}

.cwf-countdown-static small {
    display: block;
    color: #ccc;
    font-size: 8px;
    text-transform: uppercase;
}

.cwf-side-red-btn {
    display: block;
    margin: 0 12px 12px;
    padding: 10px;
    background: linear-gradient(180deg, #971515, #580808);
    border: 1px solid #b52929;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-family: "Antonio", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
}

.cwf-quick-links {
    padding: 7px 13px 11px;
}

.cwf-quick-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #e4e4e4;
    text-decoration: none;
    font-size: 14px;
}

.cwf-quick-links a:hover {
    color: #d6aa58;
}

.cwf-champion-list {
    padding: 10px 12px 12px;
}

.cwf-champion-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.cwf-champion-row:last-child {
    border-bottom: none;
}

.cwf-champion-row img {
    width: 72px;
    height: 36px;
    object-fit: cover;
    object-position: center;
    border-radius: 2px;
}

.cwf-champion-row small {
    display: block;
    color: #d6aa58;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.cwf-champion-row strong {
    display: block;
    color: #fff;
    font-family: "Antonio", Arial, sans-serif;
    text-transform: uppercase;
    font-size: 17px;
    line-height: 1.05;
}

.cwf-connect-buttons {
    padding: 11px;
    display: grid;
    gap: 8px;
}

.cwf-connect {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    gap: 10px;
    align-items: center;
    padding: 10px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.14);
}

.cwf-connect-discord {
    background: linear-gradient(90deg, #34316f, #1d1b3a);
}

.cwf-connect-forums {
    background: linear-gradient(90deg, #8c1515, #3c0808);
}

.cwf-connect-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.22);
    font-size: 24px;
}

.cwf-connect strong {
    display: block;
    font-family: "Antonio", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.cwf-connect small {
    display: block;
    color: #ddd;
    font-size: 12px;
}

.cwf-lower-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.cwf-lower-card {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 15px;
    padding: 22px;
}

.cwf-lower-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    color: #d6aa58;
    border: 1px solid rgba(214, 170, 88, .5);
    border-radius: 50%;
    font-family: "Antonio", Arial, sans-serif;
    font-size: 42px;
    line-height: 1;
}

.cwf-lower-card h3 {
    margin: 0;
    color: #d6aa58;
    font-family: "Antonio", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-size: 23px;
}

.cwf-lower-card p {
    margin: 8px 0 14px;
    color: #d8d8d8;
    line-height: 1.45;
    font-size: 14px;
}

.cwf-lower-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    padding: 9px 15px;
    border: 1px solid rgba(214, 170, 88, .75);
    color: #d6aa58;
    text-decoration: none;
    font-family: "Antonio", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
}

@media (max-width: 980px) {
    .cwf-home-grid {
        grid-template-columns: 1fr;
    }

    .cwf-lower-modules {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .cwf-news-card {
        grid-template-columns: 1fr;
    }

    .cwf-news-image img,
    .cwf-news-image {
        min-height: 190px;
    }

    .cwf-next-show-inner {
        grid-template-columns: 1fr;
    }
}

.ems-hero-banner {
    margin: 0 0 24px;
    width: 100%;
}

.ems-hero-banner__bg {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 34%, rgba(95, 20, 20, 0.15), rgba(0, 0, 0, 0.75) 62%, rgba(0, 0, 0, 0.95) 100%),
        linear-gradient(135deg, #080808 0%, #151515 55%, #080808 100%);
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    border-radius: 0;
    border-top: 1px solid rgba(140, 20, 20, 0.35);
    border-bottom: 1px solid rgba(140, 20, 20, 0.65);
    box-shadow:
        inset 0 0 80px rgba(0, 0, 0, 0.95),
        inset 0 -40px 90px rgba(0, 0, 0, 0.8);
}

.ems-hero-banner__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 52%, rgba(120, 10, 10, 0.15), transparent 30%),
        radial-gradient(circle at 82% 42%, rgba(190, 25, 25, 0.18), transparent 32%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.12) 100%);
    pointer-events: none;
    z-index: 1;
}

.ems-hero-banner__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.2) 36%, rgba(0, 0, 0, 0.72) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.ems-hero-banner__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 74px 36px 70px;
}

.ems-hero-banner__content {
    max-width: 760px;
    color: #ffffff;
    text-align: center;
    margin: 0 auto;
}

.ems-hero-banner__label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    font-family: "Antonio", Arial, sans-serif;
    font-size: clamp(4rem, 8.5vw, 7.4rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e7e7e7;
    text-shadow:
        0 3px 0 #111,
        0 0 18px rgba(0, 0, 0, 0.95);
}

.ems-hero-banner__headline {
    margin: 0 0 18px;
    font-family: "Antonio", Arial, sans-serif;
    font-size: clamp(4rem, 8.5vw, 7.4rem);
    line-height: 0.86;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    color: #d7aa58;
    text-shadow:
        0 5px 0 #2a1604,
        0 9px 18px rgba(0, 0, 0, 0.9),
        0 0 28px rgba(133, 18, 18, 0.65);
}

.ems-hero-banner__excerpt {
       margin: 0 auto 44px;
    font-size: 1.06rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.94);
    max-width: 470px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.ems-hero-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.ems-hero-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    min-width: 160px;
    padding: 0 24px;
    border-radius: 0;
    text-decoration: none;
    font-family: "Antonio", Arial, sans-serif;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    border: 1px solid rgba(214, 170, 88, 0.65);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 8px 18px rgba(0, 0, 0, 0.45);
}

.ems-hero-banner__btn--primary {
    background: linear-gradient(180deg, #a51616 0%, #640909 100%);
    color: #fff;
    border-color: #b82929;
}

.ems-hero-banner__btn--primary:hover {
    background: linear-gradient(180deg, #c41d1d 0%, #7c0d0d 100%);
    color: #fff;
    transform: translateY(-1px);
}

.ems-hero-banner__btn--secondary {
    background: rgba(5, 5, 5, 0.78);
    color: #fff;
    border-color: rgba(214, 170, 88, 0.55);
}

.ems-hero-banner__btn--secondary:hover {
    background: rgba(18, 18, 18, 0.92);
    color: #d6aa58;
    border-color: rgba(214, 170, 88, 0.95);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .ems-hero-banner__bg {
        min-height: 360px;
        border-radius: 0;
        background-position: center center;
    }

    .ems-hero-banner__inner {
        padding: 54px 22px 48px;
    }

    .ems-hero-banner__label {
        font-size: 20px
        letter-spacing: 0.12em;
    }

    .ems-hero-banner__headline {
        font-size: clamp(3.3rem, 15vw, 5.5rem);
    }

    .ems-hero-banner__excerpt {
        font-size: 1rem;
    
    }

    .ems-hero-banner__btn {
       
        width: 100%;
        max-width: 280px;
    }
}

.cwf-next-show-inner--no-image {
    grid-template-columns: 1fr;
}

.cwf-next-show-inner--no-image .cwf-next-show-info {
    padding: 4px 0;
}

.cwf-champion-row--no-image {
    grid-template-columns: 1fr;
}

.cwf-empty-sidebar {
    padding: 14px 0;
    color: #d8d8d8;
    font-size: 14px;
    line-height: 1.5;
}

.cwf-page-wrap {
    padding-top: 28px;
}

.cwf-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 22px;
    align-items: start;
}

.cwf-page-content {
    min-width: 0;
    background: linear-gradient(180deg, rgba(28,28,28,.98), rgba(11,11,11,.98));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 12px 30px rgba(0,0,0,.35);
    padding: 24px;
}

.cwf-page-content img {
    max-width: 100%;
    height: auto;
}

.cwf-page-sidebar {
    min-width: 0;
}

@media (max-width: 980px) {
    .cwf-page-grid {
        grid-template-columns: 1fr;
    }
}