/* ==========================================================================
   GoWrestle Streaming — Industrial Grit × Championship Gold
   A pro wrestling streaming platform that feels like walking into the venue.
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --gw-black: #0d0d0d;
    --gw-bg: #0d0d0d;
    --gw-bg-elevated: #151515;
    --gw-bg-card: #1a1a1a;
    --gw-bg-card-hover: #222222;
    --gw-surface: #2a2a2a;
    --gw-border: rgba(201, 168, 76, 0.12);
    --gw-border-strong: rgba(201, 168, 76, 0.25);
    --gw-text: #d4cfc4;
    --gw-text-muted: #8a8578;
    --gw-text-dim: #5a5549;
    --gw-white: #f0ece2;
    --gw-gold: #c9a84c;
    --gw-gold-bright: #e2c361;
    --gw-gold-dark: #a08435;
    --gw-red: #c41e3a;
    --gw-red-dark: #8b1528;
    --gw-red-glow: rgba(196, 30, 58, 0.3);
    --gw-font-display: 'Big Shoulders Display', 'Impact', sans-serif;
    --gw-font-body: 'Barlow', 'Helvetica Neue', sans-serif;
    --gw-radius: 4px;
    --gw-radius-lg: 8px;
    --gw-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
    --gw-shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.8);
    --gw-shadow-gold: 0 0 30px rgba(201, 168, 76, 0.15);
    --gw-transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --gw-transition-fast: 0.15s ease;
    --gw-header-height: 72px;
}

/* ---------- Base Reset ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body.gw-streaming {
    background-color: var(--gw-bg) !important;
    background: var(--gw-bg) !important;
    color: var(--gw-text);
    font-family: var(--gw-font-body);
    font-weight: 400;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Grain texture overlay — venue atmosphere */
body.gw-streaming::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* Nuke all GeneratePress default wrappers */
body.gw-streaming,
body.gw-streaming #page,
body.gw-streaming .site,
body.gw-streaming .site-content,
body.gw-streaming .content-area,
body.gw-streaming .grid-container,
body.gw-streaming .inside-article,
body.gw-streaming .entry-content,
body.gw-streaming .page-content,
body.gw-streaming .inside-page-header,
body.gw-streaming #content,
body.gw-streaming .generate-columns-container {
    background-color: var(--gw-bg) !important;
    background: var(--gw-bg) !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    color: var(--gw-text) !important;
}

body.gw-streaming .grid-container {
    width: 100% !important;
}

body.gw-streaming .site-content .content-area {
    width: 100% !important;
    float: none !important;
}

body.gw-streaming a {
    color: var(--gw-text) !important;
    text-decoration: none !important;
    transition: color var(--gw-transition);
}

body.gw-streaming a:hover {
    color: var(--gw-gold) !important;
}

/* Kill all GP default chrome */
body.gw-streaming .site-header,
body.gw-streaming .site-footer,
body.gw-streaming .site-info,
body.gw-streaming #generate-slideout-menu,
body.gw-streaming .widget-area,
body.gw-streaming #right-sidebar,
body.gw-streaming #left-sidebar,
body.gw-streaming .sidebar,
body.gw-streaming .gen-sidebar-nav,
body.gw-streaming .page-header:not(.gw-hero),
body.gw-streaming .generate-back-to-top {
    display: none !important;
}

/* ---------- Keyframe Animations ---------- */
@keyframes gw-fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes gw-fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes gw-slideRight {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes gw-scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
}

@keyframes gw-glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 168, 76, 0.1); }
    50%      { box-shadow: 0 0 40px rgba(201, 168, 76, 0.25); }
}

/* ---------- Header ---------- */
.gw-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--gw-header-height);
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.gw-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gw-border-strong), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gw-header.scrolled {
    background: rgba(13, 13, 13, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.gw-header.scrolled::after {
    opacity: 1;
}

.gw-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 4%;
    height: 100%;
}

.gw-header__left {
    flex-shrink: 0;
}

.gw-header__logo {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.gw-logo-img {
    height: 44px;
    width: auto;
}

.gw-logo-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: var(--gw-font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

.gw-logo-go {
    font-size: 34px;
    font-weight: 800;
    color: var(--gw-gold) !important;
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

.gw-logo-wrestle {
    font-size: 34px;
    font-weight: 800;
    color: var(--gw-white) !important;
}

/* Nav */
.gw-header__nav {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding-left: 48px;
}

.gw-nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gw-nav-list li {
    position: relative;
}

.gw-nav-list li a {
    color: var(--gw-text-muted) !important;
    font-family: var(--gw-font-display);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 0;
    transition: color var(--gw-transition) !important;
    white-space: nowrap;
    position: relative;
}

.gw-nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gw-gold);
    transition: width var(--gw-transition);
}

.gw-nav-list li a:hover,
.gw-nav-list li.current-menu-item a {
    color: var(--gw-white) !important;
}

.gw-nav-list li a:hover::after,
.gw-nav-list li.current-menu-item a::after {
    width: 100%;
}

/* Dropdown */
.gw-nav-list li ul.sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: -16px;
    background: rgba(21, 21, 21, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gw-border-strong);
    border-radius: var(--gw-radius);
    padding: 8px 0;
    min-width: 200px;
    list-style: none;
    z-index: 100;
    box-shadow: var(--gw-shadow);
}

.gw-nav-list li:hover > ul.sub-menu {
    display: block;
    animation: gw-fadeUp 0.2s ease;
}

.gw-nav-list li ul.sub-menu li a {
    display: block;
    padding: 10px 24px !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
}

.gw-nav-list li ul.sub-menu li a::after {
    display: none;
}

.gw-nav-list li ul.sub-menu li a:hover {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gw-gold) !important;
}

/* Header Right */
.gw-header__right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.gw-header__account {
    color: var(--gw-text-muted) !important;
    display: flex;
    align-items: center;
    padding: 8px;
    transition: color var(--gw-transition) !important;
}

.gw-header__account:hover {
    color: var(--gw-gold) !important;
}

/* Mobile Toggle */
.gw-header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.gw-header__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gw-white);
    transition: all var(--gw-transition);
    transform-origin: center;
}

/* ---------- Buttons ---------- */
.gw-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--gw-font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 28px;
    border-radius: var(--gw-radius);
    border: none;
    cursor: pointer;
    text-decoration: none !important;
    transition: all var(--gw-transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.gw-btn--primary {
    background: var(--gw-red) !important;
    color: var(--gw-white) !important;
    box-shadow: 0 4px 16px var(--gw-red-glow);
}

.gw-btn--primary:hover {
    background: #d92240 !important;
    color: var(--gw-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--gw-red-glow);
}

.gw-btn--secondary {
    background: rgba(240, 236, 226, 0.08) !important;
    color: var(--gw-white) !important;
    border: 1px solid rgba(240, 236, 226, 0.15);
    backdrop-filter: blur(8px);
}

.gw-btn--secondary:hover {
    background: rgba(240, 236, 226, 0.15) !important;
    color: var(--gw-white) !important;
    border-color: rgba(240, 236, 226, 0.3);
}

.gw-btn--ghost {
    background: transparent !important;
    color: var(--gw-text) !important;
    border: 1px solid var(--gw-border-strong);
}

.gw-btn--ghost:hover {
    border-color: var(--gw-gold);
    color: var(--gw-gold) !important;
}

.gw-btn--play {
    background: var(--gw-gold) !important;
    color: var(--gw-black) !important;
    font-size: 16px;
    padding: 16px 40px;
    letter-spacing: 3px;
    box-shadow: var(--gw-shadow-gold);
}

.gw-btn--play:hover {
    background: var(--gw-gold-bright) !important;
    color: var(--gw-black) !important;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
}

.gw-btn--lg {
    font-size: 16px;
    padding: 16px 40px;
    letter-spacing: 3px;
}

/* ---------- Tags ---------- */
.gw-tag {
    display: inline-block;
    font-family: var(--gw-font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 5px 14px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gw-gold) !important;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 2px;
}

a.gw-tag:hover {
    background: rgba(201, 168, 76, 0.22) !important;
    color: var(--gw-gold-bright) !important;
}

/* ---------- Main ---------- */
.gw-main {
    padding-top: 0;
    min-height: 100vh;
}

/* ---------- Hero Section ---------- */
.gw-hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    max-height: 1000px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--gw-black);
}

/* WebGL shader background — sits behind everything in the hero */
.gw-hero__shader {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.gw-hero__shader canvas {
    display: block;
}

/* When shader is active, the background-image is a fallback only */
.gw-hero:has(.gw-hero__shader canvas) {
    background-image: none !important;
}

/* Dramatic diagonal overlay — sits above shader, below content */
.gw-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            160deg,
            rgba(13, 13, 13, 0.3) 0%,
            rgba(13, 13, 13, 0.1) 30%,
            rgba(13, 13, 13, 0.5) 60%,
            rgba(13, 13, 13, 0.95) 85%,
            var(--gw-bg) 100%
        ),
        linear-gradient(
            0deg,
            var(--gw-bg) 0%,
            rgba(13, 13, 13, 0.9) 8%,
            transparent 40%
        );
}

/* Subtle red accent glow on hero */
.gw-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gw-red), var(--gw-gold), var(--gw-red));
    opacity: 0.6;
    z-index: 2;
}

.gw-hero__content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 0 4% 90px;
    animation: gw-slideRight 0.8s ease both;
}

.gw-hero__tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    animation: gw-fadeUp 0.6s ease 0.2s both;
}

.gw-hero__title {
    font-family: var(--gw-font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    color: var(--gw-white);
    line-height: 0.95;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: -1px;
    animation: gw-fadeUp 0.6s ease 0.3s both;
}

.gw-hero__excerpt {
    font-family: var(--gw-font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--gw-text);
    margin: 0 0 32px 0;
    max-width: 500px;
    animation: gw-fadeUp 0.6s ease 0.4s both;
}

.gw-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: gw-fadeUp 0.6s ease 0.5s both;
}

/* ---------- CTA Banner ---------- */
.gw-cta-banner {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gw-border);
    border-bottom: 1px solid var(--gw-border);
}

/* Diagonal background */
.gw-cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, var(--gw-red-dark) 0%, #1a0810 40%, var(--gw-bg-elevated) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Gold accent stripe */
.gw-cta-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.05), transparent);
    transform: skewX(-20deg);
}

.gw-cta-banner__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.gw-cta-banner__text h2 {
    font-family: var(--gw-font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--gw-white);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gw-cta-banner__text p {
    font-size: 15px;
    color: rgba(240, 236, 226, 0.65);
    margin: 0;
}

.gw-cta-banner__text strong {
    color: var(--gw-gold) !important;
    font-weight: 700;
}

/* ---------- Ring Rope Section Divider ---------- */
.gw-content-section {
    padding: 16px 0;
    position: relative;
}

.gw-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 4%;
    right: 4%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--gw-border-strong) 20%,
        var(--gw-border-strong) 80%,
        transparent
    );
}

.gw-content-section:first-of-type::before {
    display: none;
}

/* ---------- Content Rows ---------- */
.gw-row {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 4%;
}

.gw-row__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 18px;
}

.gw-row__title {
    font-family: var(--gw-font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--gw-white);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-left: 16px;
}

/* Gold accent bar on row titles */
.gw-row__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--gw-gold);
    border-radius: 2px;
}

.gw-row__more {
    font-family: var(--gw-font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--gw-gold) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all var(--gw-transition) !important;
}

.gw-row__more:hover {
    color: var(--gw-gold-bright) !important;
    letter-spacing: 3px;
}

/* Scroll Wrapper */
.gw-row__scroll-wrapper {
    position: relative;
}

.gw-row__cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 12px 0 24px;
}

.gw-row__cards::-webkit-scrollbar {
    display: none;
}

/* Scroll Arrows */
.gw-row__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid var(--gw-border-strong);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gw-gold);
    opacity: 0;
    transition: all var(--gw-transition);
    backdrop-filter: blur(8px);
}

.gw-row__scroll-wrapper:hover .gw-row__arrow {
    opacity: 1;
}

.gw-row__arrow:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: var(--gw-gold);
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.gw-row__arrow--left {
    left: -12px;
}

.gw-row__arrow--right {
    right: -12px;
}

/* ---------- Video Cards ---------- */
.gw-card {
    flex: 0 0 auto;
    width: 300px;
    border-radius: var(--gw-radius);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
    position: relative;
    background: var(--gw-bg-card);
    border: 1px solid transparent;
}

.gw-card:hover {
    transform: scale(1.06) translateY(-4px);
    z-index: 5;
    box-shadow: var(--gw-shadow-lg), 0 0 0 1px var(--gw-border-strong);
    border-color: var(--gw-border-strong);
}

.gw-card__link {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
}

.gw-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--gw-bg-card);
    overflow: hidden;
}

.gw-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.4s ease;
    filter: brightness(0.85) saturate(0.9);
}

.gw-card:hover .gw-card__thumb img {
    transform: scale(1.1);
    filter: brightness(1) saturate(1.1);
}

.gw-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gw-bg-card), var(--gw-bg-elevated));
    color: var(--gw-text-dim);
}

/* Play overlay */
.gw-card__play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: background 0.4s ease;
}

.gw-card:hover .gw-card__play-overlay {
    background: rgba(13, 13, 13, 0.4);
}

.gw-card__play-btn {
    width: 56px;
    height: 56px;
    background: var(--gw-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gw-black);
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}

.gw-card__play-btn svg {
    margin-left: 3px;
}

.gw-card:hover .gw-card__play-btn {
    opacity: 1;
    transform: scale(1);
}

/* Card info */
.gw-card__info {
    padding: 14px 12px 10px;
}

.gw-card__title {
    font-family: var(--gw-font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--gw-text) !important;
    margin: 0 0 6px 0;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gw-card:hover .gw-card__title {
    color: var(--gw-white) !important;
}

.gw-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-family: var(--gw-font-body);
}

.gw-card__category {
    color: var(--gw-gold) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
}

.gw-card__date {
    color: var(--gw-text-dim) !important;
}

/* ---------- Archive Grid ---------- */
.gw-archive {
    padding: calc(var(--gw-header-height) + 48px) 4% 60px;
    max-width: 1800px;
    margin: 0 auto;
}

.gw-archive__header {
    margin-bottom: 40px;
    animation: gw-fadeUp 0.6s ease both;
}

.gw-archive__title {
    font-family: var(--gw-font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--gw-white);
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gw-archive__desc {
    font-size: 16px;
    color: var(--gw-text-muted);
    margin: 0 0 10px 0;
    max-width: 600px;
}

.gw-archive__count {
    font-family: var(--gw-font-display);
    font-size: 13px;
    color: var(--gw-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.gw-archive__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.gw-archive__grid .gw-card {
    width: 100%;
    animation: gw-scaleIn 0.4s ease both;
}

/* Stagger grid cards */
.gw-archive__grid .gw-card:nth-child(1) { animation-delay: 0.05s; }
.gw-archive__grid .gw-card:nth-child(2) { animation-delay: 0.1s; }
.gw-archive__grid .gw-card:nth-child(3) { animation-delay: 0.15s; }
.gw-archive__grid .gw-card:nth-child(4) { animation-delay: 0.2s; }
.gw-archive__grid .gw-card:nth-child(5) { animation-delay: 0.25s; }
.gw-archive__grid .gw-card:nth-child(6) { animation-delay: 0.3s; }
.gw-archive__grid .gw-card:nth-child(7) { animation-delay: 0.35s; }
.gw-archive__grid .gw-card:nth-child(8) { animation-delay: 0.4s; }

/* Pagination */
.gw-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.gw-pagination a,
.gw-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    background: var(--gw-bg-card);
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius);
    color: var(--gw-text-muted) !important;
    font-family: var(--gw-font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all var(--gw-transition);
}

.gw-pagination a:hover {
    background: var(--gw-bg-card-hover);
    color: var(--gw-white) !important;
    border-color: var(--gw-border-strong);
}

.gw-pagination span.current {
    background: var(--gw-gold) !important;
    color: var(--gw-black) !important;
    border-color: var(--gw-gold);
}

/* ---------- Single Post / Video ---------- */
.gw-single__player {
    background: var(--gw-black);
    padding-top: var(--gw-header-height);
}

.gw-single__player-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.gw-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--gw-black);
}

.gw-video-wrapper iframe,
.gw-video-wrapper video,
.gw-video-wrapper embed,
.gw-video-wrapper object {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

.gw-single__poster {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.gw-single__poster-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gw-single__play-btn {
    width: 88px;
    height: 88px;
    background: var(--gw-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gw-black);
    cursor: pointer;
    transition: all var(--gw-transition);
    box-shadow: 0 0 50px rgba(201, 168, 76, 0.4);
    animation: gw-glowPulse 2s ease infinite;
}

.gw-single__play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.6);
}

.gw-single__play-btn svg {
    margin-left: 5px;
}

/* Single info */
.gw-single__info {
    background: var(--gw-bg);
    padding: 48px 0;
}

.gw-single__info-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 4%;
}

.gw-single__meta-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.gw-single__tags {
    display: flex;
    gap: 8px;
}

.gw-single__date {
    font-size: 13px;
    color: var(--gw-text-dim) !important;
    font-family: var(--gw-font-body);
}

.gw-single__title {
    font-family: var(--gw-font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: var(--gw-white);
    margin: 0 0 28px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.05;
}

.gw-single__content {
    font-family: var(--gw-font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--gw-text);
}

.gw-single__content p {
    margin-bottom: 1.2em;
}

.gw-single__content a {
    color: var(--gw-gold) !important;
    border-bottom: 1px solid transparent;
    transition: border-color var(--gw-transition) !important;
}

.gw-single__content a:hover {
    color: var(--gw-gold-bright) !important;
    border-bottom-color: var(--gw-gold-bright);
}

.gw-single__related {
    padding-top: 40px;
    margin-top: 20px;
    border-top: 1px solid var(--gw-border);
}

/* ---------- No Results ---------- */
.gw-no-results {
    text-align: center;
    padding: 100px 20px;
    grid-column: 1 / -1;
}

.gw-no-results p {
    color: var(--gw-text-muted);
    font-size: 16px;
    font-family: var(--gw-font-body);
}

/* ---------- Footer ---------- */
.gw-footer {
    background: var(--gw-black);
    position: relative;
    padding: 64px 0 32px;
    margin-top: 60px;
}

/* Triple ring rope divider */
.gw-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background:
        linear-gradient(90deg,
            transparent 0%,
            var(--gw-gold-dark) 15%,
            var(--gw-gold) 50%,
            var(--gw-gold-dark) 85%,
            transparent 100%
        );
    opacity: 0.4;
}

.gw-footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
}

.gw-footer__top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.gw-footer__brand {
    flex-shrink: 0;
}

.gw-footer__logo .gw-logo-go {
    font-size: 24px;
}

.gw-footer__logo .gw-logo-wrestle {
    font-size: 24px;
}

.gw-footer__tagline {
    margin: 12px 0 0 0;
    font-family: var(--gw-font-display);
    font-size: 13px;
    color: var(--gw-text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gw-footer__links {
    display: flex;
    gap: 64px;
}

.gw-footer__col h4 {
    font-family: var(--gw-font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--gw-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 18px 0;
}

.gw-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gw-footer__col ul li {
    margin-bottom: 12px;
}

.gw-footer__col ul li a {
    font-size: 14px;
    color: var(--gw-text-muted) !important;
    font-family: var(--gw-font-body);
    transition: color var(--gw-transition) !important;
}

.gw-footer__col ul li a:hover {
    color: var(--gw-white) !important;
}

.gw-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--gw-border);
}

.gw-footer__bottom p {
    font-size: 12px;
    color: var(--gw-text-dim);
    margin: 0;
    font-family: var(--gw-font-body);
    letter-spacing: 1px;
}

.gw-footer__social {
    display: flex;
    gap: 18px;
}

.gw-footer__social a {
    color: var(--gw-text-dim) !important;
    transition: all var(--gw-transition) !important;
}

.gw-footer__social a:hover {
    color: var(--gw-gold) !important;
    transform: translateY(-2px);
}

/* ---------- Indeed Membership Pro Overrides ---------- */
body.gw-streaming .ihc-locker-wrap {
    background: var(--gw-bg-elevated) !important;
    border: 1px solid var(--gw-border-strong) !important;
    border-radius: var(--gw-radius-lg) !important;
    color: var(--gw-text) !important;
    padding: 48px !important;
    text-align: center;
}

body.gw-streaming .ihc-locker-wrap a {
    color: var(--gw-gold) !important;
}

body.gw-streaming .ihc-locker-wrap input[type="submit"],
body.gw-streaming .ihc-locker-wrap .ihc-submit-btn {
    background: var(--gw-gold) !important;
    border: none !important;
    border-radius: var(--gw-radius) !important;
    color: var(--gw-black) !important;
    font-family: var(--gw-font-display) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    padding: 14px 32px !important;
    cursor: pointer !important;
    transition: all var(--gw-transition) !important;
}

body.gw-streaming .ihc-locker-wrap input[type="submit"]:hover,
body.gw-streaming .ihc-locker-wrap .ihc-submit-btn:hover {
    background: var(--gw-gold-bright) !important;
    box-shadow: var(--gw-shadow-gold) !important;
}

/* ---------- WooCommerce Ready ---------- */
body.gw-streaming .woocommerce .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

body.gw-streaming .woocommerce .product {
    background: var(--gw-bg-card);
    border-radius: var(--gw-radius-lg);
    overflow: hidden;
    border: 1px solid var(--gw-border);
    transition: all var(--gw-transition);
}

body.gw-streaming .woocommerce .product:hover {
    transform: translateY(-6px);
    box-shadow: var(--gw-shadow);
    border-color: var(--gw-border-strong);
}

body.gw-streaming .woocommerce .button,
body.gw-streaming .woocommerce .add_to_cart_button {
    background: var(--gw-gold) !important;
    color: var(--gw-black) !important;
    border: none !important;
    border-radius: var(--gw-radius) !important;
    font-family: var(--gw-font-display) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .gw-card {
        width: 260px;
    }

    .gw-row__title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    :root {
        --gw-header-height: 64px;
    }

    /* Mobile nav */
    .gw-header__nav {
        display: none;
        position: fixed;
        top: var(--gw-header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(24px);
        padding: 32px 4%;
        z-index: 999;
        overflow-y: auto;
    }

    .gw-header__nav.active {
        display: block;
        animation: gw-fadeIn 0.2s ease;
    }

    .gw-nav-list {
        flex-direction: column;
        gap: 0;
    }

    .gw-nav-list li a {
        display: block !important;
        padding: 16px 0 !important;
        font-size: 20px !important;
        letter-spacing: 3px !important;
        border-bottom: 1px solid var(--gw-border) !important;
    }

    .gw-nav-list li a::after {
        display: none;
    }

    .gw-nav-list li ul.sub-menu {
        position: static;
        display: block;
        background: none;
        border: none;
        backdrop-filter: none;
        padding: 0 0 0 24px;
        box-shadow: none;
        animation: none;
    }

    .gw-header__toggle {
        display: flex;
    }

    .gw-header__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .gw-header__toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .gw-header__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Hero */
    .gw-hero {
        min-height: 75vh;
    }

    .gw-hero__content {
        padding-bottom: 60px;
    }

    .gw-hero__actions {
        flex-direction: column;
    }

    .gw-hero__actions .gw-btn {
        justify-content: center;
    }

    /* CTA */
    .gw-cta-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    /* Cards */
    .gw-card {
        width: 220px;
    }

    .gw-row__arrow {
        display: none;
    }

    /* Archive */
    .gw-archive__grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 16px;
    }

    /* Footer */
    .gw-footer__top {
        flex-direction: column;
        gap: 36px;
    }

    .gw-footer__links {
        flex-direction: column;
        gap: 32px;
    }

    .gw-footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Single */
    .gw-single__info-inner {
        padding: 0 5%;
    }
}

@media (max-width: 480px) {
    .gw-card {
        width: 175px;
    }

    .gw-card__title {
        font-size: 13px;
    }

    .gw-card__meta {
        font-size: 11px;
    }

    .gw-hero__title {
        font-size: 32px;
    }

    .gw-archive__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gw-logo-go,
    .gw-logo-wrestle {
        font-size: 26px;
    }
}

/* ---------- Utility: body scroll lock ---------- */
body.gw-menu-open {
    overflow: hidden;
}
