/*
  Você é um pilantra, por que você está olhando aqui?
  Procura realmente ver o que eu fiz? Isso é bem chato da sua parte, sabia?
  Apenas aproveite o blog, não precisa procurar falhas de minha parte!
*/

/* === FONTES LOCAIS === */
@font-face {
  font-family: 'Press Start 2P';
  src: url('PressStart2P.woff2') format('woff2');
  font-display: swap;
}

@font-face {
  font-family: 'VT323';
  src: url('VT323.woff2') format('woff2');
  font-display: swap;
}

/* === RESET BÁSICO === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

/* === ESTILOS GERAIS === */
body {
  font-family: 'Courier New', monospace;
  background-color: #000033;
  background-image: url('background-padrao.gif');
  background-attachment: fixed;
  background-repeat: repeat;
  color: #e0e0e0;
  padding: 20px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

/* === TÍTULOS VAPORWAVE === */
h1, h2, h3 {
  font-family: 'Press Start 2P', cursive;
  color: #ff00ff;
  text-shadow: 2px 2px 0 #00ffff, 4px 4px 0 rgba(0, 255, 255, 0.3);
  text-align: center;
  margin: 0.5em 0;
  line-height: 1.3;
}

h1 { font-size: 2.2em; margin-bottom: 0.3em; }
h2 { font-size: 1.8em; color: #00ffff; }
h3 { font-size: 1.4em; }

/* === TEXTO ESTILO TERMINAL === */
.vapor {
  font-family: 'VT323', monospace;
  font-size: 1.3em;
  letter-spacing: 1px;
  color: #e0e0e0;
  text-shadow: 1px 1px 0 #000;
}

/* === LINKS === */
a {
  color: #00ffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ff00ff;
  text-shadow: 0 0 5px #ff00ff;
}

/* === EFEITOS CRT === */
body::before, body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}

body::before {
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15) 2px, transparent 2px, transparent 4px);
  animation: scanline 6s linear infinite;
  z-index: 9999;
}

body::after {
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.8) 100%);
  box-shadow: inset 0 0 60px rgba(0, 255, 255, 0.1);
  z-index: 9998;
}

/* === GLOW EXTRA === */
.neon-glow {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 9997;
  background: linear-gradient(180deg, rgba(255, 0, 255, 0.03) 0%, rgba(0, 255, 255, 0.03) 100%);
  animation: glowMove 8s linear infinite;
}

/* === EFEITO DE CURVATURA === */
.crt-curvature {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  border: 2px solid rgba(0, 255, 255, 0.1);
  border-radius: 5px;
  box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.2), 0 0 30px rgba(0, 255, 255, 0.1);
  margin: 10px;
  pointer-events: none;
  z-index: 10000;
}

/* === ANIMAÇÕES === */
@keyframes scanline {
  from { transform: translateY(0); }
  to { transform: translateY(-100%); }
}

@keyframes glowMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

/* === LOGO E KUROMI === */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.logo-container img.logo {
  max-width: 800px;
  height: auto;
}

.logo-container img.gif-kuromi {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 0 5px #ff00ff);
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* === MENU === */
.menu-css {
  position: sticky;
  top: 0;
  background: transparent;
  border-bottom: 2px solid #00ffff;
  padding: 10px;
  z-index: 1000;
  font-family: 'Press Start 2P', cursive;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.menu-css a {
  position: relative;
  color: transparent;
  text-decoration: none;
}

.menu-css a::after {
  content: attr(data-name);
  color: #00ffff;
  transition: all 0.3s ease;
  position: relative;
}

.menu-css a:hover::after {
  color: #ff00ff;
  text-shadow: 0 0 5px #ff00ff;
}

/* === MARQUEE === */
.marquee-container {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  background-color: #000;
  padding: 10px 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.marquee-text {
  display: inline-block;
  animation: marquee 10s linear infinite;
  font-weight: bold;
  font-size: 1.5em;
  color: #6200ff;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* === COLUNAS === */
.fullscreen-columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.coluna-esquerda,
.coluna-central,
.coluna-direita {
  flex: 1;
  min-width: 0;
  padding: 20px;
}

.coluna-central {
  flex: 2;
}

.coluna-direita {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  font-size: 0.9em;
}

/* === COMPONENTES === */
.cartinha-personagem {
  background-color: #0a001f;
  border: 3px solid #00ffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 12px #00ffff88;
  text-align: center;
}

.cartinha-avatar {
  width: 200px;
  height: auto;
  border: 2px solid #ff00ff;
  border-radius: 50px;
  margin-bottom: 10px;
  max-width: 100%;
}

.cartinha-conteudo {
  background-color: #120033;
  padding: 15px;
  border: 1px dashed #ff00ff;
  border-radius: 10px;
  box-shadow: inset 0 0 8px #ff00ff55;
}

.cartinha-habilidades {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
  text-align: left;
  font-size: 0.95em;
  line-height: 1.7;
  color: #ccc;
}

.cartinha-checklist {
  margin-top: 20px;
  background-color: #0a0022;
  border: 2px dashed #00ffff;
  border-radius: 10px;
  padding: 15px;
  color: #ccc;
  font-size: 0.95em;
  box-shadow: 0 0 8px #00ffff55;
  text-align: left;
}

.cartinha-checklist h3 {
  margin-bottom: 10px;
  color: #00ffff;
  font-size: 1.2em;
  text-align: left;
}

.cartinha-checklist ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.cartinha-checklist li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.cartinha-checklist input[type="checkbox"] {
  margin-right: 10px;
  accent-color: #ff00ff;
  cursor: not-allowed;
  transform: scale(1.2);
}

.botao-cafe {
  background-color: #2a0033;
  color: #ffc0cb;
  border: 2px solid #ff00ff;
  padding: 10px 20px;
  font-family: 'Courier New', monospace;
  font-size: 1.1em;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 5px #ff00ff88;
  transition: all 0.2s ease-in-out;
}

.botao-cafe:hover {
  background-color: #440044;
  transform: scale(1.05);
}

.webring img,
.tag-list img {
  border: 1px solid #ff00ff;
  box-shadow: 2px 2px #00ffff;
}

.postagem iframe {
  width: 100%;
  height: 300px;
  max-width: 100%;
}

/* === RODAPÉ === */
footer {
  background: linear-gradient(90deg, #000033 0%, #000033 20%, transparent 50%, #000033 80%, #000033 100%);
  border-top: 1px solid #ff00ff;
  padding: 15px 0;
  text-align: center;
  font-family: 'VT323', monospace;
  font-size: 1.2em;
  color: #00ffff;
  position: relative;
  margin-top: 30px;
}

footer::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00ffff, #ff00ff, #00ffff, transparent);
  animation: laser 3s linear infinite;
}

@keyframes laser {
  0% { background-position: -100% 0; }
  100% { background-position: 100% 0; }
}

footer span {
  text-shadow: 0 0 5px #00ffff;
}

/* === RESPONSIVIDADE === */
@media (max-width: 1024px) {
  .fullscreen-columns {
    flex-direction: column;
    gap: 30px;
  }

  .logo-container {
    flex-direction: column;
    text-align: center;
  }

  .menu-css {
    flex-wrap: wrap;
    gap: 15px;
  }

  .cartinha-avatar {
    width: 120px;
  }

  .marquee-text {
    font-size: 1.2em;
  }

  .botao-cafe {
    font-size: 1em;
  }
}

@media (max-width: 600px) {
  .vapor {
    font-size: 1em;
  }

  .menu-css {
    font-size: 0.7em;
    gap: 10px;
  }

  .cartinha-avatar {
    width: 80px;
  }

  .cartinha-habilidades {
    font-size: 0.85em;
  }

  .botao-cafe {
    width: 100%;
  }

  .logo-container img.gif-kuromi {
    position: static;
    animation: none;
  }
}
