/*
|--------------------------------------------------------------------------
| Video Gaming World - Global Content Overlay
|--------------------------------------------------------------------------
*/

body.overlay-open {
    overflow: hidden;
}

.vgw-content-overlay[hidden] {
    display: none !important;
}

.vgw-content-overlay {
    position: fixed;
    z-index: 99999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 34px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.vgw-content-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.vgw-content-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 8, 15, .82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vgw-content-overlay__panel {
    position: relative;
    z-index: 2;
    width: min(1180px, 100%);
    max-height: calc(100vh - 68px);
    overflow: hidden;
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: #10141b;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .48);
    transform: translateY(22px) scale(.985);
    transition: transform .22s ease;
}

.vgw-content-overlay.is-open .vgw-content-overlay__panel {
    transform: translateY(0) scale(1);
}

.vgw-content-overlay__close {
    position: sticky;
    z-index: 20;
    top: 14px;
    float: right;
    display: grid;
    width: 42px;
    height: 42px;
    margin: 14px 14px -56px 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #10141b;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
}

.vgw-content-overlay__close:hover {
    background: #00c8f8;
    color: #07121c;
}

.vgw-content-overlay__status {
    max-height: calc(100vh - 68px);
    min-height: 340px;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    padding: 60px 24px;
    color: #5f6874;
    text-align: center;
}

.vgw-content-overlay__spinner {
    width: 46px;
    height: 46px;
    border: 4px solid #dce3e8;
    border-top-color: #00c8f8;
    border-radius: 50%;
    animation: vgw-overlay-spin .75s linear infinite;
}

.vgw-content-overlay__status-text {
    font-size: 14px;
    font-weight: 800;
}

.vgw-content-overlay__content {
    min-height: 1px;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    border-radius: 0 0 12px 12px;
    scrollbar-gutter: stable;
}

.overlay-error {
    padding: 90px 30px;
    text-align: center;
}

.overlay-error h2 {
    margin: 0 0 12px;
    font-size: 34px;
}

.overlay-error p {
    margin: 0;
    color: #727b86;
}

@keyframes vgw-overlay-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 720px) {
    .vgw-content-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .vgw-content-overlay__panel {
        width: 100%;
        max-height: 94vh;
        border-radius: 16px 16px 0 0;
        transform: translateY(100%);
    }

    .vgw-content-overlay.is-open .vgw-content-overlay__panel {
        transform: translateY(0);
    }

    .vgw-content-overlay__close {
        top: 10px;
        margin: 10px 10px -52px 0;
    }

    .vgw-content-overlay__status,
    .vgw-content-overlay__content {
        max-height: 94vh;
    }

    .vgw-content-overlay__content {
        border-radius: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vgw-content-overlay,
    .vgw-content-overlay__panel,
    .vgw-content-overlay__spinner {
        transition: none;
        animation: none;
    }
}


/*
|--------------------------------------------------------------------------
| Video overlay redesign
|--------------------------------------------------------------------------
*/

.vgw-video-overlay,
.vgw-video-overlay * {
    font-family: Arial, Helvetica, sans-serif;
}

.vgw-video-overlay {
    width: 100%;
    padding: clamp(20px, 3vw, 36px) clamp(28px, 5vw, 64px) clamp(26px, 4vw, 44px);
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.vgw-video-overlay__header {
    width: min(1040px, 100%);
    margin: 0 auto 18px;
    padding-right: 54px;
}

.vgw-video-overlay__type {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #1ce4f5;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.vgw-video-overlay__title {
    max-width: 980px;
    margin: 0;
    color: #0b1017;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(30px, 3.6vw, 52px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.02;
    text-wrap: balance;
}

.vgw-video-overlay__details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    margin-top: 15px;
}

.vgw-video-overlay__game {
    display: inline-flex;
    min-width: min(100%, 315px);
    align-items: center;
    gap: 13px;
    color: #10141b;
    text-decoration: none;
}

a.vgw-video-overlay__game:hover strong {
    color: #00afd9;
}

.vgw-video-overlay__game-cover {
    width: 48px;
    height: 62px;
    flex: 0 0 auto;
    border-radius: 5px;
    background: #e8edf1;
    object-fit: cover;
    box-shadow: 0 7px 18px rgba(11, 16, 23, .16);
}

.vgw-video-overlay__game-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.vgw-video-overlay__game-label,
.vgw-video-overlay__date small {
    color: #8a929c;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vgw-video-overlay__game-copy strong {
    overflow: hidden;
    color: #10141b;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .18s ease;
}

.vgw-video-overlay__game-arrow {
    margin-left: 5px;
    color: #00bde8;
    font-size: 20px;
    transition: transform .18s ease;
}

a.vgw-video-overlay__game:hover .vgw-video-overlay__game-arrow {
    transform: translateX(4px);
}

.vgw-video-overlay__date {
    display: inline-flex;
    min-height: 62px;
    align-items: center;
    gap: 11px;
    padding-left: 27px;
    border-left: 1px solid #dce2e7;
    color: #10141b;
}

.vgw-video-overlay__date-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 50%;
    background: #1ce4f5;
}

.vgw-video-overlay__date-icon img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.vgw-video-overlay__date > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vgw-video-overlay__date time {
    color: #2b333c;
    font-size: 14px;
    font-weight: 800;
}


.vgw-video-overlay__platforms {
    display: inline-flex;
    min-height: 62px;
    align-items: center;
    gap: 11px;
    padding-left: 27px;
    border-left: 1px solid #dce2e7;
    color: #10141b;
}

.vgw-video-overlay__platforms-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #1ce4f5;
}

.vgw-video-overlay__platforms-icon img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.vgw-video-overlay__platforms-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.vgw-video-overlay__platforms-copy small {
    color: #8a929c;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vgw-video-overlay__platform-list {
    display: flex;
    max-width: 360px;
    flex-wrap: wrap;
    gap: 5px;
}

.vgw-video-overlay__platform-list span {
    padding: 4px 7px;
    border-radius: 4px;
    background: #eef3f6;
    color: #2b333c;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.vgw-video-overlay__player-shell {
    width: min(1040px, 100%);
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #dfe5e9;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(13, 23, 34, .13);
}

.vgw-video-overlay__player {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 7px;
    background: #05080c;
    aspect-ratio: 16 / 9;
}

.vgw-video-overlay__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 720px) {
    .vgw-video-overlay {
        padding: 22px 18px 20px;
    }

    .vgw-video-overlay__header {
        margin-bottom: 20px;
        padding-right: 38px;
    }

    .vgw-video-overlay__title {
        font-size: clamp(30px, 9vw, 44px);
    }

    .vgw-video-overlay__details {
        align-items: flex-start;
        flex-direction: column;
    }

    .vgw-video-overlay__game {
        width: 100%;
        min-width: 0;
    }

    .vgw-video-overlay__date,
    .vgw-video-overlay__platforms {
        width: 100%;
        min-height: 48px;
        padding-top: 12px;
        padding-left: 0;
        border-top: 1px solid #dce2e7;
        border-left: 0;
    }

    .vgw-video-overlay__platform-list {
        max-width: none;
    }

    .vgw-video-overlay__player-shell {
        padding: 5px;
        border-radius: 9px;
    }
}


/*
|--------------------------------------------------------------------------
| News overlay redesign
|--------------------------------------------------------------------------
*/

.vgw-news-overlay,
.vgw-news-overlay * {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.vgw-news-overlay {
    width: 100%;
    padding: clamp(20px, 3vw, 36px) clamp(28px, 5vw, 64px) clamp(34px, 5vw, 58px);
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.vgw-news-overlay__header {
    width: min(1040px, 100%);
    margin: 0 auto 18px;
    padding-right: 54px;
}

.vgw-news-overlay__type {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #1ce4f5;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.vgw-news-overlay__title {
    max-width: 980px;
    margin: 0;
    color: #0b1017;
    font-size: clamp(30px, 3.6vw, 52px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.02;
    text-wrap: balance;
}

.vgw-news-overlay__details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    margin-top: 15px;
}

.vgw-news-overlay__game {
    display: inline-flex;
    min-width: min(100%, 315px);
    align-items: center;
    gap: 13px;
    color: #10141b;
    text-decoration: none;
}

a.vgw-news-overlay__game:hover strong {
    color: #00afd9;
}

.vgw-news-overlay__game-cover {
    width: 48px;
    height: 62px;
    flex: 0 0 auto;
    border-radius: 5px;
    background: #e8edf1;
    object-fit: cover;
    box-shadow: 0 7px 18px rgba(11, 16, 23, .16);
}

.vgw-news-overlay__game-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.vgw-news-overlay__game-label,
.vgw-news-overlay__date small,
.vgw-news-overlay__platforms-copy small {
    color: #8a929c;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vgw-news-overlay__game-copy strong {
    overflow: hidden;
    color: #10141b;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color .18s ease;
}

.vgw-news-overlay__game-arrow {
    margin-left: 5px;
    color: #00bde8;
    font-size: 20px;
    transition: transform .18s ease;
}

a.vgw-news-overlay__game:hover .vgw-news-overlay__game-arrow {
    transform: translateX(4px);
}

.vgw-news-overlay__date,
.vgw-news-overlay__platforms {
    display: inline-flex;
    min-height: 62px;
    align-items: center;
    gap: 11px;
    padding-left: 27px;
    border-left: 1px solid #dce2e7;
    color: #10141b;
}

.vgw-news-overlay__date-icon,
.vgw-news-overlay__platforms-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #1ce4f5;
}

.vgw-news-overlay__date-icon img,
.vgw-news-overlay__platforms-icon img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.vgw-news-overlay__date > span:last-child,
.vgw-news-overlay__platforms-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.vgw-news-overlay__date time {
    color: #2b333c;
    font-size: 14px;
    font-weight: 800;
}

.vgw-news-overlay__platform-list {
    display: flex;
    max-width: 360px;
    flex-wrap: wrap;
    gap: 5px;
}

.vgw-news-overlay__platform-list > span {
    padding: 4px 7px;
    border-radius: 4px;
    background: #eef3f6;
    color: #2b333c;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.vgw-news-overlay__image-shell {
    width: min(1040px, 100%);
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #dfe5e9;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(13, 23, 34, .13);
}

.vgw-news-overlay__image {
    display: block;
    width: 100%;
    max-height: 620px;
    border-radius: 7px;
    background: #e9eef2;
    object-fit: cover;
}

.vgw-news-overlay__article {
    width: min(1040px, 100%);
    margin: clamp(28px, 4vw, 46px) auto 0;
    color: #252c34;
    font-size: 17px;
    line-height: 1.75;
}

.vgw-news-overlay__article > :first-child {
    margin-top: 0;
}

.vgw-news-overlay__article > :last-child {
    margin-bottom: 0;
}

.vgw-news-overlay__article p,
.vgw-news-overlay__article ul,
.vgw-news-overlay__article ol,
.vgw-news-overlay__article blockquote,
.vgw-news-overlay__article table,
.vgw-news-overlay__article figure {
    margin: 0 0 1.35em;
}

.vgw-news-overlay__article h2,
.vgw-news-overlay__article h3,
.vgw-news-overlay__article h4 {
    margin: 1.55em 0 .55em;
    color: #0b1017;
    font-weight: 800;
    line-height: 1.15;
}

.vgw-news-overlay__article h2 {
    font-size: clamp(25px, 3vw, 36px);
    letter-spacing: -.03em;
}

.vgw-news-overlay__article h3 {
    font-size: clamp(21px, 2.4vw, 28px);
    letter-spacing: -.02em;
}

.vgw-news-overlay__article h4 {
    font-size: 20px;
}

.vgw-news-overlay__article a {
    color: #00afd9;
    font-weight: 700;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.vgw-news-overlay__article img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.6em auto;
    border-radius: 8px;
}

.vgw-news-overlay__article blockquote {
    padding: 18px 22px;
    border-left: 4px solid #1ce4f5;
    border-radius: 0 7px 7px 0;
    background: #eef5f7;
    color: #34404a;
    font-size: 18px;
    font-weight: 700;
}

.vgw-news-overlay__article ul,
.vgw-news-overlay__article ol {
    padding-left: 1.4em;
}

.vgw-news-overlay__article li + li {
    margin-top: .45em;
}

.vgw-news-overlay__article iframe,
.vgw-news-overlay__article video {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 1.6em auto;
    border: 0;
    border-radius: 8px;
    aspect-ratio: 16 / 9;
}

@media (max-width: 720px) {
    .vgw-news-overlay {
        padding: 22px 18px 30px;
    }

    .vgw-news-overlay__header {
        margin-bottom: 20px;
        padding-right: 38px;
    }

    .vgw-news-overlay__title {
        font-size: clamp(30px, 9vw, 44px);
    }

    .vgw-news-overlay__details {
        align-items: flex-start;
        flex-direction: column;
    }

    .vgw-news-overlay__game {
        width: 100%;
        min-width: 0;
    }

    .vgw-news-overlay__date,
    .vgw-news-overlay__platforms {
        width: 100%;
        min-height: 48px;
        padding-top: 12px;
        padding-left: 0;
        border-top: 1px solid #dce2e7;
        border-left: 0;
    }

    .vgw-news-overlay__platform-list {
        max-width: none;
    }

    .vgw-news-overlay__image-shell {
        padding: 5px;
        border-radius: 9px;
    }

    .vgw-news-overlay__image {
        max-height: none;
    }

    .vgw-news-overlay__article {
        font-size: 16px;
        line-height: 1.7;
    }
}


/*
|--------------------------------------------------------------------------
| Overlay share dropdown - video and news
|--------------------------------------------------------------------------
*/

.vgw-video-overlay__header,
.vgw-news-overlay__header {
    position: relative;
}

.vgw-overlay-share {
    position: absolute;
    z-index: 12;
    top: 0;
    right: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.vgw-overlay-share__button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid #dce3e8;
    border-radius: 7px;
    background: #fff;
    color: #202832;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(12, 23, 34, .08);
    transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.vgw-overlay-share__button:hover,
.vgw-overlay-share__button[aria-expanded="true"] {
    border-color: #1ce4f5;
    background: #1ce4f5;
    color: #07121c;
    transform: translateY(-1px);
}

.vgw-overlay-share__button svg {
    width: 15px;
    height: 15px;
    overflow: visible;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.vgw-overlay-share__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 185px;
    overflow: hidden;
    padding: 6px;
    border: 1px solid #dce3e8;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(8, 18, 28, .18);
}

.vgw-overlay-share__menu[hidden] {
    display: none !important;
}

.vgw-overlay-share__menu button {
    display: flex;
    width: 100%;
    min-height: 39px;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #222b35;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.vgw-overlay-share__menu button:hover,
.vgw-overlay-share__menu button:focus-visible {
    outline: none;
    background: #edfafd;
    color: #008db0;
}

.vgw-overlay-share__network-icon,
.vgw-overlay-share__instagram-icon {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #1ce4f5;
    color: #07121c;
    font-size: 13px;
    font-weight: 900;
}

.vgw-overlay-share__instagram-icon {
    position: relative;
    border-radius: 7px;
}

.vgw-overlay-share__instagram-icon::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 3px;
}

.vgw-overlay-share__instagram-icon::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 5px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
}

@media (max-width: 720px) {
    .vgw-overlay-share {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 12px;
    }

    .vgw-overlay-share__menu {
        right: auto;
        left: 0;
    }
}




/*
|--------------------------------------------------------------------------
| Review overlay
|--------------------------------------------------------------------------
| Add this block to the end of content-overlay.css.
|--------------------------------------------------------------------------
*/

.vgw-review-overlay,
.vgw-review-overlay * {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.vgw-review-overlay {
    position: relative;
    width: 100%;
    padding: clamp(20px, 3vw, 36px) clamp(28px, 5vw, 64px) clamp(36px, 5vw, 62px);
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}


.vgw-review-overlay__header,
.vgw-review-overlay__image-shell,
.vgw-review-overlay__body {
    width: min(1040px, 100%);
    margin-inline: auto;
}

.vgw-review-overlay__header {
    position: relative;
    margin-bottom: 20px;
    padding-right: 148px;
}

.vgw-review-overlay__type,
.vgw-review-overlay__section-kicker {
    display: inline-flex;
    align-items: center;
    color: #00aeca;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.vgw-review-overlay__type {
    min-height: 26px;
    margin-bottom: 8px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #1ce4f5;
    color: #ffffff;
}

.vgw-review-overlay__title {
    max-width: 900px;
    margin: 0;
    color: #0b1017;
    font-size: clamp(30px, 3.6vw, 52px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.02;
    text-wrap: balance;
}

.vgw-review-overlay__details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    margin-top: 16px;
}

.vgw-review-overlay__game {
    display: inline-flex;
    min-width: min(100%, 315px);
    align-items: center;
    gap: 13px;
    color: #10141b;
    text-decoration: none;
}

a.vgw-review-overlay__game:hover strong {
    color: #00afd9;
}

.vgw-review-overlay__game-cover {
    width: 48px;
    height: 62px;
    flex: 0 0 auto;
    border-radius: 5px;
    background: #e8edf1;
    object-fit: cover;
    box-shadow: 0 7px 18px rgba(11, 16, 23, .16);
}

.vgw-review-overlay__game-copy,
.vgw-review-overlay__meta > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.vgw-review-overlay__game-copy small,
.vgw-review-overlay__meta small {
    color: #8a929c;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vgw-review-overlay__game-copy strong {
    overflow: hidden;
    color: #10141b;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vgw-review-overlay__game-arrow {
    margin-left: 4px;
    color: #00bde8;
    font-size: 20px;
    transition: transform .18s ease;
}

a.vgw-review-overlay__game:hover .vgw-review-overlay__game-arrow {
    transform: translateX(4px);
}

.vgw-review-overlay__meta {
    display: inline-flex;
    min-height: 62px;
    align-items: center;
    gap: 11px;
    padding-left: 27px;
    border-left: 1px solid #dce2e7;
    color: #10141b;
}

.vgw-review-overlay__meta-icon {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #1ce4f5;
    color: #08131b;
    font-size: 15px;
    font-weight: 900;
}

.vgw-review-overlay__meta time,
.vgw-review-overlay__meta strong {
    color: #2b333c;
    font-size: 14px;
    font-weight: 800;
}

.vgw-review-overlay__image-shell {
    position: relative;
    overflow: visible;
    margin-top: 4px;
    margin-bottom: 34px;
    padding: 10px;
    border: 1px solid #dfe5e9;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(13, 23, 34, .13);
}

.vgw-review-overlay__image {
    display: block;
    width: 100%;
    max-height: 590px;
    border-radius: 7px;
    object-fit: cover;
    object-position: center;
}

.vgw-review-overlay__body {
    color: #303844;
}

.vgw-review-overlay__intro,
.vgw-review-overlay__breakdown,
.vgw-review-overlay__verdict {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid #e1e6ea;
    border-radius: 12px;
    background: #ffffff;
}

.vgw-review-overlay__breakdown,
.vgw-review-overlay__pros-cons,
.vgw-review-overlay__verdict,
.vgw-review-overlay__final-score {
    margin-top: 24px;
}

.vgw-review-overlay__section-heading {
    margin-bottom: 22px;
}

.vgw-review-overlay__section-heading h2,
.vgw-review-overlay__verdict h2 {
    margin: 5px 0 0;
    color: #0c1118;
    font-size: clamp(25px, 3vw, 36px);
    letter-spacing: -.035em;
    line-height: 1.08;
}

.vgw-review-overlay__rich-text {
    color: #404955;
    font-size: 16px;
    line-height: 1.78;
}

.vgw-review-overlay__rich-text > :first-child {
    margin-top: 0;
}

.vgw-review-overlay__rich-text > :last-child {
    margin-bottom: 0;
}

.vgw-review-overlay__rich-text p {
    margin: 0 0 1.15em;
}

.vgw-review-overlay__rich-text h2,
.vgw-review-overlay__rich-text h3,
.vgw-review-overlay__rich-text h4 {
    margin: 1.3em 0 .5em;
    color: #111821;
    line-height: 1.15;
}

.vgw-review-overlay__rich-text img,
.vgw-review-overlay__rich-text iframe,
.vgw-review-overlay__rich-text video {
    max-width: 100%;
    border-radius: 8px;
}

.vgw-review-overlay__rich-text a {
    color: #00a8cf;
    font-weight: 800;
}

.vgw-review-overlay__score-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.vgw-review-overlay__score-section {
    padding: 26px 28px 28px;
    border: 1px solid #e2e7eb;
    border-radius: 10px;
    background: #f9fbfc;
}

.vgw-review-overlay__score-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 11px;
}

.vgw-review-overlay__score-heading h3 {
    margin: 0;
    color: #10161e;
    font-size: 21px;
    letter-spacing: -.025em;
}

.vgw-review-overlay__score-heading strong {
    color: #0c131b;
    font-size: 24px;
    letter-spacing: -.04em;
}

.vgw-review-overlay__score-heading strong small {
    margin-left: 2px;
    color: #8a929c;
    font-size: 11px;
    letter-spacing: 0;
}

.vgw-review-overlay__score-track {
    height: 8px;
    overflow: hidden;
    margin-bottom: 17px;
    border-radius: 999px;
    background: #e4eaee;
}

.vgw-review-overlay__score-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #1ce4f5;
}

.vgw-review-overlay__score-section .vgw-review-overlay__rich-text {
    font-size: 14px;
    line-height: 1.65;
}

.vgw-review-overlay__pros-cons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.vgw-review-overlay__list-card {
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid #e0e6ea;
    border-radius: 12px;
    background: #ffffff;
}

.vgw-review-overlay__list-card h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: #111821;
    font-size: 25px;
}

.vgw-review-overlay__list-card h2 i {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border-radius: 50%;
    font-size: 13px;
}

.vgw-review-overlay__list-card--pros h2 i {
    background: #e5f7ed;
    color: #168247;
}

.vgw-review-overlay__list-card--cons h2 i {
    background: #ffebee;
    color: #c93642;
}

.vgw-review-overlay__list-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vgw-review-overlay__list-card li {
    position: relative;
    margin: 0;
    padding: 10px 0 10px 24px;
    border-bottom: 1px solid #edf1f3;
}

.vgw-review-overlay__list-card li:last-child {
    border-bottom: 0;
}

.vgw-review-overlay__list-card--pros li::before,
.vgw-review-overlay__list-card--cons li::before {
    position: absolute;
    left: 0;
    top: 11px;
    font-weight: 900;
}

.vgw-review-overlay__list-card--pros li::before {
    content: "✓";
    color: #168247;
}

.vgw-review-overlay__list-card--cons li::before {
    content: "×";
    color: #c93642;
}

.vgw-review-overlay__verdict {
    position: relative;
    overflow: hidden;
}

.vgw-review-overlay__verdict::before {
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: #1ce4f5;
    content: "";
}

.vgw-review-overlay__verdict .vgw-review-overlay__rich-text {
    margin-top: 18px;
    font-size: 17px;
}

.vgw-review-overlay__final-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 5vw, 54px);
    padding: clamp(32px, 5vw, 54px);
    border-radius: 14px;
    background: #10141b;
    color: #ffffff;
    text-align: center;
}

.vgw-review-overlay__final-score > div {
    display: grid;
    width: 164px;
    height: 164px;
    place-items: center;
    align-content: center;
    border: 3px solid #1ce4f5;
    border-radius: 50%;
    background: #151c25;
    box-shadow: inset 0 0 0 8px rgba(28, 228, 245, .08);
}

.vgw-review-overlay__final-score span {
    color: #aeb8c3;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.vgw-review-overlay__final-score strong {
    margin: 2px 0 -1px;
    color: #1ce4f5;
    font-size: 62px;
    letter-spacing: -.065em;
    line-height: 1;
}

.vgw-review-overlay__final-score small {
    color: #aeb8c3;
    font-size: 11px;
    font-weight: 800;
}

.vgw-review-overlay__final-score p {
    margin: 0;
    font-size: clamp(30px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -.05em;
}

@media (max-width: 760px) {
    .vgw-review-overlay {
        padding: 22px 18px 34px;
    }

    .vgw-review-overlay__header {
        padding-right: 92px;
    }

    .vgw-review-overlay__title {
        font-size: clamp(30px, 9vw, 44px);
    }

    .vgw-review-overlay__details {
        align-items: flex-start;
        flex-direction: column;
    }

    .vgw-review-overlay__game {
        width: 100%;
        min-width: 0;
    }

    .vgw-review-overlay__meta {
        width: 100%;
        min-height: 48px;
        padding-top: 12px;
        padding-left: 0;
        border-top: 1px solid #dce2e7;
        border-left: 0;
    }

    .vgw-review-overlay__image {
        max-height: 430px;
    }

    .vgw-review-overlay__score-sections,
    .vgw-review-overlay__pros-cons {
        grid-template-columns: 1fr;
    }

    .vgw-review-overlay__final-score {
        flex-direction: column;
    }
}


/* Score and Must Buy overlays */
.vgw-review-overlay__image-score {
    position: absolute;
    z-index: 4;
    top: 28px;
    right: 28px;
    display: flex;
    width: 92px;
    height: 86px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 3px solid #ffffff;
    border-radius: 14px 4px 14px 14px;
    background: #07121c;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(7, 18, 28, .35);
}

.vgw-review-overlay__image-score::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 10px 0 0;
    background: #1ce4f5;
    content: "";
}

.vgw-review-overlay__image-score strong {
    color: #1ce4f5;
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -.05em;
    line-height: 1;
}

.vgw-review-overlay__image-score small {
    margin-top: 5px;
    color: rgba(255, 255, 255, .72);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.vgw-review-overlay__must-buy {
    position: absolute;
    z-index: 4;
    top: 128px;
    right: 28px;
    display: block;
    width: 112px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(7, 18, 28, .3));
}

@media (max-width: 600px) {
    .vgw-review-overlay__image-score {
        top: 18px;
        right: 18px;
        width: 76px;
        height: 72px;
    }

    .vgw-review-overlay__image-score strong {
        font-size: 28px;
    }

    .vgw-review-overlay__must-buy {
        top: 102px;
        right: 18px;
        width: 88px;
    }
}

/* Dedicated category text */
.vgw-review-overlay__score-section .vgw-review-overlay__rich-text {
    display: block;
    margin-top: 0;
    color: #404955;
    font-size: 15px;
    line-height: 1.72;
}

.vgw-review-overlay__score-section .vgw-review-overlay__rich-text:empty {
    display: none;
}

.vgw-review-overlay__score-heading h3 {
    flex: 1 1 auto;
}

.vgw-review-overlay__score-heading strong {
    flex: 0 0 auto;
}


/* Match the Published image used by the News and Video overlays. */
.vgw-review-overlay__meta-icon img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Shared News/Video share control. */
.vgw-overlay-share {
    position: absolute;
    z-index: 12;
    top: 0;
    right: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.vgw-overlay-share__button {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid #dce3e8;
    border-radius: 7px;
    background: #fff;
    color: #202832;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(12, 23, 34, .08);
    transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.vgw-overlay-share__button:hover,
.vgw-overlay-share__button[aria-expanded="true"] {
    border-color: #1ce4f5;
    background: #1ce4f5;
    color: #07121c;
    transform: translateY(-1px);
}

.vgw-overlay-share__button svg {
    width: 15px;
    height: 15px;
    overflow: visible;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.vgw-overlay-share__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 185px;
    overflow: hidden;
    padding: 6px;
    border: 1px solid #dce3e8;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(8, 18, 28, .18);
}

.vgw-overlay-share__menu[hidden] {
    display: none !important;
}

.vgw-overlay-share__menu button {
    display: flex;
    width: 100%;
    min-height: 39px;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #222b35;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.vgw-overlay-share__menu button:hover,
.vgw-overlay-share__menu button:focus-visible {
    outline: none;
    background: #edfafd;
    color: #008db0;
}

.vgw-overlay-share__network-icon,
.vgw-overlay-share__instagram-icon {
    display: grid;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #1ce4f5;
    color: #07121c;
    font-size: 13px;
    font-weight: 900;
}

.vgw-overlay-share__instagram-icon {
    position: relative;
    border-radius: 7px;
}

.vgw-overlay-share__instagram-icon::before {
    width: 10px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 3px;
    content: "";
}

.vgw-overlay-share__instagram-icon::after {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

@media (max-width: 720px) {
    .vgw-overlay-share {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 12px;
    }

    .vgw-overlay-share__menu {
        right: auto;
        left: 0;
    }
}
