:root {
    --guide-bg: #030303;
    --guide-panel: rgba(18, 18, 18, 0.88);
    --guide-panel-strong: #171717;
    --guide-text: #ffffff;
    --guide-text-soft: rgba(255, 255, 255, 0.78);
    --guide-text-muted: rgba(255, 255, 255, 0.58);
    --guide-gold: #f1c40f;
    --guide-gold-hover: #ffd21d;
    --guide-cyan: #00d4ff;
    --guide-pink: #ec4899;
    --guide-border: rgba(241, 196, 15, 0.32);
    --guide-border-hot: rgba(241, 196, 15, 0.72);
    --guide-glow: 0 0 28px rgba(241, 196, 15, 0.32);
    --guide-radius: 12px;
}

.esports-guide-main {
    background:
        linear-gradient(90deg, rgba(0, 212, 255, 0.06), transparent 28%, rgba(236, 72, 153, 0.08) 100%),
        var(--guide-bg);
    color: var(--guide-text);
    overflow-x: hidden;
}

.guide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.esports-guide-main .esports-cursor-particle-zone {
    overflow: hidden;
}

.esports-guide-main .esports-particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.esports-guide-main .esports-cursor-particle-zone > .guide-container {
    position: relative;
    z-index: 2;
}

.guide-hero {
    position: relative;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.guide-hero-media,
.guide-hero-media img,
.guide-hero-overlay,
.guide-hero-grid {
    position: absolute;
    inset: 0;
}

.guide-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.08) contrast(1.08);
    transform: scale(1.03);
}

.guide-hero-overlay {
    background:
        radial-gradient(circle at 50% 45%, rgba(241, 196, 15, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.7) 58%, #000 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.25) 48%, rgba(0, 0, 0, 0.78) 100%);
    z-index: 2;
}

.guide-hero-grid {
    z-index: 3;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(241, 196, 15, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(241, 196, 15, 0.13) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 70%, transparent 100%);
}

.guide-hero .esports-particle-canvas {
    z-index: 3;
}

.guide-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 980px;
    padding-top: 2rem;
}

.guide-eyebrow,
.guide-section-kicker,
.guide-step-kicker {
    display: inline-block;
    color: var(--guide-gold);
    border: 1px solid var(--guide-border);
    border-radius: 999px;
    padding: 0.42rem 0.95rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16rem;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.42);
}

.guide-glitch-title {
    color: #fff;
    font-family: Urbanist, sans-serif;
    font-size: clamp(2.1rem, 5vw, 54px);
    font-weight: 950;
    line-height: 1.02;
    margin: 1.1rem auto;
    max-width: 1050px;
    text-transform: uppercase;
    text-shadow: 0 0 28px rgba(0, 0, 0, 0.75);
    position: relative;
}

.guide-title-glitch {
    position: relative;
    display: inline-block;
}

.guide-glitch-title::before,
.guide-glitch-title::after,
.guide-title-glitch::before,
.guide-title-glitch::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
}

.guide-glitch-title::before,
.guide-title-glitch::before {
    color: var(--guide-cyan);
    animation: guideGlitchLeft 4s infinite;
}

.guide-glitch-title::after,
.guide-title-glitch::after {
    color: var(--guide-pink);
    animation: guideGlitchRight 4s infinite;
}

@keyframes guideGlitchLeft {
    0%, 88%, 100% { opacity: 0; transform: translateX(0); }
    90%, 92% { opacity: 0.55; transform: translateX(-3px); }
}

@keyframes guideGlitchRight {
    0%, 89%, 100% { opacity: 0; transform: translateX(0); }
    91%, 93% { opacity: 0.45; transform: translateX(3px); }
}

.guide-hero-content > p:not(.guide-eyebrow) {
    color: var(--guide-text);
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 830px;
    margin: 0 auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.guide-hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.2rem;
}

.guide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 58px;
    border-radius: 50px;
    padding: 1rem 2.5rem;
    border: 2px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--guide-gold);
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.guide-btn-primary {
    background: var(--guide-gold);
    color: #000;
    border-color: var(--guide-gold);
}

.guide-btn-ghost {
    background: transparent;
    color: var(--guide-gold);
    border-color: var(--guide-gold);
}

.guide-btn-primary:hover {
    background: var(--guide-gold-hover);
    border-color: var(--guide-gold-hover);
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.6);
    transform: translateY(-2px);
}

.guide-btn-ghost:hover {
    background: rgba(241, 196, 15, 0.1);
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.6);
    transform: translateY(-2px);
    color: #fcb900;
}

.guide-copy-btn {
    appearance: none;
    width: fit-content;
    min-height: 50px;
    margin-top: 0.25rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-family: Urbanist, sans-serif;
}

.guide-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 650px;
    margin: 2rem auto 0;
}

.guide-hero-stat {
    border: 1px solid var(--guide-border);
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--guide-radius);
    padding: 1rem;
    backdrop-filter: blur(8px);
}

.guide-hero-stat span {
    display: block;
    color: var(--guide-gold);
    font-size: 2rem;
    font-weight: 950;
    line-height: 1;
}

.guide-hero-stat p {
    margin: 0.4rem 0 0;
    color: var(--guide-text-soft);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.guide-anchor-nav {
    --guide-anchor-top: 0px;
    position: relative;
    z-index: 30;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    padding: 2rem clamp(1rem, 2.7vw, 2rem) 1rem;
    overflow-x: auto;
    background: #03040b;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    scrollbar-width: none;
}

.guide-anchor-nav.is-pinned {
    position: fixed;
    top: var(--guide-anchor-top);
    left: 0;
    right: 0;
}

.guide-anchor-nav-placeholder {
    display: none;
}

.guide-anchor-nav-placeholder.is-active {
    display: block;
}

.guide-anchor-nav::-webkit-scrollbar {
    display: none;
}

.guide-anchor-nav a {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    padding: 0.42rem 1.05rem;
    background: rgba(255, 255, 255, 0.025);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08rem;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.guide-anchor-nav a:hover,
.guide-anchor-nav a.is-active {
    color: var(--guide-gold);
    border-color: rgba(241, 196, 15, 0.75);
    background: rgba(241, 196, 15, 0.08);
    box-shadow: inset 0 0 0 1px rgba(241, 196, 15, 0.04), 0 0 16px rgba(241, 196, 15, 0.12);
}

.guide-command-strip {
    background: #000;
    border-bottom: 1px solid var(--guide-border);
}

.guide-command-grid {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.guide-command-grid span {
    display: block;
    color: var(--guide-cyan);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
}

.guide-command-grid strong {
    color: var(--guide-text);
    font-size: 1rem;
}

.guide-command-grid a {
    color: #000;
    background: var(--guide-gold);
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    padding: 0.68rem 0.95rem;
    white-space: nowrap;
}

.guide-section {
    position: relative;
    padding: 5rem 0;
    scroll-margin-top: 150px;
}

#guide-budget,
.guide-cta {
    scroll-margin-top: 150px;
}

.guide-section:nth-of-type(even) {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.045), transparent 35%, rgba(236, 72, 153, 0.045));
}

.guide-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    margin-bottom: 2.6rem;
}

.guide-header-line {
    flex: 1;
    max-width: 240px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--guide-gold), transparent);
    position: relative;
}

.guide-header-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, var(--guide-gold-hover), transparent);
    transform: scaleX(0.22);
    animation: guideLinePulse 2.8s ease-in-out infinite;
}

@keyframes guideLinePulse {
    0%, 100% { transform: scaleX(0.18); opacity: 0.55; }
    50% { transform: scaleX(0.72); opacity: 1; }
}

.guide-section h2 {
    color: var(--guide-gold);
    font-family: Urbanist, sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    position: relative;
}

.guide-split-section h2 {
    text-align: left;
}

.guide-section h3,
.guide-section h4,
.guide-card h3,
.guide-card h4 {
    color: #fff;
    font-family: Urbanist, sans-serif;
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 0.8rem;
    text-transform: uppercase;
}

.guide-card h3 {
    font-size: 20px;
}

.guide-section-copy,
.guide-step > p,
.guide-card p,
.guide-list li {
    color: var(--guide-text-soft);
}

.guide-card-grid {
    display: grid;
    gap: 1rem;
}

.guide-card-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-card-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-card-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-card,
.guide-game-card {
    position: relative;
    overflow: hidden;
    background: var(--guide-panel);
    border: 1px solid var(--guide-border);
    border-radius: var(--guide-radius);
    padding: 1.25rem;
    min-height: 100%;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

[data-guide-select] {
    cursor: pointer;
}

.guide-card.is-selected,
.guide-game-card.is-selected,
.guide-table tr.is-selected {
    border-width: 2px;
    border-color: rgba(241, 196, 15, 0.75);
    box-shadow: inset 0 0 0 1px rgba(241, 196, 15, 0.08), 0 0 16px rgba(241, 196, 15, 0.12);
}

.guide-table tr.is-selected td {
    background: rgba(241, 196, 15, 0.08);
}

.guide-filter-btn.is-selected {
    background: rgba(241, 196, 15, 0.08);
    border-color: rgba(241, 196, 15, 0.75);
    color: var(--guide-gold);
    box-shadow: inset 0 0 0 1px rgba(241, 196, 15, 0.04), 0 0 16px rgba(241, 196, 15, 0.12);
}

.guide-card-grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.44;
    background-image:
        linear-gradient(rgba(241, 196, 15, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(241, 196, 15, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.guide-card-scanline {
    position: absolute;
    top: -40%;
    left: 0;
    width: 100%;
    height: 32%;
    background: linear-gradient(180deg, transparent, rgba(241, 196, 15, 0.12), transparent);
    opacity: 0;
    pointer-events: none;
}

.guide-card:hover .guide-card-scanline {
    opacity: 1;
    animation: guideScan 1.2s ease;
}

@keyframes guideScan {
    from { transform: translateY(0); }
    to { transform: translateY(420%); }
}

.guide-interactive-card:hover,
.guide-game-card:hover {
    border-color: var(--guide-border-hot);
    box-shadow: var(--guide-glow), inset 0 0 0 1px rgba(241, 196, 15, 0.12);
    transform: translateY(-8px);
}

.guide-card-index {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    color: rgba(241, 196, 15, 0.16);
    font-size: 3rem;
    font-weight: 950;
    line-height: 1;
}

.guide-chip {
    display: inline-block;
    color: var(--guide-pink);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.13rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.guide-meta {
    color: var(--guide-cyan) !important;
    font-weight: 800;
}

.guide-event-types .guide-event-type-card {
    --event-type-accent: var(--guide-cyan);
    --event-type-accent-rgb: 0, 212, 255;
    background: rgba(16, 16, 24, 0.82);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.guide-event-types .guide-event-type-card .guide-card-grid-bg {
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
}

.guide-event-types .guide-event-type-card .guide-chip {
    color: var(--event-type-accent);
    border: 1px solid rgba(var(--event-type-accent-rgb), 0.38);
    border-radius: 999px;
    background: rgba(var(--event-type-accent-rgb), 0.1);
    padding: 0.26rem 0.68rem;
    margin-bottom: 1rem;
    font-size: 0.68rem;
    letter-spacing: 0.12rem;
    line-height: 1;
}

.guide-event-types .guide-event-type-card .guide-meta {
    color: var(--event-type-audience, var(--event-type-accent)) !important;
}

.guide-event-types .guide-event-type-card .guide-card-index {
    color: rgba(255, 255, 255, 0.045);
}

.guide-event-types .guide-event-type-card:hover {
    border-color: rgba(var(--event-type-accent-rgb), 0.44);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.24),
        0 0 26px rgba(var(--event-type-accent-rgb), 0.18),
        inset 0 0 0 1px rgba(var(--event-type-accent-rgb), 0.12);
}

.guide-event-types .guide-event-type-card.is-selected {
    border-color: rgba(var(--event-type-accent-rgb), 0.72);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.24),
        0 0 26px rgba(var(--event-type-accent-rgb), 0.22),
        inset 0 0 0 1px rgba(var(--event-type-accent-rgb), 0.16);
}

.guide-event-types .guide-event-type-card-starter {
    --event-type-accent: #00d084;
    --event-type-accent-rgb: 0, 208, 132;
    --event-type-audience: #f1c40f;
}

.guide-event-types .guide-event-type-card-growth {
    --event-type-accent: #2f8cff;
    --event-type-accent-rgb: 47, 140, 255;
    --event-type-audience: #2f8cff;
}

.guide-event-types .guide-event-type-card-flagship {
    --event-type-accent: #f1c40f;
    --event-type-accent-rgb: 241, 196, 15;
    --event-type-audience: #f1c40f;
}

.guide-event-types .guide-event-type-card-lean {
    --event-type-accent: #9b5cff;
    --event-type-accent-rgb: 155, 92, 255;
    --event-type-audience: #b56cff;
}

.guide-timeline {
    display: grid;
    gap: 1.4rem;
    position: relative;
}

.guide-timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--guide-gold), transparent 92%);
}

.guide-step {
    position: relative;
    padding-left: 2rem;
}

.guide-step::before {
    content: '';
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 1rem;
    height: 1rem;
    background: var(--guide-gold);
    box-shadow: 0 0 18px rgba(241, 196, 15, 0.75);
    transform: rotate(45deg);
}

.guide-step-kicker {
    margin-bottom: 0.85rem;
}

.guide-game-filter-panel {
    position: relative;
    overflow: hidden;
    margin: 1.35rem 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background:
        linear-gradient(90deg, rgba(0, 212, 255, 0.07), transparent 42%, rgba(236, 72, 153, 0.07)),
        rgba(16, 16, 24, 0.82);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.018);
    padding: 0.95rem;
}

.guide-game-filter-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(241, 196, 15, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(241, 196, 15, 0.06) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
}

.guide-game-filter-head,
.guide-game-filters {
    position: relative;
    z-index: 1;
}

.guide-game-filter-head {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.guide-game-filter-head span {
    color: var(--guide-gold);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.12rem;
    line-height: 1;
    text-transform: uppercase;
}

.guide-game-filter-head strong {
    color: var(--guide-cyan);
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1;
    text-transform: uppercase;
}

.guide-game-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.guide-game-filter-btn {
    appearance: none;
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.28);
    color: rgba(255, 255, 255, 0.74);
    cursor: pointer;
    font-family: Urbanist, sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.06rem;
    line-height: 1;
    padding: 0.52rem 0.82rem;
    text-transform: uppercase;
    transition: border-color 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.guide-game-filter-btn:hover,
.guide-game-filter-btn.is-active {
    border-color: rgba(0, 212, 255, 0.74);
    background: rgba(0, 212, 255, 0.1);
    color: var(--guide-cyan);
    box-shadow: 0 0 16px rgba(0, 212, 255, 0.12), inset 0 0 0 1px rgba(0, 212, 255, 0.06);
    transform: translateY(-1px);
}

.guide-game-filter-btn.is-active {
    border-color: rgba(241, 196, 15, 0.78);
    background: rgba(241, 196, 15, 0.1);
    color: var(--guide-gold);
    box-shadow: 0 0 18px rgba(241, 196, 15, 0.14), inset 0 0 0 1px rgba(241, 196, 15, 0.08);
}

.guide-game-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.8rem;
    overflow: visible;
    padding-bottom: 0;
}

.guide-game-card {
    --game-base-rgb: 0, 208, 132;
    --game-sponsor-rgb: 241, 196, 15;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    min-height: 118px;
    padding: 0.9rem 1.05rem;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.005)),
        rgba(10, 11, 18, 0.94);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.025),
        0 12px 28px rgba(0, 0, 0, 0.22);
}

.guide-game-logo {
    position: relative;
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    min-height: 0;
    border: 1px solid rgba(241, 196, 15, 0.34);
    border-radius: 18px;
    background:
        radial-gradient(circle at 50% 20%, rgba(241, 196, 15, 0.08), transparent 58%),
        rgba(241, 196, 15, 0.045);
    box-shadow: inset 0 0 0 1px rgba(241, 196, 15, 0.04);
}

.guide-game-logo picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.guide-game-logo picture img,
.guide-game-logo img {
    display: block;
    position: relative;
    z-index: 1;
    width: 70%;
    height: 70%;
    object-fit: contain;
    margin: auto;
    opacity: 0.96;
    /* filter: grayscale(1) brightness(0) invert(1) contrast(1.12) drop-shadow(0 0 16px rgba(255, 255, 255, 0.16)); */
    mix-blend-mode: screen;
}

.guide-game-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.guide-game-card h4 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.18rem, 2.1vw, 1.75rem);
    font-size: 16px;
    line-height: 1;
    text-transform: none;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.08), 0 0 14px rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.guide-game-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
}

.guide-game-badge {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    border-radius: 999px;
    padding: 0.22rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 850;
    line-height: 1;
}

.guide-game-base {
    color: rgb(var(--game-base-rgb));
    background: rgba(var(--game-base-rgb), 0.12);
}

.guide-game-sponsor {
    color: rgb(var(--game-sponsor-rgb));
    background: rgba(var(--game-sponsor-rgb), 0.12);
}

.guide-game-format {
    color: var(--guide-cyan);
    background: rgba(0, 212, 255, 0.1);
}

.guide-game-card-pubg-mobile,
.guide-game-card-mobile-legends {
    --game-base-rgb: 155, 92, 255;
    --game-sponsor-rgb: 241, 196, 15;
}

.guide-game-card-fc-fifa {
    --game-base-rgb: 0, 208, 132;
    --game-sponsor-rgb: 255, 108, 43;
}

.guide-game-card-cod-mobile,
.guide-game-card-cs2-dota-2 {
    --game-base-rgb: 241, 196, 15;
    --game-sponsor-rgb: 255, 108, 43;
}

.guide-game-card:hover {
    border-color: rgba(241, 196, 15, 0.38);
    box-shadow:
        inset 0 0 0 1px rgba(241, 196, 15, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.26),
        0 0 18px rgba(241, 196, 15, 0.1);
}

.guide-game-card.is-selected {
    border-color: rgba(241, 196, 15, 0.75);
    box-shadow:
        inset 0 0 0 1px rgba(241, 196, 15, 0.1),
        0 16px 32px rgba(0, 0, 0, 0.26),
        0 0 22px rgba(241, 196, 15, 0.18);
}

.guide-game-card[hidden],
.guide-game-card.is-filtered-out {
    display: none !important;
}

.guide-game-empty {
    margin: 1rem 0 0;
    border: 1px solid rgba(236, 72, 153, 0.28);
    border-radius: 10px;
    background: rgba(236, 72, 153, 0.06);
    color: var(--guide-text-soft);
    font-weight: 800;
    padding: 0.95rem;
    text-align: center;
}

.guide-format-card {
    min-height: 220px;
}

.guide-format-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--guide-border);
    background: rgba(241, 196, 15, 0.08);
    color: var(--guide-gold);
    border-radius: 8px;
    font-weight: 950;
    margin-bottom: 1rem;
}

.guide-budget-filters {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin: 1.35rem 0 1.15rem;
}

.guide-filter-btn {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.025);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding: 0.55rem 1.25rem;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.08rem;
    line-height: 1;
    text-transform: uppercase;
    transition: all 0.25s ease;
    font-family: Urbanist, sans-serif;
}

.guide-filter-btn.active,
.guide-filter-btn:hover {
    background: rgba(241, 196, 15, 0.08);
    border-color: rgba(241, 196, 15, 0.75);
    color: var(--guide-gold);
    box-shadow: inset 0 0 0 1px rgba(241, 196, 15, 0.04), 0 0 16px rgba(241, 196, 15, 0.12);
    transform: translateY(-1px);
}

.guide-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(16, 16, 24, 0.88);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.guide-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

.guide-table th,
.guide-table td {
    padding: 0.95rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
}

.guide-table th {
    background: var(--guide-panel-strong);
    color: var(--guide-gold);
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
}

.guide-budget-table thead {
    display: none;
}

.guide-budget-table {
    min-width: 0;
}

.guide-budget-table td {
    padding: 0.82rem 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
}

.guide-budget-table tbody tr:last-child td {
    border-bottom: 0;
}

.guide-budget-table tbody td:last-child {
    color: #fff;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
}

.guide-budget-table tfoot td {
    border-bottom: 0;
    background: rgba(241, 196, 15, 0.08);
    color: #fff;
    font-weight: 950;
    padding: 1rem 1.15rem;
}

.guide-budget-table tfoot td:last-child {
    color: var(--guide-gold);
    font-size: 1.25rem;
    text-align: right;
    white-space: nowrap;
}

.guide-venue-card {
    --venue-accent: var(--guide-gold);
    --venue-accent-rgb: 241, 196, 15;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 318px;
    padding: 0;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(16, 16, 24, 0.88);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.guide-venue-card .guide-card-grid-bg {
    display: none;
}

.guide-venue-card:hover {
    border-color: rgba(var(--venue-accent-rgb), 0.32);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.24),
        0 0 26px rgba(var(--venue-accent-rgb), 0.12),
        inset 0 0 0 1px rgba(var(--venue-accent-rgb), 0.08);
}

.guide-venue-body {
    position: relative;
    z-index: 1;
    padding: 1.15rem 1.15rem 1rem;
}

.guide-venue-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    width: fit-content;
    border: 1px solid rgba(var(--venue-accent-rgb), 0.36);
    border-radius: 999px;
    background: rgba(var(--venue-accent-rgb), 0.1);
    color: var(--venue-accent);
    padding: 0.28rem 0.62rem;
    font-size: 0.66rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
}

.guide-venue-type-badge::before {
    font-size: 0.64rem;
    letter-spacing: 0;
}

.guide-venue-card-mid-scale {
    --venue-accent: #2f8cff;
    --venue-accent-rgb: 47, 140, 255;
}

.guide-venue-card-mid-scale .guide-venue-type-badge::before {
}

.guide-venue-card-community {
    --venue-accent: #00d084;
    --venue-accent-rgb: 0, 208, 132;
}

.guide-venue-card h3 {
    margin: 1rem 0 1.05rem;
    color: #fff;
    font-size: 1.04rem;
    line-height: 1.12;
    text-transform: none;
}

.guide-venue-detail-list {
    display: grid;
    gap: 0.8rem;
}

.guide-venue-detail {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 0.55rem;
    align-items: start;
}

.guide-venue-icon {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    color: var(--guide-gold);
    background: rgba(241, 196, 15, 0.1);
    font-size: 0.78rem;
    font-weight: 950;
    line-height: 1;
}

.guide-venue-detail-fit .guide-venue-icon {
    color: #00d084;
    background: rgba(0, 208, 132, 0.1);
}

.guide-venue-detail-contact .guide-venue-icon {
    color: #2f8cff;
    background: rgba(47, 140, 255, 0.1);
}

.guide-venue-detail p {
    margin: 0;
    color: var(--guide-text-soft);
    font-size: 0.86rem;
    line-height: 1.35;
}

.guide-venue-detail p strong {
    display: block;
    color: #fff;
    font-size: 0.78rem;
    line-height: 1.2;
}

.guide-venue-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(241, 196, 15, 0.035);
    padding: 0.9rem 1.15rem;
}

.guide-venue-footer span {
    display: block;
    color: var(--guide-text-muted);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.04rem;
}

.guide-venue-footer strong {
    display: block;
    margin-top: 0.18rem;
    color: var(--guide-gold);
    font-size: 1rem;
    font-weight: 950;
    line-height: 1;
}

.guide-venue-footer .guide-venue-arrow {
    color: var(--venue-accent);
    font-size: 1.2rem;
}

.guide-split-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2rem;
    align-items: center;
}

.guide-sponsor-formula {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 2rem;
    margin-bottom: 1.2rem;
    border: 1px solid var(--guide-border);
    background:
        linear-gradient(90deg, rgba(0, 212, 255, 0.08), transparent, rgba(236, 72, 153, 0.08)),
        #080808;
    border-radius: var(--guide-radius);
}

.guide-sponsor-formula::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(241, 196, 15, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(241, 196, 15, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
}

.guide-sponsor-formula p,
.guide-sponsor-formula strong {
    position: relative;
    z-index: 1;
}

.guide-sponsor-formula p {
    margin: 0 0 0.45rem;
    color: var(--guide-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    font-weight: 800;
}

.guide-sponsor-formula strong {
    display: block;
    color: var(--guide-gold);
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 1.1;
    text-transform: uppercase;
}

.guide-launch-checklist-section .guide-section-kicker {
    margin-bottom: 0.85rem;
}

.guide-left-title {
    color: #fff;
    font-family: Urbanist, sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 950;
    line-height: 1.05;
    margin: 0 0 0.5rem;
    text-align: left;
    text-transform: none;
}

.guide-launch-checklist-section .guide-section-copy {
    margin: 0 0 1.7rem;
}

.guide-launch-checklist {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(16, 16, 24, 0.88);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.guide-launch-checklist-item {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: center;
    padding: 0.72rem 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: #fff;
}

.guide-launch-checklist-item:last-child {
    border-bottom: 0;
}

.guide-check-icon {
    display: inline-grid;
    place-items: center;
    width: 14px;
    height: 14px;
    border: 2px solid var(--guide-gold);
    border-radius: 999px;
    color: var(--guide-gold);
    font-size: 0.48rem;
    font-weight: 950;
    line-height: 1;
}

.guide-check-task {
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.35;
}

.guide-check-time {
    justify-self: end;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--guide-text-muted);
    padding: 0.24rem 0.62rem;
    font-size: 0.66rem;
    line-height: 1;
    white-space: nowrap;
}

.guide-list {
    margin: 0;
    padding-left: 1.2rem;
}

.guide-list li {
    margin-bottom: 0.6rem;
}

.guide-download-card {
    min-height: 190px;
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(16, 16, 24, 0.88);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.guide-download-card h3 {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    margin-bottom: 0.95rem;
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.1;
    text-transform: uppercase;
}

.guide-download-card h3 span {
    color: var(--guide-gold);
    font-size: 0.9rem;
    line-height: 1;
}

.guide-mistake-card h3 span {
    color: #ff4d4d;
}

.guide-icon-list {
    display: grid;
    gap: 0.62rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.guide-icon-list li {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 0.48rem;
    align-items: start;
    color: var(--guide-text-soft);
    font-size: 0.86rem;
    line-height: 1.35;
}

.guide-icon-list li span {
    color: var(--guide-gold);
    font-size: 0.78rem;
    font-weight: 950;
    line-height: 1.35;
}

.guide-mistake-card .guide-icon-list li span {
    color: #ff4d4d;
    font-size: 0.95rem;
    line-height: 1.1;
}

.guide-download-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow:
        0 18px 42px rgba(0, 0, 0, 0.24),
        inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.guide-email-template .guide-email-body {
    background: #050505;
    border: 1px solid var(--guide-border);
    border-radius: 8px;
    padding: 1rem;
    color: var(--guide-text-soft);
    line-height: 1.65;
    margin: 1rem 0;
}

.guide-cta {
    position: relative;
    text-align: center;
    padding: 5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--guide-border);
    background:
        linear-gradient(180deg, rgba(241, 196, 15, 0.08), rgba(0, 0, 0, 0.9)),
        url("https://nooballiance.lk/wp-content/uploads/2025/08/Reset-2.jpg") center/cover no-repeat;
}

.guide-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.76);
}

.guide-cta .guide-container {
    position: relative;
    z-index: 1;
}

.guide-cta h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 1rem 0;
    text-transform: uppercase;
}

.guide-cta p {
    color: var(--guide-text-soft);
}

@media (max-width: 1120px) {
    .guide-card-grid-4,
    .guide-card-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-game-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .guide-hero-cta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 0.9rem;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .guide-hero-cta .guide-btn {
        width: 100%;
        min-width: 0;
        padding: 0.95rem 1.2rem;
    }

    .guide-hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 760px;
    }
}

@media (max-width: 768px) {
    .guide-game-filter-panel {
        padding: 0.95rem 0.4rem;
    }

    .guide-hero-cta .guide-btn {
        padding: 5px;
    }

    .guide-container {
        padding: 2rem 1rem;
    }

    .guide-hero {
        min-height: 82vh;
    }

    .guide-glitch-title {
        font-size: 2.15rem;
    }

    .guide-hero-cta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
        max-width: 100%;
    }

    .guide-btn {
        width: auto;
        min-height: 54px;
        padding: 0.95rem 0.9rem;
        font-size: 12px;
        letter-spacing: 0.08rem;
    }

    .guide-copy-btn {
        width: fit-content;
    }

    .guide-card-grid-2,
    .guide-card-grid-3,
    .guide-card-grid-4,
    .guide-split-section {
        grid-template-columns: 1fr;
    }

    .guide-hero-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .guide-hero-stat {
        padding: 0.85rem 0.55rem;
    }

    .guide-hero-stat span {
        font-size: 1.7rem;
    }

    .guide-hero-stat p {
        font-size: 0.66rem;
        line-height: 1.3;
    }

    .guide-command-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .guide-anchor-nav {
        --guide-anchor-top: 0px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .guide-anchor-nav a {
        flex: 0 0 auto;
    }

    .guide-section {
        padding: 1.5rem 0;
        scroll-margin-top: 125px;
    }

    #guide-budget,
    .guide-cta {
        scroll-margin-top: 125px;
    }

    .guide-section-header {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .guide-header-line {
        max-width: 60px;
    }

    .guide-section h2 {
        font-size: 1.55rem;
    }

    .guide-timeline::before {
        left: 0.35rem;
    }

    .guide-step {
        padding-left: 1.5rem;
    }

    .guide-game-filter-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
    }

    .guide-game-filter-btn {
        min-height: 38px;
    }

    .guide-game-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .guide-game-card {
        grid-template-columns: 1fr;
        justify-items: center;
        align-content: start;
        gap: 0.55rem;
        min-height: 128px;
        padding: 0.7rem 0.42rem;
        border-radius: 16px;
        text-align: center;
    }

    .guide-game-logo {
        width: 66px;
        height: 66px;
        border-radius: 14px;
    }

    .guide-game-logo picture {
        width: 100%;
        height: 100%;
        line-height: 0;
    }

    .guide-game-logo picture img,
    .guide-game-logo img {
        width: 72%;
        height: 72%;
    }

    .guide-game-card h4 {
        width: 100%;
        font-size: 0.72rem;
        line-height: 1.15;
        white-space: normal;
        overflow-wrap: anywhere;
        text-align: center;
    }
    

    .guide-launch-checklist-item {
        grid-template-columns: 20px minmax(0, 1fr);
    }

    .guide-check-time {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 480px) {
    .guide-glitch-title {
        font-size: 25px;
    }

    .guide-hero-content {
        padding-top: 7rem;
    }

    .guide-anchor-nav {
        display: none;
    }

    .guide-hero-cta {
        gap: 0.6rem;
    }

    .guide-btn {
        min-height: 52px;
        padding: 0.9rem 0.7rem;
        font-size: 11px;
        letter-spacing: 0.06rem;
    }

    .guide-hero-stats {
        gap: 0.55rem;
    }

    .guide-hero-stat {
        padding: 0.8rem 0.45rem;
    }

    .guide-hero-stat span {
        font-size: 1.55rem;
    }

    .guide-hero-stat p {
        font-size: 0.62rem;
    }

    .guide-game-grid {
        gap: 0.45rem;
    }

    .guide-game-card {
        min-height: 118px;
        padding: 0.62rem 0.32rem;
    }

    .guide-game-logo {
        width: 58px;
        height: 58px;
    }

    .guide-game-card h4 {
        font-size: 0.66rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .guide-glitch-title::before,
    .guide-glitch-title::after,
    .guide-title-glitch::before,
    .guide-title-glitch::after,
    .guide-header-line::after,
    .guide-card:hover .guide-card-scanline {
        animation: none !important;
    }
}
