body{

    background:var(--background); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: none;
    color:var(--primary);
    font-family:sans-serif;

}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

main .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 700px;
  height: 500px;
}

.social-media {
  display: flex;
  gap: 20px;
}

.social-media i {
  font-size: 30px;
  color: var(--primary);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.9,.3,1.3), color 0.25s;
}

.social-media i:hover {
  transform: scale(1.4) rotate(10deg);
  color: #950606ca;
  text-shadow: 0 0 10px #ff3b3b;
  cursor: none;
}

#avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
}

#avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;

}

#username {
  text-align: center;
}

#username h1 {
  margin: 0;
  text-shadow: 0 0 50px #e00000;
}

/* cursor principal */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
}

.cursor img {
  width: 40px;   /* ajusta tamaño */
  height: 40px;
  display: block;
  user-select: none;
}

.music-control {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: white;
  transition: transform 0.2s ease;
}

.music-control:hover {
  transform: scale(1.1);
  cursor: none;
}

#cursorCanvas{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.visit-counter{
    position: fixed;
    bottom: 20px;
    left: 20px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: rgba(0,0,0,.6);
    backdrop-filter: blur(10px);

    padding: 10px 15px;
    border-radius: 12px;
    z-index: 9999;
}

.visit-counter img{
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.visit-counter span{
    color: white;
    font-size: 16px;
    font-weight: 600;
}