/* Reset Básico */
* {
    box-sizing: border-box;
}

body {
    background-color: #0b0e14;
    color: #e0e0e0;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
}

h1,
h2,
h3 {
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 1px;
}

/* Header Estilizado */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://wallpaperaccess.com/full/1209358.jpg');
    /* Pode trocar por uma imagem do jogo */
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 3px solid #f1c40f;
}

header h1 {
    font-size: 3rem;
    color: #f1c40f;
    margin: 0;
    text-shadow: 2px 2px #000;
}

/* Menu Horizontal */
nav {
    background: #161a25;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 18px 20px;
    font-weight: bold;
    font-size: 13px;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    background: #f1c40f;
    color: #000;
}

/* Admin Portal Input */
.admin-portal {
    margin-left: auto;
}

.admin-portal input {
    background: #0b0e14;
    border: 1px solid #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    width: 40px;
    transition: 0.5s;
}

.admin-portal input:focus {
    width: 120px;
    border-color: #f1c40f;
    outline: none;
}

/* Grid da Home */
.container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
}

.status-banner {
    background: #1e2130;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 5px solid #2ecc71;
    display: flex;
    align-items: center;
}

.welcome-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

.main-card {
    background: #1e2130;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #333;
}

.mini-card {
    background: #161a25;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #333;
}

.discord {
    border-top: 4px solid #7289da;
}

.event {
    border-top: 4px solid #e74c3c;
}

footer {
    text-align: center;
    padding: 40px;
    color: #555;
    font-size: 12px;
}
/* Estilo Específico para Builds */
.page-title {
    text-align: center;
    margin-bottom: 40px;
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.build-card {
    background: #1e2130;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: 0.3s;
}

.build-card:hover {
    border-color: #f1c40f;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.build-icon {
    font-size: 2rem;
    background: #161a25;
    padding: 10px;
    border-radius: 10px;
}

.build-info h3 {
    margin: 0 0 10px 0;
    color: #f1c40f;
}

.items-list {
    list-style: none;
    padding: 0;
    font-size: 13px;
    color: #bbb;
    margin: 10px 0;
}

.btn-ver-mais {
    background: transparent;
    border: 1px solid #f1c40f;
    color: #f1c40f;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
}

.btn-ver-mais:hover {
    background: #f1c40f;
    color: #000;
}
.admin-section {
    background: #161a25;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.admin-section input,
.admin-section textarea,
.admin-section select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: #0b0e14;
    border: 1px solid #333;
    color: #fff;
}

.btn-save {
    background: #f1c40f;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th,
td {
    padding: 10px;
    border-bottom: 1px solid #333;
    text-align: left;
}

.btn-sair {
    color: #e74c3c;
    text-decoration: none;
    font-size: 14px;
}
.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* Notícias maiores, Sidebar menor */
    gap: 30px;
    margin-top: 20px;
}

.section-title {
    border-bottom: 2px solid #f1c40f;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* Cards de Notícias */
.news-card {
    background: #161a25;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #f1c40f;
}

.news-date {
    font-size: 12px;
    color: #888;
}

/* Widgets da Sidebar */
.widget-box {
    background: #1e2130;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid #333;
}

.widget-box h3 {
    margin-top: 0;
    color: #f1c40f;
    font-size: 16px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.code-item {
    display: flex;
    justify-content: space-between;
    background: #0b0e14;
    padding: 8px;
    margin-bottom: 5px;
    border-radius: 4px;
}

.code-item code {
    color: #2ecc71;
    font-weight: bold;
}
/* Botões de Filtro */
.filter-btn {
    background: #1e2433;
    color: #888;
    border: 1px solid #333;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: 0.3s;
}

.filter-btn:hover {
    border-color: #f1c40f;
    color: #fff;
}

.filter-btn.active {
    background: #f1c40f;
    color: #000;
    border-color: #f1c40f;
}

/* Ajustes no Card para o Filtro */
.build-card {
    display: block;
    /* Garante que o JS consiga manipular */
    margin-bottom: 30px;
}
/* ============================================================
   NOVO LAYOUT DETALHADO DA BUILD (ESTILO HUD)
   ============================================================ */

/* Container que segura as 3 colunas */
.view-build-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Cards exclusivos da página de detalhes */
.hud-card {
    background: #161a25;
    /* Mesma cor do seu menu */
    border: 1px solid #333;
    border-top: 3px solid #f1c40f;
    /* Dourado do seu tema */
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hud-card h3 {
    margin: 0 0 15px 0;
    color: #f1c40f;
    font-size: 14px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hud-item-name {
    font-size: 1.4rem;
    color: #fff;
    display: block;
    margin-bottom: 15px;
    font-family: 'Rajdhani', sans-serif;
}

/* Linhas de Perks */
.hud-perk {
    background: #0b0e14;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    border-left: 2px solid #333;
}

.hud-perk:hover {
    border-left-color: #f1c40f;
}

.hud-value {
    color: #2ecc71;
    /* Verde para os valores */
    font-weight: bold;
}

/* Área do Vídeo */
.hud-video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hud-video-wrapper i {
    font-size: 50px;
    color: #f1c40f;
    opacity: 0.5;
}

/* Responsividade: No celular vira uma coluna só */
@media (max-width: 950px) {
    .view-build-container {
        grid-template-columns: 1fr;
    }
}

