@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');



body {

    font-family: 'Inter', sans-serif;

    margin: 0;

    padding: 0;

    overflow-x: hidden;

    background-color: #000000;

}



@keyframes slideInUp {

    0% { opacity: 0; transform: translateY(40px); }

    100% { opacity: 1; transform: translateY(0); }

}



.animated-bg {

    background: linear-gradient(to bottom, #1a1a1a 0%, #000000 70%); 

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding-bottom: 80px;

}



.profile-card, .modal-content {

    background-color: rgba(255, 255, 255, 0.15); 

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.2); 

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.1);

    position: relative;

    overflow: hidden;

}



.profile-card {

    animation: slideInUp 1.2s ease-out forwards;

}



.modal-overlay {

    background-color: rgba(0, 0, 0, 0.8);

    z-index: 100;

    transition: opacity 0.3s ease;

}



.made-by-button {

    background-color: #4B5563;

    transition: background-color 0.2s, transform 0.1s;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6); 

    position: relative;

    overflow: hidden;

    color: #FFFFFF;

}



.made-by-button::after {

    content: '';

    position: absolute;

    top: 0;

    left: -200%; 

    width: 150%; 

    height: 100%;

    background: rgba(255, 255, 255, 0.3);

    transform: skewX(-30deg); 

    transition: left 0.5s ease-in-out;

    pointer-events: none;

}



.made-by-button:hover::after {

    left: 150%; 

}



.made-by-button:hover {

    background-color: #6B7280;

}



.made-by-button:active {

    transform: scale(0.98);

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);

}



.modal-link-button {

     background-color: #4B5563;

     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); 

     transition: background-color 0.2s, transform 0.1s;

     position: static; 

     overflow: visible;

}



.modal-link-button:hover {

     background-color: #6B7280;

}



#audio-controls {

    position: fixed;

    bottom: 20px;

    right: 20px;

    z-index: 50;

    flex-direction: row; 

    align-items: center;

    padding: 10px 15px;

    background-color: rgba(30, 30, 30, 0.8);

    border-radius: 12px;

    backdrop-filter: blur(5px);

    border: 1px solid rgba(255, 255, 255, 0.1);

}



#volume-slider {

    width: 80px;

}