/*
 * Auto-split from css/proxy-list.css
 * See _split_proxy_list_css.php for the splitter logic.
 * Do not edit by hand — re-run the splitter after editing the master file.
 */

.free-proxy-anchor-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 16px;
        margin-top: 14px;
    }

.free-proxy-anchor-nav .country-intro-link {
        display: inline-flex;
        align-items: center;
        padding: 6px 12px;
        border-radius: var(--radius-pill);
        background: rgba(11, 99, 206, 0.08);
        text-decoration: none;
    }

.free-proxy-anchor-nav .country-intro-link:hover {
        background: rgba(11, 99, 206, 0.14);
    }

.free-country-stats-section {
        width: 100%;
        max-width: 1000px;
        margin: 10px auto 16px;
        background: #f9f9f9;
        padding: 10px;
        border: 3px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

.free-country-stats-title {
        text-align: center;
        color: #000;
        font-size: 18px;
        font-weight: bold;
        margin: 5px 0 12px;
        letter-spacing: 0.3px;
    }

.free-country-stats-hint {
           margin: -2px auto 18px;
        max-width: 720px;
        color: #4a5568;
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
    }

    .free-upgrade-path__button:visited,
    .free-upgrade-path__button:focus {
        color: #ffffff;
        text-decoration: none;
    }

.free-upgrade-path {
        width: 100%;
        max-width: 1000px;
        margin: 18px auto 16px;
        padding: 20px 22px;
        border: 1px solid #ead7bd;
        border-radius: 16px;
        background: linear-gradient(135deg, #fffaf2 0%, #fffdf9 100%);
        box-shadow: 0 14px 32px rgba(120, 77, 20, 0.08);
    }

.free-upgrade-path h2 {
        margin: 0 0 10px;
        color: #6a3c12;
        font-size: 22px;
        line-height: 1.25;
    }

.free-upgrade-path p {
        margin: 0;
        color: #5f4b35;
        font-size: 15px;
        line-height: 1.7;
    }

.free-upgrade-path__list {
        margin: 14px 0 0;
        padding-left: 20px;
        color: #5f4b35;
    }

.free-upgrade-path__list li {
        margin-bottom: 8px;
        line-height: 1.6;
    }

.free-upgrade-path__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 16px;
    }

.free-upgrade-path__button,
    .free-upgrade-path__secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0 16px;
        border-radius: var(--radius-pill);
        text-decoration: none;
        font-weight: 700;
        transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    }

.free-upgrade-path__button {
        background: var(--c-text-dark);
        color: #ffffff;
        box-shadow: 0 10px 22px rgba(23, 52, 95, 0.18);
    }

.free-upgrade-path__button:hover {
        background: #102746;
        color: #ffffff;
        text-decoration: none;
        transform: translateY(-1px);
    }

.free-upgrade-path__secondary {
        border: 1px solid #d8c5aa;
        background: rgba(255, 255, 255, 0.7);
        color: #7b4b1f;
    }

.free-upgrade-path__secondary:hover {
        background: #ffffff;
        border-color: #c9ab82;
        color: #60370d;
    }

.free-country-stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px 16px;
    }

.free-country-stats-item {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 10px;
        border-radius: 8px;
        transition: background 0.15s;
        text-decoration: none;
    }

.free-country-stats-item:hover {
        background: var(--c-bg-disabled);
    }

.free-country-stats-name {
        flex: 1 1 0;
        min-width: 0;
        font-size: 14px;
        color: #000;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: left;
    }

.free-country-stats-item .count {
        min-width: 32px;
        font-size: 13px;
        text-align: right;
        color: #0d2238;
        font-weight: 700;
        flex: 0 0 auto;
    }

@media (max-width: 768px) {
    .free-proxy-anchor-nav {
            gap: 8px;
        }
    .free-proxy-anchor-nav .country-intro-link {
            padding: 6px 10px;
            font-size: 13px;
        }
            .free-upgrade-path {
            padding: 16px 14px;
            border-radius: 14px;
        }
            .free-upgrade-path h2 {
            font-size: 20px;
        }
            .free-upgrade-path__actions {
            flex-direction: column;
            align-items: stretch;
        }
            .free-upgrade-path__button,
        .free-upgrade-path__secondary {
            width: 100%;
        }
}

@media (max-width: 700px) {
    .free-country-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .free-country-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 6px; }
    .free-country-stats-item { gap: 4px; padding: 4px 6px; border-radius: 6px; display: flex; align-items: center; }
    .free-country-stats-name { font-size: 13px; flex: 1 1 0; min-width: 0; }
    .free-country-stats-item .flag { margin-right: 6px; width: 16px; height: 12px; flex: 0 0 16px; }
    .free-country-stats-item .country-count,
 .free-country-stats-item .count { font-size: 13px; min-width: 32px; text-align: right; color: #0d2238; font-weight: 700; flex: 0 0 auto; }
}

@media (max-width: 340px) {
    .free-country-stats-grid { grid-template-columns: 1fr; gap: 4px 6px; }
    .free-country-stats-item { justify-content: space-between; padding: 4px 6px; }
    .free-country-stats-name { font-size: 12px; }
    .free-country-stats-item .country-count,
 .free-country-stats-item .count { min-width: 30px; font-size: 12px; }
}

