/* Fundo geral */
body {
    background-color: #000000;
    color: #d8b4ff;
    font-family: "Courier New", monospace;
    margin: 0;
    padding: 0;
}

/* Links estilo neon antigo */
a {
    color: #bb00ff;
    text-decoration: none;
}

a:hover {
    color: #ff00ff;
    text-decoration: underline;
}

/* Header estilo glitch */
header {
    background: linear-gradient(90deg, #000000, #2a003f);
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #bb00ff;
}

header h1 {
    font-size: 32px;
    color: #ff00ff;
    text-shadow: 0 0 10px #bb00ff, 0 0 20px #8000ff;
}

/* Caixa estilo "perfil antigo" */
.container {
    background-color: #0a0a0a;
    border: 1px solid #8000ff;
    margin: 20px;
    padding: 15px;
    box-shadow: 0 0 15px #8000ff;
}

/* Botões estilo MySpace */
button {
    background-color: #1a001f;
    color: #ffccff;
    border: 1px solid #bb00ff;
    padding: 10px;
    cursor: pointer;
    font-family: "Courier New", monospace;
}

button:hover {
    background-color: #330033;
    box-shadow: 0 0 10px #ff00ff;
}

/* Scrollbar custom (bem vibe antiga hacky) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #8000ff;
    border-radius: 5px;
}

/* Texto piscando estilo HTML antigo */
.blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

/* Imagens estilo distorcido */
img {
    filter: contrast(120%) brightness(90%) hue-rotate(260deg);
    border: 2px solid #bb00ff;
}

/* Footer simples */
footer {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    color: #777;
}