:root {
    --primary: #ff1f1f;
    --primary-dark: #e01919;
    --dark: #1a1a1a;
    --darker: #121212;
    --light: #f0f0f0;
    --online: #22c55e;
    --offline: #ef4444;
    --danger: #ef4444;
    --warning: #f59e0b;
    --permanent: #991b1b;
    --temporary: #92400e;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
    --success: #22c55e;
    --vip-diamond: #b9f2ff;
    --vip-gold: #ffdf00;
    --vip-silver: #e3e4e5;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oxanium', sans-serif;
    color: var(--light);
    min-height: 100vh;
    position: relative;
    /* Adicione isso para o posicionamento correto */
    margin: 0;
    overflow-x: hidden;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Coloca atrás de todo o conteúdo */
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;

    /* Efeito de desfoque opcional */
    filter: blur(2px);

    /* Garante que o vídeo cubra toda a área */
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Ajuste o último valor (0.7) para controlar a escuridão */
    /* Quanto maior o valor, mais escuro ficará o vídeo */
    background-color: rgba(0, 0, 0, 0.91);
    /* Valor original */
    z-index: 0;
}

/* Mantenha seus gradientes radiais no conteúdo principal */
.main-content {
    position: relative;
    z-index: 1;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 31, 31, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 31, 31, 0.1) 0%, transparent 50%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 31, 31, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff1f1f, #ff411f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav a:hover,
.nav a.active {
    color: white;
    background-color: rgba(255, 31, 31, 0.2);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(18, 18, 18, 0.9)),
        url('imgs/img01.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgb(255 0 0 / 28%), transparent);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ff4b4b, #ff1f1f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-primary {
    background-color: var(--primary);
    color: white;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 90, 31, 0.4);
}

.cta-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.server-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--primary);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.features {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.quick-link {
    padding: 0.8rem 1.5rem;
    background-color: rgba(255, 90, 31, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-link:hover {
    background-color: rgba(255, 90, 31, 0.3);
    transform: translateY(-2px);
}


/* BANS */


.page-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, var(--primary), var(--danger));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.ban-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.filter-btn.active {
    background-color: var(--primary);
    color: white;
}

.search-bans {
    margin-bottom: 2rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Oxanium', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 90, 31, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
}

.ban-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.total-bans {
    color: var(--danger);
}

.permanent-bans {
    color: var(--permanent);
}

.temporary-bans {
    color: var(--temporary);
}

.appeals {
    color: var(--warning);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.bans-container {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.bans-header {
    display: grid;
    grid-template-columns: 100px 2fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    font-weight: 600;
    color: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
}

.ban-row {
    display: grid;
    grid-template-columns: 100px 2fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
}

.ban-row:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.ban-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--danger);
}

.ban-info {
    display: flex;
    flex-direction: column;
}

.ban-name {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.ban-steamid {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.ban-reason {
    font-weight: 500;
}

.ban-admin {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.ban-date {
    font-family: 'Roboto Mono', monospace;
}

.ban-expires {
    font-weight: 600;
}

.permanent {
    color: var(--permanent);
}

.temporary {
    color: var(--temporary);
}

.ban-actions {
    display: flex;
    gap: 0.5rem;
}



.appeal-btn {
    background-color: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.appeal-btn:hover {
    background-color: rgba(245, 158, 11, 0.3);
}

.details-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.details-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-btn {
    padding: 0.8rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.page-btn.active {
    background-color: var(--primary);
    color: white;
}

.ban-details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-top: 4px solid var(--danger);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-size: 1.8rem;
    color: var(--danger);
}

.close-modal {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: white;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    margin-bottom: 1rem;
}

.detail-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.3rem;
}

.detail-value {
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
    word-break: break-all;
}

.evidence-section {
    margin-top: 2rem;
}

.evidence-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.evidence-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.evidence-img {
    border-radius: 8px;
    overflow: hidden;
    height: 150px;
    background-color: var(--darker);
}

.evidence-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appeal-form {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-family: 'Oxanium', sans-serif;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    padding: 0.8rem 1.5rem;
    background-color: var(--warning);
    color: var(--darker);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: #e69009;
}


/* LEADER BORDER */
.leaderboard-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.tab-btn.active {
    background-color: var(--primary);
    color: white;
}

.leaderboard-container {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.leaderboard-header {
    display: grid;
    grid-template-columns: 50px 3fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    font-weight: 600;
    color: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 50px 3fr 1fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
}

.leaderboard-row:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.leaderboard-row.top-3 {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.03));
}

.rank {
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
}

.rank-1 {
    color: var(--gold);
    font-size: 1.3rem;
}

.rank-2 {
    color: var(--silver);
}

.rank-3 {
    color: var(--bronze);
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.player-name {
    font-weight: 600;
}

.player-clan {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.2rem;
}

.online-status {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.online {
    background-color: var(--online);
    box-shadow: 0 0 6px var(--online);
}

.offline {
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-value {
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
}

.podium {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.podium-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.podium-player:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.podium-1 {
    transform: translateY(-20px);
}

.podium-1:after {
    background: linear-gradient(90deg, var(--gold), #ffec80);
}

.podium-2:after {
    background: linear-gradient(90deg, var(--silver), #e3e4e5);
}

.podium-3:after {
    background: linear-gradient(90deg, var(--bronze), #e3b171);
}

.podium-rank {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.podium-1 .podium-rank {
    color: var(--gold);
}

.podium-2 .podium-rank {
    color: var(--silver);
}

.podium-3 .podium-rank {
    color: var(--bronze);
}

.podium-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid;
    margin-bottom: 1rem;
}

.podium-1 .podium-avatar {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.podium-2 .podium-avatar {
    border-color: var(--silver);
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.podium-3 .podium-avatar {
    border-color: var(--bronze);
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.5);
}

.podium-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.podium-clan {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.podium-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
}

.podium-stat {
    text-align: center;
}

.podium-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.podium-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.search-leaderboard {
    margin-bottom: 2rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Oxanium', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 90, 31, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
}


/* STATUS */
.last-updated {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.status-indicator {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.online-dot {
    background-color: var(--online);
    box-shadow: 0 0 10px var(--online);
}

.offline-dot {
    background-color: var(--offline);
    box-shadow: 0 0 10px var(--offline);
}

.maintenance-dot {
    background-color: var(--maintenance);
    box-shadow: 0 0 10px var(--maintenance);
}

.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.server-card {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

.server-card.online {
    border-left-color: var(--online);
}

.server-card.offline {
    border-left-color: var(--offline);
}

.server-card.maintenance {
    border-left-color: var(--maintenance);
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.server-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.server-status {
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-online {
    background-color: rgba(34, 197, 94, 0.2);
    color: var(--online);
}

.status-offline {
    background-color: rgba(239, 68, 68, 0.2);
    color: var(--offline);
}

.status-maintenance {
    background-color: rgba(245, 158, 11, 0.2);
    color: var(--maintenance);
}

.server-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.3rem;
}

.info-value {
    font-family: 'Roboto Mono', monospace;
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

.player-count {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.player-count-bar {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.player-count-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #ff8c1f);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.server-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}


.connect-btn {
    background-color: var(--primary) !important;
    color: white;
    flex-grow: 1;
}

.connect-btn:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-2px);
}



.vip-btn {
    background-color: var(--vip-gold) !important;
    color: white;
    flex-grow: 1;
}

.vip-btn:hover {
    background-color: var(--warning) !important;
    transform: translateY(-2px);
}

.info-btn {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white;
}

.info-btn:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.server-tag {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.3rem 0.8rem;
    border-bottom-left-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tag-modded {
    background-color: #3b82f6;
    color: white;
}

.tag-vanilla {
    background-color: #10b981;
    color: white;
}

.tag-community {
    background-color: #8b5cf6;
    color: white;
}

.search-bar {
    margin-bottom: 2rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Oxanium', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 90, 31, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
}

.stats-bar {
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.refresh-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--primary);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 90, 31, 0.3);
    transition: all 0.3s ease;
    z-index: 100;
}

.refresh-btn:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 90, 31, 0.4);
}

/* VIPS */

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.vip-tier {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid;
}

.vip-tier:hover {
    transform: translateY(-5px);
}

.vip-tier.diamond {
    border-top-color: var(--vip-diamond);
}

.vip-tier.gold {
    border-top-color: var(--vip-gold);
}

.vip-tier.silver {
    border-top-color: var(--vip-silver);
}

.tier-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tier-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.diamond .tier-name {
    color: var(--vip-diamond);
}

.gold .tier-name {
    color: var(--vip-gold);
}

.silver .tier-name {
    color: var(--vip-silver);
}

.tier-price {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tier-badge {
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 1rem;
}

.benefits-list {
    list-style-type: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefits-list li:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.purchase-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.details-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: none;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--online) !important;
}

.diamond .purchase-btn {
    background: linear-gradient(90deg, var(--vip-diamond), #7ec4cf);
    color: var(--darker);
}

.gold .purchase-btn {
    background: linear-gradient(90deg, var(--vip-gold), #e6c200);
    color: var(--darker);
}

.silver .purchase-btn {
    background: linear-gradient(90deg, var(--vip-silver), #b8b8b8);
    color: var(--darker);
}

.vip-tier .purchase-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.current-vip {
    background-color: rgba(255, 90, 31, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary);
}

.current-vip-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.current-vip-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.current-vip-badge {
    width: 60px;
    height: 60px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.current-vip-details {
    flex-grow: 1;
}

.vip-expiry {
    font-family: 'Roboto Mono', monospace;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.vip-perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.vip-perk {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.perk-icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.perk-info h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.perk-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.faq-section {
    margin-top: 4rem;
}

.faq-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.03);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* VIP - DETAILS */


.vip-tier-section {
    margin-bottom: 4rem;
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-title {
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.diamond-title {
    color: var(--vip-diamond);
}

.gold-title {
    color: var(--vip-gold);
}

.silver-title {
    color: var(--vip-silver);
}

.tier-badge {
    width: 120px;
    height: 120px;
}

.tier-price {
    font-size: 1.8rem;
    font-weight: 700;
}

.tier-benefits {
    display: grid;
    grid-template-columns: 21fr 2fr;
    gap: 2rem;
}

.benefit-category {
    margin-bottom: 2rem;
}

.category-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
}

.benefit-list {
    list-style-type: none;
}

.benefit-item {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item:before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.kit-showcase {
    margin-top: 2rem;
}

.showcase-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.kit-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.kit-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    height: 200px;
    background-color: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
}

.kit-image:hover {
    transform: translateY(-5px);
}

.kit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-vip {
    margin-top: 3rem;
}

.recent-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
}

.recent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
}

.recent-player {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.player-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    margin: 0 auto 0.5rem;
}

.player-name {
    font-weight: 600;
    margin-bottom: 0.3rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-tier {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.diamond-tier {
    color: var(--vip-diamond);
}

.gold-tier {
    color: var(--vip-gold);
}

.silver-tier {
    color: var(--vip-silver);
}

.purchase-time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.5rem;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 31, 31, 0.1), rgba(18, 18, 18, 0.9));
    border-radius: 12px;
    margin-bottom: 3rem;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-btn {
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 90, 31, 0.4);
}

/* ADMIN DASH BOARD */




.grid-sidebar {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 250px 1fr;
}

.sidebar {
    background: linear-gradient(145deg, #1a1a1a, #121212);
    padding: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    height: 40px;
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff5a1f, #ff8c1f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.admin-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.admin-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.admin-details {
    flex-grow: 1;
}

.admin-name {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.admin-role {
    font-size: 0.8rem;
    color: var(--primary);
    background-color: rgba(255, 90, 31, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    background-color: rgba(255, 90, 31, 0.2);
    color: white;
}

.nav-item.active {
    border-left: 3px solid var(--primary);
}

.nav-icon {
    font-size: 1.2rem;
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 2rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Oxanium', sans-serif;
    cursor: pointer;
}

.logout-btn:hover {
    background-color: rgba(239, 68, 68, 0.2);
    color: var(--offline);
}

.main-content {
    padding: 2rem;
    overflow-y: auto;
    height: 100vh;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.quick-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    padding: 0.8rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn-steam {
    padding: 0.6rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn.payment {
    background-color: #0ea472;
}


.action-btn.primary {
    background-color: var(--primary);
}

.action-btn.primary:hover {
    background-color: var(--primary-dark);
}

.action-btn.warning {
    background-color: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.action-btn.warning:hover {
    background-color: rgba(245, 158, 11, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-change {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.stat-change.positive {
    color: var(--online);
}

.stat-change.negative {
    color: var(--offline);
}

.dashboard-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.dashboard-section {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.section-link {
    font-size: 0.8rem;
    color: var(--primary);
    text-decoration: none;
}

.recent-list {
    list-style-type: none;
}

.recent-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.recent-item:last-child {
    border-bottom: none;
}

.recent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.recent-details {
    flex-grow: 1;
}

.recent-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.recent-info {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.recent-time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.status-badge {
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background-color: rgba(34, 197, 94, 0.2);
    color: var(--online);
}

.status-banned {
    background-color: rgba(239, 68, 68, 0.2);
    color: var(--offline);
}

.status-pending {
    background-color: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.activity-table {
    width: 100%;
    border-collapse: collapse;
}

.activity-table th,
.activity-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-table th {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.activity-table tr:last-child td {
    border-bottom: none;
}

.activity-table tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 600;
}

.user-steamid {
    font-family: 'Roboto Mono', monospace;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.action-positive {
    color: var(--online);
}

.action-negative {
    color: var(--offline);
}

.action-neutral {
    color: var(--warning);
}

.vip-management {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

.vip-list {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    max-height: 80vh;
    overflow-y: auto;
}

.vip-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-list-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.add-vip-btn {
    padding: 0.5rem;
    border-radius: 50%;
    background-color: var(--success);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.vip-item {
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vip-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.vip-item.active {
    background-color: rgba(255, 90, 31, 0.2);
    border-left: 3px solid var(--primary);
}

.vip-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.badge-diamond {
    background-color: var(--vip-diamond);
    color: var(--darker);
}

.badge-gold {
    background-color: var(--vip-gold);
    color: var(--darker);
}

.badge-silver {
    background-color: var(--vip-silver);
    color: var(--darker);
}

.vip-details {
    flex-grow: 1;
}

.vip-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.vip-price {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.vip-form-container {
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.delete-btn {
    padding: 0.5rem 1rem;
    background-color: rgba(239, 68, 68, 0.2);
    border: none;
    border-radius: 6px;
    color: var(--danger);
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delete-btn:hover {
    background-color: rgba(239, 68, 68, 0.3);
}

.vip-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-label.required:after {
    content: " *";
    color: var(--danger);
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.8rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Oxanium', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 90, 31, 0.3);
}

.benefits-list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-benefit {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.add-benefit-input {
    flex-grow: 1;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
}

.add-benefit-btn {
    padding: 0.5rem;
    background-color: var(--success);
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}

.remove-benefit {
    color: var(--danger);
    cursor: pointer;
}

.form-actions {
    grid-column: span 2;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1rem;
}

.cancel-btn {
    padding: 0.8rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.save-btn {
    padding: 0.8rem 1.5rem;
    background-color: var(--success);
    border: none;
    border-radius: 8px;
    color: white;
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-btn:hover {
    background-color: #0ea472;
}

.badge-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.badge-color.selected {
    border-color: white;
    transform: scale(1.1);
}

.color-options {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.kit-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.kit-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 120px;
    background-color: var(--darker);
}

.kit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-image {
    position: absolute;
    top: 0.3rem;
    right: 0.3rem;
    background-color: rgba(239, 68, 68, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.upload-area:hover {
    border-color: var(--primary);
    background-color: rgba(255, 90, 31, 0.1);
}

.upload-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.upload-text {
    color: rgba(255, 255, 255, 0.7);
}

.upload-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

/* ADMIN LOGIN */


.body-login {

    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 90, 31, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 90, 31, 0.1) 0%, transparent 50%);
}


.login-container {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    background: linear-gradient(145deg, #222222, #1a1a1a);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-top: 4px solid var(--primary);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.login-logo img {
    height: 50px;
}

.login-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff5a1f, #ff8c1f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.login-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.form-input {
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Oxanium', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 90, 31, 0.3);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.login-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.remember-me input {
    accent-color: var(--primary);
}

.login-btn {
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Oxanium', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.security-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 0.5rem;
    color: var(--danger);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.2);
    border-left: 4px solid var(--danger);
    color: var(--danger);
}


/* Degrade card */
.texto-degradado {
    position: relative;
    display: inline-block;
}

.degrade {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 30px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,1));
}



@media (max-width: 1200px) {
    .vip-management {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: auto;
        top: auto;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 100;
    }

    .main-content {
        padding-bottom: 100px;
    }

    .vip-form {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-actions {
        grid-column: span 1;
    }
}

@media (max-width: 1200px) {
    .dashboard-sections {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: auto;
        top: auto;
        border-right: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 100;
    }

    .sidebar-header,
    .admin-info {
        display: none;
    }

    .nav-menu {
        flex-direction: row;
        justify-content: space-around;
        gap: 0;
    }

    .nav-item {
        flex-direction: column;
        padding: 0.5rem;
        font-size: 0.8rem;
        gap: 0.3rem;
    }

    .nav-item span {
        display: none;
    }

    .logout-btn {
        display: none;
    }

    .main-content {
        padding-bottom: 100px;
    }
}


@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav {
        width: 100%;
        justify-content: space-between;
    }


}

@media (max-width: 768px) {}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .server-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }
}


@media (max-width: 1024px) {

    .bans-header,
    .ban-row {
        grid-template-columns: 80px 2fr 1fr 1fr 1fr;
    }

    .ban-admin {
        display: none;
    }
}



@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav {
        width: 100%;
        justify-content: space-between;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
    }

    .server-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        flex-direction: column;
        gap: 1.5rem;
    }
}