/* Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #0b0b0e; /* Fundo bem escuro, comum em jogos */
    color: #b1f2ff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container Principal (Centralizado e limitado para celulares) */
.bio-container {
    width: 100%;
    max-width: 450px;
    text-align: center;
}

/* Área da Logo */

.logo-area {
    margin-bottom: 50px;
}

.logo {
    width: 400px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
animation: header-brand 2s infinite alternate;
}
@keyframes header-brand {
  0% {
    transform: scale(1);
    filter: brightness(100%) drop-shadow(0 0 5px rgb(0 47 123));
  }
  100% {
    transform: scale(1.05);
    filter: brightness(100%) drop-shadow(0 0 15px rgb(16 41 134));
  }
}
}

.logo-area h1 {
    font-size: 24px;
    letter-spacing: 2px;
    color: #5db7e7;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.logo-area p {
    font-size: 14px;
    color: #919fa3;
}

/* Estilização dos Botões */
.links-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #1a1a24;
    color: #ffffff;
    text-decoration: none;
    padding: 20px 20px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid #2e2e42;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Ícones dentro dos botões */
.btn i {
    font-size: 18px;
}

/* Efeito ao passar o mouse */
.btn:hover {
    background: #252536;
    border-color: #00bbff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgb(0 217 255 / 20%);
}

/* Botão de Destaque (Ex: Site Oficial) */
.btn.primary {
    background: linear-gradient(135deg, #2cb2ff, #19368f);
    color: #ffffff;
    border: none;
    font-weight: bold;
}

.btn.primary:hover {
    background: linear-gradient(135deg, #33c7ff, #0e3e7e);
    box-shadow: 0 6px 15px rgb(0 147 255 / 40%);
}

/* Rodapé */
.footer {
    margin-top: 130px;
    font-size: 18px;
    color: #666666;
}

    ::-webkit-scrollbar { width: 7px; }
    ::-webkit-scrollbar-track { background: #0a0010; }
    ::-webkit-scrollbar-thumb { background: linear-gradient(180deg,#3ae4ed,#3b82f6); border-radius:4px; }
    ::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg,#5581f7,#60a5fa); }
