/* Chaos Gaming - Rust Section Styles */

.rust-page {
    padding-top: 7rem;
}

.rust-main {
    min-height: 100vh;
}

/* Rust Hero */
.rust-hero {
    position: relative;
    padding: 4rem 2rem;
    text-align: center;
    overflow: hidden;
}

.rust-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 107, 53, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 30% at 100% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.rust-hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rust-hero-content .cta-discord {
    margin-top: 0.5rem;
}

.rust-hero-content .stat-snippet {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.rust-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.rust-hero p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn-join-server {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--chaos-orange);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: 2rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-join-server:hover {
    background: #e85a2a;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.rust-hero-links {
    margin-top: 0.5rem;
}

/* Hero buttons: centered, 25% bigger */
.rust-hero .rust-hero-links.rust-links-grid {
    justify-content: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.rust-hero .rust-hero-links .rust-link-card {
    padding: 1.4rem;
}

.rust-hero .rust-hero-links .rust-link-card .rust-link-title {
    font-size: 1.17rem;
}

.rust-hero .rust-hero-links .rust-link-card .rust-link-desc {
    font-size: 0.89rem;
}

.rust-hero .rust-hero-links .btn-join-server-grid {
    padding: 1.4rem;
    font-size: 1.4rem;
}

.btn-join-server-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: span 2;
    padding: 2rem 3rem;
    font-size: 1.5rem;
    margin: 0;
}

/* Stats Section - table width ~15% wider, Quick Highlights aligned with table */
.rust-stats {
    max-width: 1104px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 2rem;
    box-sizing: border-box;
}

.rust-stats .stat-snippets,
.rust-stats .full-stats-table {
    width: 100%;
}

.rust-stats h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--chaos-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--chaos-orange);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Leaderboard */
.rust-leaderboard {
    margin-bottom: 3rem;
}

.rust-leaderboard h3,
.rust-recent-kills h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--chaos-orange);
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 1rem 1.25rem;
    text-align: left;
}

.leaderboard-table th {
    background: rgba(255, 107, 53, 0.15);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

.leaderboard-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.leaderboard-table tr:hover {
    background: rgba(255, 107, 53, 0.08);
}

/* Kill Feed */
.rust-recent-kills {
    margin-bottom: 3rem;
}

.kill-feed {
    list-style: none;
}

.kill-feed li {
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.kill-feed .killer {
    color: var(--chaos-cyan);
    font-weight: 600;
}

.kill-feed .killed {
    color: var(--text-muted);
}

.kill-feed .victim {
    color: var(--chaos-red);
    font-weight: 600;
}

.kill-feed .weapon {
    color: var(--chaos-yellow);
    font-size: 0.9rem;
}

/* Stats notes */
.stats-note,
.stats-offline {
    padding: 1.5rem;
    background: rgba(255, 209, 102, 0.1);
    border: 1px solid rgba(255, 209, 102, 0.3);
    border-radius: 8px;
    color: var(--chaos-yellow);
}

.rust-stats-offline .stats-offline {
    margin-top: 1rem;
}

/* Rust News (from Facepunch RSS) */
.rust-news {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.rust-news h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.rust-news-more {
    margin-bottom: 1.5rem;
}

.rust-news-more a {
    color: var(--chaos-orange);
    text-decoration: none;
}

.rust-news-more a:hover {
    text-decoration: underline;
}

.rust-news-attribution {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.rust-news-attribution a {
    color: var(--chaos-cyan);
    text-decoration: none;
}

.rust-news-attribution a:hover {
    text-decoration: underline;
}

.rust-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.rust-news-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}

.rust-news-card:hover {
    border-color: var(--chaos-orange);
    transform: translateY(-4px);
}

.rust-news-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.rust-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rust-news-body {
    padding: 1.25rem;
}

.rust-news-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.rust-news-body time {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rust-news-body p {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Section link cards (Rust index) */
.rust-section-links h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.rust-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

/* Hero grid: enforce 3 columns, Discord left + Join Server right in row 3 */
.rust-hero-grid-3x3.rust-links-grid {
    grid-template-columns: repeat(3, 1fr);
}

.rust-link-card {
    display: block;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}

.rust-link-card:hover {
    border-color: var(--chaos-orange);
    transform: translateY(-4px);
}

.rust-link-title {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--chaos-orange);
    margin-bottom: 0.25rem;
}

.rust-link-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.rust-hero-compact {
    padding: 2rem 2rem 1.5rem;
}

.rust-hero-compact h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

/* Section nav active state */
.section-nav a.active {
    color: var(--chaos-orange);
}

/* Stat snippets */
.stat-snippet {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--chaos-orange);
    border-radius: 8px;
    color: var(--chaos-orange);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: background 0.2s, transform 0.2s;
}

.stat-snippet:hover {
    background: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.stat-snippet-hero .snippet-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

.stat-snippet-hero .snippet-value {
    font-weight: 700;
}

/* Stat cards as links */
.stat-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.stat-card-link:hover .stat-value {
    color: var(--chaos-yellow);
}

/* Quick highlights grid */
.stat-snippets {
    margin-bottom: 3rem;
}

.stat-snippets h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--chaos-orange);
}

.snippets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.stat-snippet-card {
    display: block;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}

.stat-snippet-card:hover {
    border-color: var(--chaos-orange);
    transform: translateY(-2px);
}

.stat-snippet-card .snippet-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.stat-snippet-card .snippet-name {
    display: block;
    font-weight: 700;
    color: var(--chaos-cyan);
}

.stat-snippet-card .snippet-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: var(--chaos-orange);
}

/* Full stats table */
.full-stats-table {
    margin-bottom: 3rem;
    padding: 2.5rem 0;
}

.full-stats-table h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--chaos-orange);
}

.table-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.table-wrapper {
    border-radius: 8px;
    border: 1px solid var(--border);
    padding: 1.5rem;
    overflow: visible;
    background: var(--bg-card);
}

/* Ensure DataTables wrapper stays inside border with padding */
.full-stats-table .dataTables_wrapper {
    overflow-x: visible !important;
    padding: 0;
}

.full-stats {
    width: 100% !important;
    border-collapse: collapse;
    background: var(--bg-card);
    table-layout: fixed;
}

/* DataTables overrides - keep our style */
.rust-dt-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 0 1.5rem;
    color: var(--text-muted);
}

.rust-dt-top input,
.rust-dt-top select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    min-height: 44px;
    margin: 0 0.75rem;
}

.rust-dt-top input {
    min-width: 220px;
}

.rust-dt-top label {
    color: var(--text-muted);
}

/* Bottom bar: info left, pagination right - prominent */
.rust-dt-bottom,
.rust-dt-bar {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between !important;
    gap: 1.5rem;
    margin-top: 2rem !important;
    padding: 2rem 0 !important;
    color: var(--text-muted);
}

.rust-dt-bottom .dataTables_info,
.rust-dt-bar .dataTables_info {
    order: 1;
}

.rust-dt-bottom .dataTables_paginate,
.rust-dt-bar .dataTables_paginate,
.rust-pagination {
    order: 2;
    margin-left: auto !important;
}

.rust-pagination .paginate_button,
.rust-dt-bottom .paginate_button,
.dataTables_wrapper .rust-dt-bottom .paginate_button {
    background: var(--bg-card) !important;
    border: 2px solid var(--border) !important;
    color: var(--text) !important;
    margin-left: 6px !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 8px;
    font-weight: 700 !important;
    font-size: 1rem !important;
}

.rust-pagination .paginate_button:hover,
.rust-dt-bottom .paginate_button:hover {
    background: rgba(255, 107, 53, 0.25) !important;
    border-color: var(--chaos-orange) !important;
    color: var(--chaos-orange) !important;
}

.rust-pagination .paginate_button.current,
.rust-dt-bottom .paginate_button.current {
    background: var(--chaos-orange) !important;
    border-color: var(--chaos-orange) !important;
    color: white !important;
}

.rust-pagination .paginate_button.disabled,
.rust-dt-bottom .paginate_button.disabled {
    opacity: 0.5;
}

.full-stats th,
.full-stats td {
    padding: 0.6rem 0.75rem;
    text-align: left;
    font-size: 0.9rem;
}

.full-stats th {
    min-width: 0;
    background: rgba(255, 107, 53, 0.15);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    white-space: normal;
    cursor: pointer;
    user-select: none;
    line-height: 1.3;
}

/* Narrower columns - distribute space */
.full-stats th:nth-child(1),
.full-stats td:nth-child(1) { width: 18%; }
.full-stats th:nth-child(2),
.full-stats td:nth-child(2) { width: 10%; }
.full-stats th:nth-child(3),
.full-stats td:nth-child(3) { width: 10%; }
.full-stats th:nth-child(4),
.full-stats td:nth-child(4) { width: 10%; }
.full-stats th:nth-child(5),
.full-stats td:nth-child(5) { width: 10%; }
.full-stats th:nth-child(6),
.full-stats td:nth-child(6) { width: 10%; }
.full-stats th:nth-child(7),
.full-stats td:nth-child(7) { width: 12%; }
.full-stats th:nth-child(8),
.full-stats td:nth-child(8) { width: 10%; }

.full-stats th:hover {
    background: rgba(255, 107, 53, 0.25);
}

/* DataTables sort indicators */
.full-stats th.sorting::after,
.full-stats th.sorting_asc::after,
.full-stats th.sorting_desc::after {
    margin-left: 0.5rem;
    opacity: 0.6;
}

.full-stats th.sorting::after {
    content: '⇅';
}

.full-stats th.sorting_asc::after {
    content: '↑';
    color: var(--chaos-orange);
}

.full-stats th.sorting_desc::after {
    content: '↓';
    color: var(--chaos-orange);
}

.full-stats td.mono {
    font-family: monospace;
    font-size: 0.9rem;
}

.full-stats tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.full-stats tr:hover {
    background: rgba(255, 107, 53, 0.06);
}

.stat-snippet-inline {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 214, 160, 0.15);
    border-radius: 6px;
    color: var(--chaos-cyan);
    text-decoration: none;
}

.stat-snippet-inline:hover {
    background: rgba(6, 214, 160, 0.25);
}

/* Join Server page */
.rust-join-main {
    max-width: 1104px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    box-sizing: border-box;
}

.rust-join-hero {
    margin-bottom: 2rem;
}

.rust-join-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .rust-join-info-grid {
        grid-template-columns: 1fr;
    }
}

.rust-join-info-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.rust-join-info-card:hover {
    border-color: var(--chaos-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.rust-join-info-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.rust-join-info-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rust-join-info-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--chaos-orange);
    word-break: break-all;
}

.rust-join-info-value.rust-join-command {
    font-size: 0.95rem;
}

.rust-join-info-detail {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.rust-join-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: auto;
    padding-top: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.25);
    color: var(--chaos-orange);
    padding: 0.35rem 0.75rem;
    border-radius: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.rust-join-copy-btn:hover {
    background: rgba(255, 107, 53, 0.2);
}

.rust-join-copy-btn.copied {
    color: var(--chaos-cyan);
    border-color: rgba(6, 214, 160, 0.25);
    background: rgba(6, 214, 160, 0.1);
}

.rust-join-connect-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.rust-join-section-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rust-join-section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.rust-join-section-icon {
    font-size: 1.2rem;
}

.rust-join-steps {
    padding: 1.5rem;
}

.rust-join-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.rust-join-step:last-child {
    margin-bottom: 0;
}

.rust-join-step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--chaos-orange), #e85a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #fff;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.rust-join-step-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: 0.5px;
}

.rust-join-step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.rust-join-step-content code {
    font-family: 'Orbitron', sans-serif;
    background: rgba(255, 107, 53, 0.1);
    color: var(--chaos-orange);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Live Server Status - Hero style above cards */
.rust-join-bm-hero {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(22, 22, 26, 0.98) 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.rust-join-bm-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--chaos-orange), var(--chaos-cyan));
}

.rust-join-bm-hero-inner {
    padding: 2rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

.rust-join-bm-highlight {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.rust-join-bm-players {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--chaos-orange);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.rust-join-bm-players-sep {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.7;
}

.rust-join-bm-max {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-muted);
}

.rust-join-bm-players-label {
    width: 100%;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 0.25rem;
}

.rust-join-bm-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

.rust-join-bm-status-pill.rust-join-bm-online {
    background: rgba(6, 214, 160, 0.15);
    border: 1px solid rgba(6, 214, 160, 0.4);
    color: var(--chaos-cyan);
}

.rust-join-bm-status-pill.rust-join-bm-online .rust-join-bm-pulse {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--chaos-cyan);
    animation: rust-bm-pulse 1.5s ease-in-out infinite;
}

.rust-join-bm-status-pill.rust-join-bm-offline {
    background: rgba(160, 160, 168, 0.1);
    border: 1px solid rgba(160, 160, 168, 0.2);
    color: var(--text-muted);
}

.rust-join-bm-status-pill.rust-join-bm-offline .rust-join-bm-pulse {
    display: none;
}

@keyframes rust-bm-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.rust-join-bm-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rust-join-bm-meta-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rust-join-bm-meta-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.rust-join-bm-meta-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.rust-join-bm-meta-divider {
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .rust-join-bm-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .rust-join-bm-players {
        font-size: 2.75rem;
    }

    .rust-join-bm-players-sep,
    .rust-join-bm-max {
        font-size: 2rem;
    }

    .rust-join-bm-meta {
        width: 100%;
    }
}

.rust-join-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    color: var(--text-muted);
}

.rust-join-placeholder code {
    font-family: 'Orbitron', sans-serif;
    background: rgba(255, 107, 53, 0.1);
    color: var(--chaos-orange);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}
