@import url('https://fonts.googleapis.com/css2?family=Rye&family=Special+Elite&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rye&family=Special+Elite&family=Rock+Salt&display=swap');

:root {
    --color-bg: #050505;          
    --color-gold: #FFB800;        
    --color-bone: #e3dac9;        
    --color-blood: #8a0303;       
    
    --font-western: 'Rye', serif;           
    --font-typewriter: 'Special Elite', cursive;
    --font-signature: 'Rock Salt', cursive; 
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--color-bg);
    color: var(--color-bone);
    font-family: var(--font-typewriter); 
    overflow-x: hidden;
}

a { text-decoration: none; transition: 0.3s; }

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    z-index: 100;
    
   
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.member-access {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-western);
    color: #666;
    font-size: 0.85rem;
    border: 1px solid #333;
    padding: 8px 15px;
    background: rgba(0,0,0,0.6);
    transition: 0.3s;
    backdrop-filter: blur(2px);
}

.member-access:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.2);
}


.header-nav {
    display: flex;
    gap: 30px;
}

.header-nav a {
    font-family: var(--font-western);
    font-size: 1rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s;
    text-shadow: 2px 2px 0 #000;
}


.header-nav a:hover {
    color: var(--color-gold);
    transform: translateY(-2px);
    text-shadow: 0 0 10px var(--color-gold);
}


.header-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-gold);
    transition: 0.3s;
}

.header-nav a:hover::after {
    width: 100%;
}


@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        background: rgba(0,0,0,0.8);
        position: relative;
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .header-nav a { font-size: 0.9rem; }
}



.main-footer {
    width: 100%;
    background-color: #000;
    border-top: 2px solid #222;
    padding: 40px 20px;
    text-align: center;
    margin-top: auto;
}

.social-links {
    margin-bottom: 20px;
}

.social-item {
    font-family: var(--font-western);
    font-size: 1.2rem;
    color: #888;
    margin: 0 15px;
    position: relative;
    letter-spacing: 1px;
}

.social-item:hover {
    color: var(--color-gold);
    text-shadow: 0 0 8px var(--color-gold);
}


.social-item.discord:hover { color: #5865F2; text-shadow: 0 0 8px #5865F2; }
.social-item.instagram:hover { color: #E1306C; text-shadow: 0 0 8px #E1306C; }
.social-item.youtube:hover { color: #FF0000; text-shadow: 0 0 8px #FF0000; }

.separator { color: #333; }

.copyright {
    font-family: var(--font-typewriter);
    font-size: 0.7rem;
    color: #444;
}



.recruitment-warning-box {
    margin-top: 60px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid #333;
    background: rgba(10, 10, 10, 0.9);
    padding: 30px;
    max-width: 600px;
   
    box-shadow: inset 0 0 30px #000; 
}

.warning-title {
    font-family: var(--font-western);
    color: #d32f2f;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.warning-text {
    font-family: var(--font-typewriter);
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc;
    font-weight: bold;
}

.small-print {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.modal-overlay {
    position: fixed;       
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.9); 
    backdrop-filter: blur(5px);     
    z-index: 10000;        
    display: none;         
    justify-content: center; 
    align-items: center;     
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex; 
    opacity: 1;
}

.modal-box {
    background: #0a0a0a;
    border: 2px solid #333;
    width: 90%;
    max-width: 500px;      
    padding: 35px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.9);
    transform: scale(0.8); 
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.5));
}

.modal-title {
    font-family: 'Rye', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.1;
}


.modal-desc {
    font-family: 'Special Elite', monospace;
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 25px;
    
   
    max-height: 250px;      
    overflow-y: auto;       
    text-align: justify;    
    padding-right: 10px;    
}


.modal-desc::-webkit-scrollbar {
    width: 6px;
}
.modal-desc::-webkit-scrollbar-track {
    background: #000; 
}
.modal-desc::-webkit-scrollbar-thumb {
    background: #444; 
    border-radius: 3px;
}
.modal-desc::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}


.btn-close-modal {
    background: #222;
    color: #fff;
    border: 1px solid #444;
    padding: 10px 30px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'Roboto Condensed', sans-serif;
    transition: 0.3s;
}

.btn-close-modal:hover {
    background: #fff;
    color: #000;
}

/* --- SCROLLBARS PERSONALIZADAS (GLOBAL) --- */

/* Para Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 8px; /* Largura da barra vertical */
    height: 8px; /* Altura da barra horizontal */
}

::-webkit-scrollbar-track {
    background: #050505; /* Cor do fundo da trilha (Preto fundo) */
    border-left: 1px solid #222;
}

::-webkit-scrollbar-thumb {
    background-color: #333; /* Cor da barra (Cinza escuro) */
    border-radius: 4px;
    border: 1px solid #000;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-gold); /* Fica Dourado ao passar o mouse */
    box-shadow: 0 0 10px rgba(255, 184, 0, 0.5); /* Brilho */
}


* {
    scrollbar-width: thin;
    scrollbar-color: #333 #050505;
}

.modal-box.rarity-comum { border-color: #666; }
.modal-box.rarity-comum .modal-title { color: #ccc; }

.modal-box.rarity-raro { border-color: var(--color-gold); box-shadow: 0 0 30px rgba(255, 184, 0, 0.2); }
.modal-box.rarity-raro .modal-title { color: var(--color-gold); }

.modal-box.rarity-lendario { border-color: #d32f2f; box-shadow: 0 0 30px rgba(211, 47, 47, 0.3); }
.modal-box.rarity-lendario .modal-title { color: #d32f2f; }