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

body {
    background-color: #0d1117;
    /* Fundo idêntico ao print */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.dashboard {
    width: 90%;
    max-width: 1100px;
    text-align: center;
    padding: 20px;
}

header h1 {
    color: #8b949e;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 1.5px;
    font-size: 1.8rem;
}

/* Grid de Botões */
.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

/* Estilo do Botão */
.btn {
    background: #161b22;
    border: 1px solid #30363d;
    height: 160px;
    /* Mantém todos os botões com o mesmo tamanho */
    border-radius: 12px;
    text-decoration: none;
    color: #c9d1d9;
    /* Cinza claro dos ícones */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

/* Efeito Hover no Botão */
.btn:hover {
    background: #21262d;
    border-color: #8b949e;
    transform: translateY(-5px);
}

/* Estilo para Ícones (FontAwesome) */
.btn i {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: #c9d1d9;
}

/* Estilo para Logos em Imagem (Memos e Vault) */
.logo-img {
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    object-fit: contain;
    /* Transforma verde/preto em cinza metálico uniforme */
    filter: brightness(0) invert(0.85);
    transition: 0.2s;
}

/* Quando o mouse passa no botão, a logo brilha em branco */
.btn:hover .logo-img {
    filter: brightness(0) invert(1);
    transform: scale(1.05);
}

.btn span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Assinatura no canto inferior direito - CORRIGIDO */
.footer-credit {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #8b949e;
    opacity: 0.5;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    font-weight: 400;
}