:root {
    --aws-black: #090909;
    --aws-charcoal: #121212;
    --aws-panel: #171717;
    --aws-panel-2: #1d1d1d;
    --aws-border: #3a3a3a;
    --aws-red: #7f0f12;
    --aws-red-bright: #b0161c;
    --aws-gold: #d4af37;
    --aws-silver: #c2c2c2;
    --aws-text: #d6d6d6;
    --aws-muted: #8e8e8e;
    --aws-shadow: rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background:
        radial-gradient(circle at top, rgba(127, 15, 18, 0.20), transparent 30%),
        linear-gradient(180deg, #050505 0%, #0d0d0d 50%, #070707 100%);
    color: var(--aws-text);
    font-family: Arial, Helvetica, sans-serif;
}

body.aws-body {
    position: relative;
    background-color: #0d0d0d;
}

body.aws-body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url('https://aws-site.awsefed.com/uploads/general/2026-04-22/img_69e8ee35ce6269.43767589.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

body.aws-body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    pointer-events: none;
    z-index: 0;
}

a {
    color: var(--aws-silver);
    text-decoration: none;
    transition: 0.2s ease;
}

a:hover {
    color: var(--aws-gold);
}

img {
    max-width: 100%;
    display: block;
}

.aws-site-wrap {
    position: relative;
    z-index: 1;
    min-height: 100vh;
}

.aws-container {
    width: min(1380px, calc(100% - 32px));
    margin: 0 auto;
}

/* =========================================================
   TOPBAR
   ========================================================= */

.aws-topbar {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, #7f0f12 0%, #5f0c0f 100%);
    border-top: 1px solid #a01a1f;
    border-bottom: 1px solid #3e090b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.aws-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 40px;
    flex-wrap: nowrap;
}

.aws-topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #f3e7cf;
}

.aws-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    white-space: nowrap;
}

.aws-topbar a {
    color: #f3e7cf;
    font-weight: 700;
}

.aws-topbar a:hover {
    color: #ffffff;
}

.aws-divider {
    color: #d7a84a;
}

/* =========================================================
   HERO
   ========================================================= */

.aws-hero {
    position: relative;
    padding: 32px 0 24px;
    border-bottom: 1px solid #2d2d2d;
    background-image: url('https://aws-site.awsefed.com/uploads/general/2026-04-22/img_69e8ee35ce2ab2.62259335.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.aws-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.58)),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.02) 2px,
            transparent 2px,
            transparent 6px
        );
    z-index: 1;
    pointer-events: none;
}

.aws-hero .aws-container,
.aws-hero-inner {
    position: relative;
    z-index: 2;
}

.aws-hero-inner {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
    gap: 16px;
}

.aws-logo-wrap {
    display: flex;
    justify-content: center;
}

.aws-logo-link img {
    display: block;
    width: auto;
    height: 300px;
    max-height: 300px;
    margin: 0 auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.65));
}

.aws-logo-link img:hover {
    filter:
        drop-shadow(0 0 8px rgba(138, 7, 7, 0.7))
        drop-shadow(0 0 16px rgba(138, 7, 7, 0.6))
        drop-shadow(0 0 24px rgba(138, 7, 7, 0.5));
    transform: scale(1.05);
    animation: redAuraPulse 1.5s infinite;
}

@keyframes redAuraPulse {
    0% {
        filter:
            drop-shadow(0 0 5px rgba(255, 0, 0, 0.6))
            drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
    }
    50% {
        filter:
            drop-shadow(0 0 15px rgba(255, 0, 0, 0.9))
            drop-shadow(0 0 30px rgba(255, 0, 0, 0.7));
    }
    100% {
        filter:
            drop-shadow(0 0 5px rgba(255, 0, 0, 0.6))
            drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
    }
}

.aws-hero-mark {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: rgba(176, 22, 28, 0.9);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
    font-size: 28px;
    opacity: 0.8;
}

.aws-hero-mark-left {
    text-align: left;
}

.aws-hero-mark-right {
    text-align: right;
}

/* =========================================================
   NAV
   ========================================================= */

.aws-main-nav {
    background: linear-gradient(180deg, #1a1a1a 0%, #101010 100%);
    border-top: 1px solid #434343;
    border-bottom: 1px solid #2a2a2a;
    box-shadow: 0 8px 22px var(--aws-shadow);
}

.aws-nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.aws-nav-list li a {
    display: block;
    padding: 16px 22px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-right: 1px solid #2b2b2b;
    border-left: 1px solid #0f0f0f;
}

.aws-nav-list li:first-child a {
    border-left: 1px solid #2b2b2b;
}

.aws-nav-list a.is-active,
.aws-nav-list a:hover {
    background: linear-gradient(180deg, rgba(176, 22, 28, 0.85), rgba(97, 10, 14, 0.95));
    color: #fff;
}

/* =========================================================
   TOP STRIP
   ========================================================= */

.aws-top-strip {
    padding: 14px 0;
    border-bottom: 1px solid #2b2b2b;
    background: rgba(0, 0, 0, 0.25);
}

.aws-top-strip .aws-container {
    display: flex;
    justify-content: center;
}

.aws-strip-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    justify-content: center;
    width: 100%;
}

.aws-strip-card {
    position: relative;
    min-width: 260px;
    height: 140px;
    border: 1px solid var(--aws-border);
    background-color: #111;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 10px 24px var(--aws-shadow);
    scroll-snap-align: start;
}

.aws-strip-card:hover {
    transform: translateY(-2px);
}

.aws-strip-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.80)),
        linear-gradient(0deg, rgba(127, 15, 18, 0.35), transparent 60%);
}

.aws-feature-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.90)),
        linear-gradient(0deg, rgba(127, 15, 18, 0.50), transparent 60%);
}

.aws-strip-content {
    position: absolute;
    inset: auto 14px 12px 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.aws-strip-content strong {
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
    color: #f1f1f1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.aws-strip-content em {
    font-style: normal;
    color: var(--aws-red-bright);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.aws-main {
    padding: 18px 0 32px;
}

.aws-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 18px;
}

.aws-primary {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.aws-row {
    display: grid;
    gap: 18px;
}

.aws-row-top {
    grid-template-columns: 1.6fr 1fr;
    align-items: start;
}

.aws-row-mid {
    grid-template-columns: repeat(3, 1fr);
}

.aws-panel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
    border: 1px solid var(--aws-border);
    box-shadow: 0 12px 26px var(--aws-shadow);
    overflow: hidden;
}

.aws-panel-title {
    padding: 12px 14px;
    background: linear-gradient(180deg, rgba(127, 15, 18, 0.95), rgba(75, 9, 11, 0.95));
    border-bottom: 1px solid #3e090b;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #f3f3f3;
}

/* =========================================================
   FEATURED / BUTTONS / GENERIC CARDS
   ========================================================= */

.aws-feature-story {
    position: relative;
    min-height: 420px;
    background-size: cover;
    background-position: center top;
}

.aws-feature-copy {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2;
    max-width: 540px;
}

.aws-story-date {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--aws-red-bright);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.aws-feature-copy h2,
.aws-card-block h3,
.aws-mini-card h3,
.aws-spotlight-copy h3,
.aws-champion-copy h3,
.aws-join-copy h3 {
    margin: 0 0 10px;
    text-transform: uppercase;
    line-height: 1.05;
    color: #fff;
}

.aws-feature-copy h2 {
    font-size: 40px;
    max-width: 520px;
}

.aws-feature-copy p,
.aws-spotlight-copy p,
.aws-champion-copy p,
.aws-footer p {
    color: #c9c9c9;
    line-height: 1.55;
}

.aws-btn {
    display: inline-block;
    padding: 12px 18px;
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    border: 1px solid #4e0b0e;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.aws-btn:hover {
    background: linear-gradient(180deg, #c31a21, #821318);
    color: #fff;
}

.aws-btn-block {
    display: block;
    text-align: center;
    width: 100%;
}

.aws-btn-alt {
    background: linear-gradient(180deg, #2a2a2a, #161616);
    border: 1px solid #3a3a3a;
    color: #f3e7cf;
}

.aws-btn-alt:hover {
    background: linear-gradient(180deg, #3a3a3a, #1f1f1f);
    color: #ffffff;
}

.aws-feature-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.aws-card-block,
.aws-mini-card,
.aws-spotlight,
.aws-champion-box,
.aws-promos-block {
    padding: 18px;
}

.aws-card-empty,
.aws-promos-empty,
.aws-community-empty,
.aws-ranking-empty,
.aws-rankings-empty,
.aws-winloss-empty,
.aws-news-empty,
.aws-upcoming-empty,
.aws-archive-empty,
.aws-chronology-empty,
.aws-promos-empty-page {
    color: #bcbcbc;
    line-height: 1.5;
}

.aws-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.aws-card-subtitle {
    color: var(--aws-gold);
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.aws-mini-card-art,
.aws-spotlight-image,
.aws-champion-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border: 1px solid #2b2b2b;
    margin-bottom: 16px;
}

/* =========================================================
   MATCH / RESULTS / LINKS / RANKINGS LISTS
   ========================================================= */

.aws-match-list,
.aws-results-list,
.aws-link-list,
.aws-ranking-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aws-match-list li {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #2b2b2b;
    text-transform: uppercase;
    font-size: 13px;
}

.aws-match-list li strong {
    color: var(--aws-red-bright);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.aws-match-list li span:last-of-type {
    text-align: right;
}

.aws-match-list li em {
    grid-column: 1 / -1;
    color: var(--aws-gold);
    font-style: normal;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.aws-match-list-compact li {
    font-size: 12px;
}

.aws-match-list-home li {
    padding: 12px 0;
}

.aws-match-list-single {
    grid-template-columns: 1fr !important;
}

.aws-match-full {
    grid-column: 1 / -1;
    display: block;
    text-align: center;
    line-height: 1.3;
}

.aws-more-matches-note {
    margin-top: 14px;
    margin-bottom: 4px;
    color: var(--aws-gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
}

.aws-results-list li {
    padding: 0;
    border-bottom: 1px solid #282828;
}

.aws-results-link {
    display: grid;
    grid-template-columns: 72px minmax(180px, 1fr);
    gap: 16px;
    align-items: start;
    padding: 14px 18px;
    color: inherit;
    text-decoration: none;
    width: 100%;
}

.aws-results-date {
    color: var(--aws-gold);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
    padding-top: 2px;
}

.aws-results-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    width: 100%;
}

.aws-results-copy strong {
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 1.2;
    overflow-wrap: break-word;
    white-space: normal;
}

.aws-results-copy span {
    color: #d7d7d7;
    font-size: 13px;
    line-height: 1.4;
    overflow-wrap: break-word;
    white-space: normal;
}

.aws-results-copy em {
    color: var(--aws-red-bright);
    font-style: normal;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
}

.aws-results-link:hover strong {
    color: var(--aws-gold);
}

.aws-link-list li,
.aws-ranking-list li {
    border-bottom: 1px solid #292929;
}

.aws-link-list li a {
    display: block;
    padding: 14px 18px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
}

.aws-link-list li a:hover {
    background: rgba(176, 22, 28, 0.12);
}

.aws-ranking-list li {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 18px;
}

.aws-rank-num {
    color: var(--aws-gold);
    font-weight: 900;
    font-size: 18px;
    text-align: center;
}

.aws-rank-name {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.aws-rank-name:hover {
    color: var(--aws-gold);
}

.aws-rank-note {
    color: var(--aws-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =========================================================
   COMMUNITY / JOIN / SIDEBAR
   ========================================================= */

.aws-community {
    padding-bottom: 0;
}

.aws-community-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr;
    gap: 0;
}

.aws-community-list {
    padding: 12px 18px 18px;
}

.aws-post-item {
    display: grid;
    grid-template-columns: 1fr 48px;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #272727;
}

.aws-post-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aws-post-copy strong {
    color: #f0f0f0;
    font-size: 14px;
}

.aws-post-copy span {
    color: var(--aws-muted);
    font-size: 12px;
}

.aws-post-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    border: 1px solid #323232;
    background: #111;
    font-weight: 800;
    color: var(--aws-gold);
}

.aws-join-box {
    position: relative;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    border-left: 1px solid #292929;
}

.aws-join-copy {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100%;
    padding: 26px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.aws-join-copy h3 {
    font-size: 34px;
    max-width: 220px;
}

.aws-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* =========================================================
   EVENTS SIDEBAR
   ========================================================= */

.aws-events-list {
    padding: 14px;
}

.aws-event-item {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #282828;
}

.aws-event-datebox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #111, #090909);
    border: 1px solid #333;
    min-height: 64px;
}

.aws-event-datebox span {
    color: var(--aws-red-bright);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.aws-event-datebox strong {
    color: #fff;
    font-size: 28px;
    line-height: 1;
}

.aws-event-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aws-event-copy strong {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}

.aws-event-copy span,
.aws-event-copy em {
    color: var(--aws-muted);
    font-style: normal;
    font-size: 12px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.aws-footer {
    margin-top: 28px;
    padding: 32px 0 18px;
    background: linear-gradient(180deg, #0a0a0a, #050505);
    border-top: 1px solid #262626;
}

.aws-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 24px;
    padding-bottom: 24px;
}

.aws-footer-col h4 {
    margin: 0 0 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
}

.aws-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aws-footer-col ul li {
    margin-bottom: 10px;
}

.aws-footer-logo {
    max-width: 150px;
    margin-bottom: 14px;
}

.aws-footer-tag {
    color: var(--aws-gold);
    font-weight: 700;
}

.aws-footer-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.aws-footer-form input {
    flex: 1 1 220px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #353535;
    background: #111;
    color: #ddd;
}

.aws-footer-form button {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #4e0b0e;
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    cursor: pointer;
}

.aws-footer-bottom {
    border-top: 1px solid #212121;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--aws-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.aws-footer-bottom-links {
    display: flex;
    gap: 18px;
}

/* =========================================================
   SPOTLIGHT
   ========================================================= */

.aws-spotlight-image-wrap {
    position: relative;
    margin-bottom: 16px;
}

.aws-spotlight-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(180deg, #c7a44d, #8c6a22);
    color: #111;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 10px;
    border: 1px solid #5a4314;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
    max-width: 75%;
    text-align: center;
}

.aws-spotlight-fields {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 14px 0 16px;
}

.aws-spotlight-field {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 13px;
    line-height: 1.4;
    color: #d7d7d7;
}

.aws-spotlight-field-label {
    color: var(--aws-gold);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.08em;
}

.aws-spotlight-field-value {
    color: #d7d7d7;
}

/* =========================================================
   PROMOS BLOCK ON HOMEPAGE
   ========================================================= */

.aws-promos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.aws-promo-card {
    position: relative;
    display: block;
    min-height: 160px;
    border: 1px solid #2d2d2d;
    background: #111;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
    color: #fff;
    text-decoration: none;
}

.aws-promo-card:hover {
    transform: translateY(-2px);
}

.aws-promo-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
}

.aws-promo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.82)),
        linear-gradient(0deg, rgba(127, 15, 18, 0.40), transparent 60%);
}

.aws-promo-copy {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aws-promo-copy strong {
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
    word-break: break-word;
}

.aws-promo-copy span {
    color: var(--aws-gold);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* =========================================================
   ROSTER + PROFILE
   ========================================================= */

.aws-roster-wrap,
.aws-profile-wrap {
    color: var(--aws-text);
}

.aws-roster-wrap .chronology-title,
.aws-profile-wrap .chronology-title,
.aws-profile-wrap .page-title,
.aws-profile-wrap .win-loss-title {
    color: var(--aws-gold);
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
    text-align: center;
}

.aws-roster-wrap .content-box,
.aws-profile-wrap .content-box {
    background: linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
    border: 1px solid var(--aws-border);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
    margin-bottom: 30px;
}

/* Roster tabs */
.aws-roster-wrap .tabs {
    display: block;
    background: transparent;
    border: none;
    margin: 20px 0 1rem;
}

.aws-roster-wrap .tab-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
}

.aws-roster-wrap .tab-links li a {
    padding: 10px 16px;
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 13px;
}

.aws-roster-wrap .tab-links li.active a,
.aws-roster-wrap .tab-links li a:hover {
    background: linear-gradient(180deg, #8f1419, #5f0c0f);
    color: #fff;
}

.aws-roster-wrap .tab-content .tab {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.aws-roster-wrap .tab-content .tab.active {
    display: block;
}

/* Roster search */
.aws-roster-wrap .roster-search {
    display: block;
    margin: 0 auto 20px auto;
    padding: 10px 14px;
    max-width: 320px;
    width: 90%;
    font-size: 15px;
    border-radius: 4px;
    border: 1px solid #444;
    background: #141414;
    color: #eee;
}

/* Gender tabs */
.aws-roster-wrap .gender-tabs ul {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 6px 0 16px;
    flex-wrap: wrap;
}

.aws-roster-wrap .gender-tab {
    padding: 8px 14px;
    background: #3a3a3a;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    color: #ddd;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.06em;
}

.aws-roster-wrap .gender-tab.active {
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    color: #fff;
}

/* Headshot grid */
.aws-roster-wrap .headshot-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.aws-roster-wrap .headshot {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.aws-roster-wrap .character-img,
.aws-roster-wrap .headshot-grid img {
    width: 150px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.2s ease;
    background: #1d1d1d;
    border: 1px solid #444;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.aws-roster-wrap .headshot:hover .character-img,
.aws-roster-wrap .headshot-grid a:hover img {
    transform: scale(1.05);
}

.aws-roster-wrap .character-name {
    text-align: center;
    margin-top: 8px;
    font-weight: 700;
    font-size: 14px;
    color: var(--aws-gold);
    max-width: 150px;
    line-height: 1.3;
}

.aws-roster-wrap .champion-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px !important;
    height: 26px !important;
    z-index: 10;
    pointer-events: none;
    object-fit: contain;
    filter: brightness(1.1);
}

.aws-roster-wrap #load-more-alumni {
    display: block;
    margin: 1rem auto;
    padding: 0.65rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    color: #fff;
    border: 1px solid #4e0b0e;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.aws-roster-wrap #load-more-alumni:hover {
    background: linear-gradient(180deg, #c31a21, #821318);
}

/* Profile header */
.aws-profile-wrap .profile-header,
.profile-header {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
    border: 1px solid var(--aws-border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    gap: 24px;
}

.aws-profile-wrap .profile-photo {
    flex: 0 0 180px;
}

.aws-profile-wrap .profile-photo img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #444;
    background: #1a1a1a;
}

.aws-profile-wrap .profile-info,
.profile-info {
    flex: 1;
}

.aws-profile-wrap .profile-info h1 {
    margin: 0 0 10px 0;
    font-size: 2rem;
    color: var(--aws-gold);
    line-height: 1.1;
}

.aws-profile-wrap .profile-info .basic-stats,
.profile-info .basic-stats {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 12px;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.aws-profile-wrap .profile-info .basic-stats span,
.profile-info .basic-stats span {
    display: inline-block;
    margin-right: 0;
}

.aws-profile-wrap .profile-info .bio-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
}

/* Quick facts */
.aws-profile-wrap .quick-facts {
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
    border: 1px solid var(--aws-border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    gap: 10px 20px;
}

.aws-profile-wrap .quick-facts .fact {
    flex: 1 1 250px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.aws-profile-wrap .quick-facts .fact .label {
    font-weight: 700;
    margin-right: 8px;
    color: var(--aws-gold);
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.06em;
}

.aws-profile-wrap .quick-facts .fact .value {
    color: #ddd;
}

.aws-profile-wrap .quick-facts .fact .value.audio-player {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.aws-profile-wrap .quick-facts .fact .value.audio-player audio {
    width: 220px;
}

/* Inner tabs */
.aws-profile-wrap .tabs {
    background: linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
    border: 1px solid var(--aws-border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 40px;
    display: block;
}

.aws-profile-wrap .tabs .tab-buttons {
    display: flex;
    flex-wrap: wrap;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
}

.aws-profile-wrap .tabs .tab-buttons button {
    flex: 1 1 140px;
    padding: 12px;
    background: #1e1e1e;
    border: none;
    border-right: 1px solid #333;
    font-size: 0.95rem;
    color: #ddd;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.aws-profile-wrap .tabs .tab-buttons button:last-child {
    border-right: none;
}

.aws-profile-wrap .tabs .tab-buttons button:hover {
    background: #2d2d2d;
}

.aws-profile-wrap .tabs .tab-buttons button.active {
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    color: #fff;
    border-bottom: 3px solid var(--aws-gold);
}

.aws-profile-wrap .tabs .tab-content {
    display: none;
    width: 100%;
    clear: both;
    border-top: none;
    padding: 20px;
    background: transparent;
    box-sizing: border-box;
}

.aws-profile-wrap .tabs .tab-content.active {
    display: block;
}

/* Tables */
.aws-profile-wrap table,
.aws-roster-wrap table,
.aws-profile-wrap .tabs table,
.aws-profile-wrap .history-table,
.aws-profile-wrap .in-ring-table,
.aws-profile-wrap .rankings-table,
.aws-roster-wrap .rankings-table,
.aws-champions-wrap .history-table,
.aws-rankings-table,
.aws-winloss-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.aws-profile-wrap table th,
.aws-profile-wrap .tabs table th,
.aws-profile-wrap .history-table th,
.aws-profile-wrap .in-ring-table th,
.aws-roster-wrap table th,
.aws-profile-wrap .rankings-table th,
.aws-roster-wrap .rankings-table th,
.aws-champions-wrap .history-table th,
.aws-rankings-table th,
.aws-winloss-table th {
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    color: #fff;
    padding: 10px 12px;
    border: 1px solid #444;
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.aws-profile-wrap table td,
.aws-profile-wrap .tabs table td,
.aws-profile-wrap .history-table td,
.aws-profile-wrap .in-ring-table td,
.aws-roster-wrap table td,
.aws-profile-wrap .rankings-table td,
.aws-roster-wrap .rankings-table td,
.aws-champions-wrap .history-table td,
.aws-rankings-table td,
.aws-winloss-table td {
    padding: 10px 12px;
    border: 1px solid #444;
    font-size: 0.95rem;
    color: #ddd;
    background: #242424;
    vertical-align: middle;
    line-height: 1.5;
}

.aws-profile-wrap .tabs table tbody tr:nth-child(even),
.aws-profile-wrap .history-table tbody tr:nth-child(even),
.aws-profile-wrap .in-ring-table tbody tr:nth-child(even),
.aws-roster-wrap table tbody tr:nth-child(even),
.aws-profile-wrap .rankings-table tbody tr:nth-child(even),
.aws-roster-wrap .rankings-table tbody tr:nth-child(even),
.aws-champions-wrap .history-table tbody tr:nth-child(even) td,
.aws-rankings-table tbody tr:nth-child(even) td,
.aws-winloss-table tbody tr:nth-child(even) td {
    background: #2a2a2a;
}

.aws-profile-wrap .in-ring-table th {
    width: 30%;
}

.aws-profile-wrap .in-ring-table td {
    width: 70%;
}

/* Champion / title blocks */
.aws-profile-wrap .champion-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 14px;
    border: 1px solid var(--aws-border);
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
    background: linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
    border-radius: 8px;
}

.aws-profile-wrap .champion-info {
    text-align: left;
    min-width: 200px;
    color: #ddd;
}

.aws-profile-wrap .title-img {
    width: 200px;
    height: auto;
    border-radius: 4px;
    border: none;
}

/* History wrapper */
.aws-profile-wrap .history-wrapper {
    margin-top: 10px;
    margin-bottom: 20px;
}

.aws-profile-wrap .history-wrapper summary {
    cursor: pointer;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--aws-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Rankings / misc */
.aws-profile-wrap .rankings-table th,
.aws-roster-wrap .rankings-table th {
    background: #3a3a3a;
    color: #fff;
}

.aws-profile-wrap .movement-up,
.aws-roster-wrap .movement-up,
.aws-rankings-movement.movement-up {
    color: #4fd16e;
    font-weight: bold;
}

.aws-profile-wrap .movement-down,
.aws-roster-wrap .movement-down,
.aws-rankings-movement.movement-down {
    color: #e05555;
    font-weight: bold;
}

.aws-profile-wrap .movement-same,
.aws-roster-wrap .movement-same,
.aws-rankings-movement.movement-same {
    color: #d6c58d;
    font-weight: bold;
}

.aws-profile-wrap .updated-date,
.aws-roster-wrap .updated-date {
    margin: 0.5em 0 1em;
    font-style: italic;
    color: #aaa;
}

.aws-profile-bio-box .bio-text {
    line-height: 1.7;
    color: #ddd;
}

.aws-profile-bio-box p {
    margin-bottom: 1rem;
}

/* =========================================================
   NEWS
   ========================================================= */

.aws-news-wrap {
    width: 100%;
}

.aws-news-single,
.aws-news-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.aws-news-single {
    padding: 0;
    overflow: hidden;
}

.aws-news-single-title {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff;
}

.aws-news-single-image {
    max-height: 320px;
    overflow: hidden;
    border-bottom: 1px solid var(--aws-border);
}

.aws-news-single-image img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
}

.aws-news-card-image img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #2f2f2f;
}

.aws-news-single-meta,
.aws-news-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--aws-gold);
    margin-bottom: 12px;
}

.aws-news-meta-divider {
    color: var(--aws-red-bright);
}

.aws-news-single-meta,
.aws-news-single-title,
.aws-news-single-body,
.aws-news-backlink,
.aws-news-comments {
    padding-left: 32px;
    padding-right: 32px;
}

.aws-news-single-meta {
    padding-top: 26px;
}

.aws-news-single-title {
    margin-top: 10px;
    margin-bottom: 20px;
}

.aws-news-single-body {
    color: #d7d7d7;
    line-height: 1.8;
    font-size: 16px;
    padding-bottom: 10px;
}

.aws-news-single-body p {
    margin: 0 0 1.2rem;
}

.aws-news-backlink {
    margin-top: 10px;
    margin-bottom: 6px;
}

.aws-news-comments {
    margin-top: 24px;
    padding-top: 24px;
    padding-bottom: 32px;
    border-top: 1px solid #2f2f2f;
}

.aws-news-card {
    display: grid;
    grid-template-columns: minmax(240px, 360px) 1fr;
    gap: 22px;
    padding: 20px;
    background: linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
    border: 1px solid var(--aws-border);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.aws-news-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aws-news-card-title {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.08;
    text-transform: uppercase;
}

.aws-news-card-title a {
    color: #fff;
    text-decoration: none;
}

.aws-news-card-title a:hover {
    color: var(--aws-gold);
}

.aws-news-card-excerpt {
    margin: 0 0 16px;
    color: #cfcfcf;
    line-height: 1.7;
}

.aws-news-card-actions {
    margin-top: auto;
}

.aws-news-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #2f2f2f;
}

.aws-news-pagination a,
.aws-news-pagination strong,
.aws-news-pagination span {
    padding: 8px 12px;
    background: #1f1f1f;
    border: 1px solid #3a3a3a;
    color: #f0dfb0;
    text-decoration: none;
    font-weight: 700;
}

.aws-news-pagination strong {
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    color: #fff;
    border-color: #6c0f13;
}

.aws-news-pagination-gap {
    border: none !important;
    background: transparent !important;
    color: #bdbdbd !important;
    padding: 0 4px !important;
}

/* =========================================================
   PROMOS LIST PAGE
   ========================================================= */

.aws-promos-wrap {
    width: 100%;
}

.aws-promos-list-page {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.aws-promo-entry-page {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 22px;
    padding: 20px;
    background: linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
    border: 1px solid var(--aws-border);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
    align-items: start;
}

.aws-promo-thumb-page {
    display: block;
    text-decoration: none;
}

.aws-promo-thumb-page img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #343434;
    background: #161616;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease;
}

.aws-promo-thumb-page:hover img {
    transform: scale(1.03);
}

.aws-promo-body-page {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.aws-promo-meta-page {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--aws-gold);
}

.aws-promo-meta-divider {
    color: var(--aws-red-bright);
}

.aws-promo-title-page {
    margin: 0 0 14px;
    font-size: 30px;
    line-height: 1.08;
    text-transform: uppercase;
}

.aws-promo-title-page a {
    color: #fff;
    text-decoration: none;
}

.aws-promo-title-page a:hover {
    color: var(--aws-gold);
}

.aws-promo-location-page {
    color: #d2d2d2;
    line-height: 1.6;
    margin-bottom: 16px;
}

.aws-promo-location-page strong {
    color: var(--aws-gold);
    margin-right: 6px;
}

.aws-promo-actions-page {
    margin-top: auto;
}

/* =========================================================
   PROMO SINGLE
   ========================================================= */

.aws-promo-single-wrap {
    width: 100%;
}

.aws-promo-single {
    padding: 0;
}

.aws-promo-single-hero {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    padding: 24px;
    border-bottom: 1px solid var(--aws-border);
    background: linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
}

.aws-promo-single-image img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #343434;
    background: #161616;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.aws-promo-single-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.aws-promo-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--aws-gold);
}

.aws-promo-single-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff;
}

.aws-promo-single-body {
    padding: 30px 32px 20px;
    color: #d7d7d7;
    line-height: 1.8;
    font-size: 16px;
}

.aws-promo-single-body p {
    margin: 0 0 1.2rem;
}

.aws-promo-single-body img {
    max-width: 100%;
    height: auto;
}

.aws-promo-single-actions {
    padding: 0 32px 32px;
}

/* =========================================================
   UPCOMING
   ========================================================= */

.aws-upcoming-wrap {
    width: 100%;
}

.aws-upcoming-list-page {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.aws-upcoming-card-page {
    display: grid;
    grid-template-columns: 180px 84px 1fr;
    gap: 22px;
    padding: 20px;
    background: linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
    border: 1px solid var(--aws-border);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
    align-items: center;
}

.aws-upcoming-logo-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    background: #151515;
    border: 1px solid #343434;
    padding: 10px;
    text-decoration: none;
}

.aws-upcoming-logo-page img {
    display: block;
    max-width: 100%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.aws-upcoming-logo-fallback {
    color: #a9a9a9;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.aws-upcoming-date-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    border: 1px solid #5d0f13;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.aws-upcoming-date-page span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.aws-upcoming-date-page strong {
    font-size: 28px;
    line-height: 1;
    margin-top: 4px;
}

.aws-upcoming-body-page {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.aws-upcoming-meta-page {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--aws-gold);
}

.aws-upcoming-title-page {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.08;
    text-transform: uppercase;
}

.aws-upcoming-title-page a {
    color: #fff;
    text-decoration: none;
}

.aws-upcoming-title-page a:hover {
    color: var(--aws-gold);
}

.aws-upcoming-location-page {
    color: #d2d2d2;
    line-height: 1.6;
    margin-bottom: 16px;
}

.aws-upcoming-actions-page {
    margin-top: auto;
}

/* =========================================================
   EVENT PREVIEW
   ========================================================= */

.aws-event-preview-wrap {
    width: 100%;
}

.aws-event-preview-single {
    padding: 0;
}

.aws-event-preview-hero {
    padding: 28px 28px 24px;
    border-bottom: 1px solid var(--aws-border);
    background: linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
}

.aws-event-preview-logo-wrap {
    text-align: center;
    margin-bottom: 22px;
}

.aws-event-preview-logo {
    display: inline-block;
    max-width: 100%;
    max-height: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.aws-event-preview-header {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    align-items: center;
}

.aws-event-preview-datebox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    border: 1px solid #5d0f13;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.aws-event-preview-datebox span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.aws-event-preview-datebox strong {
    font-size: 30px;
    line-height: 1;
    margin-top: 4px;
}

.aws-event-preview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--aws-gold);
}

.aws-event-preview-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff;
}

.aws-event-preview-content {
    padding: 24px 32px 10px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.aws-event-preview-block,
.aws-public-event-block {
    background: linear-gradient(180deg, var(--aws-panel), #222);
    border: 1px solid var(--aws-border);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.aws-event-preview-block-title,
.aws-public-event-block-title {
    margin: 0;
    padding: 18px 20px;
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    border-bottom: 1px solid #5d0f13;
}

.aws-event-preview-block-body,
.aws-public-event-block-body {
    padding: 22px 22px 18px;
    color: #d7d7d7;
    line-height: 1.8;
    font-size: 16px;
}

.aws-event-preview-block-body p,
.aws-public-event-block-body p {
    margin: 0 0 1.2rem;
}

.aws-event-preview-block-body img,
.aws-public-event-block-body img {
    max-width: 100%;
    height: auto;
}

.aws-event-preview-credits,
.aws-public-event-credits {
    margin: 10px 32px 0;
    padding: 22px;
    background: linear-gradient(180deg, var(--aws-panel), #222);
    border: 1px solid var(--aws-border);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
    color: #d7d7d7;
}

.aws-event-preview-credits h3,
.aws-public-event-credits h3 {
    margin: 0 0 14px;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--aws-gold);
}

.aws-event-preview-credits ul,
.aws-public-event-credits ul {
    margin: 0;
    padding-left: 20px;
}

.aws-event-preview-credits li,
.aws-public-event-credits li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.aws-event-preview-compiled,
.aws-public-event-compiled {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #3a3a3a;
    color: #c8c8c8;
    font-style: italic;
}

.aws-event-preview-actions {
    padding: 24px 32px 32px;
}

/* Old match style preview components retained */
.aws-event-preview-block {
    padding: 28px 32px;
    color: #d7d7d7;
    line-height: 1.8;
    font-size: 16px;
}

.aws-event-preview-card {
    padding: 0 32px 10px;
}

.aws-event-preview-section-title {
    margin: 0 0 18px;
    padding-top: 6px;
    font-size: 26px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--aws-gold);
}

.aws-event-preview-matches {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.aws-event-preview-match {
    padding: 20px;
    background: linear-gradient(180deg, var(--aws-panel), #222);
    border: 1px solid var(--aws-border);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.aws-event-preview-match-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.aws-event-preview-match-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
}

.aws-event-preview-match-type {
    color: var(--aws-gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.aws-event-preview-match-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 12px;
    color: #d2d2d2;
    line-height: 1.6;
}

.aws-event-preview-title-line {
    color: var(--aws-gold);
    font-weight: 700;
}

.aws-event-preview-match-body {
    color: #d7d7d7;
    line-height: 1.75;
}

.aws-event-preview-match-body p {
    margin: 0 0 1rem;
}

/* =========================================================
   ARCHIVE
   ========================================================= */

.aws-archive-wrap {
    width: 100%;
}

.aws-archive-list-page {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.aws-archive-card-page {
    display: grid;
    grid-template-columns: 180px 84px 1fr;
    gap: 22px;
    padding: 20px;
    background: linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
    border: 1px solid var(--aws-border);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
    align-items: center;
}

.aws-archive-logo-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    background: #151515;
    border: 1px solid #343434;
    padding: 10px;
    text-decoration: none;
}

.aws-archive-logo-page img {
    display: block;
    max-width: 100%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.aws-archive-logo-fallback {
    color: #a9a9a9;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.aws-archive-date-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    background: linear-gradient(180deg, #5e5e5e, #353535);
    border: 1px solid #4a4a4a;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.aws-archive-date-page span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.aws-archive-date-page strong {
    font-size: 28px;
    line-height: 1;
    margin-top: 4px;
}

.aws-archive-body-page {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.aws-archive-meta-page {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--aws-gold);
}

.aws-archive-title-page {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.08;
    text-transform: uppercase;
}

.aws-archive-title-page a {
    color: #fff;
    text-decoration: none;
}

.aws-archive-title-page a:hover {
    color: var(--aws-gold);
}

.aws-archive-location-page {
    color: #d2d2d2;
    line-height: 1.6;
    margin-bottom: 16px;
}

.aws-archive-actions-page {
    margin-top: auto;
}

/* =========================================================
   PUBLIC EVENT
   ========================================================= */

.aws-public-event-wrap {
    width: 100%;
}

.aws-public-event-single {
    padding: 0;
}

.aws-public-event-hero {
    padding: 28px 28px 24px;
    border-bottom: 1px solid var(--aws-border);
    background: linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
}

.aws-public-event-logo-wrap {
    text-align: center;
    margin-bottom: 22px;
}

.aws-public-event-logo {
    display: inline-block;
    max-width: 100%;
    max-height: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.aws-public-event-header {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    align-items: center;
}

.aws-public-event-datebox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    background: linear-gradient(180deg, #5e5e5e, #353535);
    border: 1px solid #4a4a4a;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.aws-public-event-datebox span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.aws-public-event-datebox strong {
    font-size: 30px;
    line-height: 1;
    margin-top: 4px;
}

.aws-public-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--aws-gold);
}

.aws-public-event-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff;
}

.aws-public-event-download-top,
.aws-public-event-download-bottom {
    text-align: center;
    padding: 24px 24px 0;
}

.aws-public-event-download-bottom {
    padding: 24px 24px 32px;
}

.aws-public-event-content {
    padding: 24px 32px 10px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* =========================================================
   CHAMPIONS PAGE
   ========================================================= */

.aws-champions-wrap {
    width: 100%;
}

.aws-champions-wrap .tabs {
    display: block;
    background: transparent;
    border: none;
    margin: 18px 0;
}

.aws-champions-wrap .tab-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.aws-champions-wrap .tab-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aws-champions-wrap .tab-links li a,
.aws-champions-wrap .gender-tab {
    display: inline-block;
    margin: 5px;
    padding: 10px 16px;
    background: linear-gradient(180deg, #2a2a2a, #171717);
    border: 1px solid #3a3a3a;
    color: #f2f2f2;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: 13px;
    cursor: pointer;
}

.aws-champions-wrap .tab-links li.active a,
.aws-champions-wrap .tab-links li a:hover,
.aws-champions-wrap .gender-tab.active,
.aws-champions-wrap .gender-tab:hover {
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    border-color: #681015;
    color: #fff;
}

.aws-champions-wrap .tab-content .tab {
    display: none;
}

.aws-champions-wrap .tab-content .tab.active {
    display: block;
}

.aws-champion-card {
    padding: 20px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
    border: 1px solid var(--aws-border);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.aws-champion-card-inactive {
    opacity: 0.78;
    filter: grayscale(25%);
}

.aws-champion-card-top {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 22px;
    align-items: center;
}

.aws-champion-belt {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    background: #151515;
    border: 1px solid #343434;
    padding: 12px;
}

.aws-champion-belt .title-img {
    display: block;
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    border: none;
}

.aws-champion-card-info {
    min-width: 0;
}

.aws-champion-title-name {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.08;
    text-transform: uppercase;
    color: #fff;
}

.aws-champion-holder {
    color: #ddd;
    font-size: 18px;
    margin-bottom: 8px;
}

.aws-champion-holder a {
    color: var(--aws-gold);
    text-decoration: none;
    font-weight: 700;
}

.aws-champion-holder a:hover {
    color: #fff;
}

.aws-champion-reign {
    color: #cfcfcf;
    line-height: 1.6;
}

.aws-champion-card-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.aws-title-history {
    margin-top: 18px;
}

.aws-title-history summary {
    cursor: pointer;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--aws-gold);
    padding: 10px 0;
    list-style: none;
}

.aws-title-history summary::-webkit-details-marker {
    display: none;
}

.aws-title-history summary::before {
    content: "▼ ";
    color: var(--aws-gold);
    font-size: 14px;
}

.aws-title-history:not([open]) summary::before {
    content: "► ";
}

.aws-title-history.inactive summary {
    color: #b8b8b8;
}

.aws-title-history-table-wrap {
    overflow-x: auto;
    margin-top: 10px;
}

.aws-champions-wrap .history-table a {
    color: var(--aws-gold);
    text-decoration: none;
    font-weight: 700;
}

.aws-champions-wrap .history-table a:hover {
    color: #fff;
}

.aws-champions-wrap .history-table em {
    color: #d9d9d9;
    font-style: italic;
}

.aws-champions-wrap .aws-archive-empty {
    color: #d0d0d0;
    padding: 10px 0;
}

.aws-champions-wrap .aws-champions-tabs .tab-links,
.aws-champions-wrap .aws-champion-gender-tabs .tab-links {
    justify-content: center;
}

.aws-champions-wrap .aws-champions-tabs,
.aws-champions-wrap .aws-champion-gender-tabs {
    text-align: center;
}

/* =========================================================
   CHRONOLOGY
   ========================================================= */

.aws-chronology-wrap {
    width: 100%;
}

.aws-chronology-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aws-chronology-card {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
    border: 1px solid var(--aws-border);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
    align-items: center;
}

.aws-chronology-datebox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 84px;
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    border: 1px solid #5d0f13;
    color: #fff;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.aws-chronology-datebox span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.aws-chronology-datebox strong {
    font-size: 28px;
    line-height: 1;
    margin-top: 4px;
}

.aws-chronology-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.aws-chronology-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--aws-gold);
}

.aws-chronology-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    font-size: 11px;
    line-height: 1;
    border: 1px solid #4a4a4a;
    background: #232323;
    color: #fff;
}

.aws-chronology-badge-news {
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    border-color: #681015;
}

.aws-chronology-badge-promo {
    background: linear-gradient(180deg, #7d611a, #5f4810);
    border-color: #6a4f10;
}

.aws-chronology-badge-event {
    background: linear-gradient(180deg, #4a4a4a, #2f2f2f);
    border-color: #555;
}

.aws-chronology-title {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.08;
    text-transform: uppercase;
}

.aws-chronology-title a {
    color: #fff;
    text-decoration: none;
}

.aws-chronology-title a:hover {
    color: var(--aws-gold);
}

.aws-chronology-subtext {
    color: #d2d2d2;
    line-height: 1.6;
}

.aws-chronology-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #2f2f2f;
}

.aws-chronology-pagination a,
.aws-chronology-pagination strong,
.aws-chronology-pagination span {
    padding: 8px 12px;
    background: #1f1f1f;
    border: 1px solid #3a3a3a;
    color: #f0dfb0;
    text-decoration: none;
    font-weight: 700;
}

.aws-chronology-pagination strong {
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    color: #fff;
    border-color: #6c0f13;
}

.aws-chronology-pagination-gap {
    border: none !important;
    background: transparent !important;
    color: #bdbdbd !important;
    padding: 0 4px !important;
}

/* =========================================================
   RANKINGS
   ========================================================= */

.aws-rankings-wrap {
    width: 100%;
}

.aws-rankings-header {
    margin-bottom: 24px;
}

.aws-rankings-updated {
    margin: 0 0 18px;
    color: #d2d2d2;
    line-height: 1.6;
    text-align: center;
}

.aws-rankings-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 22px;
}

.aws-rankings-subtitle {
    margin: 0;
    text-align: center;
    font-size: 28px;
    line-height: 1.08;
    text-transform: uppercase;
    color: #fff;
}

.ranking-filter-btn {
    display: inline-block;
    padding: 10px 16px;
    background: linear-gradient(180deg, #2a2a2a, #171717);
    color: #fff;
    text-decoration: none;
    border: 1px solid #3a3a3a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 13px;
    transition: 0.2s ease;
}

.ranking-filter-btn:hover {
    background: linear-gradient(180deg, #3a3a3a, #222);
    color: #fff;
}

.ranking-filter-btn.active {
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    border-color: #681015;
    color: #fff;
}

.aws-rankings-table-wrap,
.aws-winloss-table-wrap {
    overflow-x: auto;
    margin-bottom: 28px;
}

.aws-rankings-rank {
    width: 90px;
    font-weight: 800;
    color: var(--aws-gold);
}

.aws-rankings-name a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.aws-rankings-name a:hover {
    color: var(--aws-gold);
}

.aws-rankings-points {
    font-weight: 700;
    color: #dcdcdc;
}

.aws-rankings-movement {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    width: 110px;
}

.aws-rankings-legend-box,
.aws-winloss-alumni {
    padding: 22px;
    background: linear-gradient(180deg, var(--aws-panel), #222);
    border: 1px solid var(--aws-border);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.aws-rankings-legend-box h3 {
    margin: 0 0 14px;
    font-size: 22px;
    text-transform: uppercase;
    color: var(--aws-gold);
}

.aws-rankings-legend-list {
    margin: 0;
    padding-left: 20px;
    color: #d7d7d7;
}

.aws-rankings-legend-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.aws-rankings-manual-notes {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #3a3a3a;
    color: #d0d0d0;
    line-height: 1.7;
}

/* =========================================================
   WIN / LOSS
   ========================================================= */

.aws-winloss-wrap {
    width: 100%;
}

.aws-winloss-style-tabs,
.aws-winloss-gender-tabs {
    margin-bottom: 18px;
}

.aws-winloss-style-tabs .tab-links,
.aws-winloss-gender-tabs .tab-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.aws-winloss-style-tabs .tab-links li,
.aws-winloss-gender-tabs .tab-links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.aws-winloss-style-tabs .tab-links li a,
.aws-winloss-gender-tabs .tab-links li a {
    display: inline-block;
    padding: 10px 16px;
    background: linear-gradient(180deg, #2a2a2a, #171717);
    border: 1px solid #3a3a3a;
    color: #f2f2f2;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: 13px;
}

.aws-winloss-style-tabs .tab-links li.active a,
.aws-winloss-style-tabs .tab-links li a:hover,
.aws-winloss-gender-tabs .tab-links li.active a,
.aws-winloss-gender-tabs .tab-links li a:hover {
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    border-color: #681015;
    color: #fff;
}

.aws-winloss-content {
    margin-top: 10px;
}

.aws-winloss-section-title {
    margin: 0 0 16px;
    text-align: center;
    font-size: 28px;
    line-height: 1.08;
    text-transform: uppercase;
    color: #fff;
}

.aws-winloss-character-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.aws-winloss-character-link:hover {
    color: var(--aws-gold);
}

.aws-winloss-alumni {
    margin-top: 22px;
    padding: 20px;
}

.aws-winloss-alumni summary {
    cursor: pointer;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--aws-gold);
    list-style: none;
}

.aws-winloss-alumni summary::-webkit-details-marker {
    display: none;
}

.aws-winloss-alumni summary::before {
    content: "► ";
    color: var(--aws-gold);
}

.aws-winloss-alumni[open] summary::before {
    content: "▼ ";
}

.aws-winloss-alumni .aws-winloss-table-wrap {
    margin-top: 18px;
    margin-bottom: 0;
}

/* =========================================================
   AFFILIATES / LINKS PAGE
   ========================================================= */

.links-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    box-sizing: border-box;
}

.link-category {
    background: linear-gradient(180deg, rgba(22, 22, 26, 0.96) 0%, rgba(10, 10, 12, 0.96) 100%);
    border: 1px solid rgba(180, 24, 24, 0.45);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
}

.link-category::before {
    content: "";
    display: block;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #7a0d0d 0%, #c41d1d 50%, #7a0d0d 100%);
}

.link-category-header {
    padding: 18px 20px 14px;
    border-bottom: 1px solid rgba(180, 24, 24, 0.22);
    background: linear-gradient(180deg, rgba(120, 12, 12, 0.22) 0%, rgba(0, 0, 0, 0) 100%);
}

.link-category h2 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #f5f5f5;
}

.affiliate-links {
    list-style: none;
    margin: 0;
    padding: 14px;
}

.affiliate-links li {
    margin: 0;
    padding: 0;
}

.affiliate-links li + li {
    margin-top: 10px;
}

.affiliate-links a {
    display: block;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 600;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease,
        color 0.18s ease;
}

.affiliate-links a:hover,
.affiliate-links a:focus {
    color: #ffffff;
    background: rgba(196, 29, 29, 0.14);
    border-color: rgba(196, 29, 29, 0.55);
    box-shadow: 0 0 0 1px rgba(196, 29, 29, 0.15), 0 8px 24px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
    outline: none;
}

.affiliate-links a::after {
    content: "↗";
    float: right;
    opacity: 0.7;
    font-weight: 700;
}

/* =========================================================
   FADE IN
   ========================================================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
    .aws-content-grid,
    .aws-row-top,
    .aws-row-mid,
    .aws-community-grid,
    .aws-footer-grid {
        grid-template-columns: 1fr;
    }

    .aws-hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .aws-hero-mark {
        align-items: center;
        font-size: 22px;
    }

    .aws-hero-mark-right,
    .aws-hero-mark-left {
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .aws-container {
        width: min(100% - 24px, 1380px);
    }

    .aws-content-grid,
    .aws-community-grid,
    .aws-footer-grid,
    .aws-row-top,
    .aws-row-mid {
        grid-template-columns: 1fr;
    }

    .aws-sidebar {
        gap: 16px;
    }

    .aws-feature-story {
        min-height: 360px;
    }

    .aws-feature-copy {
        left: 18px;
        right: 18px;
        bottom: 18px;
        max-width: none;
    }

    .aws-feature-copy h2 {
        font-size: 34px;
        max-width: none;
    }

    .aws-community-list,
    .aws-card-block,
    .aws-mini-card,
    .aws-spotlight,
    .aws-champion-box,
    .aws-promos-block {
        padding: 16px;
    }
}

@media (max-width: 900px) {
    .aws-promos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aws-profile-wrap .profile-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .aws-profile-wrap .profile-photo {
        margin-right: 0;
    }

    .aws-profile-wrap .profile-info .basic-stats span {
        display: block;
        margin-right: 0;
        margin-bottom: 6px;
    }

    .aws-profile-wrap .quick-facts .fact {
        flex: 1 1 100%;
    }

    .aws-news-card,
    .aws-upcoming-card-page,
    .aws-archive-card-page,
    .aws-champion-card-top,
    .aws-promo-single-hero {
        grid-template-columns: 1fr;
    }

    .aws-news-card-title,
    .aws-upcoming-title-page,
    .aws-archive-title-page,
    .aws-champion-title-name {
        font-size: 24px;
    }

    .aws-upcoming-logo-page,
    .aws-archive-logo-page,
    .aws-champion-belt,
    .aws-promo-single-image {
        max-width: 260px;
    }

    .aws-upcoming-date-page,
    .aws-archive-date-page {
        max-width: 90px;
    }

    .aws-champion-card-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 820px) {
    .aws-topbar-inner {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 8px;
        padding: 10px 0;
    }

    .aws-topbar-left,
    .aws-topbar-right {
        justify-content: center;
        margin-left: 0;
        white-space: normal;
        text-align: center;
    }

    .aws-hero {
        padding: 24px 0 20px;
    }

    .aws-hero-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .aws-hero-mark {
        align-items: center;
        font-size: 18px;
    }

    .aws-hero-mark-left,
    .aws-hero-mark-right {
        text-align: center;
    }

    .aws-logo-link img {
        height: auto;
        max-height: 210px;
    }

    .aws-main {
        padding: 14px 0 24px;
    }

    .aws-panel-title {
        padding: 11px 12px;
        font-size: 12px;
    }

    .aws-feature-story {
        min-height: 320px;
    }

    .aws-feature-copy h2,
    .aws-news-card-title,
    .aws-upcoming-title-page,
    .aws-archive-title-page,
    .aws-chronology-title {
        font-size: 24px;
    }

    .aws-join-copy {
        padding: 20px;
    }

    .aws-join-copy h3 {
        font-size: 28px;
        max-width: none;
    }

    .aws-nav-list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .aws-nav-list li {
        flex: 0 0 auto;
    }

    .aws-nav-list li a {
        padding: 14px 16px;
        font-size: 12px;
        white-space: nowrap;
    }

    .aws-strip-scroll {
        justify-content: flex-start;
        padding-bottom: 4px;
    }

    .aws-strip-card {
        min-width: 220px;
        height: 120px;
    }

    .aws-strip-content strong {
        font-size: 22px;
    }

    .aws-news-card,
    .aws-promo-entry-page,
    .aws-upcoming-card-page,
    .aws-archive-card-page,
    .aws-chronology-card,
    .aws-champion-card-top,
    .aws-public-event-header,
    .aws-event-preview-header,
    .aws-promo-single-hero {
        grid-template-columns: 1fr;
    }

    .aws-news-card,
    .aws-promo-entry-page,
    .aws-upcoming-card-page,
    .aws-archive-card-page,
    .aws-chronology-card,
    .aws-champion-card,
    .aws-public-event-hero,
    .aws-event-preview-hero {
        padding: 16px;
        gap: 16px;
    }

    .aws-upcoming-logo-page,
    .aws-archive-logo-page,
    .aws-champion-belt,
    .aws-promo-thumb-page,
    .aws-promo-single-image,
    .aws-news-card-image {
        max-width: 260px;
    }

    .aws-upcoming-date-page,
    .aws-archive-date-page,
    .aws-chronology-datebox,
    .aws-public-event-datebox,
    .aws-event-preview-datebox {
        max-width: 90px;
    }

    .aws-public-event-content,
    .aws-event-preview-content,
    .aws-promo-single-body,
    .aws-news-single-meta,
    .aws-news-single-title,
    .aws-news-single-body,
    .aws-news-backlink,
    .aws-news-comments {
        padding-left: 16px;
        padding-right: 16px;
    }

    .aws-public-event-credits,
    .aws-event-preview-credits {
        margin-left: 16px;
        margin-right: 16px;
    }

    .aws-public-event-download-top,
    .aws-public-event-download-bottom,
    .aws-event-preview-actions,
    .aws-promo-single-actions {
        padding-left: 16px;
        padding-right: 16px;
    }

    .aws-btn,
    .aws-btn-alt,
    .aws-footer-form button {
        min-height: 44px;
    }
}

@media (max-width: 768px) {
    .aws-news-single-image {
        max-height: 220px;
    }

    .aws-news-single-image img {
        height: 220px;
    }

    .aws-promos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aws-promo-entry-page,
    .aws-chronology-card {
        grid-template-columns: 1fr;
    }

    .aws-promo-thumb-page {
        max-width: 220px;
    }

    .aws-promo-title-page,
    .aws-chronology-title,
    .aws-rankings-subtitle,
    .aws-winloss-section-title {
        font-size: 22px;
    }

    .aws-promo-single-hero,
    .aws-public-event-header,
    .aws-event-preview-header {
        grid-template-columns: 1fr;
    }

    .aws-promo-single-hero,
    .aws-public-event-hero,
    .aws-event-preview-hero {
        padding: 18px;
    }

    .aws-public-event-datebox,
    .aws-event-preview-datebox {
        max-width: 90px;
    }

    .aws-public-event-content,
    .aws-event-preview-content {
        padding: 18px 18px 8px;
    }

    .aws-public-event-credits,
    .aws-event-preview-credits {
        margin: 10px 18px 0;
    }

    .aws-public-event-download-top,
    .aws-public-event-download-bottom,
    .aws-event-preview-actions {
        padding-left: 18px;
        padding-right: 18px;
    }

    .aws-public-event-block-title,
    .aws-event-preview-block-title,
    .aws-event-preview-match-title {
        font-size: 21px;
    }

    .aws-promo-single-body {
        padding: 20px 18px 16px;
    }

    .aws-promo-single-actions {
        padding: 0 18px 24px;
    }

    .ranking-filter-btn,
    .aws-winloss-style-tabs .tab-links li a,
    .aws-winloss-gender-tabs .tab-links li a {
        font-size: 12px;
        padding: 9px 12px;
    }

    .aws-winloss-alumni summary {
        font-size: 19px;
    }

    .links-container {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 18px;
    }

    .link-category-header {
        padding: 16px 16px 12px;
    }

    .affiliate-links {
        padding: 12px;
    }

    .affiliate-links a {
        padding: 13px 14px;
    }
}

@media (max-width: 720px) {
    .aws-container {
        width: min(100% - 20px, 1380px);
    }

    .aws-feature-copy h2 {
        font-size: 28px;
    }

    .aws-strip-card {
        min-width: 220px;
        height: 120px;
    }

    .aws-nav-list li a {
        padding: 14px 16px;
        font-size: 12px;
    }

    .aws-topbar-inner {
        flex-direction: column;
        justify-content: center;
        padding: 8px 0;
    }
}

@media (max-width: 640px) {
    .aws-container {
        width: min(100% - 16px, 1380px);
    }

    .aws-topbar {
        font-size: 11px;
        letter-spacing: 0.05em;
    }

    .aws-hero-mark {
        display: none;
    }

    .aws-logo-link img {
        max-height: 170px;
    }

    .aws-feature-story {
        min-height: 280px;
        background-position: center;
    }

    .aws-feature-copy {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .aws-feature-copy h2 {
        font-size: 22px;
        line-height: 1.08;
    }

    .aws-feature-copy p,
    .aws-news-card-excerpt,
    .aws-news-single-body,
    .aws-promo-location-page,
    .aws-upcoming-location-page,
    .aws-archive-location-page,
    .aws-public-event-block-body,
    .aws-event-preview-block-body {
        font-size: 15px;
        line-height: 1.7;
    }

    .aws-feature-actions,
    .aws-card-actions,
    .aws-footer-form,
    .aws-ranking-filter-buttons {
        flex-direction: column;
    }

    .aws-feature-actions .aws-btn,
    .aws-feature-actions .aws-btn-alt,
    .aws-card-actions .aws-btn,
    .aws-card-actions .aws-btn-alt,
    .aws-ranking-filter-buttons .ranking-filter-btn {
        width: 100%;
        text-align: center;
    }

    .aws-roster-wrap .headshot-grid {
        gap: 14px;
    }

    .aws-roster-wrap .character-img,
    .aws-roster-wrap .headshot-grid img {
        width: 130px;
    }

    .aws-roster-wrap .character-name {
        max-width: 130px;
        font-size: 13px;
    }

    .aws-profile-wrap .profile-photo img {
        width: 150px;
        height: 150px;
    }

    .aws-match-list li {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 6px;
    }

    .aws-match-list li span:last-of-type {
        text-align: center;
    }

    .aws-results-link {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .aws-results-date {
        white-space: normal;
    }

    .aws-event-item,
    .aws-post-item {
        grid-template-columns: 1fr;
    }

    .aws-post-count {
        width: 64px;
    }

    .aws-footer {
        margin-top: 22px;
        padding: 24px 0 16px;
    }

    .aws-footer-bottom,
    .aws-footer-bottom-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .aws-profile-wrap .profile-header,
    .aws-profile-wrap .quick-facts,
    .aws-roster-wrap .content-box,
    .aws-profile-wrap .content-box {
        padding: 16px;
    }

    .aws-profile-wrap .profile-info h1 {
        font-size: 1.6rem;
    }

    .aws-profile-wrap .tabs .tab-buttons button,
    .aws-roster-wrap .tab-links li a,
    .aws-champions-wrap .tab-links li a,
    .aws-champions-wrap .gender-tab,
    .aws-winloss-style-tabs .tab-links li a,
    .aws-winloss-gender-tabs .tab-links li a {
        font-size: 11px;
        padding: 10px 12px;
    }

    .links-container {
        grid-template-columns: 1fr;
        padding: 14px;
        gap: 14px;
    }

    .link-category {
        border-radius: 12px;
    }

    .link-category-header {
        padding: 14px 14px 10px;
    }

    .link-category h2 {
        font-size: 1rem;
        letter-spacing: 0.06em;
    }

    .affiliate-links {
        padding: 10px;
    }

    .affiliate-links a {
        padding: 12px 13px;
        font-size: 14px;
    }
}

@media (max-width: 560px) {
    .aws-promos-grid {
        grid-template-columns: 1fr;
    }
}

/* safer table scrolling */
.aws-profile-wrap table,
.aws-roster-wrap table,
.aws-champions-wrap .history-table,
.aws-rankings-table,
.aws-winloss-table {
    min-width: 640px;
}

.aws-profile-wrap .tabs,
.aws-rankings-table-wrap,
.aws-winloss-table-wrap,
.aws-title-history-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* =========================================================
   AWS EVENT BOOKINGS / EVENT LIBRARY SINGLE
   ========================================================= */

.aws-event-bookings-wrap {
    width: 100%;
}

.aws-event-bookings-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 22px 20px 8px;
    text-align: center;
}

.aws-event-bookings-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff;
}

.aws-event-bookings-filters {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 10px 20px 22px;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
    background:
        linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0)),
        linear-gradient(180deg, #151515, #111);
}

.aws-event-bookings-filter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 12px;
}

.aws-event-bookings-filter-form label {
    color: var(--aws-gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.aws-event-bookings-filter-form select {
    min-width: 140px;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #3a3a3a;
    background: #101010;
    color: #f0f0f0;
    font-size: 14px;
}

.aws-event-bookings-filter-form select:focus {
    outline: none;
    border-color: var(--aws-gold);
    box-shadow: 0 0 0 1px rgba(212,175,55,.18);
}

.aws-event-bookings-density-toggle {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.aws-event-bookings-density-toggle a {
    display: inline-block;
    padding: 10px 16px;
    background: linear-gradient(180deg, #2a2a2a, #171717);
    border: 1px solid #3a3a3a;
    color: #f2f2f2;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .06em;
    font-size: 12px;
}

.aws-event-bookings-density-toggle a:hover,
.aws-event-bookings-density-toggle a.active {
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    border-color: #681015;
    color: #fff;
}

.aws-booking-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 22px 20px;
}

.aws-booking-grid.aws-booking-grid-compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.aws-booking-card {
    display: flex;
    flex-direction: column;
    background:
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
        linear-gradient(180deg, var(--aws-panel), var(--aws-panel-2));
    border: 1px solid var(--aws-border);
    box-shadow: 0 10px 22px rgba(0,0,0,.28);
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.aws-booking-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212,175,55,.5);
    box-shadow: 0 14px 28px rgba(0,0,0,.38);
}

.aws-booking-card-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
        linear-gradient(180deg, #121212, #0d0d0d);
    border-bottom: 1px solid #2b2b2b;
    overflow: hidden;
}

.aws-booking-grid-compact .aws-booking-card-image-wrap {
    min-height: 170px;
    padding: 14px;
}

.aws-booking-card-image-wrap img {
    max-width: 100%;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform .2s ease;
}

.aws-booking-grid-compact .aws-booking-card-image-wrap img {
    max-height: 130px;
}

.aws-booking-card:hover .aws-booking-card-image-wrap img {
    transform: scale(1.04);
}

.aws-booking-card-fallback {
    color: var(--aws-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.aws-booking-card-date {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 9px 10px;
    background: rgba(0,0,0,.72);
    border: 1px solid rgba(255,255,255,.08);
    color: var(--aws-gold);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    text-align: center;
    backdrop-filter: blur(2px);
}

.aws-booking-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    text-align: center;
}

.aws-booking-card-body strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.15;
    text-transform: uppercase;
}

.aws-booking-card-body span {
    color: #d3d3d3;
    font-size: 13px;
    line-height: 1.5;
}

.aws-event-bookings-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 0 20px 24px;
}

.aws-event-bookings-pagination a,
.aws-event-bookings-pagination strong,
.aws-event-bookings-pagination span {
    padding: 8px 12px;
    background: #1f1f1f;
    border: 1px solid #3a3a3a;
    color: #f0dfb0;
    text-decoration: none;
    font-weight: 700;
}

.aws-event-bookings-pagination strong {
    background: linear-gradient(180deg, var(--aws-red-bright), #761116);
    color: #fff;
    border-color: #6c0f13;
}

.aws-event-bookings-pagination-gap {
    border: none !important;
    background: transparent !important;
    color: #bdbdbd !important;
    padding: 0 4px !important;
}

@media (max-width: 1100px) {
    .aws-booking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .aws-booking-grid.aws-booking-grid-compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .aws-event-bookings-header {
        padding: 18px 16px 8px;
    }

    .aws-event-bookings-filters {
        padding: 10px 16px 18px;
    }

    .aws-event-bookings-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .aws-event-bookings-filter-form label {
        text-align: center;
    }

    .aws-event-bookings-filter-form select,
    .aws-event-bookings-filter-form .aws-btn {
        width: 100%;
    }

    .aws-booking-grid,
    .aws-booking-grid.aws-booking-grid-compact {
        grid-template-columns: 1fr 1fr;
        padding: 18px 16px;
    }

    .aws-booking-card-image-wrap {
        min-height: 170px;
        padding: 14px;
    }

    .aws-booking-card-image-wrap img {
        max-height: 130px;
    }

    .aws-booking-card-body {
        padding: 14px;
    }

    .aws-booking-card-body strong {
        font-size: 16px;
    }

    .aws-event-bookings-pagination {
        padding: 0 16px 20px;
    }
}

@media (max-width: 520px) {
    .aws-booking-grid,
    .aws-booking-grid.aws-booking-grid-compact {
        grid-template-columns: 1fr;
    }

    .aws-event-bookings-density-toggle {
        flex-direction: column;
    }

    .aws-event-bookings-density-toggle a {
        width: 100%;
        text-align: center;
    }
}

.aws-promo-word-count-page {
    color: #d7b35a;
    font-weight: 700;
    white-space: nowrap;
}

.aws-promo-word-count-page {
    color: #d7b35a;
    font-weight: 700;
    white-space: nowrap;
}