.gg-codes-hub {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: 100%;
    margin-top: 30px;
    padding: 0 15px;
    box-sizing: border-box;
}

img.lazyload[src],
img.lazyloading[src],
img.jl-lazyload[src] {
    background-color: transparent;
    -webkit-filter: none;
    filter: none;
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
}

img.lazyload.loaded[src],
img.jl-lazyload.loaded[src] {
    -webkit-filter: none;
    filter: none;
}

.gg-hub-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
}

.gg-hub-breadcrumbs__item {
    color: inherit;
    text-decoration: none;
}

.gg-hub-breadcrumbs__item:hover,
.gg-hub-breadcrumbs__item:focus {
    color: #0f172a;
    text-decoration: none;
}

.gg-hub-breadcrumbs__item--current {
    color: #0f172a;
}

.gg-hub-breadcrumbs__sep {
    color: #94a3b8;
    font-size: 11px;
}

.gg-hub-section {
    margin-bottom: 40px;
}

.gg-hub-section h2 {
    font-size: 22px;
    margin-bottom: 18px;
}

.gg-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 30px;
    justify-content: start;
}

.gg-main-hub-block-inner.is-loading {
    opacity: 0.55;
    pointer-events: none;
}

.gg-main-hub-posts-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.gg-main-hub-collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 26px;
    justify-content: start;
}

.gg-main-hub-collection-card .gg-hub-title {
    max-width: none;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
}

.gg-main-hub-post-card {
    display: flex;
    gap: 14px;
    border: 1px solid #e7ebf0;
    border-radius: 12px;
    padding: 12px;
    background: #fff;
}

.gg-main-hub-post-thumb {
    position: relative;
    flex: 0 0 180px;
    max-width: 180px;
    border-radius: 10px;
    overflow: hidden;
    background: #f2f4f7;
    min-height: 120px;
}

.gg-main-hub-post-thumb img,
.gg-main-hub-post-thumb-empty {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.gg-main-hub-post-thumb img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
}

.gg-main-hub-post-thumb-empty {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #edf0f4, #f7f8fa);
}

.gg-main-hub-post-title {
    margin: 2px 0 8px;
    font-size: 17px;
    line-height: 1.35;
}

.gg-main-hub-post-title a {
    color: #111;
}

.gg-main-hub-post-title a:hover,
.gg-main-hub-post-title a:focus {
    color: #3da9da;
    text-decoration: none !important;
}

.gg-main-hub-post-excerpt {
    font-size: 14px;
    line-height: 1.55;
    color: #4c4f57;
}

.gg-main-hub-post-content {
    min-width: 0;
    flex: 1 1 auto;
}

.gg-main-hub-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
    width: 100%;
}

.gg-main-hub-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    height: 40px;
    border: 1px solid #cfd7e2;
    border-radius: 10px;
    background: #fff !important;
    color: #000 !important;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    cursor: pointer;
}

.gg-main-hub-page-btn:hover:not(:disabled) {
    border-color: #3da9da;
    color: #3da9da !important;
    background: #f6fbfe !important;
}

.gg-main-hub-page-btn:focus:not(:disabled),
.gg-main-hub-page-btn:active:not(:disabled) {
    color: #3da9da !important;
    background: #eef8fd !important;
    border-color: #3da9da;
    text-decoration: none !important;
}

.gg-main-hub-page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.gg-main-hub-page-state {
    font-size: 14px;
    color: #5a6472;
    text-align: center;
}

.gg-main-hub-empty {
    padding: 14px 0;
    color: #677284;
}

@media (max-width: 900px) {
    .gg-main-hub-posts-list {
        grid-template-columns: 1fr;
    }

    .gg-main-hub-collections-grid {
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .gg-main-hub-post-card {
        flex-direction: column;
    }

    .gg-main-hub-post-thumb {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .gg-main-hub-post-thumb img,
    .gg-main-hub-post-thumb-empty {
        height: 180px;
    }
}

.gg-hub-card {
    width: 100%;
    justify-items: center;
}

.gg-hub-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f1f1;
}

.gg-hub-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-filter: none;
    filter: none;
    transition: transform .25s ease;
}

.gg-hub-card:hover .gg-hub-cover img {
    transform: scale(1.02);
}

.gg-hub-title {
    margin-top: 6px;
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gg-hub-meta {
    margin-top: 4px;
    font-size: 13.5px;
    color: #666;
    text-align: left;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gg-search-wrap {
    max-width: 1200px;
    margin: 0 auto 12px;
    position: relative;
}

.gg-search-box {
    background: #fff;
    border: 1.5px solid #dbe5f1;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 1px 0 rgba(16,24,40,.02), 0 8px 24px rgba(16,24,40,.04);
}

.gg-hub-search-input {
    width: 100%;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #0f172a;
    background: #fff;
    border: 2px solid #dbe5f1;
    border-radius: 16px;
    outline: none;
    box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.gg-hub-search-input::placeholder {
    color: #7a8aa0;
    font-weight: 500;
}

.gg-hub-search-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59,130,246,.12);
}

.gg-search-chip {
    background: #f2f2f2;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
    transition: background .3s ease, transform .3s ease;
}

.gg-search-chip:hover {
    background: #e6e6e6;
    transform: scale(1.05);
}

.gg-search-chip:active {
    background: #d1d1d1;
}

.gg-hub-search-results {
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 14px;
    background: #fff;
    border: 1.5px solid #dbe5f1;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(16,24,40,.06), 0 24px 48px rgba(16,24,40,.12);
    z-index: 9999;
    padding: 12px;
    display: none;
}

.gg-hub-search-results.active {
    display: block;
}

.gg-hub-search-results .gg-hub-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
}

.gg-hub-search-results .gg-hub-card:hover {
    background: #f5f8ff;
}

.gg-hub-search-results .gg-hub-cover {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #eef2f7;
}

.gg-hub-search-results .gg-hub-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gg-hub-search-results .gg-hub-title {
    font-size: 15.5px;
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gg-search-empty {
    padding: 16px;
    font-size: 14px;
    color: #64748b;
    text-align: center;
}

.gg-home-search-suggest-host {
    display: none;
}

.gg-home-search-suggest-chip {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.gg-home-search-suggest-chip .gg-propose-wrapper {
    position: relative;
    z-index: 10001;
}

.gg-home-search-suggest-chip .gg-propose-trigger {
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #dbe5f1;
    background: #fff;
    color: #0f172a;
    font-size: 12px;
    font-weight: 700;
    box-shadow: none;
}

.gg-home-search-suggest-chip .gg-propose-trigger:hover,
.gg-home-search-suggest-chip .gg-propose-trigger:focus,
.gg-home-search-suggest-chip .gg-propose-trigger:active {
    border-color: #93c5fd;
    background: #fff;
    color: #1d4ed8;
    box-shadow: none;
}

.gg-home-search-suggest-chip .gg-propose-dropdown {
    left: 50%;
    width: min(320px, calc(100vw - 32px));
    transform: translateX(-50%);
    z-index: 10002;
}

.gg-search-suggests {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.gg-search-item {
    text-decoration: none !important;
}

.gg-genres-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gg-hub-genres,
.gg-hub-themes,
.gg-status-codes-hub {
    width: 100%;
}

.gg-genre-item {
    display: inline-block;
    padding: 6px 14px;
    font-size: .95em;
    color: #333;
    background-color: #f5f7fa;
    border-radius: 20px;
    text-decoration: none;
    transition: all .2s ease;
}

.gg-genre-item:hover {
    background-color: #3da9da;
    color: #fff;
    transform: translateY(-1px);
}

.gg-genre-item--active {
    background-color: #3da9da;
    color: #fff;
}

.gg-hub-intro {
    width: 100%;
    margin: 0 auto 25px;
    padding: 20px 25px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: center;
}

.gg-hub-intro a {
    color: #00b14f;
    text-decoration: underline;
}

.gg-hub-intro a:hover {
    color: #009fdd;
}

.gg-hub-section-desc {
    display: block;
    margin: 6px 0 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

.gg-hub-results-count {
    margin: 0 0 14px;
    font-size: 14px;
    color: #64748b;
}

.gg-hub-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.gg-hub-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #dbe5f1;
    border-radius: 12px;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s ease;
}

.gg-hub-pagination .page-numbers:hover {
    border-color: #93c5fd;
    background: #eff6ff;
    color: #1d4ed8;
}

.gg-hub-pagination .page-numbers.current {
    border-color: #2563eb;
    background: #2563eb;
    color: #fff;
}

.gg-tag-codes-hub .gg-hub-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.gg-tag-codes-hub .gg-hub-card {
    display: block;
}

.gg-hub-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    justify-content: start;
}

.gg-hub-link-grid--status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gg-hub-link-card {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.gg-hub-link-card:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.gg-hub-link-card__eyebrow {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #3b82f6;
}

.gg-hub-link-card__title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    color: #0f172a;
}

.gg-hub-link-card__meta {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #64748b;
}

@media (max-width: 767px) {
    .gg-hub-link-grid--status {
        grid-template-columns: 1fr;
    }
}

.gg-tag-hub-hero {
    text-align: left;
}

.gg-tag-hub-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #2563eb;
}

.gg-tag-hub-title {
    margin: 0 0 12px;
    font-size: 34px;
    line-height: 1.15;
    color: #0f172a;
}

.gg-tag-hub-copy {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #334155;
}

.gg-tag-hub-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 0;
}

.gg-tag-hub-actions {
    margin-top: 18px;
}

.gg-tag-hub-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 12px;
    background: #f5f7fa;
    border: 1px solid #dbe5f1;
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.gg-tag-hub-back:hover {
    background: #eef5ff;
    border-color: #93c5fd;
    color: #1d4ed8;
    transform: translateY(-1px);
}

.gg-tag-hub-stat {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1e3a8a;
    font-size: 13px;
    font-weight: 600;
}

.gg-tag-hub-stat--link {
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.gg-tag-hub-stat--link:hover {
    background: #dbeafe;
    color: #1d4ed8;
    transform: translateY(-1px);
}

.gg-tag-hub-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
}

.gg-hub-themes-shell {
    width: 100%;
}

.gg-hub-alpha-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.gg-hub-alpha-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    background: #f5f7fa;
    border: 1px solid #dbe5f1;
    color: #0f172a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.gg-hub-alpha-link:hover {
    background: #eef5ff;
    border-color: #93c5fd;
    color: #1d4ed8;
    transform: translateY(-1px);
}

.gg-hub-alpha-group + .gg-hub-alpha-group {
    margin-top: 26px;
}

.gg-hub-alpha-title {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
}

.gg-tag-hub-related-card {
    position: relative;
    min-height: 280px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform .2s ease;
}

.gg-tag-hub-related-card__media,
.gg-tag-hub-related-card__media img {
    position: absolute;
    inset: 0;
}

.gg-tag-hub-related-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gg-tag-hub-related-card:hover {
    transform: translateY(-2px);
}

.gg-tag-hub-related-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,.08) 0%, rgba(15,23,42,.82) 100%);
}

.gg-tag-hub-related-card__count {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 4px 7px;
    border-radius: 6px;
    background: rgba(0, 177, 79, 0.9);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.gg-tag-hub-related-card__body {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    padding: 18px;
}

.gg-tag-hub-related-card__title {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.gg-tag-hub-related-card__meta {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.88);
    font-size: 13px;
    line-height: 1.4;
}

.gg-guides-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.gg-guides-hub-section {
    display: grid;
    gap: 24px;
}

.gg-guides-hub-head {
    display: grid;
    gap: 10px;
}

.gg-guides-hub-title {
    margin: 0;
    color: #111827;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;
    font-weight: 900;
}

.gg-guides-hub-content {
    display: grid;
    gap: 26px;
}

.gg-guides-hub-card,
.gg-guides-hub-card:hover,
.gg-guides-hub-card:focus,
.gg-guides-hub-card:active {
    display: block;
    text-decoration: none !important;
}

.gg-guides-hub-card-image-wrap {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f1f1;
}

.gg-guides-hub-card-image,
.gg-guides-hub-card-image--empty {
    display: block;
    width: 100%;
    height: 190px;
}

.gg-guides-hub-card-image {
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gg-guides-hub-card-image--empty {
    background: linear-gradient(135deg, #e7e7e7, #f5f5f5);
}

.gg-guides-hub-card-count {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #00b14f;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.gg-guides-hub-card-title {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    color: #000;
}

.gg-guides-hub-card:hover .gg-guides-hub-card-title,
.gg-guides-hub-card:focus .gg-guides-hub-card-title,
.gg-guides-hub-card:active .gg-guides-hub-card-title {
    color: #3da9da;
    text-decoration: none !important;
}

.gg-guides-hub-card:hover .gg-guides-hub-card-image,
.gg-guides-hub-card:focus .gg-guides-hub-card-image {
    transform: scale(1.06);
}

.gg-guides-hub-description,
.gg-main-hub-description {
    font-size: 17px;
    line-height: 1.7;
    color: #222;
    margin-bottom: 8px;
}

.gg-site-home-hub {
    display: grid;
    gap: 34px;
}

.gg-site-home-section {
    margin-bottom: 0;
}

.gg-site-home-section:last-child {
    margin-bottom: 44px;
}

.gg-site-home-top-codes {
    margin-bottom: 0;
}

.gg-site-home-top-title {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.gg-home-hero {
    padding: 2px 0 0;
}

.gg-home-hero .gg-tag-hub-title {
    max-width: 760px;
    font-size: 40px;
    line-height: 1.08;
}

.gg-home-hero-search {
    max-width: 720px;
    margin-top: 18px;
}

.gg-home-hero-search-hint {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: #64748b;
}

.gg-home-quick-actions,
.gg-home-dev-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.gg-home-quick-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #d9e3ef;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.gg-home-quick-action:hover {
    background: #f8fbff;
    border-color: #93c5fd;
    color: #1d4ed8;
}

.gg-home-quick-action--primary {
    background: #f1f5f9;
}

.gg-home-quick-action--primary:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.gg-home-topline,
.gg-home-status-strip,
.gg-home-latest-posts {
    display: none !important;
}

.gg-home-latest-posts {
    margin-bottom: 32px;
    padding: 0;
    border: 0;
    background: transparent;
}

.gg-home-latest-posts__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 18px;
}

.gg-home-latest-posts__card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(135deg, #111, #2e2e2e);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}

.gg-home-latest-posts__card--featured {
    grid-row: span 2;
    min-height: 538px;
}

.gg-home-latest-posts__card-link,
.gg-home-latest-posts__media,
.gg-home-latest-posts__overlay {
    position: absolute;
    inset: 0;
}

.gg-home-latest-posts__card-link {
    display: flex;
    align-items: flex-end;
    color: #fff !important;
    text-decoration: none !important;
}

.gg-home-latest-posts__media {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.24s ease;
}

.gg-home-latest-posts__media-placeholder {
    width: 100%;
    height: 100%;
}

.gg-home-latest-posts__media-placeholder {
    display: block;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 38%),
        linear-gradient(135deg, #1f2937, #111827 55%, #0f172a);
}

.gg-home-latest-posts__overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.94) 100%),
        linear-gradient(0deg, rgba(4, 7, 17, 0.58) 0%, rgba(4, 7, 17, 0) 48%);
}

.gg-home-latest-posts__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    margin-top: auto;
    padding: 26px 24px 24px;
}

.gg-home-latest-posts__title {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.06;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

.gg-home-latest-posts__card:not(.gg-home-latest-posts__card--featured) .gg-home-latest-posts__title {
    font-size: 24px;
}

.gg-home-latest-posts__meta {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    align-self: flex-start;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.gg-home-latest-posts__meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
}

.gg-home-latest-posts__meta-codes {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.gg-home-latest-posts__meta-codes-num {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0;
}

.gg-home-latest-posts__meta-codes-label {
    color: rgba(255, 255, 255, 0.92);
}

.gg-home-latest-posts__card:hover .gg-home-latest-posts__media,
.gg-home-latest-posts__card:focus-within .gg-home-latest-posts__media {
    transform: scale(1.04);
}

@media (max-width: 991px) {
    .gg-home-latest-posts__grid {
        grid-template-columns: 1fr;
    }

    .gg-home-latest-posts__card,
    .gg-home-latest-posts__card--featured {
        min-height: 280px;
        grid-row: auto;
    }
}

@media (max-width: 767px) {
    .gg-home-latest-posts {
        margin-bottom: 28px;
    }

    .gg-home-latest-posts__content {
        padding: 18px;
    }

    .gg-home-latest-posts__title,
    .gg-home-latest-posts__card:not(.gg-home-latest-posts__card--featured) .gg-home-latest-posts__title {
        font-size: 20px;
    }

    .gg-home-latest-posts__meta {
        gap: 8px;
        font-size: 12px;
    }

    .gg-home-latest-posts__meta-codes-num {
        font-size: 14px;
    }
}

.gg-home-hero {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 28px 16px 18px;
    text-align: center;
}

.gg-home-hero.gg-tag-hub-hero {
    overflow: visible;
    isolation: isolate;
    z-index: 0;
    border-radius: 0;
    background: linear-gradient(rgba(247, 250, 252, 0.82), rgba(247, 250, 252, 0.9)), var(--gg-home-hero-bg, none) center/cover no-repeat;
    box-shadow: none;
}

.gg-home-hero.gg-tag-hub-hero::before {
    display: none;
}

.gg-home-hero .gg-tag-hub-title,
.gg-home-hero .gg-tag-hub-copy,
.gg-home-hero .gg-home-hero-search,
.gg-home-hero .gg-home-quick-actions,
.gg-home-hero .gg-home-activity-line,
.gg-home-hero .gg-home-hero-foot {
    position: relative;
    z-index: 2;
}

.gg-home-hero .gg-tag-hub-title {
    max-width: 860px;
    margin: 0 auto 10px;
    font-family: "Arial Narrow", Oswald, system-ui, sans-serif;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: .96;
    letter-spacing: -.06em;
    text-transform: uppercase;
    color: #13233a;
    text-shadow: none;
}

.gg-home-hero .gg-tag-hub-title span {
    display: block;
    margin-top: 2px;
    background: linear-gradient(90deg, #4f8ff0 0%, #35cdb4 55%, #5fd0c1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gg-home-hero .gg-tag-hub-copy {
    max-width: 760px;
    margin: 0 auto;
    color: #5f7084;
    font-size: 17px;
    line-height: 1.5;
    text-shadow: none;
}

.gg-home-hero .gg-home-hero-search,
.gg-home-hero-search {
    position: relative;
    z-index: 20;
    max-width: 540px;
    margin: 14px auto 0;
}

.gg-home-hero .gg-search-wrap {
    margin-bottom: 0;
}

.gg-home-hero .gg-search-box {
    position: relative;
    overflow: visible;
    border: 1px solid #e7edf4;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(17, 37, 63, 0.035);
    z-index: 21;
}

.gg-home-search-icon {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 2;
    width: 20px;
    height: 20px;
    color: #66758a;
    transform: translateY(-50%);
    pointer-events: none;
}

.gg-home-search-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gg-home-hero .gg-hub-search-input {
    min-height: 36px;
    padding: 0 12px 0 42px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
    color: #13233a;
    font-size: 17px;
}

.gg-home-hero .gg-hub-search-input::placeholder {
    color: #5f7084;
    opacity: 1;
    font-weight: 600;
    font-size: 17px;
}

.gg-home-hero .gg-hub-search-input:focus {
    border: 0;
    box-shadow: none;
}

.gg-home-hero .gg-hub-search-results {
    top: calc(100% + 8px);
    z-index: 22;
    border-radius: 16px;
}

.gg-home-quick-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
}

.gg-home-quick-action,
.gg-home-dev-cta__actions .gg-home-quick-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid #dbe5f1;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease, background .2s ease;
}

.gg-home-quick-actions .gg-home-quick-action,
.gg-home-quick-actions .gg-home-quick-action:visited,
.gg-home-quick-actions .gg-home-quick-action:focus,
.gg-home-quick-actions .gg-home-quick-action:active,
.gg-home-dev-cta__actions .gg-home-quick-action,
.gg-home-dev-cta__actions .gg-home-quick-action:visited,
.gg-home-dev-cta__actions .gg-home-quick-action:focus,
.gg-home-dev-cta__actions .gg-home-quick-action:active {
    color: #0f172a;
    text-decoration: none;
}

.gg-home-quick-action:hover,
.gg-home-dev-cta__actions .gg-home-quick-action:hover {
    transform: translateY(-1px);
    background: #fff;
    border-color: #93c5fd;
    color: #1d4ed8;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.gg-home-quick-action--primary,
.gg-home-dev-cta__actions .gg-home-quick-action--primary {
    background: #2563eb;
    border-color: #2563eb;
    color: #fff;
}

.gg-home-quick-actions .gg-home-quick-action--primary,
.gg-home-quick-actions .gg-home-quick-action--primary:visited,
.gg-home-quick-actions .gg-home-quick-action--primary:focus,
.gg-home-quick-actions .gg-home-quick-action--primary:active,
.gg-home-dev-cta__actions .gg-home-quick-action--primary,
.gg-home-dev-cta__actions .gg-home-quick-action--primary:visited,
.gg-home-dev-cta__actions .gg-home-quick-action--primary:focus,
.gg-home-dev-cta__actions .gg-home-quick-action--primary:active {
    color: #fff;
}

.gg-home-quick-action--primary:hover,
.gg-home-dev-cta__actions .gg-home-quick-action--primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #fff;
}

.gg-home-activity-line {
    margin-top: 22px;
}

.gg-home-topline__summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 18px;
    width: 100%;
}

.gg-home-topline__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    color: #4c6177;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
}

.gg-home-topline__icon {
    width: 20px;
    height: 20px;
    color: #22c7a9;
    flex: 0 0 auto;
}

.gg-home-topline__item:nth-child(2) .gg-home-topline__icon { color: #3b82f6; }
.gg-home-topline__item:nth-child(3) .gg-home-topline__icon { color: #f59e0b; }
.gg-home-topline__item:nth-child(4) .gg-home-topline__icon { color: #8b5cf6; }
.gg-home-topline__item:nth-child(5) .gg-home-topline__icon { color: #14b8a6; }

.gg-home-topline__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.9;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gg-home-hero-foot {
    width: 100%;
    max-width: 1120px;
    margin: 16px auto 0;
}

.gg-home-meta-panel {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 4px 14px rgba(17, 37, 63, 0.03);
}

.gg-home-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 8px;
    margin-top: 20px;
}

.gg-home-trust-badges--compact {
    margin-top: 10px;
}

.gg-home-trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 700;
}

.gg-home-trust-badge--checked {
    background: #edf8f2;
    border-color: #d0eadb;
    color: #2b6a49;
}

.gg-home-trust-badge--daily {
    background: #eff4fb;
    border-color: #d7e2f2;
    color: #345276;
}

.gg-home-trust-badge--official {
    background: #f8f3ea;
    border-color: #ecdfc7;
    color: #7a5a27;
}

.gg-home-trust-badge--reports {
    background: #f6eff8;
    border-color: #e4d7ea;
    color: #6e4e79;
}

.gg-home-status-panel {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.gg-home-status-panel .gg-tag-hub-stats {
    justify-content: center;
    margin-top: 0;
    gap: 10px;
}

.gg-home-status-panel .gg-tag-hub-stat,
.gg-home-status-panel .gg-tag-hub-stat--link,
.gg-home-status-panel .gg-tag-hub-stat--link:visited,
.gg-home-status-panel .gg-tag-hub-stat--link:hover,
.gg-home-status-panel .gg-tag-hub-stat--link:focus,
.gg-home-status-panel .gg-tag-hub-stat--link:active {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 0;
    padding: 8px 12px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #355276;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform .2s ease;
}

.gg-home-status-panel .gg-tag-hub-stat + .gg-tag-hub-stat::before {
    display: none;
}

.gg-home-status-panel .gg-tag-hub-stat--link:hover,
.gg-home-status-panel .gg-tag-hub-stat--link:focus,
.gg-home-status-panel .gg-tag-hub-stat--link:active {
    transform: translateY(-1px);
}

.gg-home-recent-codes {
    margin-top: 8px;
}

.gg-home-recent-codes .gg-hub-section-desc {
    display: block;
    margin-bottom: 14px;
}

.gg-home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.gg-home-section-head h2 {
    margin: 0;
}

.gg-home-section-head__link {
    flex: 0 0 auto;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.gg-home-section-head__link:hover,
.gg-home-section-head__link:focus {
    color: #2563eb;
    text-decoration: none;
}

.gg-home-codes-list {
    width: 100%;
    display: grid;
    gap: 0;
    border: 1px solid #e9eef5;
    border-radius: 18px;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
}

.gg-home-code-row {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(96px, .55fr) minmax(0, 1fr) 140px;
    gap: 14px;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 13px 16px;
    border: 0;
    border-bottom: 1px solid #eef2f6;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.gg-home-code-row--head {
    padding: 10px 16px 8px;
    border-bottom: 1px solid #dfe7f0;
    background: #f8fbff;
    color: #6b7e94;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.gg-home-code-row--head .gg-home-code-row__game,
.gg-home-code-row--head .gg-home-code-row__code,
.gg-home-code-row--head .gg-home-code-row__reward,
.gg-home-code-row--head .gg-home-code-row__added {
    color: inherit;
}

.gg-home-code-row:last-child {
    border-bottom: 0;
}

.gg-home-code-row__game,
.gg-home-code-row__code,
.gg-home-code-row__reward,
.gg-home-code-row__added {
    min-width: 0;
}

.gg-home-code-game {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2b67c8;
    line-height: 1.45;
    font-weight: 800;
    text-decoration: none;
}

.gg-home-code-game__thumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(226, 232, 240, 0.7);
}

.gg-home-code-game__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gg-home-code-game__title {
    min-width: 0;
    font-weight: 800;
}

.gg-home-code-row__code {
    display: flex;
    align-items: center;
}

.gg-home-code-inline,
.gg-home-recent-codes .gg-home-code-inline.gg-copy-btn,
.gg-home-recent-codes .gg-code-card .gg-home-code-inline.gg-copy-btn,
.gg-home-recent-codes .gg-home-code-inline.gg-copy-btn:hover,
.gg-home-recent-codes .gg-home-code-inline.gg-copy-btn:focus,
.gg-home-recent-codes .gg-home-code-inline.gg-copy-btn:active,
.gg-home-recent-codes .gg-code-card .gg-home-code-inline.gg-copy-btn:hover,
.gg-home-recent-codes .gg-code-card .gg-home-code-inline.gg-copy-btn:focus,
.gg-home-recent-codes .gg-code-card .gg-home-code-inline.gg-copy-btn:active {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between;
    gap: 10px !important;
    width: 100%;
    min-height: 40px;
    padding: 0 12px !important;
    border: 1px solid #d7e2ee !important;
    border-radius: 12px !important;
    background: #f8fbff !important;
    box-shadow: none !important;
    white-space: nowrap !important;
}

.gg-home-code-inline__value {
    overflow: hidden;
    text-overflow: ellipsis;
}

.gg-home-code-inline__value--reward-link {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.gg-home-code-inline__icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    color: #6f89a8;
}

.gg-home-code-inline__icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gg-home-code-row__reward,
.gg-home-code-row__added {
    color: #5f7084;
    font-size: 13px;
    line-height: 1.45;
}

.gg-home-code-added-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.gg-home-code-added-meta__icon {
    width: 14px;
    height: 14px;
    color: #7b8ca0;
    flex: 0 0 14px;
}

.gg-home-code-added-meta__icon svg {
    display: block;
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gg-home-genre-card {
    min-height: 220px;
}

.gg-home-dev-cta__inner {
    padding: 24px;
    border: 1px solid #dbe5f1;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}

.gg-home-dev-cta__inner p {
    color: #334155;
}

.gg-home-dev-cta {
    width: 100%;
}

.gg-site-home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.gg-site-home-section-head h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.gg-site-home-eyebrow {
    margin: 0 0 8px;
    color: #2563eb;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gg-site-home-section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.gg-site-home-section-link {
    flex: 0 0 auto;
    text-decoration: none !important;
}

.gg-home-dev-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
    justify-content: center;
}

.gg-site-home-featured-codes {
    display: grid;
    grid-template-columns: 1.18fr 0.91fr 0.91fr;
    gap: 18px;
}

.gg-site-home-featured-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 310px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, #151515, #2b2b2b);
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.16);
    isolation: isolate;
}

.gg-site-home-featured-card:first-child {
    min-height: 380px;
}

.gg-site-home-featured-card__media,
.gg-site-home-featured-card__shade {
    position: absolute;
    inset: 0;
}

.gg-site-home-featured-card__media {
    z-index: -2;
    background-position: center;
    background-size: cover;
    transition: transform 0.3s ease;
}

.gg-site-home-featured-card__shade {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.78) 100%),
        radial-gradient(circle at 18% 12%, rgba(61, 169, 218, 0.36), transparent 32%);
}

.gg-site-home-featured-card:hover .gg-site-home-featured-card__media,
.gg-site-home-featured-card:focus .gg-site-home-featured-card__media {
    transform: scale(1.055);
}

.gg-site-home-featured-card__body {
    display: grid;
    gap: 8px;
    width: 100%;
    padding: 24px;
}

.gg-site-home-featured-card__kicker {
    width: fit-content;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.gg-site-home-featured-card__title {
    max-width: 96%;
    color: #fff;
    font-size: clamp(20px, 2.5vw, 32px);
    line-height: 1.08;
    font-weight: 900;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.gg-site-home-featured-card:not(:first-child) .gg-site-home-featured-card__title {
    font-size: clamp(19px, 2vw, 25px);
}

.gg-site-home-featured-card__meta {
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    font-weight: 700;
}

.gg-site-home-link-grid {
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
}

.gg-site-home-link-card .gg-guides-hub-card-title {
    font-size: 16px;
}

.gg-site-home-codes-grid {
    align-items: start;
}

.gg-game-hub-page,
.gg-guides-hub-page {
    padding-top: 0;
}

.gg-category-hub {
    display: grid;
    gap: 34px;
}

.gg-category-hub-hero {
    display: grid;
    gap: 24px;
}

.gg-category-hub-banner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #141414, #2b2b2b);
}

.gg-category-hub-banner img {
    display: block;
    width: 100%;
    height: clamp(180px, 24vw, 300px);
    object-fit: cover;
}

.gg-category-hub-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.68) 100%);
}

.gg-category-hub-banner-overlay {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    display: grid;
    gap: 12px;
    padding: 28px 28px 30px;
}

.gg-category-hub-hero-content {
    display: grid;
    gap: 18px;
}

.gg-category-hub-guides-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.gg-category-hub-title {
    margin: 0;
    font-size: clamp(30px, 4.1vw, 46px);
    line-height: 1.08;
    font-weight: 800;
    color: #fff;
    max-width: 820px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.gg-category-hub-description {
    max-width: 920px;
    font-size: 17px;
    line-height: 1.7;
    color: #2d3748;
}

.gg-category-hub-description p:last-child {
    margin-bottom: 0;
}

.gg-category-hub-quicklinks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.gg-category-hub-quicklink {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid #d9dee8;
    border-radius: 14px;
    background: #fff;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.gg-category-hub-quicklink:hover,
.gg-category-hub-quicklink:focus {
    color: #c61f1f;
    border-color: #f0b3b3;
    background: #fff7f7;
    text-decoration: none !important;
}

.gg-category-hub-quicklink-icon {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e03a3a, #8f1111);
    flex: 0 0 14px;
    box-shadow: 0 0 0 5px rgba(224, 58, 58, 0.12);
}

.gg-category-hub-archive-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.gg-category-hub-archive-link {
    position: relative;
    display: block;
    width: 100%;
    min-height: 170px;
    overflow: hidden;
    border-radius: 8px;
    background: #151515;
    color: #fff !important;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(17, 24, 39, 0.12);
}

.gg-category-hub-archive-link__media,
.gg-category-hub-archive-link__media img,
.gg-category-hub-archive-link__overlay {
    position: absolute;
    inset: 0;
}

.gg-category-hub-archive-link__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.22s ease;
}

.gg-category-hub-archive-link__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.76) 100%);
}

.gg-category-hub-archive-link__body {
    position: relative;
    z-index: 1;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    padding: 18px 20px;
}

.gg-category-hub-archive-link:hover .gg-category-hub-archive-link__media img,
.gg-category-hub-archive-link:focus .gg-category-hub-archive-link__media img {
    transform: scale(1.04);
}

.gg-category-hub-archive-link__label {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.gg-category-hub-archive-link__meta {
    font-size: 13px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.84);
}

.gg-category-hub-section h2 {
    margin-bottom: 20px;
}

.gg-category-hub-card .gg-guides-hub-card-title {
    font-size: 17px;
}

.gg-home-search-modal {
    display: none;
}

body.gg-home-search-modal-open {
    overflow: hidden;
}

.gg-home-meta-panel {
    border: 1px solid #dbe5f1;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
}

.gg-toast {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 1400;
    min-width: 140px;
    max-width: calc(100vw - 32px);
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.92);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.gg-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.gg-search-empty {
    padding-bottom: 6px;
}

.gg-home-hero.gg-tag-hub-hero {
    background: linear-gradient(180deg, rgba(10, 20, 36, 0.56) 0%, rgba(10, 20, 36, 0.72) 100%), var(--gg-home-hero-bg, none) center/cover no-repeat;
}

.gg-home-hero .gg-tag-hub-title {
    color: #ffffff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.gg-home-hero .gg-tag-hub-title span {
    display: table;
    width: fit-content;
    margin: 2px auto 0;
    background: linear-gradient(90deg, #1e90ff 0%, #00e6a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.gg-home-hero .gg-tag-hub-copy,
.gg-home-hero .gg-home-topline__item {
    color: rgba(255, 255, 255, 0.96);
}

.gg-home-hero .gg-home-topline__icon {
    color: rgba(255, 255, 255, 0.92);
}

.gg-home-hero .gg-home-topline__item:nth-child(1) .gg-home-topline__icon { color: #22c7a9; }
.gg-home-hero .gg-home-topline__item:nth-child(2) .gg-home-topline__icon { color: #3b82f6; }
.gg-home-hero .gg-home-topline__item:nth-child(3) .gg-home-topline__icon { color: #f59e0b; }
.gg-home-hero .gg-home-topline__item:nth-child(4) .gg-home-topline__icon { color: #8b5cf6; }
.gg-home-hero .gg-home-topline__item:nth-child(5) .gg-home-topline__icon { color: #14b8a6; }

.gg-home-hero__inner {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 28px 20px 20px;
}

.gg-tag-hub-stat__value {
    color: #22c7a9;
    font-weight: 800;
}

.gg-main-hub-pagination--link {
    margin-top: 24px;
}

.gg-main-hub-page-link {
    text-decoration: none !important;
}

@media (max-width: 992px) {
    .gg-hub-grid {
        row-gap: 26px;
    }
}

@media (max-width: 768px) {
    .gg-hub-grid {
        row-gap: 28px;
    }

    .gg-search-box {
        padding: 18px;
    }

    .gg-hub-search-input {
        font-size: 16px;
        padding: 16px;
    }

    .gg-tag-hub-title {
        font-size: 28px;
    }

    .gg-tag-hub-copy {
        font-size: 15px;
    }

    .gg-tag-hub-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gg-tag-hub-related-card {
        min-height: 220px;
    }

    .gg-hub-alpha-nav {
        gap: 8px;
        margin-bottom: 18px;
    }

    .gg-hub-alpha-link {
        min-width: 34px;
        height: 34px;
        padding: 0 10px;
        font-size: 12px;
    }

    .gg-hub-alpha-title {
        font-size: 22px;
    }

    .gg-home-hero .gg-tag-hub-title {
        font-size: 30px;
    }

    .gg-home-topline__summary {
        gap: 6px;
    }

    .gg-hub-intro {
        padding: 15px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .gg-hub-grid {
        row-gap: 30px;
    }

    .gg-hub-title {
        font-size: 16px;
    }

    .gg-hub-meta {
        font-size: 14px;
    }
}

@media only screen and (max-width: 991px) {
    .gg-home-topline__summary {
        gap: 10px 14px;
    }

    .gg-home-code-row {
        grid-template-columns: minmax(0, 1.2fr) minmax(90px, .55fr) minmax(0, 1fr);
    }

    .gg-home-code-row__added {
        grid-column: 1 / -1;
    }
}

@media only screen and (max-width: 767px) {
    .gg-home-search-suggest-host.is-mobile-portal {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .gg-home-search-suggest-host.is-mobile-portal .gg-propose-wrapper {
        width: min(320px, calc(100vw - 32px));
        max-width: 100%;
        margin: 0 auto;
        z-index: 30;
    }

    .gg-home-hero {
        padding: 18px 10px 12px;
    }

    .gg-home-hero.gg-tag-hub-hero {
        left: 50% !important;
        width: 100vw !important;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
        border-radius: 0 !important;
    }

    .gg-home-hero .gg-tag-hub-title {
        max-width: 94%;
        font-size: 34px !important;
        line-height: .96 !important;
    }

    .gg-home-hero .gg-tag-hub-copy {
        max-width: 94%;
        font-size: 15px;
        line-height: 1.45;
    }

    .gg-home-hero__inner {
        padding: 8px 8px 6px;
    }

    .gg-home-hero-search {
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }

    .gg-home-hero .gg-search-box {
        border-radius: 10px;
    }

    .gg-home-hero .gg-hub-search-input {
        min-height: 34px;
        padding: 0 12px 0 44px;
        font-size: 15px;
    }

    .gg-home-hero .gg-hub-search-input::placeholder {
        font-size: 15px;
    }

    .gg-home-quick-actions {
        width: calc(100% - 32px);
        margin: 14px auto 0;
        gap: 10px;
    }

    .gg-home-quick-actions .gg-home-quick-action,
    .gg-home-quick-actions .gg-home-quick-action--suggest,
    .gg-home-quick-action--suggest .gg-propose-trigger,
    .gg-home-dev-cta__actions .gg-home-quick-action {
        min-height: 42px;
        padding: 0 16px;
        font-size: 13px;
    }

    .gg-home-quick-actions .gg-home-quick-action--primary,
    .gg-home-quick-actions .gg-home-quick-action--primary:hover {
        color: #fff;
    }

    .gg-home-quick-actions .gg-home-quick-action--suggest {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .gg-home-quick-actions .gg-home-quick-action--suggest .gg-propose-trigger,
    .gg-home-quick-actions .gg-home-quick-action--suggest .gg-propose-trigger:hover,
    .gg-home-quick-actions .gg-home-quick-action--suggest .gg-propose-trigger:focus,
    .gg-home-quick-actions .gg-home-quick-action--suggest .gg-propose-trigger:active {
        border: 1px solid #dbe5f1;
        background: #fff;
        box-shadow: none;
    }

    .gg-home-activity-line {
        margin-top: 18px;
    }

    .gg-site-home-featured-codes {
        grid-template-columns: 1fr;
    }

    .gg-site-home-featured-card,
    .gg-site-home-featured-card:first-child {
        min-height: 260px;
    }

    .gg-site-home-hub {
        gap: 28px;
    }

    .gg-site-home-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .gg-site-home-section-actions {
        justify-content: flex-start;
    }

    .gg-home-topline__summary {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        text-align: center;
    }

    .gg-home-topline__item {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 13px;
    }

    .gg-home-topline__icon {
        width: 18px;
        height: 18px;
    }

    .gg-home-hero-foot {
        margin-top: 14px;
    }

    .gg-home-meta-panel {
        display: flex;
        flex-direction: column;
        padding: 14px 12px;
    }

    .gg-home-status-panel {
        order: 1;
    }

    .gg-home-trust-badges {
        order: 2;
        justify-content: center;
    }

    .gg-home-status-panel .gg-tag-hub-stats {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gg-home-search-modal {
        position: fixed;
        inset: 0;
        z-index: 1200;
    }

    .gg-home-search-modal.is-open {
        display: block;
    }

    .gg-home-search-modal__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(8, 15, 28, 0.7);
    }

    .gg-home-search-modal__panel {
        position: relative;
        z-index: 1;
        display: block;
        width: 100%;
        height: 100%;
        padding: 14px 0 18px;
        background: transparent;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .gg-home-search-modal__top,
    .gg-home-search-modal__title {
        display: none;
    }

    .gg-home-search-modal__close {
        display: block;
        width: 24px;
        height: 24px;
        min-width: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent !important;
        color: #0f172a;
        font-size: 24px;
        font-weight: 700;
        line-height: 1;
        box-shadow: none;
        outline: none;
        appearance: none;
        -webkit-appearance: none;
        -webkit-tap-highlight-color: transparent;
    }

    .gg-home-search-modal__close:hover,
    .gg-home-search-modal__close:focus,
    .gg-home-search-modal__close:active {
        background: transparent !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .gg-home-search-modal__close span {
        color: #0f172a !important;
        line-height: 1;
        display: block;
        text-shadow: 0 0 1px rgba(255, 255, 255, 0.85);
    }

    .gg-home-search-modal__mount {
        width: 100%;
        padding: 14px 12px 0;
        box-sizing: border-box;
    }

    .gg-home-search-modal__mount .gg-search-wrap,
    .gg-home-search-modal__mount .gg-home-hero-search {
        display: block !important;
        width: calc(100vw - 24px) !important;
        max-width: 620px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .gg-home-search-modal__mount .gg-search-box {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .gg-home-search-modal__mount .gg-search-box > .gg-home-search-modal__close {
        position: absolute;
        top: 50%;
        right: 10px;
        left: auto;
        z-index: 4;
        transform: translateY(-50%);
    }

    .gg-home-search-modal__mount .gg-hub-search-input,
    .gg-home-search-modal__mount .gg-hub-search-results {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .gg-home-search-modal__mount .gg-hub-search-input {
        padding-left: 42px !important;
        padding-right: 34px !important;
    }

    .gg-home-search-modal__mount .gg-hub-search-results {
        left: 0 !important;
        right: 0 !important;
        max-height: calc(100vh - 126px);
        overflow: auto;
    }

    .gg-home-search-modal__mount .gg-hub-search-results.active {
        max-height: calc(100vh - 126px);
    }

    .gg-home-recent-codes {
        width: 100% !important;
        padding: 0 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .gg-home-codes-list,
    .gg-home-recent-codes .gg-home-codes-list {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .gg-home-recent-codes .gg-home-code-row--head {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 10px 14px 6px !important;
        font-size: 13px !important;
    }

    .gg-home-recent-codes .gg-home-code-row--head .gg-home-code-row__game {
        display: block !important;
        width: 100% !important;
        text-align: center;
        font-size: 13px !important;
        font-weight: 800;
        letter-spacing: .04em;
    }

    .gg-home-recent-codes .gg-home-code-row--head .gg-home-code-row__code,
    .gg-home-recent-codes .gg-home-code-row--head .gg-home-code-row__reward,
    .gg-home-recent-codes .gg-home-code-row--head .gg-home-code-row__added {
        display: none !important;
    }

    .gg-home-section-head {
        align-items: flex-start;
    }

    .gg-home-section-head__link {
        margin-top: 3px;
    }

    .gg-home-recent-codes .gg-home-code-row {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 16px 18px !important;
        box-sizing: border-box !important;
    }

    .gg-home-recent-codes .gg-home-code-row__game,
    .gg-home-recent-codes .gg-home-code-row__code {
        grid-column: 1 / -1;
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .gg-home-recent-codes .gg-home-code-row__reward,
    .gg-home-recent-codes .gg-home-code-row__added {
        grid-column: auto;
        justify-self: center;
        width: auto;
        min-width: max-content;
    }

    .gg-home-code-row__game,
    .gg-home-code-row__code,
    .gg-home-code-row__added {
        text-align: center;
    }

    .gg-home-code-game {
        justify-content: center;
        width: 100%;
    }

    .gg-home-code-row__code {
        justify-content: center;
    }

    .gg-home-code-row__added {
        display: flex;
        justify-content: center;
    }

    .gg-home-recent-codes .gg-home-code-row__code .gg-home-code-inline,
    .gg-home-recent-codes .gg-home-code-row__code .gg-home-code-inline.gg-copy-btn,
    .gg-home-recent-codes .gg-home-code-row__code .gg-code-card .gg-home-code-inline.gg-copy-btn,
    .gg-home-recent-codes .gg-home-code-row__code .gg-home-code-inline.gg-copy-btn:hover,
    .gg-home-recent-codes .gg-home-code-row__code .gg-home-code-inline.gg-copy-btn:focus,
    .gg-home-recent-codes .gg-home-code-row__code .gg-home-code-inline.gg-copy-btn:active,
    .gg-home-recent-codes .gg-home-code-row__code .gg-code-card .gg-home-code-inline.gg-copy-btn:hover,
    .gg-home-recent-codes .gg-home-code-row__code .gg-code-card .gg-home-code-inline.gg-copy-btn:focus,
    .gg-home-recent-codes .gg-home-code-row__code .gg-code-card .gg-home-code-inline.gg-copy-btn:active {
        justify-content: center;
        gap: 10px;
        width: auto;
        min-width: 180px;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .gg-home-recent-codes .gg-home-code-inline__value {
        flex: 0 1 auto;
        overflow: visible;
        text-overflow: clip;
    }

    .gg-home-recent-codes .gg-home-code-inline__value--reward-link {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .gg-home-recent-codes .gg-home-code-inline__icon {
        flex: 0 0 auto;
    }

    .gg-home-recent-codes .gg-home-code-added-meta {
        white-space: nowrap;
    }

    .gg-home-recent-codes .gg-home-code-row__reward .gg-home-code-added-meta > span:last-child::before,
    .gg-home-recent-codes .gg-home-code-row__added .gg-home-code-added-meta > span:last-child::before {
        font-size: 11px;
        font-weight: 800;
        letter-spacing: .04em;
        text-transform: uppercase;
        color: #7b8ca0;
        margin-right: 4px;
    }

    .gg-home-recent-codes .gg-home-code-row__reward .gg-home-code-added-meta > span:last-child::before {
        content: "Added";
    }

    .gg-home-recent-codes .gg-home-code-row__added .gg-home-code-added-meta > span:last-child::before {
        content: "Exp.";
    }

    .gg-category-hub-archive-links {
        grid-template-columns: 1fr;
    }

    .gg-category-hub {
        gap: 28px;
    }

    .gg-category-hub-hero {
        gap: 20px;
    }

    .gg-category-hub-banner-overlay {
        padding: 20px 20px 22px;
    }

    .gg-category-hub-quicklinks {
        grid-template-columns: 1fr;
    }

    .gg-category-hub-title {
        font-size: 28px;
    }

    .gg-category-hub-description {
        font-size: 16px;
    }
}

@media (max-width: 560px) {
    .gg-site-home-link-grid {
        grid-template-columns: 1fr;
    }
}

