



/*
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

                                 UNIVERSAL
                            
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
*/

a {
  color: #f5f5f5;
  text-decoration: underline;
  text-shadow: 0 0 7px #ffffff;
  font-size: 16px;
}

body {
background: 
    linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url('../img/ton618.png');
    background-size: cover;
}
p {
  font-size: 16px;
  line-height: 1.2;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-size: 20px;
}

/* Opacidad de los tooltips */

body:has(.tooltip-container:hover) .tooltip-container:not(:hover) {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/*
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

                                 PROFILE
                            
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
*/

/* pfp */
.profile-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #333;
  padding-bottom: 15px;
}

.pfp-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.user-status {
  font-size: 0.75rem;
  color: #d8d8d8;
  text-shadow: 0 0 7px #ffffff;
}

.bodyaboutme {
  letter-spacing: 1px;
}


/*
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

                                 BANNER
                            
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
*/

.bannerimg {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* Content layout & widget */
.content {
  display: flex;
  flex-direction: column;
  position: relative; 
}

.fav-album-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

.fav-album-img {
  width: 38px;
  height: 38px;
  border: 1px solid #333;
  display: block;
}

.fav-album-text {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.3;
}

/* Stamp Effects */

.stamp-leilel {
  position: absolute;
  bottom: 2px ;
  left: 350px;
  width: 470px;
  height: auto;
  z-index: -10;
  transform: rotate(-10deg);
  transition: transform 0.3s ease;
  pointer-events: auto;
  animation: stamp-leilel-animation 20s linear infinite;
}

@keyframes stamp-leilel-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* * Stamp hitbox (weird asf) */

.stamp-leilel-click-wrapper {
  position: absolute;
  bottom: 20px;
  left: 615px;      
  width: 300px;      
  height: 450px;
  overflow: hidden;  
  z-index: 5;
}

.stamp-leilel-click {
  position: absolute;
  bottom: 0;
  left: -200px;      
  width: 430px;
  height: 450px;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  background: red;
  opacity: 0;
}

.stamp-monster {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 30px;
  height: auto;
  z-index: 10;
  transform: rotate(-10deg);
  transition: transform 0.3s ease;
  pointer-events: auto;
}

.stamp-monster:hover {
  transform: rotate(15deg) scale(1.1);
}

.stamp-elec {
  position: absolute;
  top: -110px;
  right: -160px;
  width: 270px;
  height: auto;
  z-index: 10;
  pointer-events: none;
  transform: rotate(5deg);
}

/*
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

                                 LINKS
                            
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
*/

.links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.links-box {
  border: 1px solid #333;
  padding: 15px;
  background-color: #000000;
  position: relative;
}

.links-list {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.currently-wrapper {
    display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  border: 1px solid #333;
  padding: 15px;
  background-color: #000000;
  position: relative;
}


/*
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

                                 LIKES
                            
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
*/

.tag-cloud {
  display: flex;
  flex-wrap: wrap; 
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between; 
  padding: 10px 0;
}

.tag-cloud span {
  display: inline-block;
  cursor: normal;
  transition: transform 0.2s ease, color 0.2s ease; 
}

.tag-cloud span:hover {
  transform: scale(1.25); 
  color: #fff; 
  text-shadow: 0 0 7px #ffffff; 
}


.tooltip-container {
    position: relative;
    cursor: help;
    

}

.tooltip-content {
    font-size: 15px;
    background-color: #000000;
    border: 1px solid #333;
    margin-bottom: 7px;
    padding: 5px;
    width: fit-content;
    max-width: 200px;
    display: none;
    position: absolute;
    z-index: 10;
    bottom: 100%;
    perspective: 500px;

  }

.tooltip-container:hover .tooltip-content {
    display: flex;
    
}

/*
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

                                 LASTFM
                            
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
*/

#lastfm-topartist a {
  font-size: inherit;
  text-decoration: underline;
}

.lastfmlinkstamp {
  position: absolute;
  bottom: 30px;
  left: 500px;
  width: 30px;
  height: auto;
  z-index: 10;
  transform: rotate(-10deg);
  transition: transform 0.3s ease;
  pointer-events: auto;
}


.vinylstamp {
  position: absolute;
  bottom: 40px;
  left: 400px;
  width: 30px;
  height: auto;
  z-index: 10;
  transform: rotate(20deg);
  transition: transform 0.3s ease;
  pointer-events: auto;
}


/*
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

                                 STAMPS - RESPONSIVE (mobile only)
                        
                                 
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
*/

@media (max-width: 768px) {
  .stamp-leilel,
  .stamp-leilel-click-wrapper,
  .lastfmlinkstamp,
  .vinylstamp {
    display: none;
  }
}