:root {
    --bg: #0b0d12;
    --bg2: #12151c;
    --bg3: #1a1e28;
    --bg4: #222733;
    --border: #2a2f3d;
    --border2: #353b4d;
    --text: #e8eaf0;
    --text2: #9ba3b5;
    --text3: #6b7280;
    --accent: #f97316;
    --accent2: #fb923c;
    --accent-soft: rgba(249, 115, 22, 0.08);
    --green: #22c55e;
    --green-soft: rgba(34, 197, 94, 0.1);
    --gold: #eab308;
    --gold-soft: rgba(234, 179, 8, 0.1);
    --blue: #3b82f6;
    --blue-soft: rgba(59, 130, 246, 0.1);
    --red: #ef4444;
    --red-soft: rgba(239, 68, 68, 0.08);
    --purple: #a855f7;
    --purple-soft: rgba(168, 85, 247, 0.1);
    --radius: 14px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.4);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

.navbar {
    background: rgba(11, 13, 18, 0.85) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px;
    z-index: 1000;
}

.navbar .container {
    max-width: 1280px;
}

.logo {
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text);
    white-space: nowrap;
}

.logo span {
    color: var(--accent);
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    padding: 8px 16px !important;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text2) !important;
    transition: all .2s;
}

.nav-link:hover,
.nav-link.active {
    background: var(--accent-soft);
    color: var(--accent) !important;
}

.navbar-toggler {
    border: 1px solid var(--border);
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.navbar-toggler-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background: var(--bg2) !important;
    border: 1px solid var(--border) !important;
    backdrop-filter: blur(20px);
    border-radius: 12px !important;
    padding: 8px !important;
    margin-top: 10px !important;
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    color: var(--text2) !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    transition: all 0.2s !important;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: var(--accent-soft) !important;
    color: var(--accent) !important;
}

.dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 6px;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .dropdown-menu {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding-left: 15px !important;
        margin-top: 0 !important;
    }

    .navbar-collapse {
        background: var(--bg2);
        margin: 15px -24px -12px;
        padding: 20px 24px;
        border-top: 1px solid var(--border);
    }

    .nav-link {
        padding: 12px 16px !important;
    }
}

.nav-flag {
    background: var(--bg3);
    border: 1px solid var(--border);
    font-size: .78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    margin-left: auto;
    white-space: nowrap;
    color: var(--text2);
}

.page {
    display: none;
}

.page.active {
    display: block;
}

.hero {
    background: linear-gradient(160deg, #0b0d12 0%, #111827 40%, #1e1b2e 70%, #0f172a 100%);
    color: #fff;
    padding: 100px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 30%, rgba(249, 115, 22, 0.12) 0%, transparent 55%), radial-gradient(ellipse at 30% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg), transparent);
    pointer-events: none;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    color: var(--accent2);
    font-size: .8rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 24px;
    margin-bottom: 24px;
    text-transform: uppercase;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 640px;
    margin: 0 auto 36px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #ea580c);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
    font-family: 'Outfit', sans-serif;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.4);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: all .2s;
    font-family: 'Outfit', sans-serif;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat {
    text-align: center;
}

.hero-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent2);
}

.hero-stat span {
    font-size: .82rem;
    color: rgba(255, 255, 255, 0.4);
}

.section {
    padding: 50px 0px;
}

.section-sm {
    padding: 40px 24px;
}

.section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.section-sub {
    color: var(--text2);
    font-size: .95rem;
}

.section-head {
    max-width: 1280px;
    margin: 0 auto 40px;
}

.notice {
    background: var(--gold-soft);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: .84rem;
    color: var(--gold);
    line-height: 1.6;
    max-width: 1280px;
    margin: 0 auto 28px;
    display: flex;
    gap: 10px;
}

.notice strong {
    color: #fbbf24;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}

.info-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color .2s;
}

.info-card:hover {
    border-color: var(--border2);
}

.info-icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.info-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 6px;
}

.info-text {
    font-size: .86rem;
    color: var(--text2);
    line-height: 1.7;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-section h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-top: 48px;
    margin-bottom: 14px;
}

.content-section p {
    font-size: .93rem;
    color: var(--text2);
    line-height: 1.85;
    margin-bottom: 16px;
}

.cards-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}



.bg {
    font-size: .7rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 5px;
}

.bg-g {
    background: var(--green-soft);
    color: var(--green);
}

.bg-y {
    background: var(--gold-soft);
    color: var(--gold);
}

.bg-b {
    background: var(--blue-soft);
    color: var(--blue);
}

.bg-p {
    background: var(--purple-soft);
    color: var(--purple);
}

/* Provider Card (PC) Styles */
.pc {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    color: var(--text);
    box-shadow: var(--shadow);
    transition: transform .2s, border-color .2s;
}

.pc:hover {
    border-color: var(--border2);
    transform: translateY(-2px);
}

.pc.featured-card {
    border-color: var(--accent);
    box-shadow: 0 4px 24px rgba(249, 115, 22, 0.15);
}

.pc-hd {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    background: var(--bg3);
}

.pc-rk {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--border2);
    display: flex;
    align-items: center;
}

.pc-id {
    flex: 1;
}

.pc-lg img {
    height: 38px;
    max-width: 150px;
    object-fit: contain;
    margin-bottom: 8px;
}

.pc-tg {
    font-size: .9rem;
    color: var(--text2);
    margin-bottom: 6px;
    font-weight: 500;
}

.pc-rt {
    font-size: .85rem;
    margin-bottom: 12px;
}

.pc-rt .stars {
    color: var(--gold);
    margin-right: 6px;
}

.pc-rt .rn {
    color: var(--text);
    font-weight: 700;
}

.pc-bd {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pc-pb {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pc-aw {
    background: var(--gold-soft);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 8px;
    align-self: flex-end;
}

.pc-pl {
    font-size: .8rem;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.pc-pr {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.pc-pr small {
    font-size: .9rem;
    color: var(--text2);
    font-weight: 500;
}

.pc-intro {
    padding: 24px;
    font-size: .95rem;
    color: var(--text2);
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
}

.cs {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(249, 115, 22, 0.04);
    border-bottom: 1px solid var(--border);
}

.cs-i {
    font-size: 1.2rem;
}

.cs-t {
    flex: 1;
    font-size: .88rem;
    color: var(--text2);
}

.cs-t strong {
    color: var(--text);
}

.cs-b {
    display: flex;
    align-items: center;
    background: var(--bg);
    border: 1px dashed var(--accent);
    border-radius: 6px;
    overflow: hidden;
}

.cs-c {
    padding: 6px 12px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
}

.cs-b button.cp {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: .75rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}

.cs-b button.cp:hover {
    background: var(--accent2);
}

.cs-o {
    font-weight: 800;
    color: var(--green);
    background: var(--green-soft);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: .8rem;
}

.pc-sp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 24px;
    background: var(--bg3);
}

.pc-sp > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sk {
    font-size: .75rem;
    color: var(--text3);
    text-transform: uppercase;
    font-weight: 600;
}

.sv {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text);
}

.pc-cta {
    padding: 24px;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

.bv {
    width: 100%;
    background: linear-gradient(135deg, var(--accent), #ea580c);
    color: #fff;
    padding: 13px 20px;
    border-radius: 9px;
    font-weight: 700;
    font-size: .9rem;
    text-align: center;
    transition: all .2s;
    border: none;
    cursor: pointer;
    display: block;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 2px 12px rgba(249, 115, 22, 0.2);
}

.bv:hover {
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.35);
    transform: translateY(-1px);
}



.table-wrap {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

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

thead tr {
    background: var(--bg3);
}

th {
    padding: 14px 16px;
    text-align: left;
    font-size: .75rem;
    font-weight: 700;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--border);
    font-size: .86rem;
    color: var(--text);
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.tn {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.tl {
    width: 100px;
    height: auto;
    border-radius: 7px;
    border: 1px solid var(--border);
    overflow: hidden;
    padding: 4px;
}

.tl img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tc {
    color: var(--green);
    font-weight: 700;
}

.tp {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    font-weight: 700;
    background: var(--accent);
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    cursor: pointer;
}

.ta {
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 7px;
    font-size: .78rem;
    font-weight: 700;
    display: inline-block;
    transition: all .15s;
}

.ta:hover {
    background: var(--accent2);
}

.faq-list {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-q {
    padding: 18px 22px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .15s;
}

.faq-q:hover {
    background: var(--bg3);
}

.faq-icon {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--accent);
    transition: transform .2s ease;
}

.faq-a {
    padding: 0 22px;
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s, padding .3s;
}

.faq-item.open .faq-a {
    max-height: 500px;
    padding: 0 22px 18px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.static-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 64px 24px;
}

.static-page h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.static-page .page-date {
    font-size: .82rem;
    color: var(--text3);
    margin-bottom: 36px;
}

.static-page h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 10px;
}

.static-page p {
    font-size: .93rem;
    color: var(--text2);
    line-height: 1.85;
    margin-bottom: 16px;
}

.static-page a {
    color: var(--accent);
}

.about-hero {
    background: linear-gradient(135deg, var(--bg), var(--bg3));
    color: #fff;
    padding: 72px 24px;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 14px;
}

.about-hero p {
    font-size: 1rem;
    color: var(--text2);
    max-width: 560px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.team-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 12px;
}

.team-name {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 4px;
}

.team-role {
    font-size: .8rem;
    color: var(--text3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text2);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 11px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
    color: var(--text);
    background: var(--bg3);
    outline: none;
    transition: border-color .15s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--accent);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
    display: flex;
    gap: 14px;
}

.contact-info-icon {
    font-size: 1.3rem;
}

.contact-info-label {
    font-size: .78rem;
    color: var(--text3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 3px;
}

.contact-info-val {
    font-size: .92rem;
    font-weight: 600;
}

footer {
    background: var(--bg2);
    color: var(--text2);
    padding: 64px 24px 32px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 12px;
    color: var(--text);
}

.footer-brand p {
    font-size: .84rem;
    line-height: 1.7;
    max-width: 280px;
    color: var(--text3);
}

.footer-col h4 {
    font-size: .8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.footer-col a {
    display: block;
    font-size: .84rem;
    color: var(--text3);
    margin-bottom: 8px;
    transition: color .15s;
}

.footer-col a:hover {
    color: var(--accent2);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: .8rem;
    color: var(--text3);
}

.footer-disclaimer {
    font-size: .78rem;
    color: var(--text3);
    margin-top: 10px;
    line-height: 1.6;
    opacity: .7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: var(--text3);
    padding: 16px 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--text3);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--green);
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 600;
    z-index: 999;
    transform: translateY(80px);
    opacity: 0;
    transition: all .3s;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Modern Dark Table Card Style */

.latency-title {
    font-size: 1.55rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
}

.latency-table-container {
    overflow-x: auto;
    margin-top: 28px;
    border-radius: 10px;
    background: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.latency-table {
    width: 100%;
    border-collapse: collapse;
}

.latency-table th {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text3);
    padding: 16px 24px !important;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 2px solid var(--border) !important;
}

.latency-table td {
    padding: 18px 24px !important;
    color: var(--text2);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    background: transparent !important;
}

.latency-table tr:hover td {
    background: rgba(255, 255, 255, 0.02) !important;
    color: var(--text);
}

.latency-table tr:last-child td {
    border-bottom: none !important;
}

.location-name {
    font-weight: 700;
    color: var(--text);
}

.ping-value {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.ping-value::before {
    content: '~';
    opacity: 0.3;
    margin-right: 2px;
}

.ping-value::after {
    content: ' ms';
    opacity: 0.4;
    font-size: 0.75em;
    margin-left: 2px;
}

.ping-highlight {
    color: var(--accent) !important;
    /* Brand orange highlight */
    font-weight: 800;
}

.ping-highlight::after {
    opacity: 0.7;
}

@media(max-width:768px) {
    .hero {
        padding: 64px 16px 56px;
    }

    .section {
        padding: 50px 0px;
    }

    .pc-hd {
        flex-direction: column;
    }

    .pc-pb {
        align-self: flex-start;
    }

    .pc-sp {
        grid-template-columns: 1fr;
    }

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

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

    .latency-section {
        padding: 20px 16px;
    }

    .latency-title-group h2 {
        font-size: 1.25rem;
    }
}

@media(max-width:480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .nav-flag {
        display: none;
    }
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

/* ==========================================================================
   Premium Review Card - Inspired by GTX Gaming Review Design
   ========================================================================== */
.rev-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    color: var(--text);
    box-shadow: var(--shadow-lg);
    margin-bottom: 50px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.rev-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.rev-card-header {
    background: #000000;
    padding: 16px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid var(--accent);
}

.rev-card-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rev-card-logo img {
    height: 32px;
    max-width: 140px;
    object-fit: contain;
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    padding: 3px;
}

.rev-card-logo span {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
}

.rev-card-badge {
    background: var(--bg4);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    border: 1px solid var(--border);
    white-space: nowrap;
}

.rev-card-body {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
}

.rev-card-main {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    border-right: 1px solid var(--border);
}

.rev-card-top-row {
    display: flex;
    gap: 15px;
}

.rev-stats-box {
    background: var(--bg3);
    flex: 1;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.rev-stats-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text3);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rev-stats-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.rev-stats-sub {
    font-size: 0.75rem;
    color: var(--text3);
    margin-top: 2px;
}

.rev-verdict {
    background: var(--bg3);
    padding: 20px 24px;
    border-radius: 12px;
    border-left: 5px solid var(--accent);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text2);
}

.rev-verdict strong {
    color: #fff;
}

.rev-pros-cons {
    display: flex;
    gap: 15px;
}

.rev-pros, .rev-cons {
    background: var(--bg3);
    flex: 1;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.rev-list-label {
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.rev-pros .rev-list-label { color: var(--green); }
.rev-cons .rev-list-label { color: var(--red); }

.rev-pros ul, .rev-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rev-pros li, .rev-cons li {
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.rev-tick { color: var(--green); font-weight: 900; }
.rev-cross { color: var(--red); font-weight: 900; }

.rev-specs {
    background: var(--bg2);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rev-specs .rev-list-label {
    color: var(--text3);
    margin-bottom: 10px;
}

.rev-spec-item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}

.rev-spec-key {
    color: var(--text2);
    font-weight: 500;
}

.rev-spec-val {
    color: #fff;
    font-weight: 700;
}

.rev-card-footer {
    padding: 0 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.rev-cta-btn {
    background: var(--accent);
    color: #fff !important;
    padding: 18px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    display: block;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.rev-cta-btn:hover {
    background: var(--accent2);
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.rev-coupon-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--bg3);
    padding: 12px;
    border-radius: 10px;
    border: 1px dashed var(--accent);
}

.rev-coupon-text {
    font-size: 0.85rem;
    color: var(--text2);
}

.rev-coupon-code {
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1px;
}

.rev-copy-btn {
    background: var(--accent-soft);
    color: var(--accent);
    border: none;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.rev-copy-btn:hover {
    background: var(--accent);
    color: #fff;
}

@media (max-width: 991px) {
    .rev-card-body {
        grid-template-columns: 1fr;
    }
    .rev-card-main {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 576px) {
    .rev-card-top-row {
        flex-direction: column;
    }
    .rev-pros-cons {
        flex-direction: column;
    }
}