@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');

:root {
    --bg: #070a12;
    --bg-2: #0b1020;
    --panel: rgba(13, 18, 31, 0.86);
    --panel-2: rgba(16, 23, 39, 0.88);
    --panel-soft: rgba(255, 255, 255, 0.045);
    --border: rgba(148, 163, 184, 0.12);
    --border-strong: rgba(56, 189, 248, 0.2);
    --text: #e7edf7;
    --text-soft: #b6c2d4;
    --muted: #8290a6;
    --blue: #38bdf8;
    --blue-2: #0ea5e9;
    --amber: #f59e0b;
    --green: #22c55e;
    --red: #fb7185;
    --yellow: #facc15;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.12), transparent 30%),
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.08), transparent 28%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 32px;
    background: rgba(7, 10, 18, 0.9);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    backdrop-filter: blur(14px);
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: "Rajdhani", "Inter", sans-serif;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #fff;
}

.logo-sub {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: 0.4px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav a {
    padding: 8px 13px;
    border-radius: 10px;
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 500;
    transition: 0.16s ease;
}

.nav a:hover,
.nav a.active {
    color: #fff;
    background: rgba(56, 189, 248, 0.11);
}

/* Page */
.page {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 30px 0;
	flex: 1;
}

.page-title {
    margin: 0 0 7px;
    font-family: "Rajdhani", "Inter", sans-serif;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.page-subtitle {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 14px;
}

.grid {
    display: grid;
    gap: 18px;
}

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

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

.section-gap {
    margin-top: 22px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 15px;
    border-radius: 11px;
    border: 1px solid rgba(56, 189, 248, 0.22);
    background: rgba(56, 189, 248, 0.13);
    color: #eaf6ff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.16s ease;
}

.btn:hover {
    background: rgba(56, 189, 248, 0.2);
    transform: translateY(-1px);
}

.btn-muted {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-soft);
}

.btn-muted:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
}

/* Hero */
.hero-card {
    display: grid;
    grid-template-columns: 1.55fr 0.8fr;
    gap: 22px;
    align-items: stretch;
    padding: 26px;
    background:
        linear-gradient(135deg, rgba(56, 189, 248, 0.1), transparent 36%),
        linear-gradient(315deg, rgba(245, 158, 11, 0.07), transparent 36%),
        var(--panel);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.1px;
}

.hero-title {
    margin: 0;
    font-family: "Rajdhani", "Inter", sans-serif;
    font-size: clamp(44px, 7vw, 78px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 0.5px;
}

.hero-text {
    max-width: 620px;
    margin: 14px 0 0;
    color: var(--text-soft);
    font-size: 16px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.hero-panel {
    display: grid;
    gap: 12px;
    align-content: center;
    padding: 16px;
    background: rgba(6, 10, 18, 0.48);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.hero-panel-title {
    color: var(--blue);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.9px;
}

.hero-stat {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 14px;
}

.hero-stat span {
    color: var(--muted);
    font-size: 13px;
}

.hero-stat strong {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* Server cards */
.game-server-card {
    position: relative;
    isolation: isolate;
    min-height: 176px;
    overflow: hidden;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow);
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.game-server-card:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
    box-shadow: 0 22px 65px rgba(0, 0, 0, 0.34);
}

.game-server-card::before {
    display: none;
}

.game-server-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(4, 8, 16, 0.68) 0%, rgba(4, 8, 16, 0.46) 52%, rgba(4, 8, 16, 0.25) 100%),
        linear-gradient(180deg, rgba(4, 8, 16, 0.02) 0%, rgba(4, 8, 16, 0.58) 100%);
}

.game-server-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 176px;
    padding: 18px;
}

.game-server-content h2 {
    margin: 0;
    max-width: 78%;
    color: #fff;
    font-family: "Rajdhani", "Inter", sans-serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.map-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    margin-top: 12px;
    padding: 7px 10px;
    color: #eef4ff;
    background: rgba(5, 10, 20, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.map-pill svg {
    width: 14px;
    height: 14px;
    fill: rgba(229, 231, 235, 0.9);
}

.server-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-top: 20px;
}

.players-box {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 38px;
}

.player-ring {
    --fill: 0;
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 34px;
    border-radius: 999px;
    background:
        conic-gradient(var(--green) calc(var(--fill) * 1%), rgba(255, 255, 255, 0.18) 0);
    position: relative;
    box-shadow: none;
}

.player-ring::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: inherit;
    background: rgba(7, 11, 20, 0.96);
}

.player-ring span {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.players-max {
    color: rgba(232, 238, 247, 0.86);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.server-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn,
.play-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: 0.16s ease;
}

.icon-btn {
    background: rgba(151, 103, 42, 0.82);
    color: #fff;
}

.play-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #0f172a;
}

.icon-btn svg,
.play-btn svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

.play-btn svg {
    margin-left: 2px;
}

.icon-btn:hover,
.play-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

/* Section heading */
.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.section-head h2 {
    margin: 0;
    font-family: "Rajdhani", "Inter", sans-serif;
    font-size: 26px;
    font-weight: 600;
}

.section-head p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
}

/* Tables */
.table-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

th,
td {
    padding: 13px 15px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    text-align: left;
    font-size: 13px;
}

td {
    color: var(--text-soft);
    font-weight: 400;
}

th {
    background: rgba(7, 11, 20, 0.55);
    color: var(--blue);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.55px;
}

tr:hover td {
    background: rgba(56, 189, 248, 0.04);
    color: #fff;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
}

.badge-active {
    color: #bbf7d0;
    background: rgba(52, 211, 153, 0.13);
    border: 1px solid rgba(52, 211, 153, 0.22);
}

.badge-expired {
    color: #fef3c7;
    background: rgba(250, 204, 21, 0.13);
    border: 1px solid rgba(250, 204, 21, 0.22);
}

.badge-removed {
    color: #bfdbfe;
    background: rgba(59, 130, 246, 0.13);
    border: 1px solid rgba(59, 130, 246, 0.22);
}

.badge-permanent {
    color: #fecdd3;
    background: rgba(251, 113, 133, 0.13);
    border: 1px solid rgba(251, 113, 133, 0.22);
}

.badge-unknown {
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Filters */
.filter-card {
    margin-bottom: 18px;
    padding: 15px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.filter-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.filter-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.45px;
}

.filter-field input,
.filter-field select {
    width: 100%;
    height: 40px;
    padding: 0 12px;
    color: var(--text);
    background: rgba(7, 11, 20, 0.62);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 11px;
    outline: none;
}

.filter-field input:focus,
.filter-field select:focus {
    border-color: rgba(56, 189, 248, 0.55);
}

.filter-actions {
    display: flex;
    gap: 8px;
}

/* Pagination */
.pagination-wrap {
    margin-top: 20px;
}

.fz-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 15px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.fz-pagination-info {
    color: var(--muted);
    font-size: 13px;
}

.fz-pagination-links {
    display: flex;
    align-items: center;
    gap: 7px;
}

.fz-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 11px;
    border-radius: 11px;
    color: var(--text-soft);
    background: rgba(7, 11, 20, 0.56);
    border: 1px solid rgba(148, 163, 184, 0.13);
    font-size: 13px;
    font-weight: 600;
}

.fz-page:hover {
    color: #fff;
    background: rgba(56, 189, 248, 0.14);
}

.fz-page.active {
    color: #fff;
    background: rgba(56, 189, 248, 0.24);
    border-color: rgba(56, 189, 248, 0.42);
}

.fz-page.disabled {
    opacity: 0.38;
    cursor: not-allowed;
}

/* Footer */
.site-footer {
    margin-top: 28px;
    padding: 28px 0 18px;
    background: rgba(7, 10, 18, 0.74);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 28px;
}

.footer-logo {
    font-family: "Rajdhani", "Inter", sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #fff;
}

.footer-brand p {
    max-width: 420px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.footer-links h4 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    margin: 7px 0;
    color: var(--muted);
    font-size: 13px;
    transition: 0.16s ease;
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-bottom {
    width: min(1280px, calc(100% - 32px));
    margin: 22px auto 0;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    color: rgba(182, 194, 212, 0.72);
    font-size: 12px;
}
/* Mobile */
@media (max-width: 800px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        padding: 15px;
    }

    .nav {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .page {
        width: min(100% - 20px, 1280px);
        padding: 22px 0;
    }

    .page-title {
        font-size: 29px;
    }

    .hero-card,
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 20px;
    }

    .hero-actions,
    .section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .game-server-card,
    .game-server-content {
        min-height: 158px;
    }

    .game-server-content h2 {
        max-width: 100%;
        font-size: 18px;
    }

    .icon-btn,
    .play-btn {
        width: 40px;
        height: 40px;
    }

    .filter-grid {
        grid-template-columns: 1fr;
    }

    .filter-actions {
        width: 100%;
    }

    .filter-actions .btn {
        flex: 1;
    }

    .fz-pagination {
        flex-direction: column;
        align-items: stretch;
    }

    .fz-pagination-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .fz-pagination-info {
        text-align: center;
    }

.footer-inner {
    grid-template-columns: 1fr;
}

.footer-links {
    grid-template-columns: 1fr;
}

.footer-bottom {
    flex-direction: column;
}
}
.server-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.server-state {
    flex: 0 0 auto;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    backdrop-filter: blur(6px);
}

.server-state.online {
    color: #bbf7d0;
    background: rgba(34, 197, 94, 0.16);
    border: 1px solid rgba(34, 197, 94, 0.24);
}

.server-state.offline {
    color: #fecdd3;
    background: rgba(251, 113, 133, 0.16);
    border: 1px solid rgba(251, 113, 133, 0.24);
}

.rank-level {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(245, 158, 11, 0.16);
    border: 1px solid rgba(245, 158, 11, 0.26);
    font-size: 12px;
    font-weight: 600;
}

.filter-grid-ranks {
    grid-template-columns: 1fr auto;
}

/* Server modal */
.server-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(3, 6, 12, 0.72);
    backdrop-filter: blur(10px);
}

.server-modal.is-open {
    display: flex;
}

.server-modal-card {
    width: min(920px, 100%);
    max-height: min(720px, calc(100vh - 40px));
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    overflow: hidden;
    border-radius: 22px;
    background: #0b0f19;
    box-shadow: 0 28px 100px rgba(0, 0, 0, 0.55);
}

.server-modal-info {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 24px;
    background-size: cover;
    background-position: center;
}

.server-modal-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 8, 14, 0.08) 0%, rgba(5, 8, 14, 0.86) 100%),
        linear-gradient(90deg, rgba(5, 8, 14, 0.46), rgba(5, 8, 14, 0.2));
}

.server-modal-info > * {
    position: relative;
    z-index: 1;
}

.server-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: rgba(0, 0, 0, 0.38);
    cursor: pointer;
}

.server-modal-title {
    margin: 0;
    font-family: "Rajdhani", "Inter", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.server-modal-map {
    margin-top: 8px;
    color: var(--text-soft);
    font-weight: 600;
    text-transform: uppercase;
}

.server-modal-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.server-modal-ip {
    width: fit-content;
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 999px;
    color: #f3f4f6;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
}

.server-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.server-modal-actions .btn {
    flex: 1;
}

.server-modal-players {
    min-height: 520px;
    background: rgba(12, 15, 22, 0.98);
    overflow: hidden;
}

.server-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.035);
}

.server-modal-head h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.server-modal-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-soft);
    font-size: 12px;
}

.server-modal-search {
    width: 190px;
    height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none;
}

.server-player-table {
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
}

.server-player-table th,
.server-player-table td {
    padding: 12px 14px;
    font-size: 13px;
}

.server-player-table th {
    color: var(--muted);
    background: rgba(255, 255, 255, 0.035);
}

.server-player-table td {
    color: var(--text-soft);
}

.server-player-scroll {
    max-height: 450px;
    overflow-y: auto;
}

.server-empty {
    padding: 22px;
    color: var(--muted);
}

@media (max-width: 800px) {
    .server-modal-card {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .server-modal-info,
    .server-modal-players {
        min-height: auto;
    }

    .server-modal-info {
        padding-top: 70px;
    }

    .server-modal-head {
        flex-direction: column;
        align-items: stretch;
    }

    .server-modal-search {
        width: 100%;
    }
}

/* Final server card sizing + copy toast */
.game-server-card {
    min-height: 145px;
}

.game-server-content {
    min-height: 145px;
    padding: 16px;
}

.game-server-content h2 {
    font-size: 19px;
}

.map-pill {
    margin-top: 9px;
    padding: 6px 9px;
}

.server-bottom {
    margin-top: 14px;
}

.icon-btn,
.play-btn {
    width: 39px;
    height: 39px;
    border-radius: 12px;
}

.copy-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 200;
    max-width: calc(100% - 44px);
    padding: 12px 15px;
    border-radius: 14px;
    color: #eafff3;
    background: rgba(14, 19, 30, 0.96);
    border: 1px solid rgba(34, 197, 94, 0.28);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.copy-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 800px) {
    .game-server-card,
    .game-server-content {
        min-height: 138px;
    }

    .copy-toast {
        right: 10px;
        bottom: 10px;
        left: 10px;
        max-width: none;
        text-align: center;
    }
}

/* Compact server cards */
.game-server-card {
    min-height: 125px;
}

.game-server-content {
    min-height: 125px;
    padding: 14px 16px;
}

.game-server-content h2 {
    font-size: 18px;
}

.map-pill {
    margin-top: 7px;
    padding: 5px 9px;
}

.server-bottom {
    margin-top: 10px;
}

.players-box {
    height: 32px;
}

.player-ring {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
}

.icon-btn,
.play-btn {
    width: 37px;
    height: 37px;
}

.copy-toast {
    right: auto;
    bottom: auto;
    position: fixed;
    z-index: 300;
    padding: 9px 12px;
    border-radius: 12px;
    transform: translate(-50%, -10px);
}

.copy-toast.is-visible {
    transform: translate(-50%, -16px);
}

@media (max-width: 800px) {
    .game-server-card,
    .game-server-content {
        min-height: 128px;
    }
}
