:root {
    --site-bg: #0d0d0f;
    --site-panel: #18181b;
    --site-panel-light: #202026;
    --site-border: #2d2d35;
    --site-text: #ffffff;
    --site-muted: #c9c9d1;
    --site-accent: #ff9f43;
    --site-accent-soft: rgba(255, 159, 67, 0.16);
}

body {
    background: var(--site-bg);
    color: var(--site-text);
}

a {
    text-decoration: none;
}

.site-navbar {
    background: rgba(13, 13, 15, 0.92);
    border-bottom: 1px solid var(--site-border);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    color: var(--site-accent) !important;
}

.brand-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--site-accent-soft);
    color: var(--site-accent);
}

.nav-link {
    font-weight: 600;
    color: #d6d6dd !important;
}

.nav-link i {
    margin-right: 4px;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
}

.hero-section {
    min-height: calc(100vh - 73px);
    background:
        radial-gradient(circle at top left, rgba(255, 159, 67, 0.22), transparent 32%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.07), transparent 28%),
        linear-gradient(135deg, #101014 0%, #17171d 45%, #0d0d0f 100%);
}

.hero-row {
    min-height: 75vh;
    padding: 72px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--site-accent-soft);
    color: var(--site-accent);
    border: 1px solid rgba(255, 159, 67, 0.24);
    font-weight: 700;
}

.hero-section h1 span {
    color: var(--site-accent);
}

.hero-section .lead {
    color: var(--site-muted);
    max-width: 640px;
}

.server-ip-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 22px;
    border: 1px solid var(--site-border);
    border-radius: 16px;
    background: rgba(24, 24, 27, 0.9);
    color: var(--site-accent);
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.feature-card {
    background: rgba(24, 24, 27, 0.92);
    border: 1px solid var(--site-border);
    color: var(--site-text);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.feature-card p {
    color: var(--site-muted);
}

.server-card {
    background:
        linear-gradient(180deg, rgba(255, 159, 67, 0.08), transparent 45%),
        rgba(24, 24, 27, 0.95);
}

.card-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 14px;
    background: var(--site-accent-soft);
    color: var(--site-accent);
    font-size: 22px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--site-border);
}

.info-row:last-child {
    border-bottom: 0;
}

.info-row span {
    color: #aaaab5;
}

.content-section {
    padding: 64px 0;
    min-height: calc(100vh - 145px);
    background:
        radial-gradient(circle at top left, rgba(255, 159, 67, 0.12), transparent 30%),
        var(--site-bg);
}

.page-heading {
    margin-bottom: 32px;
    text-align: center;
}

.page-heading h1 {
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 800;
    margin: 0 0 12px;
}

.page-heading p {
    color: var(--site-muted);
    font-size: 18px;
    margin: 0;
}

.rules-list {
    margin: 0;
    padding-left: 22px;
}

.rules-list li {
    margin-bottom: 12px;
    color: #e5e5e5;
}

.rules-list li:last-child {
    margin-bottom: 0;
}

.staff-role {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--site-accent-soft);
    color: var(--site-accent);
    font-weight: 700;
    font-size: 14px;
}

.pagination .page-link {
    background: var(--site-panel);
    border-color: var(--site-border);
    color: #ffffff;
}

.pagination .page-link:hover {
    background: var(--site-panel-light);
    border-color: #3a3a44;
    color: var(--site-accent);
}

.pagination .active .page-link {
    background: var(--site-accent);
    border-color: var(--site-accent);
    color: #111111;
    font-weight: 700;
}

.site-footer {
    border-top: 1px solid var(--site-border);
    background: #111115;
    color: #9999a5;
    padding: 26px 0;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .footer-links {
        justify-content: flex-end;
    }
}

.footer-links a {
    color: #cfcfd8;
    font-weight: 600;
}

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