* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-900: #070708;
    --bg-850: #0c0d12;
    --bg-800: #11131a;
    --bg-700: #171a24;
    --accent: #e11d48;
    --accent-dark: #9f1239;
    --accent-2: #f97316;
    --text: #f8fafc;
    --text-muted: #cbd5f5;
    --border: rgba(225, 29, 72, 0.35);
    --success: #10b981;
    --radius: 16px;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    font-family: "Rajdhani", "Segoe UI", sans-serif;
    color: var(--text);
    background: #050506;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: 5.5rem;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("https://i.blogs.es/a6ea54/counter-strike-2/1366_2000.webp");
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.02);
    opacity: 0.55;
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(225, 29, 72, 0.12), transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(120, 120, 130, 0.12), transparent 40%),
        linear-gradient(160deg, rgba(5, 5, 6, 0.65), rgba(5, 5, 6, 0.9));
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.icon {
    width: 1rem;
    height: 1rem;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.icon-lg {
    width: 1.25rem;
    height: 1.25rem;
}

.icon-xl {
    width: 2.5rem;
    height: 2.5rem;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--accent);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    z-index: 100;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background: rgba(9, 10, 13, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(225, 29, 72, 0.2);
}

.site-nav {
    width: min(1100px, 100% - 3rem);
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    font-family: "Orbitron", "Rajdhani", sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}


.logo-image {
    width: 84px;
    height: 84px;
    object-fit: contain;
    display: block;
}

.logo-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.35rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.logo-mark svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-toggle {
    display: none;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(225, 29, 72, 0.15);
    border: 1px solid rgba(225, 29, 72, 0.35);
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    align-items: center;
    gap: 0.4rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-btn {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-icon {
    width: 1rem;
    height: 1rem;
    display: inline-block;
    flex: 0 0 auto;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-btn span {
    white-space: nowrap;
}

.nav-btn::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.4rem;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-btn:hover,
.nav-btn.active {
    color: var(--accent);
}

.nav-btn:hover::after,
.nav-btn.active::after {
    transform: scaleX(1);
}

.btn-login {
    padding: 0.55rem 1.4rem;
    background: linear-gradient(120deg, var(--accent), var(--accent-dark));
    border: none;
    border-radius: 999px;
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(225, 29, 72, 0.35);
}

main {
    display: block;
}

#main-content {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

body.page-loading #main-content {
    opacity: 0.35;
    transform: translateY(6px);
}

.section {
    display: none;
    min-height: 100vh;
    padding: 7rem 0 5rem;
}

.section.active {
    display: block;
    animation: fadeIn 0.5s ease both;
}

.container {
    width: min(1100px, 100% - 3rem);
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 38rem;
    margin: -2.5rem auto 3rem;
}

h1,
h2 {
    font-family: "Orbitron", "Rajdhani", sans-serif;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#hero {
    min-height: calc(100vh - 6rem);
    display: grid;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0 4rem;
    isolation: isolate;
}

#hero::before {
    content: none;
}

#hero::after {
    content: none;
}

.hero-banner {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.45);
    max-height: 240px;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: -20% 0 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(200, 200, 200, 0.12), transparent 60%),
        radial-gradient(circle at 50% 80%, rgba(140, 140, 140, 0.14), transparent 65%);
    filter: blur(10px);
    opacity: 0.6;
    animation: smokeDrift 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 8, 10, 0.15), rgba(6, 6, 7, 0.65));
    opacity: 0.75;
    z-index: 2;
}

.hero-banner img {
    width: 100%;
    height: clamp(140px, 22vw, 240px);
    display: block;
    object-fit: contain;
    background: transparent;
    filter: saturate(1.05) contrast(1.05);
    transform: scale(1.02);
    animation: bannerDrift 9s ease-in-out infinite;
    position: relative;
    z-index: 0;
}

.bullet-impacts-container {
    position: relative;
    overflow: visible;
}

#bullet-impacts {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 10;
}

.bullet-impact {
    position: absolute;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.7) rotate(-10deg);
    animation: bulletImpact 0.22s cubic-bezier(.7, -0.2, .7, 1.5) forwards, bulletVibrate 0.7s cubic-bezier(.7, -0.2, .7, 1.5) 0.22s 1, bulletBannerSync 18s ease-in-out infinite, bulletFlash 0.22s linear;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
    background: url('/assets/img/bullet-impact.png');
    background-size: contain;
    background-repeat: no-repeat;
}

@keyframes bulletFlash {
    0% {
        box-shadow: 0 0 32px 12px #fff9, 0 2px 8px rgba(0, 0, 0, 0.25);
    }

    60% {
        box-shadow: 0 0 16px 6px #fff7, 0 2px 8px rgba(0, 0, 0, 0.25);
    }

    100% {
        box-shadow: 0 0 0 0 #fff0, 0 2px 8px rgba(0, 0, 0, 0.25);
    }
}

@keyframes bulletImpact {
    0% {
        opacity: 0;
        transform: scale(0.7) rotate(-10deg);
    }

    60% {
        opacity: 1;
        transform: scale(1.1) rotate(8deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes bulletVibrate {
    0% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-1px, 1px) scale(1.01);
    }

    50% {
        transform: translate(1px, -1px) scale(1);
    }

    75% {
        transform: translate(-1px, -1px) scale(0.99);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes bulletBannerSync {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-backdrop .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.65;
    animation: float 10s ease-in-out infinite;
}

.hero-backdrop .orb-1 {
    width: 240px;
    height: 240px;
    background: rgba(180, 30, 30, 0.3);
    top: 10%;
    left: 4%;
}

.hero-backdrop .orb-2 {
    width: 320px;
    height: 320px;
    background: rgba(90, 90, 100, 0.32);
    bottom: 5%;
    right: 8%;
    animation-delay: -2s;
}

.hero-backdrop .orb-3 {
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    top: 50%;
    right: 20%;
    animation-delay: -4s;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 48rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    padding: 1rem;
    min-height: 420px;
    border-radius: 18px;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1476610182048-b716b8518aae?auto=format&fit=crop&w=900&q=80");
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    opacity: 0.45;
    filter: saturate(0.6) contrast(1.2) grayscale(0.35);
    z-index: 0;
}

.hero-visual>* {
    position: relative;
    z-index: 1;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(6, 6, 7, 0.2), rgba(5, 5, 6, 0.85));
    z-index: 1;
}

.hero-scene {
    width: min(360px, 78%);
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 26px 46px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 2;
    background: rgba(8, 8, 10, 0.6);
}

.hero-scene::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(200, 40, 40, 0.18), rgba(6, 6, 7, 0.65));
    z-index: 2;
}

.hero-scene img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.08) saturate(0.6) grayscale(0.2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.6rem;
    padding: 1.2rem;
    z-index: 3;
}

.hero-overlay-title {
    font-family: "Oxanium", "Manrope", sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text);
}

.hero-overlay-sub {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.hero-tags span {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 8, 10, 0.72);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text);
}

.hero-card {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.9rem;
    border-radius: 14px;
    background: rgba(12, 13, 18, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero-card img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.hero-card-main {
    transform: translateX(-16px);
}

.hero-card-weapon {
    transform: translateX(-6px);
}

.hero-card-rifle {
    transform: translateX(-12px);
}

.hero-card-spy {
    transform: translateX(-22px);
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-content h1 {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 1.05;
    font-weight: 800;
}

.hero-content h1 span {
    display: inline-block;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 36rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 0.5rem 0 0.5rem;
}

.hero-stat {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: rgba(10, 12, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    display: grid;
    gap: 0.3rem;
}

.stat-value {
    font-family: "Orbitron", "Rajdhani", sans-serif;
    font-size: 1.4rem;
    color: var(--text);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-muted);
}

.btn-primary,
.btn-secondary,
.btn-large,
.btn-buy,
.btn-payment {
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary,
.btn-large,
.btn-buy {
    background: linear-gradient(120deg, var(--accent), var(--accent-dark));
    color: var(--text);
    box-shadow: 0 14px 30px rgba(225, 29, 72, 0.3);
}

.btn-primary:hover,
.btn-large:hover,
.btn-buy:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(225, 29, 72, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.85rem 1.6rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-primary {
    padding: 0.85rem 1.6rem;
}

.btn-icon {
    border: none;
    background: transparent;
    color: var(--text);
    padding: 0.2rem;
    margin-left: 0.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-icon:hover {
    color: var(--text);
}

.btn-icon.is-copied {
    color: var(--success);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.servers-grid,
.privileges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.server-card,
.privilege-card {
    padding: 1.75rem;
    border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(17, 19, 26, 0.9), rgba(11, 11, 16, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.server-card:hover,
.privilege-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 29, 72, 0.4);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45);
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.server-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.server-status {
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid;
}

.status-online {
    background: rgba(16, 185, 129, 0.18);
    color: var(--success);
    border-color: var(--success);
}

.status-offline {
    background: rgba(225, 29, 72, 0.18);
    color: var(--accent);
    border-color: var(--accent);
}

.server-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.server-info strong {
    color: var(--text);
}

.progress-bar {
    width: 100%;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    transition: width 0.3s ease;
}

.banlist-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(12, 13, 18, 0.8);
}

.banlist-table thead {
    background: linear-gradient(120deg, rgba(225, 29, 72, 0.2), rgba(249, 115, 22, 0.2));
}

.banlist-table th,
.banlist-table td {
    padding: 0.65rem 0.75rem;
    text-align: left;
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.banlist-table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
}

.banlist-table tbody tr {
    transition: background 0.3s ease;
}

.banlist-table tbody tr:hover {
    background: rgba(225, 29, 72, 0.08);
}

.ban-row {
    cursor: pointer;
}

.ban-game {
    text-align: center;
    width: 40px;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}

.game-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.4rem;
    min-width: 28px;
    min-height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text);
}

.game-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.ban-player {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    max-width: 100%;
}

.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.duration-badge {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
}

.duration-permanent {
    background: rgba(225, 29, 72, 0.2);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.duration-temp {
    background: rgba(249, 115, 22, 0.2);
    color: var(--accent-2);
    border: 1px solid var(--accent-2);
}

.ban-details {
    display: none;
    background: rgba(17, 19, 26, 0.9);
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ban-details.active {
    display: block;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.detail-item {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(12, 13, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-item h4 {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.detail-item p {
    color: var(--text);
    font-size: 0.9rem;
    word-break: break-word;
}

.ban-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid;
}

.ban-status-active {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
    border-color: var(--success);
}

.ban-status-expired {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border-color: #60a5fa;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pagination button {
    padding: 0.5rem 1rem;
    background: rgba(225, 29, 72, 0.2);
    color: var(--text);
    border: 1px solid rgba(225, 29, 72, 0.3);
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, border 0.3s ease;
}

.pagination button:hover:not(:disabled) {
    background: rgba(225, 29, 72, 0.35);
}

.pagination button.active {
    background: var(--accent);
    border-color: var(--accent);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.contact-form {
    max-width: 44rem;
    margin: 0 auto;
    background: rgba(12, 13, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.page-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.page-title h2 {
    margin-bottom: 0.8rem;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.panel {
    background: rgba(12, 13, 18, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.panel-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.filter-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.filter-group input,
.filter-group select {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(6, 7, 10, 0.75);
    color: var(--text);
    font-family: inherit;
}

.filter-actions {
    display: flex;
    gap: 0.75rem;
}

.panel-table {
    padding: 0;
    overflow: hidden;
}

.table-head,
.table-row {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr 1fr 1.6fr 1.1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.9rem 1.2rem;
}

.table-head {
    background: linear-gradient(120deg, rgba(225, 29, 72, 0.25), rgba(249, 115, 22, 0.2));
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
}

.table-body {
    display: grid;
}

.table-row {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.88rem;
}

.table-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.table-row .avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.table-row .player {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.table-row .player-name {
    font-weight: 700;
}

.table-row .player-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.top-metrics .metric-sep {
    color: var(--text-muted);
    opacity: 0.7;
    margin: 0 0.2rem;
}

.top-metrics .metric-hs {
    color: var(--accent-2);
    font-weight: 700;
}

.top-metrics .metric-bp {
    color: var(--success);
    font-weight: 700;
}

.top-metrics .metric-hits {
    color: var(--text);
    font-weight: 700;
}

.top-metrics .metric-deaths {
    color: var(--accent);
    font-weight: 700;
}

.admin-status {
    display: inline-flex;
    align-items: center;
    padding: 0.1rem 0.55rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.admin-status-active {
    color: var(--success);
    background: rgba(16, 185, 129, 0.16);
}

.admin-status-expired {
    color: var(--accent);
    background: rgba(225, 29, 72, 0.18);
}

#admin-flags-hint {
    color: var(--text-muted);
    opacity: 0.9;
}

.panel-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.admin-tabs {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tab-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
}

.tab-btn.active {
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    color: var(--text);
}

.tab-btn.logout {
    margin-left: auto;
    background: rgba(225, 29, 72, 0.2);
    border-color: rgba(225, 29, 72, 0.4);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.panel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.tab-panel[data-panel="staff"] .panel-grid {
    align-items: start;
}

.tab-panel[data-panel="staff"] .panel-grid>.staff-table-card {
    height: fit-content !important;
    min-height: 0 !important;
}

.panel-card {
    display: grid;
    gap: 0.75rem;
    padding: 1.2rem;
    border-radius: 14px;
    background: rgba(8, 9, 12, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.staff-table-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    align-content: flex-start;
    flex: 0 0 auto;
    align-self: start;
    overflow: hidden;
}

.staff-table-wrap {
    width: 100%;
    margin-top: 0.25rem;
    align-self: flex-start;
    flex: 0 0 auto;
    overflow-x: auto;
}

.admin-staff-table {
    width: 100%;
    min-width: 420px;
    border-collapse: collapse;
    table-layout: fixed;
}

.admin-staff-table thead tr {
    background: rgba(255, 255, 255, 0.05);
}

.admin-staff-table th,
.admin-staff-table td {
    padding: 0.55rem 0.45rem;
    text-align: left;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    white-space: nowrap;
}

.admin-staff-table td {
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-staff-table th {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
}

.admin-staff-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.admin-staff-table th:nth-child(1),
.admin-staff-table td:nth-child(1) {
    width: 44%;
}

.admin-staff-table th:nth-child(2),
.admin-staff-table td:nth-child(2) {
    width: 14%;
}

.admin-staff-table th:nth-child(3),
.admin-staff-table td:nth-child(3) {
    width: 20%;
}

.admin-staff-table th:nth-child(4),
.admin-staff-table td:nth-child(4) {
    width: 22%;
}

.admin-staff-table td.actions-cell {
    display: flex;
    gap: 0.25rem;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
}

.admin-staff-table .empty-cell {
    text-align: center;
    color: var(--text-muted);
    padding: 1rem 0.75rem;
}

.staff-icon-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.staff-icon-btn:hover {
    border-color: rgba(225, 29, 72, 0.6);
    background: rgba(225, 29, 72, 0.18);
}

.staff-icon-btn svg {
    width: 14px;
    height: 14px;
}

.panel-card label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.panel-card input,
.panel-card select,
.panel-card textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(6, 7, 10, 0.75);
    color: var(--text);
    font-family: inherit;
}

.panel-card textarea {
    min-height: 120px;
    resize: vertical;
}

.filters-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.filters-inline input {
    padding: 0.6rem 0.8rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(6, 7, 10, 0.75);
    color: var(--text);
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill-list span {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.75rem;
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(6, 7, 10, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
    min-height: 8rem;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(225, 29, 72, 0.6);
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.2);
}

.form-group select option {
    background: #0b0d12;
    color: var(--text);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.8rem;
    flex-wrap: wrap;
}

.form-actions button {
    flex: 1;
    min-width: 180px;
}

.privilege-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent-2);
}

.privilege-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.privilege-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 1.4rem;
}

.privilege-features {
    list-style: none;
    margin-bottom: 1.8rem;
    color: var(--text-muted);
}

.privilege-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.privilege-features li:before {
    content: "*";
    color: var(--accent-2);
    font-weight: 700;
}

.payment-buttons {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.btn-payment {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-binance {
    background: linear-gradient(120deg, #f97316, #ea580c);
    color: #0b0d12;
}

.btn-paypal {
    background: linear-gradient(120deg, #1e3a8a, #1d4ed8);
    color: var(--text);
}

.btn-buy {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 6, 0.75);
    backdrop-filter: blur(6px);
    z-index: 60;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(150deg, rgba(17, 19, 26, 0.98), rgba(10, 11, 15, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 50rem;
    width: 100%;
    box-shadow: var(--shadow);
}

.players-modal-content {
    max-width: 52rem;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.modal-header h2 {
    font-size: 1.6rem;
    margin-bottom: 0;
}

.modal-header button {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 1.4rem;
    cursor: pointer;
}

.site-footer {
    background: rgba(8, 9, 12, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 1.5rem 2rem;
    color: var(--text-muted);
}

.footer-grid {
    width: min(1100px, 100% - 3rem);
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.footer-card {
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(12, 13, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.footer-card h3,
.footer-card h4 {
    font-family: "Orbitron", "Rajdhani", sans-serif;
    color: var(--text);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.9rem;
}

.footer-card p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-card strong {
    color: var(--text);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .site-nav {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-right {
        width: 100%;
        justify-content: flex-start;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        background: rgba(9, 10, 13, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .nav-menu.is-open {
        max-height: 360px;
        opacity: 1;
        padding: 1rem 0;
    }

    .nav-btn {
        width: 100%;
        padding: 0.5rem 0;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
    }

    .hero-card {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 680px) {
    body {
        padding-top: 6.2rem;
    }

    .section {
        padding: 6rem 0 4rem;
    }

    .banlist-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .table-head,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .table-head {
        display: none;
    }

    .table-row .td {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .admin-staff-table {
        min-width: 520px;
    }
}

.hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-grid {
    grid-template-columns: 1fr;
}
}

@media (max-width: 520px) {
    .hero-actions {
        width: 100%;
    }

    .btn-large,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@keyframes bannerDrift {

    0%,
    100% {
        transform: scale(1.02) translateY(0);
    }

    50% {
        transform: scale(1.04) translateY(-6px);
    }
}

@keyframes smokeDrift {
    0% {
        transform: translateX(-2%) translateY(0);
        opacity: 0.55;
    }

    50% {
        transform: translateX(2%) translateY(-2%);
        opacity: 0.75;
    }

    100% {
        transform: translateX(-2%) translateY(0);
        opacity: 0.55;
    }
}