@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800;900&display=swap");

.gcl-root,
.gcl-root * {
    box-sizing: border-box;
}

body:has(.gcl-root) > header,
body:has(.gcl-root) > footer,
body:has(.gcl-root) .site-header,
body:has(.gcl-root) .site-footer,
body:has(.gcl-root) #masthead,
body:has(.gcl-root) #colophon,
body:has(.gcl-root) .wp-site-blocks > header,
body:has(.gcl-root) .wp-site-blocks > footer {
    display: none !important;
}

.gcl-root {
    --gcl-bg: #071829;
    --gcl-bg-alt: #092037;
    --gcl-panel: rgba(11, 35, 58, 0.9);
    --gcl-card: rgba(12, 37, 62, 0.94);
    --gcl-border: rgba(120, 160, 220, 0.18);
    --gcl-text: #eff6ff;
    --gcl-text-soft: #a9bcce;
    --gcl-accent: #49f6ff;
    --gcl-accent-2: #9bff4f;
    --gcl-warn: #ffd166;
    --gcl-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    color: var(--gcl-text);
    font-family: "Exo 2", "Segoe UI", Arial, sans-serif;
}

.gcl-root [hidden] {
    display: none !important;
}

.gcl-root .gcl-site-header,
.gcl-root .gcl-site-footer {
    z-index: 20;
    background:
        linear-gradient(90deg, rgba(7, 24, 42, 0.98), rgba(9, 35, 60, 0.98)),
        #071829;
    border-color: rgba(120, 160, 220, 0.18);
}

.gcl-root .gcl-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(120, 160, 220, 0.18);
    backdrop-filter: blur(16px);
}

body.admin-bar .gcl-root .gcl-site-header {
    top: 32px;
}

.gcl-root .gcl-site-header-inner {
    display: grid;
    grid-template-columns: auto minmax(340px, 1fr) auto;
    align-items: center;
    gap: 26px;
    min-height: 84px;
    padding: 0 20px;
}

.gcl-root .gcl-site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #eff6ff;
    text-decoration: none;
}

.gcl-root .gcl-site-brand span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #58e2ff, #ffd22f);
    color: #07182a;
    font-weight: 900;
}

.gcl-root .gcl-site-brand img {
    display: block;
    width: auto;
    height: 44px;
    max-width: 180px;
    object-fit: contain;
}

.gcl-root .gcl-site-brand strong {
    font-size: 16px;
}

.gcl-root .gcl-site-header nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
}

.gcl-root .gcl-site-header nav a {
    display: inline-flex;
    align-items: center;
    min-height: 84px;
    padding: 0 24px;
    color: #eff6ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-decoration: none;
    border-inline: 1px solid transparent;
}

.gcl-root .gcl-site-header nav a:hover {
    color: var(--gcl-accent);
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(120, 160, 220, 0.12);
}

.gcl-root .gcl-site-header nav a.gcl-nav-highlight {
    min-height: 46px;
    margin-inline-start: 8px;
    padding: 0 18px;
    border: 1px solid rgba(255, 216, 61, 0.48);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffd83d, #f5b914);
    color: #07182a;
}

.gcl-root .gcl-site-header nav a.gcl-nav-highlight:hover {
    color: #07182a;
    background: linear-gradient(180deg, #ffe66a, #ffd02b);
}

.gcl-root .gcl-site-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.gcl-root .gcl-site-login,
.gcl-root .gcl-site-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    color: #eff6ff;
    text-decoration: none;
}

.gcl-root .gcl-site-login {
    gap: 8px;
    padding: 0 16px;
    border: 1px solid rgba(82, 215, 255, 0.32);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(27, 96, 148, 0.9), rgba(13, 53, 90, 0.88));
    font-size: 13px;
    font-weight: 900;
}

.gcl-root button.gcl-site-login {
    font-family: inherit;
    cursor: pointer;
}

.gcl-root .gcl-site-menu {
    width: 42px;
    border: 1px solid rgba(120, 160, 220, 0.2);
    border-radius: 8px;
    background: rgba(10, 31, 52, 0.78);
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.gcl-root .gcl-site-menu span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.gcl-root .gcl-overflow-menu {
    display: none;
    position: relative;
}

.gcl-root .gcl-overflow-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    min-width: 190px;
    padding: 10px;
    border: 1px solid rgba(120, 160, 220, 0.22);
    border-radius: 8px;
    background: rgba(5, 18, 31, 0.98);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.gcl-root .gcl-overflow-panel a {
    padding: 12px 14px;
    border-radius: 7px;
    color: #eff6ff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.gcl-root .gcl-overflow-panel a:hover {
    background: rgba(82, 215, 255, 0.12);
    color: #52d7ff;
}

.gcl-root .gcl-site-login:hover,
.gcl-root .gcl-site-menu:hover {
    color: #52d7ff;
}

.gcl-root .gcl-site-footer {
    border-top: 1px solid rgba(120, 160, 220, 0.18);
    background:
        linear-gradient(rgba(82, 215, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82, 215, 255, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 0 0, rgba(73, 246, 255, 0.12), transparent 34%),
        linear-gradient(180deg, #061522, #081c31 62%, #071829);
    background-size: 76px 76px, 76px 76px, auto, auto;
}

.gcl-root .gcl-site-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(150px, 0.8fr));
    gap: 58px;
    align-items: start;
    padding: 76px 20px 54px;
}

.gcl-root .gcl-site-footer p {
    max-width: 440px;
    margin: 12px 0 0;
    color: #a9bcce;
    font-size: 15px;
    line-height: 1.7;
}

.gcl-root .gcl-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.gcl-root .gcl-footer-badges span {
    display: inline-flex;
    min-width: 150px;
    justify-content: center;
    padding: 14px 18px;
    border: 1px solid rgba(120, 160, 220, 0.2);
    background: rgba(7, 24, 42, 0.72);
    color: #eff6ff;
    font-weight: 900;
}

.gcl-root .gcl-footer-column {
    display: grid;
    gap: 16px;
}

.gcl-root .gcl-footer-column strong {
    margin-bottom: 12px;
    color: #eff6ff;
    font-size: 18px;
    font-weight: 950;
    text-transform: uppercase;
}

.gcl-root .gcl-footer-column a,
.gcl-root .gcl-site-footer-bottom a {
    color: #b8cbe0;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.gcl-root .gcl-footer-column a:hover,
.gcl-root .gcl-site-footer-bottom a:hover {
    color: var(--gcl-accent);
}

.gcl-root .gcl-site-footer-bottom {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
    gap: 20px;
    align-items: center;
    padding: 26px 20px;
    border-top: 1px solid rgba(120, 160, 220, 0.16);
}

.gcl-root .gcl-site-footer-bottom > div:first-child,
.gcl-root .gcl-footer-socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.gcl-root .gcl-site-footer-bottom p {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

.gcl-root .gcl-footer-socials {
    justify-content: flex-end;
}

.gcl-root .gcl-footer-socials a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(82, 215, 255, 0.24);
    background: rgba(7, 24, 42, 0.76);
    color: var(--gcl-accent);
}

.gcl-root .gcl-global-login-modal[hidden] {
    display: none;
}

.gcl-root .gcl-global-login-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(0, 7, 14, 0.74);
    backdrop-filter: blur(12px);
}

.gcl-root .gcl-global-login-card {
    position: relative;
    width: min(520px, 100%);
    padding: 28px;
    border: 1px solid rgba(82, 215, 255, 0.28);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(16, 55, 86, 0.98), rgba(6, 23, 39, 0.98));
    box-shadow: var(--gcl-shadow);
}

.gcl-root .gcl-global-login-card h2 {
    margin: 10px 0 8px;
    color: #eff6ff;
    font-size: 34px;
    line-height: 1;
    text-transform: uppercase;
}

.gcl-root .gcl-global-login-card p {
    margin: 0 0 18px;
    color: #c0d4e8;
}

.gcl-root .gcl-login-status {
    margin: 14px 0;
    padding: 12px 14px;
    border: 1px solid rgba(82, 215, 255, 0.28);
    border-radius: 8px;
    background: rgba(82, 215, 255, 0.1);
    color: #d7f7ff;
    font-size: 13px;
    font-weight: 800;
}

.gcl-root .gcl-login-status[data-tone="error"] {
    border-color: rgba(255, 81, 122, 0.42);
    background: rgba(255, 81, 122, 0.12);
    color: #ffd5dd;
}

.gcl-root .gcl-login-status[data-tone="ok"] {
    border-color: rgba(155, 255, 79, 0.36);
    background: rgba(155, 255, 79, 0.1);
    color: #e6ffd8;
}

.gcl-root .gcl-global-login-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(120, 160, 220, 0.24);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #eff6ff;
    cursor: pointer;
}

.gcl-root .gcl-login-fields {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}

.gcl-root .gcl-login-fields label {
    display: grid;
    gap: 8px;
    color: #9fc0dc;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gcl-root .gcl-login-fields input {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(120, 160, 220, 0.24);
    border-radius: 6px;
    background: #061827;
    color: #eff6ff;
    padding: 0 14px;
    font: inherit;
}

@media (max-width: 1100px) {
    body.admin-bar .gcl-root .gcl-site-header {
        top: 46px;
    }

    .gcl-root .gcl-grid-2,
    .gcl-root .gcl-grid-3,
    .gcl-root .gcl-grid-4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gcl-root .gcl-site-header-inner {
        grid-template-columns: 1fr auto;
        align-items: flex-start;
        min-height: auto;
        padding: 14px 20px;
    }

    .gcl-root .gcl-site-header nav {
        display: none;
    }

    .gcl-root .gcl-overflow-menu {
        display: block;
    }
}

@media (max-width: 900px) {

    .gcl-root .gcl-site-footer-grid,
    .gcl-root .gcl-site-footer-bottom {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gcl-root .gcl-site-footer-grid {
        gap: 34px;
        padding-top: 52px;
    }

    .gcl-root .gcl-footer-brand,
    .gcl-root .gcl-site-footer-bottom p {
        grid-column: 1 / -1;
    }

    .gcl-root .gcl-site-footer-bottom p {
        text-align: left;
    }

    .gcl-root .gcl-footer-socials {
        justify-content: flex-start;
    }

    .gcl-root .gcl-info-grid {
        grid-template-columns: 1fr;
    }

    .gcl-root .gcl-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.gcl-root .gcl-svg-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gcl-root .gcl-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.gcl-root .gcl-icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.gcl-root .gcl-section {
    position: relative;
    overflow: hidden;
    padding: 72px 20px;
    background: var(--gcl-bg);
}

.gcl-root .gcl-info-page {
    min-height: 72vh;
    background:
        linear-gradient(rgba(47, 193, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 193, 255, 0.035) 1px, transparent 1px),
        #07182a;
    background-size: 34px 34px;
}

.gcl-root .gcl-info-hero {
    max-width: 860px;
    margin-bottom: 26px;
}

.gcl-root .gcl-info-hero h1 {
    margin: 0 0 12px;
    font-family: "Agency FB", "Bahnschrift", "Arial Narrow", sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.88;
    text-transform: uppercase;
}

.gcl-root .gcl-info-hero p,
.gcl-root .gcl-info-card p {
    color: #a9bcce;
}

.gcl-root .gcl-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.gcl-root .gcl-info-card {
    min-height: 190px;
    padding: 22px;
    border: 1px solid rgba(120, 160, 220, 0.2);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(77, 223, 255, 0.08), transparent 58%),
        rgba(13, 35, 59, 0.92);
}

.gcl-root .gcl-info-card h2 {
    margin: 0 0 12px;
    color: #eff6ff;
    font-size: 20px;
}

.gcl-root .gcl-section:nth-child(even) {
    background: var(--gcl-bg-alt);
}

.gcl-root .gcl-shell {
    position: relative;
    z-index: 1;
    width: min(1240px, 100%);
    margin: 0 auto;
}

.gcl-root .gcl-section-heading {
    margin-bottom: 28px;
}

.gcl-root .gcl-section-heading h2,
.gcl-root .gcl-hero-copy h2,
.gcl-root .gcl-empty h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.98;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.gcl-root .gcl-section-heading p,
.gcl-root .gcl-hero-copy p,
.gcl-root .gcl-card p,
.gcl-root .gcl-empty p,
.gcl-root .gcl-branch-banner p {
    color: var(--gcl-text-soft);
}

.gcl-root .gcl-kicker {
    display: inline-flex;
    display: none;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 12px;
    border: 1px solid var(--gcl-border);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gcl-root .gcl-grid {
    display: grid;
    gap: 20px;
}

.gcl-root .gcl-grid:has(.gcl-card:hover) .gcl-card:not(:hover) {
    filter: grayscale(0.82) brightness(0.72);
    opacity: 0.72;
}

.gcl-root .gcl-grid-2 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gcl-root .gcl-grid-3 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gcl-root .gcl-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gcl-root .gcl-card,
.gcl-root .gcl-panel,
.gcl-root .gcl-empty,
.gcl-root .gcl-branch-banner {
    border: 1px solid var(--gcl-border);
    border-radius: 8px;
    background: var(--gcl-card);
    box-shadow: var(--gcl-shadow);
    transition: transform 0.22s ease, filter 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.gcl-root .gcl-card,
.gcl-root .gcl-panel,
.gcl-root .gcl-empty {
    padding: 24px;
}

.gcl-root .gcl-card {
    position: relative;
    overflow: hidden;
    color: var(--gcl-text);
    text-decoration: none;
}

.gcl-root .gcl-card:hover {
    z-index: 2;
    transform: translateY(-8px);
    border-color: rgba(77, 223, 255, 0.42);
    box-shadow: 0 0 30px 1px rgba(77, 223, 255, 0.22), var(--gcl-shadow);
}

.gcl-root .gcl-heading-actions {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.gcl-root .gcl-heading-actions > div {
    min-width: 0;
}

.gcl-root .gcl-heading-actions .gcl-link {
    flex: 0 0 auto;
}

.gcl-root .gcl-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0 38%, rgba(77, 223, 255, 0.08) 46%, transparent 54% 100%);
    opacity: 0;
    transform: translateX(-55%);
    transition: opacity 0.22s ease, transform 0.42s ease;
}

.gcl-root .gcl-card:hover::after {
    opacity: 1;
    transform: translateX(55%);
}

.gcl-root .gcl-cover-only-card {
    min-height: 245px;
    padding: 0;
    background:
        linear-gradient(180deg, rgba(7, 24, 42, 0), rgba(7, 24, 42, 0.1)),
        var(--gcl-card-cover, linear-gradient(135deg, rgba(82, 215, 255, 0.2), rgba(255, 216, 61, 0.14)));
    background-position: center;
    background-size: cover;
}

.gcl-root .gcl-cover-only-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 28%),
        radial-gradient(circle at 50% 0, rgba(82, 215, 255, 0.18), transparent 44%);
    opacity: 0.76;
}

.gcl-root .gcl-card h3,
.gcl-root .gcl-panel h3,
.gcl-root .gcl-branch-banner h3 {
    margin: 0 0 12px;
    font-size: 1.35rem;
    line-height: 1.1;
}

.gcl-root .gcl-detail-card {
    margin-bottom: 22px;
    background:
        linear-gradient(135deg, rgba(77, 223, 255, 0.12), rgba(255, 209, 102, 0.08)),
        var(--gcl-card);
}

.gcl-root .gcl-detail-card h2 {
    margin: 0 0 12px;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 0.95;
    text-transform: uppercase;
}

.gcl-root .gcl-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.gcl-root .gcl-detail-grid span {
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--gcl-border);
    border-radius: 8px;
    background: rgba(4, 17, 31, 0.42);
}

.gcl-root .gcl-detail-grid small {
    color: var(--gcl-text-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gcl-root .gcl-pill-row,
.gcl-root .gcl-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.gcl-root .gcl-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid var(--gcl-border);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gcl-root .gcl-pill-muted {
    color: var(--gcl-text-soft);
}

.gcl-root .gcl-pill-success {
    color: var(--gcl-accent-2);
}

.gcl-root .gcl-pill-warn {
    color: var(--gcl-warn);
}

.gcl-root .gcl-stat-list,
.gcl-root .gcl-mini-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gcl-root .gcl-stat-list li,
.gcl-root .gcl-mini-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--gcl-border);
}

.gcl-root .gcl-mini-list li > strong {
    flex: 1;
    min-width: 0;
}

.gcl-root .gcl-rank-chip {
    position: relative;
    display: inline-grid;
    place-items: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
}

.gcl-root .gcl-rank-chip em {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    min-width: 27px;
    height: 22px;
    padding: 0 6px;
    border: 1px solid rgba(77, 223, 255, 0.34);
    border-radius: 999px;
    background: #061827;
    color: #4ddfff;
    font-style: normal;
    font-weight: 900;
    font-size: 11px;
    line-height: 1;
}

.gcl-root .gcl-rank-chip i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 2px solid rgba(77, 223, 255, 0.25);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(77, 223, 255, 0.95), rgba(255, 216, 61, 0.9));
    color: #061222;
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

.gcl-root .gcl-stat-list li:first-child,
.gcl-root .gcl-mini-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.gcl-root .gcl-package-grid {
    align-items: stretch;
}

.gcl-root .gcl-package-card {
    min-height: 360px;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    gap: 0;
    border-color: rgba(82, 215, 255, 0.32);
    background:
        radial-gradient(circle at 18% 0%, rgba(82, 215, 255, 0.3), transparent 36%),
        radial-gradient(circle at 94% 18%, rgba(255, 216, 61, 0.22), transparent 30%),
        linear-gradient(160deg, rgba(6, 39, 71, 0.98), rgba(3, 16, 30, 0.98) 62%, rgba(8, 27, 50, 0.98));
}

.gcl-root .gcl-package-card::before {
    content: "";
    position: absolute;
    inset: 1px;
    pointer-events: none;
    border-radius: 7px;
    background:
        linear-gradient(rgba(82, 215, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82, 215, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.65;
}

.gcl-root .gcl-package-card > * {
    position: relative;
    z-index: 1;
}

.gcl-root .gcl-package-card-top,
.gcl-root .gcl-package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gcl-root .gcl-package-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(82, 215, 255, 0.34);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(82, 215, 255, 0.22), rgba(12, 55, 92, 0.88));
    color: #52d7ff;
    box-shadow: 0 0 28px rgba(82, 215, 255, 0.16);
}

.gcl-root .gcl-package-icon .gcl-svg-icon {
    width: 26px;
    height: 26px;
}

.gcl-root .gcl-package-price {
    color: #ffd83d;
    font-size: clamp(2.2rem, 4vw, 3.65rem);
    font-weight: 950;
    line-height: 0;
    text-transform: uppercase;
    text-shadow: 0 0 22px rgba(255, 216, 61, 0.26);
}

.gcl-root .gcl-package-card h3 {
    margin: 0;
    font-size: 1.55rem;
}

.gcl-root .gcl-package-card p {
    margin: 0;
    line-height: 1.65;
}

.gcl-root .gcl-package-specs {
    display: grid;
    gap: 10px;
}

.gcl-root .gcl-package-specs span {
    display: grid;
    gap: 4px;
    padding: 10px 0;
    border-top: 1px solid rgba(120, 160, 220, 0.18);
}

.gcl-root .gcl-package-specs small,
.gcl-root .gcl-package-footer b {
    color: #8fb1cf;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gcl-root .gcl-package-specs strong {
    color: #eff6ff;
    font-size: 15px;
}

.gcl-root .gcl-package-footer {
    margin: 2px -4px -4px;
    padding-top: 14px;
    border-top: 1px solid rgba(82, 215, 255, 0.2);
}

.gcl-root .gcl-package-footer span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(255, 216, 61, 0.32);
    border-radius: 999px;
    color: #ffd83d;
    font-size: 12px;
    font-weight: 950;
}

.gcl-root .gcl-hero-layout {
    align-items: stretch;
}

.gcl-root .gcl-hero-copy {
    padding: 30px;
    border: 1px solid var(--gcl-border);
    border-radius: 8px;
    background: var(--gcl-panel);
    box-shadow: var(--gcl-shadow);
}

.gcl-root .gcl-hero-copy p {
    max-width: 62ch;
}

.gcl-root .gcl-data-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.gcl-root .gcl-metric {
    padding: 18px;
    border: 1px solid var(--gcl-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.gcl-root .gcl-metric strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.8rem;
    line-height: 1;
}

.gcl-root .gcl-metric span {
    display: block;
    font-size: 12px;
    color: var(--gcl-text-soft);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.gcl-root .gcl-updated-at {
    margin-top: 18px;
    font-size: 13px;
    color: var(--gcl-text-soft);
}

.gcl-root .gcl-branch-banner {
    padding: 28px;
    margin-bottom: 22px;
}

.gcl-root .gcl-branch-panels {
    align-items: start;
}

.gcl-root .gcl-branch-panel-stack {
    display: grid;
    gap: 20px;
}

.gcl-root .gcl-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gcl-accent);
    text-decoration: none;
    font-weight: 700;
}

.gcl-root .gcl-link:hover {
    text-decoration: underline;
}

.gcl-root .gcl-empty {
    text-align: center;
}

.gcl-root .gcl-empty p {
    margin: 12px auto 0;
    max-width: 48ch;
}

.gcl-root .gcl-leaderboard {
    display: grid;
    gap: 14px;
}

.gcl-root .gcl-leaderboard-row {
    display: grid;
    grid-template-columns: 86px 70px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border: 1px solid var(--gcl-border);
    border-radius: 8px;
    background: rgba(8, 30, 50, 0.92);
    box-shadow: var(--gcl-shadow);
}

.gcl-root .gcl-leaderboard-row.is-gold {
    border-color: rgba(255, 216, 61, 0.58);
    background: linear-gradient(90deg, rgba(255, 216, 61, 0.12), transparent 34%), rgba(8, 30, 50, 0.92);
}

.gcl-root .gcl-leaderboard-row.is-silver {
    border-color: rgba(210, 226, 238, 0.5);
    background: linear-gradient(90deg, rgba(210, 226, 238, 0.11), transparent 34%), rgba(8, 30, 50, 0.92);
}

.gcl-root .gcl-leaderboard-row.is-bronze {
    border-color: rgba(205, 127, 50, 0.48);
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.11), transparent 34%), rgba(8, 30, 50, 0.92);
}

.gcl-root .gcl-rank {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gcl-accent);
}

.gcl-root .gcl-trophy-icon {
    position: absolute;
    right: -6px;
    bottom: -4px;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 216, 61, 0.6);
    border-radius: 8px;
    background: rgba(255, 216, 61, 0.18);
    box-shadow: 0 10px 22px rgba(255, 216, 61, 0.14);
    font-size: 16px;
}

.gcl-root .is-silver .gcl-trophy-icon {
    background: rgba(210, 226, 238, 0.12);
    filter: grayscale(1) brightness(1.5);
}

.gcl-root .is-bronze .gcl-trophy-icon {
    background: rgba(205, 127, 50, 0.14);
    filter: sepia(1) saturate(0.8);
}

.gcl-root .gcl-rank-profile {
    position: relative;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
}

.gcl-root .gcl-rank-avatar {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--gcl-border);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(77, 223, 255, 0.9), rgba(255, 216, 61, 0.9));
    background-position: center;
    background-size: cover;
    color: #061222;
    font-weight: 900;
}

.gcl-root .gcl-rank-profile::before {
    content: "";
    position: absolute;
    inset: 2px;
    border: 1px solid rgba(77, 223, 255, 0.2);
    border-radius: 50%;
}

.gcl-root .gcl-player {
    min-width: 0;
}

.gcl-root .gcl-player strong,
.gcl-root .gcl-points strong {
    display: block;
}

.gcl-root .gcl-player span,
.gcl-root .gcl-points span {
    color: var(--gcl-text-soft);
    font-size: 13px;
}

.gcl-root .gcl-points {
    text-align: right;
}

.gcl-root .gcl-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gcl-root .gcl-badge-success {
    background: rgba(155, 255, 79, 0.12);
    color: var(--gcl-accent-2);
}

.gcl-root .gcl-badge-warn {
    background: rgba(255, 209, 102, 0.12);
    color: var(--gcl-warn);
}

.gcl-root .gcl-badge-muted {
    background: rgba(255, 255, 255, 0.06);
    color: var(--gcl-text-soft);
}

.gcl-root .gcl-split {
    display: grid;
    gap: 18px;
}

.gcl-root .gcl-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 4px;
}

.gcl-root .gcl-button,
.gcl-root button.gcl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--gcl-border);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gcl-text);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gcl-root .gcl-button:hover,
.gcl-root button.gcl-button:hover {
    transform: translateY(-2px);
}

.gcl-root .gcl-button-primary,
.gcl-root button.gcl-button-primary {
    border-color: rgba(255, 213, 64, 0.9);
    background: linear-gradient(180deg, #ffe35c, #f5b700);
    color: #07111b;
    box-shadow: 0 10px 24px rgba(245, 183, 0, 0.22);
}

.gcl-root .gcl-landing {
    position: relative;
    overflow: hidden;
    padding-top: 24px;
    background:
        linear-gradient(rgba(47, 193, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 193, 255, 0.035) 1px, transparent 1px),
        radial-gradient(circle at 72% 0%, rgba(44, 167, 229, 0.32), transparent 36%),
        #07182a;
    background-size: 34px 34px, 34px 34px, auto, auto;
}

.gcl-root .gcl-landing::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(100deg, transparent 0 40%, rgba(77, 223, 255, 0.08) 48%, transparent 56% 100%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
    mix-blend-mode: screen;
    opacity: 0.42;
    animation: gclLandingSweep 7s linear infinite;
}

.gcl-root .gcl-landing > .gcl-shell {
    position: relative;
    z-index: 1;
}

.gcl-root .gcl-landing-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(230px, 0.48fr) 250px;
    gap: 22px;
    min-height: 500px;
    align-items: end;
    padding: 30px 34px;
    border: 1px solid rgba(94, 151, 207, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(90deg, rgba(5, 14, 27, 0.98), rgba(7, 24, 44, 0.82) 48%, rgba(5, 14, 27, 0.42));
    background-position: center;
    background-size: cover;
    box-shadow: var(--gcl-shadow);
}

.gcl-root .gcl-landing-hero:not([style*="--gcl-landing-image"]) {
    background:
        radial-gradient(circle at 68% 24%, rgba(82, 215, 255, 0.2), transparent 26%),
        radial-gradient(circle at 34% 78%, rgba(255, 216, 61, 0.12), transparent 28%),
        linear-gradient(90deg, rgba(5, 14, 27, 0.98), rgba(7, 24, 44, 0.82) 48%, rgba(5, 14, 27, 0.42));
}

.gcl-root .gcl-landing-slider {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.gcl-root .gcl-landing-slider span {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(7, 24, 42, 0.96) 0%, rgba(7, 24, 42, 0.58) 35%, rgba(7, 24, 42, 0.12) 78%, rgba(7, 24, 42, 0.04) 100%),
        linear-gradient(90deg, rgba(5, 14, 27, 0.92), rgba(7, 24, 44, 0.68) 48%, rgba(5, 14, 27, 0.18)),
        var(--gcl-landing-image);
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.06);
    animation: gclLandingSlider 15s ease-in-out infinite;
}

.gcl-root .gcl-landing-slider span:nth-child(2) {
    background-position: 35% center;
    animation-delay: 5s;
}

.gcl-root .gcl-landing-slider span:nth-child(3) {
    background-position: 70% center;
    animation-delay: 10s;
}

.gcl-root .gcl-landing-hero::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(77, 223, 255, 0.16);
    border-radius: 8px;
    pointer-events: none;
}

.gcl-root .gcl-landing-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(7, 24, 42, 0.72));
}

.gcl-root .gcl-landing-copy,
.gcl-root .gcl-landing-showcase,
.gcl-root .gcl-landing-live {
    position: relative;
    z-index: 1;
}

.gcl-root .gcl-landing-copy h1 {
    max-width: 560px;
    margin: 0;
    font-family: "Exo 2", "Agency FB", "Bahnschrift", "Arial Narrow", sans-serif;
    font-size: clamp(2.45rem, 5.2vw, 3.25rem);
    font-weight: 900;
    line-height: 0.92;
    text-transform: uppercase;
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.44);
}

.gcl-root .gcl-landing-copy p {
    max-width: 52ch;
    color: var(--gcl-text-soft);
}

.gcl-root .gcl-landing-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 150px));
    gap: 12px;
    margin-top: 22px;
}

.gcl-root .gcl-landing-stats span,
.gcl-root .gcl-landing-live,
.gcl-root .gcl-landing-card {
    border: 1px solid var(--gcl-border);
    background: rgba(9, 31, 54, 0.88);
    backdrop-filter: blur(12px);
}

.gcl-root .gcl-landing-stats span {
    padding: 12px;
    border-radius: 8px;
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.gcl-root .gcl-landing-stats span:hover {
    transform: translateY(-3px);
    border-color: rgba(77, 223, 255, 0.42);
}

.gcl-root .gcl-landing-stats strong {
    display: block;
    font-size: 1.65rem;
    line-height: 1;
}

.gcl-root .gcl-landing-stats small,
.gcl-root .gcl-landing-live small,
.gcl-root .gcl-landing-card small {
    color: var(--gcl-text-soft);
    font-size: 12px;
    font-weight: 700;
}

.gcl-root .gcl-landing-live {
    display: grid;
    gap: 9px;
    align-self: end;
    align-content: end;
    padding: 14px;
    border-radius: 8px;
    min-height: 0;
}

.gcl-root .gcl-landing-live > span {
    color: var(--gcl-accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gcl-root .gcl-landing-live div {
    display: grid;
    gap: 4px;
    padding-top: 9px;
    border-top: 1px solid var(--gcl-border);
}

.gcl-root .gcl-landing-showcase {
    align-self: stretch;
    min-height: 330px;
}

.gcl-root .gcl-showcase-window {
    position: absolute;
    inset: 22% 6% auto 0;
    display: grid;
    gap: 8px;
    min-height: 210px;
    padding: 18px;
    border: 1px solid rgba(77, 223, 255, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(6, 18, 31, 0.2), rgba(6, 18, 31, 0.9)),
        var(--gcl-landing-image);
    background-size: cover;
    background-position: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    animation: gclFloatPanel 5.5s ease-in-out infinite;
}

.gcl-root .gcl-showcase-window::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;
}

.gcl-root .gcl-showcase-window span,
.gcl-root .gcl-showcase-card span {
    color: #ff4f8b;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gcl-root .gcl-showcase-window strong {
    align-self: end;
    color: #eff7ff;
    font-size: 23px;
    font-weight: 900;
    text-transform: uppercase;
}

.gcl-root .gcl-showcase-window small {
    color: #bdefff;
    font-size: 12px;
    font-weight: 800;
}

.gcl-root .gcl-showcase-card {
    position: absolute;
    display: grid;
    gap: 3px;
    min-width: 116px;
    padding: 12px;
    border: 1px solid rgba(77, 223, 255, 0.26);
    border-radius: 8px;
    background: rgba(5, 19, 34, 0.86);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.gcl-root .gcl-showcase-card strong {
    color: #ffd83d;
    font-size: 22px;
    line-height: 1;
}

.gcl-root .gcl-showcase-card.is-top {
    top: 12%;
    right: 0;
    animation: gclFloatPanel 4.8s ease-in-out infinite reverse;
}

.gcl-root .gcl-showcase-card.is-bottom {
    right: 12%;
    bottom: 11%;
    animation: gclFloatPanel 6s ease-in-out infinite;
}

.gcl-root .gcl-landing-strip,
.gcl-root .gcl-landing-bottom {
    padding-top: 48px;
}

.gcl-root .gcl-landing-strip {
    overflow-x: auto;
    scrollbar-color: rgba(77, 223, 255, 0.48) rgba(7, 24, 42, 0.28);
}

.gcl-root .gcl-landing-card {
    min-height: 220px;
    border: 1px solid transparent;
    background:
        linear-gradient(rgba(9, 31, 54, 0.9), rgba(9, 31, 54, 0.9)) padding-box,
        linear-gradient(163deg, rgba(77, 223, 255, 0.76) 0%, rgba(255, 216, 61, 0.62) 100%) border-box;
    border-radius: 12px;
}

.gcl-root .gcl-landing-card::before {
    content: "";
    display: block;
    height: 86px;
    margin: -24px -24px 18px;
    background:
        linear-gradient(180deg, rgba(7, 24, 42, 0), rgba(7, 24, 42, 0.88)),
        var(--gcl-landing-image, linear-gradient(135deg, rgba(82, 215, 255, 0.2), rgba(255, 216, 61, 0.14)));
    background-position: center;
    background-size: cover;
}

.gcl-root .gcl-landing-card.gcl-cover-only-card {
    min-height: 245px;
    padding: 0;
    background:
        linear-gradient(180deg, rgba(7, 24, 42, 0), rgba(7, 24, 42, 0.1)),
        var(--gcl-card-cover, linear-gradient(135deg, rgba(82, 215, 255, 0.2), rgba(255, 216, 61, 0.14)));
    background-position: center;
    background-size: cover;
}

.gcl-root .gcl-landing-card.gcl-cover-only-card::before {
    position: absolute;
    inset: 0;
    display: block;
    height: auto;
    margin: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 28%),
        radial-gradient(circle at 50% 0, rgba(82, 215, 255, 0.18), transparent 44%);
}

.gcl-root .gcl-landing-card:hover {
    transform: translateY(-10px);
    border-radius: 16px;
    background:
        linear-gradient(rgba(10, 31, 52, 0.96), rgba(10, 31, 52, 0.96)) padding-box,
        linear-gradient(163deg, rgba(77, 223, 255, 0.95) 0%, rgba(255, 216, 61, 0.88) 100%) border-box;
    box-shadow: 0 0 30px 1px rgba(77, 223, 255, 0.28), 0 24px 60px rgba(0, 0, 0, 0.32);
}

.gcl-root [data-gcl-game-card] {
    cursor: pointer;
}

.gcl-root [data-gcl-game-card]:focus-visible {
    outline: 2px solid var(--gcl-accent);
    outline-offset: 4px;
}

.gcl-root .gcl-game-drawer[hidden] {
    display: none;
}

.gcl-root .gcl-game-drawer {
    position: fixed;
    z-index: 120;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: clamp(76px, 8vw, 112px) clamp(24px, 7vw, 108px);
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(2, 8, 16, 0.96) 0%, rgba(3, 12, 23, 0.86) 42%, rgba(5, 19, 35, 0.58) 100%),
        radial-gradient(circle at 18% 22%, rgba(77, 223, 255, 0.24), transparent 32%),
        radial-gradient(circle at 84% 18%, rgba(255, 216, 61, 0.14), transparent 28%),
        rgba(2, 9, 18, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 0 0 1px rgba(77, 223, 255, 0.22);
    animation: gclDrawerIn 0.24s ease both;
}

.gcl-root .gcl-game-drawer button {
    position: absolute;
    z-index: 6;
    top: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(77, 223, 255, 0.16);
    color: var(--gcl-text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.gcl-root .gcl-game-drawer-art {
    position: absolute;
    inset: 0;
    pointer-events: none;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(5, 18, 32, 0.08), rgba(5, 18, 32, 0.88)),
        var(--gcl-landing-image);
    background-position: center;
    background-size: cover;
    opacity: 0.42;
    filter: saturate(1.18) contrast(1.08);
    box-shadow: none;
}

.gcl-root .gcl-game-drawer-art::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(2, 8, 16, 0.98), rgba(3, 14, 26, 0.88) 42%, rgba(4, 16, 30, 0.44) 100%),
        linear-gradient(0deg, rgba(2, 8, 16, 0.96), transparent 44%);
}

.gcl-root .gcl-game-drawer-art strong {
    position: absolute;
    z-index: 2;
    left: clamp(24px, 7vw, 108px);
    top: clamp(28px, 4vw, 52px);
    bottom: auto;
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--gcl-warn);
    color: #061526;
    font-size: 13px;
    font-weight: 1000;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 16px 42px rgba(255, 216, 61, 0.28);
}

.gcl-root .gcl-game-drawer > span {
    display: inline-flex;
    position: relative;
    z-index: 2;
    width: max-content;
    margin: 0 0 8px;
    padding: 7px 12px;
    border: 1px solid rgba(77, 223, 255, 0.28);
    border-radius: 6px;
    color: var(--gcl-accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gcl-root .gcl-game-title-row {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: end;
    gap: clamp(18px, 3vw, 34px);
    max-width: 1120px;
}

.gcl-root .gcl-game-cover {
    width: clamp(104px, 12vw, 156px);
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(77, 223, 255, 0.34);
    border-radius: 14px;
    background:
        linear-gradient(180deg, transparent, rgba(4, 17, 31, 0.45)),
        var(--gcl-landing-image);
    background-position: center;
    background-size: cover;
    box-shadow: 0 22px 62px rgba(0, 0, 0, 0.42), 0 0 34px rgba(77, 223, 255, 0.14);
}

.gcl-root .gcl-game-cover::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    pointer-events: none;
}

.gcl-root .gcl-game-drawer h2 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(3.6rem, 10vw, 0.5rem);
    line-height: 0.95;
    text-transform: uppercase;
    text-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.gcl-root .gcl-game-drawer p {
    position: relative;
    z-index: 2;
    max-width: 760px;
    color: var(--gcl-text-soft);
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.gcl-root .gcl-game-description {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 6px;
    width: min(760px, 100%);
    margin-top: 4px;
}

.gcl-root .gcl-game-description small {
    color: var(--gcl-accent);
    font-size: 11px;
    font-weight: 1000;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gcl-root .gcl-game-description p {
    margin: 0;
}

.gcl-root .gcl-game-drawer-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    width: min(980px, 100%);
    margin: 22px 0;
}

.gcl-root .gcl-game-drawer-stats strong {
    display: grid;
    gap: 6px;
    min-height: 122px;
    padding: 18px;
    border: 1px solid var(--gcl-border);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(77, 223, 255, 0.1), rgba(255, 216, 61, 0.04)),
        rgba(4, 17, 31, 0.66);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.gcl-root .gcl-game-drawer-stats b {
    font-size: 26px;
    color: var(--gcl-warn);
    line-height: 1.1;
}

.gcl-root .gcl-game-drawer .gcl-button {
    position: relative;
    z-index: 2;
    justify-self: start;
    width: max-content;
}

.gcl-root .gcl-game-drawer-stats small {
    color: var(--gcl-text-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gcl-root .gcl-landing-bottom {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 20px;
}

.gcl-root .gcl-landing-cta {
    background:
        linear-gradient(135deg, rgba(77, 223, 255, 0.1), rgba(255, 216, 61, 0.08)),
        var(--gcl-card);
}

@keyframes gclLandingSweep {
    0% {
        transform: translateX(-18%);
    }
    100% {
        transform: translateX(18%);
    }
}

@keyframes gclFloatPanel {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes gclLandingSlider {
    0%,
    100% {
        opacity: 0;
        transform: scale(1.04) translateX(0);
    }
    8%,
    30% {
        opacity: 0.46;
    }
    42% {
        opacity: 0;
        transform: scale(1.1) translateX(-18px);
    }
}

@keyframes gclDrawerIn {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gclDrawerUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gcl-root .gcl-landing::before,
    .gcl-root .gcl-landing-slider span,
    .gcl-root .gcl-showcase-window,
    .gcl-root .gcl-showcase-card {
        animation: none;
    }
}

.gcl-root .gcl-arena-banner {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(90deg, rgba(5, 14, 27, 0.92), rgba(8, 25, 46, 0.56)),
        var(--gcl-banner-image, linear-gradient(135deg, rgba(77, 221, 255, 0.18), rgba(255, 217, 64, 0.12)));
    background-size: cover;
    background-position: center;
}

.gcl-root .gcl-arena-banner h3 {
    max-width: 12ch;
    font-size: clamp(2rem, 6vw, 4.2rem);
    line-height: 0.9;
    text-transform: uppercase;
}

.gcl-root .gcl-form {
    display: grid;
    gap: 16px;
}

.gcl-root .gcl-form label {
    display: grid;
    gap: 8px;
}

.gcl-root .gcl-form label span {
    color: var(--gcl-text-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gcl-root .gcl-form input,
.gcl-root .gcl-form textarea {
    width: 100%;
    border: 1px solid var(--gcl-border);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.18);
    color: var(--gcl-text);
    padding: 12px 14px;
}

.gcl-root .gcl-form textarea {
    resize: vertical;
}

.gcl-root .gcl-notice {
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid var(--gcl-border);
    border-radius: 8px;
    background: var(--gcl-card);
}

.gcl-root .gcl-notice-success {
    border-color: rgba(155, 255, 79, 0.36);
}

.gcl-root .gcl-notice-error {
    border-color: rgba(255, 109, 109, 0.44);
}

@media (max-width: 900px) {
    .gcl-root .gcl-section {
        padding: 56px 16px;
    }

    .gcl-root .gcl-landing-hero,
    .gcl-root .gcl-landing-bottom {
        grid-template-columns: 1fr;
    }

    .gcl-root .gcl-leaderboard-row {
        grid-template-columns: 64px 64px 1fr;
    }

    .gcl-root .gcl-points {
        grid-column: 3;
        text-align: left;
    }

    .gcl-root .gcl-info-grid {
        grid-template-columns: 1fr;
    }

    .gcl-root .gcl-heading-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .gcl-root .gcl-landing-hero {
        min-height: 0;
        padding: 24px;
    }

    .gcl-root .gcl-landing-showcase {
        min-height: 320px;
    }

    .gcl-root .gcl-landing-live {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .gcl-root .gcl-grid-2,
    .gcl-root .gcl-grid-3,
    .gcl-root .gcl-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .gcl-root .gcl-hero-copy,
    .gcl-root .gcl-card,
    .gcl-root .gcl-panel,
    .gcl-root .gcl-empty,
    .gcl-root .gcl-branch-banner {
        padding: 20px;
        border-radius: 8px;
    }

    .gcl-root .gcl-section-heading h2,
    .gcl-root .gcl-hero-copy h2,
    .gcl-root .gcl-empty h2 {
        font-size: clamp(1.8rem, 10vw, 2.8rem);
    }

    .gcl-root .gcl-landing-hero {
        min-height: 0;
        padding: 22px;
    }

    .gcl-root .gcl-landing-stats {
        grid-template-columns: 1fr;
    }

    .gcl-root .gcl-detail-grid {
        grid-template-columns: 1fr;
    }

    .gcl-root .gcl-landing-copy h1 {
        font-size: clamp(2.35rem, 15vw, 4.5rem);
    }

    .gcl-root .gcl-landing-card {
        min-height: 190px;
    }

    .gcl-root .gcl-game-drawer {
        justify-content: flex-start;
        height: 100vh;
        padding: 72px 18px 28px;
        border-radius: 0;
        animation-name: gclDrawerUp;
    }

    .gcl-root .gcl-game-drawer-art {
        min-height: 0;
    }

    .gcl-root .gcl-game-title-row {
        grid-template-columns: 86px minmax(0, 1fr);
        align-items: center;
    }

    .gcl-root .gcl-game-drawer h2 {
        font-size: clamp(2.35rem, 12vw, 4.5rem);
    }

    .gcl-root .gcl-game-drawer-stats {
        grid-template-columns: 1fr;
    }
}


    .gcl-reserve-actions {
        display:none !important;
    }