/* ── Community Hub redesign (Discover-style) ── */
.gcm-page--hub {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 8px 0 56px;
    box-sizing: border-box;
}

.gcm-rail-scroll {
    scrollbar-width: thin;
    scrollbar-color: #7c3aed #000;
}

.gcm-rail-scroll::-webkit-scrollbar {
    height: 8px;
    background: #000;
}

.gcm-rail-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #6d28d9, #8b5cf6);
    border-radius: 999px;
}

.gcm-rail-scroll::-webkit-scrollbar-track {
    background: #000;
}

.gcm-flag {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    flex-shrink: 0;
}

.gcm-flag__img {
    display: block;
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.gcm-flag--inline {
    margin-right: 4px;
    vertical-align: -1px;
}

.gcm-flag--world {
    opacity: 0.85;
}

.gcm-section {
    margin-bottom: 28px;
}

.gcm-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.gcm-section-head h2 {
    margin: 0;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: #fff;
    font-weight: 850;
}

.gcm-section-sub,
.gcm-section-link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.gcm-section-link:hover {
    color: #c4b5fd;
}

.gcm-empty-block,
.gcm-empty-inline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.gcm-flag--lg {
    font-size: 16px;
}

.gcm-verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #3b82f6;
    color: #fff;
    font-size: 10px;
    margin-left: 4px;
    vertical-align: middle;
}

/* Hero event */
.gcm-hero-event {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(168, 139, 250, 0.22);
    min-height: 340px;
    margin-bottom: 28px;
    background: #0b0e14;
    width: 100%;
}

.gcm-hero-event__media {
    position: absolute;
    inset: 0;
}

.gcm-hero-event__video,
.gcm-hero-event__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gcm-hero-event__fallback {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.35), transparent 45%),
        linear-gradient(135deg, #1a1030, #0b0e14 60%);
}

.gcm-hero-event__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 6, 16, 0.92) 0%, rgba(8, 6, 16, 0.55) 52%, rgba(8, 6, 16, 0.35) 100%),
        linear-gradient(to top, rgba(8, 6, 16, 0.75), transparent 45%);
}

.gcm-hero-event__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 26px;
    min-height: 320px;
}

.gcm-hero-event__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-shrink: 0;
    min-width: 220px;
}

.gcm-hero-stats-bar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    min-width: 200px;
}

.gcm-hero-stats-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gcm-hero-stats-bar__icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 16px;
    flex-shrink: 0;
}

.gcm-hero-stats-bar__icon.is-purple {
    background: rgba(124, 58, 237, 0.25);
    border: 1px solid rgba(168, 139, 250, 0.35);
}

.gcm-hero-stats-bar__icon.is-green {
    background: rgba(34, 197, 94, 0.18);
    border: 1px solid rgba(74, 222, 128, 0.35);
}

.gcm-hero-stats-bar__copy {
    display: grid;
    gap: 1px;
}

.gcm-hero-stats-bar__copy strong {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.gcm-hero-stats-bar__copy span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.45);
}

.gcm-hero-countdown--full {
    min-width: 0;
}

.gcm-hero-countdown--full .gcm-hero-countdown__grid {
    min-width: 240px;
}

.gcm-hero-countdown__unit {
    text-align: center;
}

.gcm-hero-countdown--full .gcm-hero-countdown__grid strong {
    font-size: 24px;
    font-weight: 900;
    color: #fde047;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
}

.gcm-hero-countdown--full .gcm-hero-countdown__grid span {
    display: block;
    margin-top: 4px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.48);
}

.gcm-hero-countdown--compact {
    display: grid;
    justify-items: center;
    gap: 2px;
    padding: 14px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.45);
    min-width: 120px;
}

.gcm-hero-countdown--compact strong {
    font-size: 36px;
    font-weight: 900;
    color: #fde047;
    line-height: 1;
}

.gcm-hero-countdown--compact span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.gcm-hero-event__kicker {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(196, 181, 254, 0.85);
}

.gcm-hero-event__title {
    margin: 0 0 8px;
    max-width: 18ch;
    font-size: clamp(1.85rem, 3.8vw, 2.75rem);
    line-height: 1.05;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
}

.gcm-hero-event__prize {
    margin: 0 0 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
}

.gcm-hero-event__prize strong {
    color: #facc15;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 900;
}

.gcm-hero-event__desc {
    margin: 0 0 16px;
    max-width: 42ch;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.5;
}

.gcm-hero-event__stats {
    display: none;
}

.gcm-section-head h2 span[aria-hidden="true"] {
    margin-right: 4px;
}

.gcm-hero-stat {
    display: flex;
    flex-direction: column;
    min-width: 72px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.28);
}

.gcm-hero-stat__val {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
}

.gcm-hero-stat__val--gold {
    color: #facc15;
}

.gcm-hero-stat__lbl {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.48);
}

.gcm-hero-event__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gcm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.gcm-btn--primary {
    background: linear-gradient(92deg, #f97316, #ea580c);
    color: #fff;
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.35);
}

.gcm-btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.gcm-btn--sm {
    min-height: 34px;
    padding: 0 14px;
    font-size: 12px;
    margin-top: 10px;
    background: rgba(124, 58, 237, 0.22);
    border: 1px solid rgba(168, 139, 250, 0.35);
    color: #e9d5ff;
}

.gcm-hero-event__countdown-wrap {
    align-self: flex-start;
    flex-shrink: 0;
}

.gcm-hero-countdown-badge {
    margin-bottom: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(250, 204, 21, 0.14);
    border: 1px solid rgba(250, 204, 21, 0.35);
    color: #fde047;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
}

.gcm-hero-countdown__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(52px, 1fr));
    gap: 8px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.45);
}

.gcm-hero-countdown__grid div {
    text-align: center;
}

.gcm-hero-countdown__grid strong {
    display: block;
    font-size: 22px;
    color: #fff;
}

.gcm-hero-countdown__grid span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
}

/* Championship leaders — single horizontal row */
.gcm-championship-rail {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.gcm-champ-card {
    flex: 1 0 120px;
    max-width: 168px;
    min-width: 120px;
    display: grid;
    gap: 6px;
    justify-items: center;
    padding: 14px 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 16, 28, 0.92);
    color: inherit;
    text-decoration: none;
    transition: transform 0.14s, border-color 0.14s;
}

.gcm-champ-card:hover {
    transform: translateY(-2px);
    border-color: rgba(168, 139, 250, 0.35);
}

.gcm-champ-card.is-top-1 {
    border-color: rgba(250, 204, 21, 0.45);
    background: linear-gradient(165deg, rgba(48, 32, 8, 0.35), rgba(18, 16, 28, 0.95));
}

.gcm-champ-rank {
    font-size: 14px;
    font-weight: 900;
    color: #fcd34d;
}

.gcm-champ-avatar {
    position: relative;
    width: 56px;
    height: 56px;
}

.gcm-champ-avatar .gge-avatar-atlas,
.gcm-champ-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
}

.gcm-champ-avatar .gcm-flag {
    position: absolute;
    right: -4px;
    bottom: -4px;
    font-size: 16px;
}

.gcm-champ-name {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}

.gcm-champ-score {
    font-size: 12px;
    font-weight: 800;
    color: #c4b5fd;
}

.gcm-champ-delta {
    font-size: 11px;
    font-weight: 800;
}

.gcm-champ-delta.is-up {
    color: #4ade80;
}

.gcm-champ-delta.is-down {
    color: #f87171;
}

/* Trending games — single horizontal row */
.gcm-trending-rail {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    width: 100%;
}

.gcm-trend-card {
    flex: 0 0 168px;
    min-width: 168px;
    width: 168px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 16, 28, 0.92);
    overflow: hidden;
}

.gcm-trend-thumb {
    position: relative;
    display: block;
    aspect-ratio: 1;
    background: rgba(0, 0, 0, 0.3);
}

.gcm-trend-thumb img,
.gcm-trend-ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gcm-trend-ph {
    background: linear-gradient(135deg, #2a1f45, #12101c);
}

.gcm-trend-play {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 10px;
}

.gcm-trend-body {
    padding: 10px;
}

.gcm-trend-title {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gcm-trend-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
}

.gcm-trend-like {
    color: #fb7185;
}

.gcm-trend-engage {
    color: #4ade80;
    font-weight: 800;
}

/* Discovery row — Featured | Weekly Creators | Rising | Players */
.gcm-discovery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
    align-items: stretch;
    width: 100%;
}

.gcm-discovery--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gcm-discovery > .gcm-top-panel,
.gcm-discovery > .gcm-fc-panel,
.gcm-discovery > .gcm-fc-premium {
    height: 100%;
    min-width: 0;
}

@media (max-width: 1180px) {
    .gcm-discovery,
    .gcm-discovery--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .gcm-discovery,
    .gcm-discovery--four {
        grid-template-columns: 1fr;
    }
}

/* Featured Creator card */
.gcm-fc-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(168, 139, 250, 0.22);
    background: linear-gradient(165deg, rgba(36, 24, 58, 0.55), rgba(12, 10, 20, 0.95));
    min-height: 100%;
    box-sizing: border-box;
}

.gcm-fc-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gcm-fc-head__icon {
    color: #fcd34d;
    font-size: 16px;
}

.gcm-fc-head h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 850;
    color: #fff;
}

.gcm-fc-profile {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.gcm-fc-avatar-wrap {
    position: relative;
    flex-shrink: 0;
    text-decoration: none;
}

.gcm-fc-avatar-img,
.gcm-fc-avatar-atlas {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(168, 139, 250, 0.35);
}

.gcm-fc-flag {
    position: absolute;
    right: -2px;
    bottom: -2px;
    font-size: 18px;
    line-height: 1;
}

.gcm-fc-identity {
    min-width: 0;
    flex: 1;
}

.gcm-fc-name {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
}

.gcm-fc-handle {
    margin: 4px 0 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.gcm-fc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gcm-fc-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gcm-fc-badge--gold {
    color: #fde047;
    border-color: rgba(250, 204, 21, 0.25);
    background: rgba(250, 204, 21, 0.08);
}

.gcm-fc-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 10px 4px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gcm-fc-stat {
    text-align: center;
    padding: 0 6px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.gcm-fc-stat:last-child {
    border-right: 0;
}

.gcm-fc-stat strong {
    display: block;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
}

.gcm-fc-stat span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gcm-fc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.35);
    border: 1px solid rgba(168, 139, 250, 0.45);
    color: #f3e8ff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.14s;
}

.gcm-fc-cta:hover {
    background: rgba(124, 58, 237, 0.5);
}

.gcm-fc-games {
    margin-top: auto;
}

.gcm-fc-games__title {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.gcm-fc-games__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.gcm-fc-game {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gcm-fc-game img,
.gcm-fc-game-ph {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gcm-fc-game-ph {
    background: linear-gradient(135deg, #2a1f45, #12101c);
}

/* Championship panel (middle column) */
.gcm-champ-panel {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 16, 28, 0.92);
    min-height: 100%;
    box-sizing: border-box;
}

.gcm-champ-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.gcm-champ-panel__title {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.gcm-champ-panel__icon {
    font-size: 18px;
}

.gcm-champ-panel__title h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 850;
    color: #fff;
}

.gcm-champ-board {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    flex: 1;
    min-height: 0;
}

.gcm-champ-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
    align-content: start;
}

.gcm-champ-row {
    display: grid;
    grid-template-columns: 24px 36px minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: inherit;
    text-decoration: none;
    transition: background 0.14s;
}

.gcm-champ-row:hover {
    background: rgba(124, 58, 237, 0.12);
}

.gcm-champ-row.is-top-1 .gcm-champ-row__rank,
.gcm-champ-row.is-top-2 .gcm-champ-row__rank,
.gcm-champ-row.is-top-3 .gcm-champ-row__rank {
    color: #fcd34d;
}

.gcm-champ-row__rank {
    font-size: 13px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.gcm-champ-row__avatar {
    position: relative;
    width: 32px;
    height: 32px;
}

.gcm-champ-row__avatar .gge-avatar-atlas,
.gcm-champ-row__avatar img {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    object-fit: cover;
}

.gcm-champ-row__flag {
    position: absolute;
    right: -4px;
    bottom: -4px;
    font-size: 11px;
    line-height: 1;
}

.gcm-champ-row__meta {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.gcm-champ-row__meta strong {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gcm-champ-row__meta small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
}

.gcm-champ-row__pts {
    font-size: 11px;
    font-weight: 800;
    color: #c4b5fd;
    white-space: nowrap;
}

.gcm-champ-row__delta {
    font-size: 11px;
    font-weight: 800;
    min-width: 36px;
    text-align: right;
    color: rgba(255, 255, 255, 0.35);
}

.gcm-champ-row__delta.is-up {
    color: #4ade80;
}

.gcm-champ-row__delta.is-down {
    color: #f87171;
}

.gcm-champ-aside {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 132px;
    flex-shrink: 0;
}

.gcm-champ-prize,
.gcm-champ-ends {
    padding: 10px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gcm-champ-prize h3 {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 800;
    color: #c4b5fd;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gcm-champ-prize ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.gcm-champ-prize li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 6px;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
}

.gcm-champ-prize li small {
    display: block;
    grid-column: 2;
    font-size: 9px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
}

.gcm-champ-ends {
    text-align: center;
}

.gcm-champ-ends__lbl {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.gcm-champ-ends__cd strong {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #a78bfa;
    line-height: 1;
}

.gcm-champ-ends__cd span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
}

@media (max-width: 680px) {
    .gcm-champ-board {
        grid-template-columns: 1fr;
    }

    .gcm-champ-aside {
        width: 100%;
        flex-direction: row;
    }

    .gcm-champ-prize,
    .gcm-champ-ends {
        flex: 1;
    }
}

/* Right column top panels */
.gcm-top-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 16, 28, 0.92);
    min-width: 0;
}

.gcm-top-panel--compact {
    flex: 0 0 auto;
}

.gcm-top-panel__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.gcm-top-panel__head h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 850;
    color: #fff;
}

.gcm-top-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 5px;
    flex: 1;
}

.gcm-top-list a {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: inherit;
    text-decoration: none;
}

.gcm-top-list a:hover {
    background: rgba(124, 58, 237, 0.12);
}

.gcm-top-list--compact a {
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.gcm-top-rank {
    width: 18px;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.55);
}

.gcm-top-rank.is-gold {
    color: #fcd34d;
}

.gcm-top-avatar {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.gcm-top-avatar .gge-avatar-atlas,
.gcm-top-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    object-fit: cover;
}

.gcm-top-meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    justify-content: center;
}

.gcm-top-meta strong {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gcm-top-meta small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
}

.gcm-top-val {
    justify-self: end;
    text-align: right;
    font-size: 12px;
    font-weight: 850;
    color: #c4b5fd;
    white-space: nowrap;
    flex-shrink: 0;
}

.gcm-top-val.is-up {
    color: #4ade80;
}

/* Legacy featured / mid-grid (unused but kept for safety) */
.gcm-mid-grid {
    display: none;
}

.gcm-featured-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(168, 139, 250, 0.22);
    background: linear-gradient(165deg, rgba(36, 24, 58, 0.55), rgba(12, 10, 20, 0.95));
}

.gcm-featured-top {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
}

.gcm-featured-avatar {
    position: relative;
    flex-shrink: 0;
}

.gcm-featured-avatar-img,
.gcm-featured-avatar-atlas {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
}

.gcm-featured-avatar .gcm-flag--lg {
    position: absolute;
    right: -4px;
    bottom: -4px;
}

.gcm-featured-name {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
}

.gcm-featured-handle {
    margin: 2px 0 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.gcm-featured-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

.gcm-featured-stats strong {
    color: #fff;
}

.gcm-featured-games {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.gcm-featured-game {
    flex: 0 0 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
}

.gcm-featured-game img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gcm-mini-panel {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 16, 28, 0.92);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.gcm-mini-panel h3 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #fff;
}

.gcm-mini-sub {
    display: block;
    margin: -6px 0 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.gcm-mini-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.gcm-mini-list a {
    display: grid;
    grid-template-columns: auto auto auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: inherit;
    text-decoration: none;
}

.gcm-mini-list a:hover {
    background: rgba(124, 58, 237, 0.12);
}

.gcm-mini-rank {
    width: 18px;
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    color: #fcd34d;
}

.gcm-mini-avatar {
    width: 28px;
    height: 28px;
}

.gcm-mini-avatar .gge-avatar-atlas,
.gcm-mini-avatar img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    object-fit: cover;
}

.gcm-mini-name {
    min-width: 0;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gcm-mini-name small {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

.gcm-mini-val {
    font-size: 12px;
    font-weight: 800;
    color: #c4b5fd;
    white-space: nowrap;
}

.gcm-mini-val.is-up {
    color: #4ade80;
}

/* Unified Live Activity rail (plays + building) */
.gcm-live--unified {
    margin: 0 0 26px;
}

.gcm-live--unified .gcm-live-stage {
    min-height: 118px;
}

.gcm-live--unified .gcm-live-card--creating {
    border-color: rgba(251, 146, 60, 0.22);
    background: rgba(20, 14, 10, 0.96);
}

/* Live Activity + Creating now — shared horizontal strip (legacy; unused) */
.gcm-live-duo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
    margin: 0 0 26px;
}

.gcm-live-duo > .gcm-section.gcm-live {
    margin: 0;
    min-width: 0;
    height: 100%;
}

.gcm-live-duo .gcm-live-card {
    flex: 0 0 min(200px, 42%);
    min-width: 160px;
}

.gcm-live-duo .gcm-live-stage {
    min-height: 108px;
}

@media (max-width: 980px) {
    .gcm-live-duo {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gcm-live-duo .gcm-live-card {
        flex: 0 0 min(220px, 18vw);
        min-width: 180px;
    }
}

/* Live activity — spotlight strip (below hero) */
.gcm-live--spotlight {
    position: relative;
    margin: 0 0 26px;
    padding: 16px 18px 18px;
    border-radius: 18px;
    border: 1px solid rgba(239, 68, 68, 0.28);
    background:
        linear-gradient(180deg, rgba(239, 68, 68, 0.1) 0%, rgba(14, 12, 22, 0.82) 42%, rgba(10, 8, 18, 0.94) 100%);
    box-shadow:
        0 0 48px rgba(239, 68, 68, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.gcm-live-spotlight-bar {
    position: absolute;
    top: 0;
    left: -40%;
    width: 180%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(239, 68, 68, 0.15) 18%,
        #ef4444 42%,
        #fca5a5 50%,
        #ef4444 58%,
        rgba(239, 68, 68, 0.15) 82%,
        transparent 100%
    );
    animation: gcm-live-line-scan 4.5s linear infinite;
    pointer-events: none;
}

@keyframes gcm-live-line-scan {
    0% {
        transform: translateX(-12%);
    }

    100% {
        transform: translateX(12%);
    }
}

.gcm-live-head {
    margin-bottom: 12px;
}

.gcm-live-head__title-wrap {
    min-width: 0;
}

.gcm-live-head h2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.gcm-live-head__sub {
    margin: 4px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.42);
}

.gcm-live-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #fecaca;
    background: rgba(239, 68, 68, 0.22);
    border: 1px solid rgba(248, 113, 113, 0.45);
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.25);
    animation: gcm-live-badge-pulse 2.4s ease-in-out infinite;
}

@keyframes gcm-live-badge-pulse {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.72;
    }
}

.gcm-live-pulse {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ef4444;
    box-shadow:
        0 0 0 0 rgba(239, 68, 68, 0.7),
        0 0 8px rgba(239, 68, 68, 0.55);
    animation: gcm-live-pulse 1.6s ease-out infinite;
}

@keyframes gcm-live-pulse {
    0% {
        box-shadow:
            0 0 0 0 rgba(239, 68, 68, 0.65),
            0 0 8px rgba(239, 68, 68, 0.55);
    }

    70% {
        box-shadow:
            0 0 0 12px rgba(239, 68, 68, 0),
            0 0 4px rgba(239, 68, 68, 0.25);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(239, 68, 68, 0),
            0 0 8px rgba(239, 68, 68, 0.45);
    }
}

.gcm-live-empty {
    margin: 0;
    padding: 8px 0 4px;
}

.gcm-live-stage-wrap {
    padding-bottom: 6px;
    mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}

.gcm-live--spotlight .gcm-live-card {
    border-color: rgba(239, 68, 68, 0.16);
    background: rgba(12, 10, 18, 0.96);
}

.gcm-live-stage {
    display: flex;
    gap: 12px;
    min-height: 118px;
    align-items: stretch;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.gcm-live.is-rotating .gcm-live-stage {
    opacity: 0.72;
    transform: translateY(2px);
}

.gcm-live-card {
    flex: 0 0 min(220px, 18vw);
    min-width: 180px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(14, 12, 22, 0.94);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    animation: gcm-live-card-in 0.35s ease both;
    animation-delay: calc(var(--gcm-live-i, 0) * 45ms);
}

@keyframes gcm-live-card-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gcm-live-card__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.gcm-live-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid rgba(168, 139, 250, 0.35);
    background: rgba(124, 58, 237, 0.18);
    display: grid;
    place-items: center;
}

.gcm-live-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gcm-live-card__initial {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
}

.gcm-live-card__icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    border: 1px solid transparent;
}

.gcm-live-card__icon--play {
    color: #c4b5fd;
    background: rgba(124, 58, 237, 0.22);
    border-color: rgba(168, 139, 250, 0.35);
}

.gcm-live-card__icon--like {
    color: #fda4af;
    background: rgba(244, 63, 94, 0.16);
    border-color: rgba(251, 113, 133, 0.35);
}

.gcm-live-card__icon--share {
    color: #67e8f9;
    background: rgba(6, 182, 212, 0.16);
    border-color: rgba(34, 211, 238, 0.35);
}

.gcm-live-card__icon--publish {
    color: #fcd34d;
    background: rgba(250, 204, 21, 0.14);
    border-color: rgba(251, 191, 36, 0.35);
}

.gcm-live-card__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    justify-content: center;
}

.gcm-live-card__name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.gcm-live-card__name {
    font-size: 13px;
    font-weight: 850;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gcm-live-card__guest {
    flex-shrink: 0;
    padding: 2px 6px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
}

.gcm-live-card__action {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.48);
    text-transform: lowercase;
}

.gcm-live-card__game {
    font-size: 12px;
    font-weight: 800;
    color: #4ade80;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gcm-live-card__ago {
    margin-top: 2px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.38);
}

@media (max-width: 900px) {
    .gcm-live-card {
        flex-basis: 200px;
        min-width: 170px;
    }
}

@media (max-width: 640px) {
    .gcm-live-stage {
        min-height: 108px;
    }

    .gcm-live-card {
        flex-basis: 78vw;
        min-width: 240px;
    }
}

/* Bottom grid */
.gcm-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.gcm-creating-now {
    margin-bottom: 4px;
}

.gcm-creating-now .gcm-creating-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.gcm-creating-now .gcm-creating-head h2 {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(18px, 2vw, 22px);
    color: #fff;
}

.gcm-creating-fire {
    display: inline-grid;
    place-items: center;
    font-size: 18px;
    filter: drop-shadow(0 0 8px rgba(251, 146, 60, 0.55));
    animation: gcm-creating-fire-pulse 1.4s ease-in-out infinite;
}

@keyframes gcm-creating-fire-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.82;
    }
}

.gcm-creating-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(251, 191, 36, 0.95);
    border: 1px solid rgba(251, 146, 60, 0.35);
    background: rgba(251, 146, 60, 0.1);
    border-radius: 999px;
    padding: 4px 10px;
    animation: gcm-live-badge-pulse 2.4s ease-in-out infinite;
}

.gcm-live-card--creating {
    border-color: rgba(251, 146, 60, 0.22);
    background: rgba(20, 14, 10, 0.96);
}

.gcm-live-card--link {
    color: inherit;
    text-decoration: none;
    transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.gcm-live-card--link:hover {
    transform: translateY(-2px);
    border-color: rgba(251, 146, 60, 0.42);
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.12);
}

.gcm-live-card__icon--creating {
    background: rgba(251, 146, 60, 0.16);
    border-color: rgba(251, 146, 60, 0.35);
    color: #fdba74;
    animation: gcm-creating-fire-pulse 1.4s ease-in-out infinite;
}

.gcm-live-stage--creating {
    min-height: 112px;
}

.gcm-panel-block {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 16, 28, 0.92);
    min-width: 0;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.gcm-panel-block h3 {
    margin: 0 0 12px;
    font-size: 14px;
    color: #fff;
}

.gcm-event-cards {
    display: grid;
    gap: 8px;
}

.gcm-event-card {
    display: grid;
    gap: 4px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
    text-decoration: none;
}

.gcm-event-card strong {
    color: #fff;
    font-size: 13px;
}

.gcm-event-card span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
}

.gcm-event-card__cta {
    color: #c4b5fd !important;
    font-weight: 800;
}

.gcm-jam-teaser {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(168, 139, 250, 0.22);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(14, 12, 22, 0.92) 100%);
}

.gcm-jam-teaser__icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    font-size: 22px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(168, 139, 250, 0.28);
}

.gcm-jam-teaser__copy {
    min-width: 0;
}

.gcm-jam-teaser__kicker {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c4b5fd;
}

.gcm-jam-teaser__when {
    display: block;
    margin-top: 2px;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
}

.gcm-jam-teaser__body {
    margin: 6px 0 0;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.58);
}

.gcm-tournament-list {
    display: grid;
    gap: 8px;
}

.gcm-tournament-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
    text-decoration: none;
}

.gcm-tournament-row--rich {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
}

.gcm-tournament-thumb {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.18);
    border: 1px solid rgba(168, 139, 250, 0.22);
}

.gcm-tournament-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gcm-tournament-thumb__ph {
    font-size: 18px;
}

.gcm-tournament-copy {
    display: grid;
    min-width: 0;
    flex: 1;
    gap: 2px;
}

.gcm-tournament-copy strong {
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gcm-tournament-copy small {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.48);
}

.gcm-tournament-badge {
    flex-shrink: 0;
    padding: 3px 8px;
    border-radius: 999px;
    font-style: normal;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.gcm-tournament-badge.is-live {
    color: #fecaca;
    background: rgba(239, 68, 68, 0.22);
    border: 1px solid rgba(248, 113, 113, 0.35);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.18);
}

.gcm-tournament-status {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.gcm-tournament-status.is-live {
    color: #4ade80;
}

.gcm-tournament-name {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gcm-tournament-cta {
    font-size: 11px;
    font-weight: 800;
    color: #c4b5fd;
}

.gcm-hof-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.gcm-panel-block--hof .gcm-hof-head {
    margin-bottom: 10px;
}

.gcm-hof-sub {
    margin: 4px 0 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.42);
}

.gcm-hof-boards {
    display: grid;
    gap: 12px;
}

.gcm-hof-board h4 {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.72);
}

.gcm-hof-slots {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.gcm-hof-slot,
.gcm-hof-slot a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.gcm-hof-slot {
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
}

.gcm-hof-slot.is-empty {
    opacity: 0.72;
}

.gcm-hof-rank {
    display: inline-grid;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    place-items: center;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.06);
}

.gcm-hof-slot:not(.is-empty) .gcm-hof-rank {
    color: rgba(250, 204, 21, 0.95);
    background: rgba(250, 204, 21, 0.12);
}

.gcm-mini-avatar--empty {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
    border: 1px dashed rgba(255, 255, 255, 0.12);
}

.gcm-hof-copy {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.gcm-hof-copy strong {
    font-size: 12px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gcm-hof-copy span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.45);
}

.gcm-hof-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.gcm-hof-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.gcm-hof-copy strong {
    font-size: 12px;
    color: #fde047;
}

.gcm-hof-copy span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Stats row with icons */
.gcm-stats-row {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 28px;
}

.gcm-stats-row--icons .gcm-stat-tile {
    display: grid;
    justify-items: center;
    gap: 6px;
    padding: 16px 10px;
}

.gcm-stat-tile__icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    font-size: 18px;
}

.gcm-stat-tile--purple .gcm-stat-tile__icon {
    background: rgba(124, 58, 237, 0.22);
    border: 1px solid rgba(168, 139, 250, 0.3);
}

.gcm-stat-tile--blue .gcm-stat-tile__icon {
    background: rgba(59, 130, 246, 0.18);
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.gcm-stat-tile--green .gcm-stat-tile__icon {
    background: rgba(34, 197, 94, 0.16);
    border: 1px solid rgba(74, 222, 128, 0.28);
}

.gcm-stat-tile--pink .gcm-stat-tile__icon {
    background: rgba(244, 63, 94, 0.16);
    border: 1px solid rgba(251, 113, 133, 0.28);
}

.gcm-stat-tile--cyan .gcm-stat-tile__icon {
    background: rgba(6, 182, 212, 0.16);
    border: 1px solid rgba(34, 211, 238, 0.28);
}

.gcm-stat-tile--orange .gcm-stat-tile__icon {
    background: rgba(249, 115, 22, 0.16);
    border: 1px solid rgba(251, 146, 60, 0.28);
}

/* How scoring works — simplified */
.gcm-scoring--simple {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 20px;
    padding: 20px;
    margin-bottom: 28px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 16, 28, 0.92);
}

.gcm-scoring--simple h2 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: #fff;
}

.gcm-scoring--simple p {
    margin: 0 0 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.gcm-scoring-formula {
    margin-bottom: 12px !important;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(168, 139, 250, 0.18);
}

.gcm-scoring-formula strong {
    display: block;
    margin-bottom: 4px;
    color: #e9d5ff;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gcm-scoring-policy {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.22);
    background: rgba(250, 204, 21, 0.06);
}

.gcm-scoring-policy__icon {
    flex-shrink: 0;
    font-size: 18px;
    line-height: 1.2;
}

.gcm-scoring-policy p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
}

.gcm-scoring-weekly-note {
    margin: 0 0 10px !important;
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.42) !important;
}

.gcm-scoring-weights-title {
    width: 100%;
    flex: 0 0 100%;
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

.gcm-scoring-actions {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gcm-scoring-actions li {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(168, 139, 250, 0.22);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
}

.gcm-scoring-actions strong {
    color: #4ade80;
    margin-right: 4px;
}

.gcm-scoring__weights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

.gcm-scoring-weight {
    display: grid;
    justify-items: center;
    gap: 6px;
    min-width: 72px;
}

.gcm-scoring-weight__ring {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    border: 3px solid currentColor;
}

.gcm-scoring-weight--purple .gcm-scoring-weight__ring { color: #a78bfa; background: rgba(124, 58, 237, 0.15); }
.gcm-scoring-weight--pink .gcm-scoring-weight__ring { color: #fb7185; background: rgba(244, 63, 94, 0.12); }
.gcm-scoring-weight--cyan .gcm-scoring-weight__ring { color: #22d3ee; background: rgba(6, 182, 212, 0.12); }
.gcm-scoring-weight--green .gcm-scoring-weight__ring { color: #4ade80; background: rgba(34, 197, 94, 0.12); }
.gcm-scoring-weight--gold .gcm-scoring-weight__ring { color: #fcd34d; background: rgba(250, 204, 21, 0.1); }

.gcm-scoring-weight__lbl {
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

@media (max-width: 900px) {
    .gcm-scoring--simple {
        grid-template-columns: 1fr;
    }
}

.gcm-stat-tile {
    padding: 14px 10px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 16, 28, 0.92);
    text-align: center;
}

.gcm-stat-tile__val {
    display: block;
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 900;
    color: #fff;
}

.gcm-stat-tile__lbl {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.45);
}

.gcm-rules--hub {
    margin-top: 0;
}

@media (max-width: 1100px) {
    .gcm-bottom-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gcm-stats-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .gcm-hero-event__content {
        flex-direction: column;
        min-height: 0;
    }

    .gcm-hero-event__aside {
        align-items: stretch;
        min-width: 0;
    }

    .gcm-hero-stats-bar {
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .gcm-bottom-grid {
        grid-template-columns: 1fr;
    }

    .gcm-stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gcm-hero-event__title {
        max-width: none;
    }
}

/* Hero — cinema + tournament clarity */
.gcm-hero-event--cinema .gcm-hero-event__content {
    min-height: 360px;
}

.gcm-hero-tournament-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.gcm-tournament-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.gcm-tournament-chip--monthly {
    background: rgba(250, 204, 21, 0.12);
    border: 1px solid rgba(250, 204, 21, 0.35);
    color: #fde047;
}

.gcm-tournament-chip--weekly {
    background: rgba(124, 58, 237, 0.16);
    border: 1px solid rgba(168, 139, 250, 0.35);
    color: #e9d5ff;
}

.gcm-hero-event__weekly-note {
    margin: 0 0 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 48ch;
}

.gcm-hero-stats-bar.gcd-hero-stats--tiles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    min-width: 280px;
}

.gcm-hero-stats-bar .gcd-hero-stat-tile {
    padding: 10px 8px;
}

.gcm-hero-stats-bar .gcd-hero-stat-val {
    font-size: clamp(18px, 2vw, 24px);
}

.gcm-hero-stat-tile--cash .gcd-hero-stat-val {
    color: #fde047;
}

.gcm-hero-stat-tile--cash .gcd-hero-stat-ico.is-green {
    color: #4ade80;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 12px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
}

.gcm-hero-countdown-sub {
    margin: 6px 0 0;
    font-size: 11px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.gcm-section-desc {
    margin: 4px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 62ch;
}

/* Featured Creator — premium card */
.gcm-fc-premium {
    width: 100%;
}

.gcm-fc-premium__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.gcm-fc-premium__head-copy h2 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
}

.gcm-fc-premium__head-copy p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.gcm-fc-premium__head-link {
    flex-shrink: 0;
    font-size: 13px;
    font-weight: 700;
    color: #c4b5fd;
    text-decoration: none;
}

.gcm-fc-premium__head-link:hover {
    color: #e9d5ff;
}

.gcm-fc-premium__card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(124, 58, 237, 0.28);
    background:
        radial-gradient(circle at 12% 0%, rgba(124, 58, 237, 0.12), transparent 42%),
        linear-gradient(165deg, rgba(22, 16, 36, 0.98), rgba(8, 6, 14, 0.98));
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.gcm-fc-premium__banner {
    position: absolute;
    inset: 0 0 auto;
    height: 120px;
    overflow: hidden;
    pointer-events: none;
}

.gcm-fc-premium__banner img,
.gcm-fc-premium__banner-atlas,
.gcm-fc-premium__banner-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(1px) saturate(1.1);
    transform: scale(1.04);
}

.gcm-fc-premium__banner-atlas {
    position: absolute;
    inset: 0;
}

.gcm-fc-premium__banner-fallback {
    display: block;
    background:
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.35), transparent 45%),
        linear-gradient(125deg, #1a1030, #07050f);
}

.gcm-fc-premium__banner-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 6, 14, 0.15) 0%, rgba(8, 6, 14, 0.92) 100%);
}

.gcm-fc-premium__hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
}

.gcm-fc-premium__profile {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-width: 0;
}

.gcm-fc-premium__avatar {
    position: relative;
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    text-decoration: none;
}

.gcm-fc-premium__avatar .gge-avatar-atlas,
.gcm-fc-premium__avatar img {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    object-fit: cover;
    border: 3px solid rgba(168, 139, 250, 0.55);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.gcm-fc-premium__flag {
    position: absolute;
    right: -2px;
    bottom: -2px;
    font-size: 18px;
    line-height: 1;
}

.gcm-fc-premium__identity {
    min-width: 0;
    flex: 1;
    padding-top: 4px;
}

.gcm-fc-premium__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    color: #fde68a;
    background: rgba(124, 58, 237, 0.22);
    border: 1px solid rgba(168, 139, 250, 0.35);
}

.gcm-fc-premium__name {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    line-height: 1.15;
}

.gcm-fc-premium__name:hover {
    color: #e9d5ff;
}

.gcm-fc-premium__handle {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
}

.gcm-fc-premium__country {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.gcm-fc-premium__bio {
    margin: 8px 0 0;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.62);
}

.gcm-fc-premium__bio--muted {
    color: rgba(255, 255, 255, 0.42);
    font-style: italic;
}

.gcm-fc-premium__champ {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    padding: 14px 16px;
    border-radius: 16px;
    text-align: center;
    background: rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(250, 204, 21, 0.18);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.gcm-fc-premium__champ-ico {
    font-size: 22px;
    margin-bottom: 4px;
}

.gcm-fc-premium__champ-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
}

.gcm-fc-premium__champ-pool {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.gcm-fc-premium__champ-prize {
    display: block;
    margin-top: 2px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    color: #fcd34d;
    text-shadow: 0 0 24px rgba(250, 204, 21, 0.25);
}

.gcm-fc-premium__champ-sub {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.45);
}

.gcm-fc-premium__champ-split {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.72);
}

.gcm-fc-premium__stats {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 12px 8px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gcm-fc-premium__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.gcm-fc-premium__stat:last-child {
    border-right: 0;
}

.gcm-fc-premium__stat-ico {
    display: inline-flex;
    color: #a78bfa;
}

.gcm-fc-premium__stat strong {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.gcm-fc-premium__stat span:last-child {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.gcm-fc-premium__games-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.gcm-fc-premium__games-head h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 850;
    color: #fff;
}

.gcm-fc-premium__games-link {
    font-size: 12px;
    font-weight: 700;
    color: #c4b5fd;
    text-decoration: none;
}

.gcm-fc-premium__games-link:hover {
    color: #e9d5ff;
}

.gcm-fc-premium__games-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gcm-fc-premium__game {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.gcm-fc-premium__game-thumb {
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.gcm-fc-premium__game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.18s ease;
}

.gcm-fc-premium__game:hover .gcm-fc-premium__game-thumb img {
    transform: scale(1.04);
}

.gcm-fc-premium__game strong {
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
}

.gcm-fc-premium__game-meta {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: rgba(167, 139, 250, 0.85);
}

.gcm-fc-premium__cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7c3aed, #6d28d9 55%, #5b21b6);
    border: 1px solid rgba(196, 181, 253, 0.35);
    color: #fff;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(91, 33, 182, 0.35);
    transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.gcm-fc-premium__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(91, 33, 182, 0.45);
    color: #fff;
}

/* Featured Creator — inline column (same row as leaderboard panels) */
.gcm-discovery .gcm-fc-premium--inline {
    display: flex;
    flex-direction: column;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(18, 16, 28, 0.92);
    box-sizing: border-box;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__head {
    margin-bottom: 10px;
    align-items: baseline;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__head-copy h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 850;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__head-copy p {
    display: none;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__head-link {
    font-size: 12px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__card {
    flex: 1;
    min-height: 0;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__banner {
    height: 58px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__hero {
    grid-template-columns: 1fr;
    gap: 8px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__profile {
    gap: 10px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__avatar,
.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__avatar .gge-avatar-atlas,
.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__avatar img {
    width: 56px;
    height: 56px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__flag {
    font-size: 14px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__identity {
    padding-top: 0;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__badge {
    margin-bottom: 5px;
    padding: 3px 8px;
    font-size: 10px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__name {
    font-size: 15px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__handle {
    font-size: 11px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__country,
.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__bio {
    display: none;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__champ {
    width: 100%;
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 4px 10px;
    padding: 8px 10px;
    text-align: left;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__champ-ico {
    margin: 0;
    font-size: 16px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__champ-label {
    flex: 1;
    min-width: 0;
    font-size: 9px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__champ-prize {
    margin: 0;
    font-size: 16px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__champ-pool {
    margin-top: 0;
    font-size: 8px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__champ-sub {
    width: 100%;
    margin: 0;
    font-size: 9px;
    line-height: 1.25;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__champ-split {
    width: 100%;
    margin-top: 6px;
    padding-top: 6px;
    gap: 4px 8px;
    font-size: 10px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__stats {
    padding: 8px 4px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__stat {
    padding: 0 4px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__stat-ico svg {
    width: 14px;
    height: 14px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__stat strong {
    font-size: 13px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__stat span:last-child {
    font-size: 9px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__games-head {
    display: none;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__games-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    margin-top: auto;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__game strong,
.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__game-meta {
    display: none;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__game-thumb {
    aspect-ratio: 1;
    border-radius: 8px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__cta {
    min-height: 34px;
    margin-top: 0;
    font-size: 12px;
    border-radius: 10px;
}

.gcm-discovery .gcm-fc-premium--inline .gcm-fc-premium__cta svg {
    width: 15px;
    height: 15px;
}

@media (max-width: 980px) {
    .gcm-fc-premium__hero {
        grid-template-columns: 1fr;
    }

    .gcm-fc-premium__champ {
        width: 100%;
        min-width: 0;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px 14px;
        text-align: left;
    }

    .gcm-fc-premium__champ-prize {
        font-size: 22px;
    }

    .gcm-fc-premium__games-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .gcm-fc-premium__head {
        flex-direction: column;
    }

    .gcm-fc-premium__profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .gcm-fc-premium__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .gcm-fc-premium__stat {
        border-right: 0;
        padding: 8px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
    }

    .gcm-fc-premium__games-grid {
        grid-template-columns: 1fr;
    }
}

.gcm-scoring-tournaments {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.gcm-scoring-tournaments li {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
}

.gcm-scoring-tournaments strong {
    color: #c4b5fd;
    margin-right: 6px;
}
