:root {
    --primary-color: #333333;
    --background-color: #000000;
    --text-color: #ffffff;
    --border-radius: 8px;
}

/* TELA DE ENTRADA */
#enter-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    transition: opacity 0.8s ease;
}

/* ESTRUTURA GERAL */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
}

/* SIDEBAR - MENU LATERAL */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 10002;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    display: block !important;
}

.sidebar h2 {
    color: #fff;
    padding: 0 20px;
    font-size: 1.5rem;
}

.sidebar-link {
    padding: 15px 20px;
    text-decoration: none;
    font-size: 1.1rem;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #222;
}

.sidebar-link i {
    margin-right: 15px;
    color: #fff;
}

/* ÍCONES E BOTÕES */
#menu-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 25px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
}

#close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

#background-audio {
    width: 100%;
    margin-top: 10px;
    filter: invert(1) hue-rotate(180deg) brightness(1.2);
}

.org-photo {
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
    margin: 20px 0;
}

.action-button {
    background-color: #222;
    color: #fff;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
}

/* LISTA DE MEMBROS */
.member-list {
    list-style: none;
    padding: 0;
}

.member-list li {
    background-color: #1a1a1a;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    text-align: left;
    border-left: 4px solid #333;
}

/* MODAL DO MEMBRO - CORRIGIDO */
.modal {
    display: none;
    position: fixed;
    z-index: 10005;
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #111;
    padding: 30px;
    border-radius: 20px;
    width: 80%;
    max-width: 320px;
    text-align: center;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza tudo horizontalmente */
}

/* FOTO DO NK - CORRIGIDA PARA FICAR REDONDA */
#modal-img {
    width: 150px !important;
    height: 150px !important;
    border-radius: 50% !important; /* Faz o círculo perfeito */
    object-fit: cover !important;  /* Impede que a foto estique */
    border: 3px solid #333;
    margin-bottom: 15px;
    display: block;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}
