* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: white;
  font-family: 'Courier New', Courier, monospace;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: url('cursor.png'), auto;
  overflow: hidden;
}

.container {
  animation: fadeIn 2s ease;
}

h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

p {
  font-size: 1.1rem;
  color: #888;
}

a {
  color: #00ffff;
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  color: white;
  text-shadow: 0 0 5px cyan;
}

.cursor {
  display: inline-block;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.logo {
  width: 220px;         /* Tamanho da imagem */
  height: 220px;        /* Garantindo proporção 1:1 */
  border-radius: 50%;   /* Deixa redondo */
  object-fit: cover;    /* Corta bem se a imagem for retangular */
  margin-bottom: 20px;
  animation: fadeIn 2s ease;
  user-select: none;
}
.social-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.btn {
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-size: 0.95rem;
  transition: 0.3s ease;
  font-family: monospace;
}

.btn:hover {
  background-color: white;
  color: black;
}

/* Cores personalizadas */
.spotify { border-color: #1DB954; }
.spotify:hover { background-color: #1DB954; }

.soundcloud { border-color: #FF5500; }
.soundcloud:hover { background-color: #FF5500; }

.steam { border-color: #00adee; }
.steam:hover { background-color: #00adee; }

.instagram { border-color: #E1306C; }
.instagram:hover { background-color: #E1306C; }

.spotify-embed {
  margin-top: 30px;
  display: flex;
  justify-content:end
  align-items: end;
}

.mid-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.video-local {
  width: 400px;
  max-width: 90%;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.social-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 10px 20px;
  border-radius: 25px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 14px;
}

.spotify {
  background-color: #1DB954;
}

.soundcloud {
  background-color: #FF5500;
}

.steam {
  background-color: #171a21;
  border: 2px solid #00aaff;
}

.instagram {
  background-color: #e1306c;
}





