:root {
    --bg: #070812;
    --bg-soft: #0d1020;
    --panel: #17142a;
    --panel-light: #242044;
    --line: rgba(255, 255, 255, 0.1);
    --text: #f4f7fb;
    --muted: #9eacbd;
    --gold: #ff53d6;
    --gold-dark: #9d47e9;
    --green: #62f5ee;
    --blue: #8b7dff;
    --danger: #ff668d;
    --radius: 18px;
    --shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -60px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--gold);
    color: #111;
    font-weight: 800;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 13, 24, 0.88);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255, 83, 214, 0.55);
    border-radius: 10px;
    background: linear-gradient(145deg, #60440f, #1c2d3b);
    box-shadow: 0 0 28px rgba(255, 83, 214, 0.16);
    font-size: 1.25rem;
}

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

.site-nav a {
    position: relative;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.site-nav a::after {
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--gold);
    content: "";
    transition: right 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
    color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
    right: 0;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--panel);
    color: var(--text);
    cursor: pointer;
}

/* Shared content */
.section {
    padding: 104px 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2,
.page-hero h1 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.9rem, 4vw, 3.1rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 1.06rem;
}

/* Buttons */
.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 850;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--gold);
    color: #17130a;
    box-shadow: 0 10px 28px rgba(255, 83, 214, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: #ffb0ee;
    box-shadow: 0 15px 36px rgba(255, 83, 214, 0.28);
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    border-color: rgba(255, 83, 214, 0.45);
    background: rgba(255, 83, 214, 0.08);
}

.button-ghost {
    min-height: 40px;
    padding-inline: 14px;
    border-color: rgba(255, 255, 255, 0.16);
    background: transparent;
    color: var(--muted);
    font-size: 0.9rem;
}

.button-ghost:hover,
.button-ghost:focus-visible {
    color: var(--text);
    border-color: var(--gold);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: grid;
    align-items: center;
    padding: 120px 0 110px;
    background:
        radial-gradient(circle at 78% 30%, rgba(213, 45, 255, 0.24), transparent 30%),
        radial-gradient(circle at 15% 20%, rgba(75, 116, 255, 0.2), transparent 30%),
        radial-gradient(circle at 52% 86%, rgba(255, 43, 188, 0.13), transparent 34%),
        linear-gradient(135deg, #070812 0%, #15132b 53%, #10182f 100%);
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 42px 42px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 95%);
    pointer-events: none;
}

.hero::after {
    position: absolute;
    right: -140px;
    bottom: -210px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(255, 83, 214, 0.2);
    border-radius: 45% 55% 50% 50%;
    box-shadow: 0 0 0 40px rgba(255, 83, 214, 0.025), 0 0 0 80px rgba(255, 83, 214, 0.018);
    content: "";
    transform: rotate(24deg);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1060px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 7px 12px;
    border: 1px solid rgba(98, 245, 238, 0.34);
    border-radius: 999px;
    background: rgba(98, 245, 238, 0.08);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-kicker::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px var(--green);
    content: "";
}

.hero h1 {
    max-width: 850px;
    margin: 0;
    color: var(--text);
    font-size: clamp(4rem, 10vw, 8.6rem);
    font-weight: 950;
    letter-spacing: -0.085em;
    line-height: 0.9;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.hero h1 span {
    color: var(--gold);
    text-shadow: 0 0 40px rgba(255, 83, 214, 0.18);
}

.hero-tagline {
    margin: 16px 0 0;
    color: var(--gold);
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-subtitle {
    max-width: 650px;
    margin: 26px 0 30px;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.server-panel {
    display: grid;
    grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(155px, 0.8fr));
    gap: 12px;
    margin: 32px 0;
}

.server-card {
    min-height: 116px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(20, 31, 49, 0.7);
    box-shadow: var(--shadow);
}

.server-label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.server-value {
    color: var(--text);
    font-size: 1.22rem;
    font-weight: 850;
}

.ip-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--gold);
}

.copy-ip {
    flex: 0 0 auto;
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255, 83, 214, 0.25);
    border-radius: 10px;
    background: rgba(255, 83, 214, 0.08);
    color: var(--gold);
    cursor: pointer;
}

.copy-ip:hover,
.copy-ip:focus-visible {
    background: rgba(255, 83, 214, 0.18);
}

.server-note {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 0.84rem;
}

.status-value {
    display: flex;
    align-items: center;
    gap: 9px;
}

.status-dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    flex: 0 0 11px;
    border-radius: 50%;
    background: var(--muted);
}

.status-dot.is-loading {
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(255, 83, 214, 0.1), 0 0 16px rgba(255, 83, 214, 0.7);
    animation: statusPulse 1.2s ease-in-out infinite;
}

.status-dot.is-online {
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(98, 245, 238, 0.1), 0 0 16px rgba(98, 245, 238, 0.7);
}

.status-dot.is-offline {
    background: var(--danger);
    box-shadow: 0 0 0 5px rgba(255, 111, 97, 0.1), 0 0 16px rgba(255, 111, 97, 0.55);
}

.status-dot.is-unknown {
    background: var(--muted);
}

@keyframes statusPulse {
    50% { opacity: 0.35; transform: scale(0.75); }
}

/* Feature cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card,
.contact-card,
.team-card,
.connect-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(26, 43, 66, 0.8), rgba(14, 24, 39, 0.8));
}

.feature-card {
    padding: 28px;
}

.feature-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 14px;
    background: rgba(255, 83, 214, 0.1);
    color: var(--gold);
    font-size: 1.45rem;
}

.feature-card h3,
.connect-card h3,
.contact-card h3,
.team-card h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.feature-card p,
.connect-card p,
.contact-card p,
.team-card p {
    margin: 0;
    color: var(--muted);
}

/* Screenshots */
.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.screenshot-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 83, 214, 0.25);
    border-radius: 22px;
    background: var(--panel);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.screenshot-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.screenshot-card::after {
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
    content: "";
    pointer-events: none;
}

.screenshot-card figcaption {
    position: absolute;
    right: 20px;
    bottom: 17px;
    left: 20px;
    z-index: 1;
    color: #fff;
    font-size: 1.03rem;
    font-weight: 800;
}

.screenshot-card:hover img,
.screenshot-card:focus-visible img {
    filter: saturate(1.18);
    transform: scale(1.045);
}

/* Connection */
.connect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.connect-card {
    padding: 30px;
}

.connect-card.java {
    border-color: rgba(139, 125, 255, 0.3);
}

.connect-card.bedrock {
    border-color: rgba(98, 245, 238, 0.3);
}

.connect-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.platform-badge {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
}

.steps {
    display: grid;
    gap: 11px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: step;
}

.steps li {
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: start;
    gap: 10px;
    color: var(--muted);
}

.steps li::before {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 83, 214, 0.12);
    color: var(--gold);
    content: counter(step);
    counter-increment: step;
    font-size: 0.82rem;
    font-weight: 900;
}

.inline-code {
    display: inline-block;
    padding: 2px 7px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.22);
    color: var(--gold);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.91em;
}

/* FAQ */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list details:first-child {
    border-top: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 4px;
    color: var(--text);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    color: var(--gold);
    content: "+";
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-width: 760px;
    padding: 0 40px 23px 4px;
    color: var(--muted);
}

.faq-answer a,
.contact-card a,
.site-footer a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Team page */
.page-hero {
    padding: 126px 0 72px;
    background:
        radial-gradient(circle at 70% 20%, rgba(213, 45, 255, 0.2), transparent 28%),
        linear-gradient(135deg, #0c0b1d, #172044);
}

.page-hero p {
    max-width: 650px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 1.08rem;
}

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

.team-card {
    overflow: hidden;
    padding: 0;
}

.team-avatar {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #1c3550, #111c2d);
}

.team-avatar img {
    width: 128px;
    height: 128px;
    image-rendering: pixelated;
    border: 5px solid rgba(255, 83, 214, 0.75);
    border-radius: 24px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.35);
}

.team-card-body {
    padding: 22px;
}

.team-role {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.team-card h3 {
    margin-bottom: 3px;
    font-size: 1.25rem;
}

.team-name {
    margin: 0 0 13px;
    color: var(--muted);
    font-size: 0.91rem;
}

.team-card p:last-child {
    font-size: 0.92rem;
}

/* Footer */
.site-footer {
    padding: 34px 0;
    border-top: 1px solid var(--line);
    background: #060a12;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-inner p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.footer-brand {
    color: var(--gold);
    font-weight: 900;
    letter-spacing: 0.08em;
}

/* Toast and lightbox */
.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    max-width: min(360px, calc(100vw - 44px));
    padding: 13px 17px;
    border: 1px solid rgba(98, 245, 238, 0.36);
    border-radius: 12px;
    background: #21163b;
    color: #e3d9ff;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

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

.overlay {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(2, 5, 11, 0.82);
    backdrop-filter: blur(12px);
}

.overlay[hidden] {
    display: none;
}

.lightbox-content {
    position: relative;
    max-width: min(1100px, 100%);
}

.lightbox-content img {
    display: block;
    max-height: 82vh;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

[hidden] {
    display: none !important;
}

:focus-visible {
    outline: 3px solid rgba(139, 125, 255, 0.8);
    outline-offset: 3px;
}

/* Responsive */
@media (max-width: 900px) {
    .server-panel {
        grid-template-columns: 1fr 1fr;
    }

    .server-card:first-child {
        grid-column: 1 / -1;
    }

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

}

@media (max-width: 720px) {
    .header-inner {
        min-height: 68px;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: #101a29;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 12px 14px;
        border-radius: 10px;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible,
    .site-nav a[aria-current="page"] {
        background: rgba(255, 83, 214, 0.08);
    }

    .site-nav a::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 92px 0 82px;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 18vw, 6.4rem);
    }

    .section {
        padding: 76px 0;
    }

    .server-panel,
    .feature-grid,
    .screenshot-grid,
    .connect-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .server-card:first-child {
        grid-column: auto;
    }


    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .ip-value {
        font-size: 1rem;
    }

    .button-row .button {
        width: 100%;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}

/* Technical support */
.support-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(360px, 1.25fr);
    gap: 20px;
    align-items: stretch;
}

.support-info,
.chat-box {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(26, 43, 66, 0.82), rgba(14, 24, 39, 0.9));
}

.support-info {
    padding: 30px;
}

.support-info h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
}

.support-info > p {
    margin: 0;
    color: var(--muted);
}

.support-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.chat-box {
    display: flex;
    min-height: 440px;
    flex-direction: column;
    overflow: hidden;
}

.chat-box-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.14);
}

.chat-box-header strong,
.chat-box-header span {
    display: block;
}

.chat-box-header strong {
    font-size: 1rem;
}

.chat-box-header span:not(.chat-bot-mark) {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.78rem;
}

.chat-bot-mark {
    display: grid !important;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    background: rgba(139, 125, 255, 0.12);
    font-size: 1.3rem;
}

.chat-messages {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    padding: 18px 20px;
}

.chat-message {
    max-width: 84%;
    padding: 10px 13px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.07);
}

.chat-message.user {
    align-self: flex-end;
    background: rgba(255, 83, 214, 0.14);
}

.chat-message-label {
    display: block;
    margin-bottom: 3px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
}

.chat-message p {
    margin: 0;
    color: var(--text);
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.chat-actions {
    padding: 0 20px 10px;
}

.chat-input-row {
    display: flex;
    gap: 8px;
    padding: 12px 20px 18px;
    border-top: 1px solid var(--line);
}

.chat-input-row input {
    min-width: 0;
    flex: 1;
    height: 46px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 11px;
    outline: none;
    background: rgba(0, 0, 0, 0.2);
    color: var(--text);
}

.chat-input-row input::placeholder {
    color: #758397;
}

.chat-input-row input:focus {
    border-color: var(--blue);
}

.chat-input-row .button {
    min-width: 48px;
    padding-inline: 12px;
}

.typing-message {
    color: var(--muted);
    font-size: 0.86rem;
    font-style: italic;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (max-width: 900px) {
    .support-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .support-info {
        padding: 23px;
    }
}

/* Brand assets */
.brand-mark {
    width: 42px;
    height: 42px;
    padding: 0;
    overflow: hidden;
}

.brand-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-brand img {
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255, 83, 214, 0.45);
    border-radius: 7px;
    object-fit: cover;
}

/* Keep the four server cards inside the hero copy. */
.server-panel {
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.server-card {
    min-width: 0;
    padding: 18px;
}

.server-value {
    overflow-wrap: anywhere;
    font-size: clamp(0.98rem, 1.5vw, 1.2rem);
}


@media (max-width: 900px) {
    .server-panel {
        grid-template-columns: 1fr 1fr;
    }

    .server-card:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .server-panel {
        grid-template-columns: 1fr;
    }

    .server-card:first-child {
        grid-column: auto;
    }
}

.chat-feedback {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    color: var(--muted);
    font-size: .74rem;
}

.chat-feedback button {
    width: 26px;
    height: 24px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: rgba(255, 255, 255, .05);
    color: var(--text);
    cursor: pointer;
}

.chat-feedback button:hover:not(:disabled) {
    border-color: var(--pink);
    background: rgba(255, 83, 214, .12);
}

.chat-feedback button:disabled {
    cursor: default;
    opacity: .6;
}
