*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,body{
    height:100%;
}

body{
font-family:'Poppins',sans-serif;
background: linear-gradient(to bottom, #4fa8c5, #357f99);
color:white;
overflow:hidden;
}

/* CANVAS */
#heartCanvas{
    position:fixed;
    inset:0;
    z-index:0;
    pointer-events:none;
}

/* OVERLAY */
body::after{
    content:"";
    position:fixed;
    inset:0;
    background:linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
    pointer-events:none;
    z-index:1;
}

/* CONTAINER */
#mainContainer{
    position:relative;
    z-index:2;
    max-width:420px;
    margin:40px auto;
    padding:28px;
    text-align:center;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(3px);
}

/* PROFILE */
#profileWrapper{
    width:120px;
    height:120px;
    margin:auto;
    border-radius:50%;
    overflow:hidden;
    border:3px solid #ff80df;
}

#profileImg{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* NAME */
.name-wrap{
    margin-top:12px;
    font-size:24px;
    color:#ffccff;
}

.name-wrap span{
    display:inline-block;
    animation:wave 0.6s ease-in-out infinite alternate;
}

@keyframes wave{
    from{
        transform:translateY(0);
        text-shadow:0 0 6px rgba(255,105,180,0.6);
    }

    to{
        transform:translateY(-6px);
        text-shadow:
        0 0 10px rgba(255,105,180,0.9),
        0 0 20px rgba(255,105,180,0.7);
    }
}

.typing{
    font-size:13px;
    color:#ff99cc;
    height:18px;
}

/* BUTTON */
.dropdown-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px;
    margin:10px 0;
    border-radius:14px;
    background:rgba(255,255,255,0.08);
    color:white;
    cursor:pointer;
    transition:.25s;
}

.dropdown-btn:hover{
    transform:scale(1.05);
    background:rgba(255,192,203,0.2);
}

/* ICON COLORS */
.fa-instagram{
    background:linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.fa-tiktok{
    color:#fff;
    text-shadow:2px 2px 0 #25f4ee,-2px -2px 0 #fe2c55;
}

.fa-youtube{
    color:#ff0000;
}

.fa-hand-holding-heart{
    color:#ff69b4;
}

.fa-spotify{
    color:#1DB954;
}

.fa-discord{
    color:#8ea1ff;
    text-shadow:0 0 8px rgba(142,161,255,0.8);
}

.links i{
    transition:0.3s;
}

.dropdown-btn:hover i{
    transform:scale(1.2) rotate(-5deg);
}

/* POPUP */
.popup{
    position:fixed;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(4px);
    opacity:0;
    pointer-events:none;
    transition:.3s;
    z-index:9999;
}

.popup.active{
    opacity:1;
    pointer-events:auto;
}

.popup-box{
    width:90%;
    max-width:300px;
    background:rgba(255,255,255,0.08);
    padding:20px;
    border-radius:16px;
}

.popup-box a{
    display:flex;
    align-items:center;
    gap:12px;
    margin:10px 0;
    padding:12px;
    border-radius:10px;
    background:rgba(255,255,255,0.1);
    color:white;
    text-decoration:none;
    transition:0.3s;
}

.popup-box a:hover{
    transform:scale(1.05);
    background:rgba(255,192,203,0.2);
}

.popup-box a:hover i{
    transform:scale(1.2) rotate(-5deg);
}

/* MEMBERSHIP */
.popup-box a.membership{
    background:linear-gradient(90deg,#ffd700,#ffcc00)!important;
    color:black!important;
    font-weight:600;
}

/* LOGO */
.popup-box img{
    width:28px;
    height:28px;
    border-radius:8px;
    transition:0.3s;
}

.tako-logo{
    width:36px;
    height:36px;
    border-radius:50%;
}

.popup-box a:hover img{
    transform:scale(1.15) rotate(-5deg);
}

.popup-close{
    text-align:center;
    margin-top:10px;
    cursor:pointer;
    color:#ff99cc;
}

.spotify-box{
    position: relative;
    overflow: hidden;
  
    background: rgba(20,20,20,0.75);
    backdrop-filter: blur(6px);
  
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
  
    padding: 24px;
  
    box-shadow:
      0 10px 35px rgba(0,0,0,0.35),
      0 0 30px rgba(29,185,84,0.18);
  }
  
  .spotify-glow{
    position: absolute;
    width: 180px;
    height: 180px;
    background: #1DB954;
    filter: blur(90px);
    opacity: .2;
    top: -60px;
    right: -40px;
  }
  
  .spotify-header{
    display: flex;
    align-items: center;
    gap: 16px;
  
    position: relative;
    z-index: 2;
  }
  
  .spotify-avatar{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
  
    border: 3px solid rgba(255,255,255,0.15);
  }
  
  .spotify-info span{
    color: #1DB954;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
  }
  
  .spotify-info h3{
    margin: 5px 0 2px;
    color: white;
    font-size: 24px;
  }
  
  .spotify-info p{
    color: rgba(255,255,255,0.65);
    font-size: 13px;
  }
  
  .spotify-btn{
    margin-top: 24px;
  
    display: flex;
    justify-content: center;
    align-items: center;
  
    width: 100%;
    padding: 14px;
  
    border-radius: 18px;
  
    text-decoration: none;
    color: white;
    font-weight: 600;
  
    background: linear-gradient(
      135deg,
      #1DB954,
      #1ed760
    );
  
    transition: .3s ease;
  
    position: relative;
    z-index: 2;
  }
  
  .spotify-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29,185,84,0.35);
  }
  
  .popup-close{
    margin-top: 16px;
    text-align: center;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
  }