.external-hosts-page .external-game {
    display: flex;
    align-items: center;
}

.external-hosts-page .external-game-left {
    width: 220px;
    flex: 0 0 auto;
}

.external-hosts-page [data-tooltip] {
    position: relative;
    cursor: help;
}

.external-hosts-page .external-host-filter-durations {
    margin-top: 14px;
}

.external-hosts-page .external-hosts-duration-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(22, 22, 34, 0.60);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.20);
}

.external-hosts-page .external-hosts-duration-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    font-weight: 850;
    font-size: calc(11px + 0.5 * var(--size-coef));
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(28, 28, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    user-select: none;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    white-space: nowrap;
}

.external-hosts-page .external-hosts-duration-pill:hover {
    transform: translateY(-1px);
    background: rgba(34, 34, 52, 0.72);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.22);
}

.external-hosts-page .external-hosts-duration-pill.is-active {
    background: linear-gradient(135deg, rgba(var(--color-red-rgb), 0.16), rgba(22, 22, 34, 0.60));
    border-color: rgba(var(--color-red-rgb), 0.32);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.18), 0 0 0 3px rgba(var(--color-red-rgb), 0.10);
    color: rgba(255, 255, 255, 0.95);
}

.external-hosts-page .external-hosts-duration-pill:active {
    transform: translateY(0);
    opacity: 0.95;
}

.external-hosts-page .external-hosts-duration-pill:focus-visible {
    outline: none;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.18), 0 0 0 3px rgba(var(--color-red-rgb), 0.12);
    border-color: rgba(var(--color-red-rgb), 0.35);
}

.external-hosts-page [data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    max-width: min(360px, 90vw);
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(12, 12, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.35;
    font-weight: 700;
    font-size: calc(11px + 0.3 * var(--size-coef));
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 2147483647;
    white-space: normal;
    visibility: hidden;
    will-change: opacity, transform;
}

.external-hosts-page [data-tooltip]::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% + 2px);
    transform: translateX(-50%) translateY(6px);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid rgba(12, 12, 20, 0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 2147483646;
    visibility: hidden;
    will-change: opacity, transform;
}

.external-hosts-page [data-tooltip]:hover::after,
.external-hosts-page [data-tooltip]:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
}

.external-hosts-page .external-game-right {
    flex: 1;
}

.external-hosts-page .external-host {
    margin: 40px 0 !important;
    padding: 20px;
    font-size: calc(12px + 2 * var(--size-coef));
    background: linear-gradient(180deg, rgba(40, 40, 59, 0.35), rgba(22, 22, 34, 0));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.external-hosts-page .external-host-filter {
    padding: 24px;
    background: linear-gradient(135deg, rgba(40, 40, 59, 0.4), rgba(28, 28, 42, 0.6));
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}


.external-hosts-page .external-host-filter-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.external-hosts-page .external-host-filter-title .h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.3;
    font-size: calc(18px + 3 * var(--size-coef));
}

.external-hosts-page .external-host-filter-title .h3 i {
    font-size: calc(20px + 2 * var(--size-coef));
}

.external-hosts-page .external-host-filter-subtitle {
    margin-top: 8px;
    font-size: calc(12px + 1 * var(--size-coef));
    opacity: 0.7;
    line-height: 1.4;
}

.external-hosts-page .external-host-filter-reset {
    white-space: nowrap;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: calc(12px + 1 * var(--size-coef));
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.external-hosts-page .external-host-filter-reset:hover {
    background: rgba(var(--color-red-rgb), 0.15);
    border-color: rgba(var(--color-red-rgb), 0.3);
    color: var(--color-red);
    transform: translateY(-1px);
}

.external-hosts-page .external-host-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}


.external-hosts-page .external-hosts-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 22px;
}

.external-hosts-page .external-host-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 16px 12px;
    background: linear-gradient(135deg, rgba(40, 40, 59, 0.9), rgba(32, 32, 48, 0.7));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: visible;
}

.external-hosts-page .external-host-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 26px rgba(0, 0, 0, 0.32);
}

.external-hosts-page .external-host-item > div {
    padding: 14px 8px 14px 14px;
}

.external-hosts-page .external-host-brand {
    max-width: 210px;
    flex: 0 0 210px;
    text-align: center;
    padding: 18px 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.external-hosts-page .external-host-right {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.external-hosts-page .external-host-offer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: calc(9px + 1 * var(--size-coef));
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: rgba(var(--color-red-rgb), 0.15);
    color: var(--color-red);
}

.external-hosts-page .external-host-logo {
    margin: 10px auto 8px;
}

.external-hosts-page .external-host-logo img {
    max-width: 160px;
    height: auto;
}

.external-hosts-page .external-host-reviews {
    max-height: 20px;
}

.external-hosts-page .external-host-reviews img {
    max-height: 20px;
}

.external-hosts-page .external-host-intro {
    display: grid;
    grid-template-columns: minmax(160px, 180px) 1fr;
    gap: 16px 8px;
    align-items: start;
}

.external-hosts-page .external-host-intro ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: calc(11px + 1 * var(--size-coef));
    color: #fff;
    min-width: 0;
}

.external-hosts-page .external-host-intro ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.external-hosts-page .external-host-intro ul li span {
    flex: 1 1 auto;
    min-width: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
}

.external-hosts-page .external-host-actions .external-host-button {
    margin-left: 16px;
}

.external-hosts-page .external-host-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.external-hosts-page .external-hosts-pricing-inline {
    flex: 0 0 auto;
}

.external-hosts-page .external-host-lines li::before {
    content: "•";
    color: var(--color-red);
    opacity: 0.8;
}

.external-hosts-page .external-host-intro ul li + li {
    margin-top: 8px;
}

.external-hosts-page .external-host-intro ul i {
    opacity: 0.8;
    width: 22px;
    flex: 0 0 22px;
}

.external-hosts-page .external-host-flag {
    max-width: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.external-hosts-page .external-host-flag img {
    width: 30px;
    height: auto;
}

.external-hosts-page .external-host-button {
    max-width: 140px;
    flex: 0 0 140px;
}

.external-hosts-page .external-host-button .btn {
    width: 100%;
}

.external-hosts-page .external-host-more {
    max-width: 40px;
    flex: 0 0 40px;
    text-align: right;
    cursor: pointer;
    color: var(--text-secondary);
}

.external-hosts-page .external-host-description {
    flex: 0 0 100%;
    width: 100%;
    order: 40;
    overflow: hidden;
    overflow-x: auto;
    align-items: stretch;
    font-size: calc(12px + 1 * var(--size-coef));
    line-height: 1.4;
    color: var(--text-secondary);
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.external-hosts-page .external-host-item.is-open .external-host-description {
    display: flex;
}

.external-hosts-page .external-host-more i {
    transition: transform 0.25s ease;
    transform: rotate(-180deg);
}

.external-hosts-page .external-host-item.is-open .external-host-more i {
    transform: rotate(0deg);
}

.external-hosts-page .external-host-description[hidden] {
    display: none !important;
}

.external-hosts-page .external-host-description > * {
    min-width: 100px;
    padding: 7px;
    background: rgba(0, 0, 0, 0.1);
    margin-right: 10px;
    border-radius: 10px;
}

.external-hosts-page .external-host-description-title {
    padding-bottom: 3px;
    color: #fff;
    font-weight: bold;
}

.external-hosts-page .external-hosts-corner-discount {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    padding: 0 !important;
    margin: 0;
}

.external-hosts-page .external-hosts-corner-discount .external-hosts-corner-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 12px;
    font-weight: 950;
    font-size: calc(11px + 0.5 * var(--size-coef));
    letter-spacing: 0.02em;
    color: #fff;
    background: rgba(var(--background-secondary-rgb), 0.85);
    border: 0;
    box-shadow: none;
    border-radius: 0 16px 0 14px;
}

.external-hosts-page .external-hosts-pricing-inline {
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 4px;
    position: relative;
    z-index: 2;
}

.external-hosts-page .external-hosts-pricing-inline .external-hosts-price-line {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 8px;
    width: 100%;
    white-space: nowrap;
    flex-wrap: nowrap;
}

.external-hosts-page .external-hosts-pricing-inline .external-hosts-price {
    font-weight: 950;
    letter-spacing: -0.02em;
    font-size: calc(22px + 1 * var(--size-coef));
    line-height: 1.05;
    color: rgba(255, 255, 255, 0.92);
}

.external-hosts-page .external-hosts-pricing-inline.is-discounted .external-hosts-price {
    color: var(--color-red);
}

.external-hosts-page .external-hosts-pricing-inline .external-hosts-per {
    font-size: calc(12px + 0.3 * var(--size-coef));
    color: var(--text-secondary);
    opacity: 0.9;
    font-style: italic;
}

.external-hosts-page .external-hosts-pricing-inline .external-hosts-ref-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 8px;
    font-size: calc(11px + 0.5 * var(--size-coef));
    width: 100%;
}

.external-hosts-page .external-hosts-pricing-inline .external-hosts-from {
    opacity: 0.65;
    color: var(--text-secondary);
}

.external-hosts-page .external-hosts-pricing-inline .external-hosts-ref {
    font-weight: 900;
    opacity: 0.7;
    text-decoration: none;
}

.external-hosts-page .home {
    margin: 40px auto 40px auto;
}

.external-hosts-page .external-hosts-filter-features {
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(22, 22, 34, 0.60);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.20);
}

.external-hosts-page .external-hosts-filter-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.external-hosts-page .external-hosts-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(22, 22, 34, 0.60);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.20);
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    user-select: none;
    cursor: pointer;
}

.external-hosts-page .external-hosts-feature-pill:hover {
    transform: translateY(-1px);
    background: rgba(28, 28, 42, 0.72);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.22);
}

.external-hosts-page .external-hosts-feature-pill:focus-within {
    border-color: rgba(var(--color-red-rgb), 0.35);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.20), 0 0 0 3px rgba(var(--color-red-rgb), 0.12);
}

@supports selector(:has(*)) {
    .external-hosts-page .external-hosts-feature-pill:has(input:checked) {
        background: linear-gradient(135deg, rgba(var(--color-red-rgb), 0.14), rgba(22, 22, 34, 0.60));
        border-color: rgba(var(--color-red-rgb), 0.30);
    }
}

.external-hosts-page .external-hosts-feature-pill input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    flex: 0 0 16px;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.22);
    display: grid;
    place-content: center;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.external-hosts-page .external-hosts-feature-pill input[type="checkbox"]::before {
    content: "";
    width: 9px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) scale(0);
    transform-origin: center;
    transition: transform 0.12s ease;
    opacity: 0.95;
}

.external-hosts-page .external-hosts-feature-pill input[type="checkbox"]:checked {
    background: rgba(var(--color-red-rgb), 0.70);
    border-color: rgba(var(--color-red-rgb), 0.85);
}

.external-hosts-page .external-hosts-feature-pill input[type="checkbox"]:checked::before {
    transform: rotate(-45deg) scale(1);
}

.external-hosts-page .external-hosts-feature-pill span {
    font-weight: 700;
    font-size: calc(11px + 0.5 * var(--size-coef));
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.02em;
}

.external-hosts-page .external-hosts-filter-features-note {
    margin-top: 10px;
    font-size: calc(11px + 0.3 * var(--size-coef));
    color: var(--text-secondary);
    opacity: 0.75;
    line-height: 1.4;
}

.external-hosts-page .external-host-item.is-hidden {
    display: none !important;
}

.external-hosts-page .external-host-features-row {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 8px;
    padding: 14px 14px 0 14px !important;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    order: 30;
    position: relative;
    z-index: 1;
}

.external-hosts-page .external-host-feature-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 6px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.20);
    font-weight: 850;
    font-size: calc(10px + 0.4 * var(--size-coef));
    letter-spacing: 0.02em;
    user-select: none;
    white-space: nowrap;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.external-hosts-page .external-host-feature-badge i {
    opacity: 0.90;
    font-size: calc(12px + 0.2 * var(--size-coef));
}

.external-hosts-page .external-host-feature-badge:hover {
    transform: translateY(-1px);
}

.external-hosts-page .external-host-feature-badge.is-on {
    background: rgba(var(--color-emerald-rgb), 0.14);
    border-color: rgba(var(--color-emerald-rgb), 0.32);
    color: rgba(255, 255, 255, 0.92);
}

.external-hosts-page .external-host-feature-badge.is-off {
    background: rgba(var(--color-red-rgb), 0.10);
    border-color: rgba(var(--color-red-rgb), 0.20);
    color: rgba(255, 255, 255, 0.82);
    opacity: 0.72;
}

.external-hosts-page .external-host-recommended {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
    flex: 0 0 auto;
}

.external-hosts-page .external-host-recommended-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.external-hosts-page .external-host-recommended-left i {
    opacity: 0.75;
    width: 20px;
    flex: 0 0 20px;
    text-align: center;
    font-size: calc(13px + 0.2 * var(--size-coef));
}

.external-hosts-page .external-host-recommended-label {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.90);
    font-size: calc(10px + 0.45 * var(--size-coef));
    white-space: nowrap;
}

.external-hosts-page .external-host-recommended-label span:last-child {
    opacity: 0.75;
    font-weight: 850;
}

.external-hosts-page .external-host-recommended-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(var(--color-sky-rgb), 0.12);
    border: 1px solid rgba(var(--color-sky-rgb), 0.22);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 950;
    font-size: calc(12px + 0.45 * var(--size-coef));
    white-space: nowrap;
    flex: 0 0 auto;
}

.external-hosts-page .external-host-filter-top {
    align-items: center;
}

.external-hosts-page .external-host-filter-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    white-space: nowrap;
}

.external-hosts-page .external-host-filter-features-btn {
    white-space: nowrap;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: calc(12px + 1 * var(--size-coef));
    transition: all 0.25s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.external-hosts-page .external-host-filter-features-btn:hover {
    background: rgba(var(--color-red-rgb), 0.15);
    border-color: rgba(var(--color-red-rgb), 0.3);
    color: var(--color-red);
    transform: translateY(-1px);
}

.external-hosts-page .external-host-filter-features-btn.is-open {
    background: rgba(var(--color-red-rgb), 0.14);
    border-color: rgba(var(--color-red-rgb), 0.30);
    color: var(--color-red);
}

.external-hosts-page .external-host-filter-features-wrapper[hidden] {
    display: none !important;
}

.external-hosts-page .external-host-filter-mobile-actions {
    display: none;
    margin-top: 14px;
}

.external-hosts-page .external-host-filter-mobile-btn {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: calc(12px + 0.6 * var(--size-coef));
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.88);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

@media screen and (max-width: 1300px) {
    .external-hosts-page .external-host-item {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .external-hosts-page .external-host-brand {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }

    .external-hosts-page .external-host-right {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-rows: auto auto;
        gap: 16px;
        align-items: center;
    }

    .external-hosts-page .external-host-intro {
        display: contents;
    }

    .external-hosts-page .external-host-specs {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
        align-self: start;
    }

    .external-hosts-page .external-host-lines {
        grid-column: 2;
        grid-row: 1;
        min-width: 0;
        align-self: start;
    }

    .external-hosts-page .external-host-recommended {
        grid-column: 3;
        grid-row: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: nowrap;
        min-width: fit-content;
        width: fit-content;
        white-space: nowrap;
    }

    .external-hosts-page .external-host-recommended-left {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .external-hosts-page .external-host-recommended-label {
        white-space: nowrap;
    }

    .external-hosts-page .external-host-recommended-pill {
        flex: 0 0 auto;
    }

    .external-hosts-page .external-host-flag {
        grid-column: 4;
        grid-row: 1;
        justify-self: end;
        align-self: center;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .external-hosts-page .external-host-actions {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        column-gap: 14px;
        margin-left: 0;
        order: 11;
    }

    .external-hosts-page .external-hosts-pricing-inline {
        justify-self: start;
        align-items: flex-start;
        text-align: left;
        max-width: none;
    }

    .external-hosts-page .external-hosts-pricing-inline .external-hosts-price-line,
    .external-hosts-page .external-hosts-pricing-inline .external-hosts-ref-row {
        justify-content: flex-start;
    }

    .external-hosts-page .external-host-button {
        justify-self: end;
    }

    .external-hosts-page .external-host-more {
        display: none;
    }
}

@media screen and (max-width: 700px) {

    .external-hosts-page .external-game-left {
        display: none;
    }

    .external-hosts-page .external-host {
        margin-top: 24px !important;
        padding: 16px;
    }

    .external-hosts-page .external-host-filter-grid {
        display: none;
    }

    .external-hosts-page .external-host-filter-features-wrapper {
        display: none !important;
    }

    .external-hosts-page .external-host-filter-durations {
        display: none;
    }

    .external-hosts-page .external-host-filter.is-mobile-filters-open .external-host-filter-grid {
        display: grid;
    }

    .external-hosts-page .external-host-filter.is-mobile-filters-open .external-host-filter-features-wrapper {
        display: block !important;
    }

    .external-hosts-page .external-host-filter.is-mobile-filters-open .external-host-filter-durations {
        display: block;
    }

    .external-hosts-page .external-host-filter-features-btn {
        display: none;
    }

    .external-hosts-page .external-host-filter-mobile-actions {
        display: block;
    }

    .external-hosts-page .external-host-filter-reset span {
        display: none;
    }

    .external-hosts-page .external-host-right {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 12px;
        align-items: start;
    }

    .external-hosts-page .external-host-intro {
        display: contents;
    }

    .external-hosts-page .external-host-specs {
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .external-hosts-page .external-host-lines {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
        width: fit-content;
        min-width: 0;
    }

    .external-hosts-page .external-host-recommended {
        grid-column: 1;
        grid-row: 2;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        flex-wrap: nowrap;
        white-space: nowrap;
        min-width: 0;
    }

    .external-hosts-page .external-host-flag {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
        align-self: center;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .external-hosts-page .external-host-actions {
        grid-column: 1 / -1;
        grid-row: 3;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        column-gap: 14px;
        margin-left: 0;
        order: 11;
    }

    .external-hosts-page .external-host-button {
        justify-self: end;
    }

    .external-hosts-page .external-host-reviews {
        display: none;
    }

    .external-hosts-page .external-hosts-pricing-inline .external-hosts-price {
        font-size: calc(18px + 1 * var(--size-coef));
    }

    .external-hosts-page .external-host-features-row {
        display: none !important;
    }

    .external-hosts-page .external-hosts-duration-pills {
        padding: 10px 10px;
        gap: 8px;
    }

    .external-hosts-page .external-hosts-duration-pill {
        height: 34px;
        padding: 0 12px;
    }

    .external-hosts-page .external-hosts-filter-features {
        position: relative;
        padding: 12px 12px;
    }

    .external-hosts-page .external-hosts-filter-features-grid {
        gap: 8px;
        margin-top: 10px;
    }

    .external-hosts-page .external-hosts-feature-pill {
        padding: 9px 10px;
    }

    .external-hosts-page .external-hosts-feature-pill span {
        font-size: calc(10px + 0.35 * var(--size-coef));
    }
}



