/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    background: linear-gradient(45deg, #7f00ff, #ff00ff);
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content {
    text-align: center;
    z-index: 10;
}

/* Particles Background */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
}

/* Profile Section */
.profile-section {
    margin-bottom: 30px;
}

.profile-section h1 {
    font-size: 3rem;
    color: white;
}

.profile-section .description {
    font-size: 1.2rem;
    color: #ddd;
}

.cover-img {
    width: 200px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #ff00ff, #7f00ff);
}

/* Music Player */
.music-player {
    margin-top: 30px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.progress-container {
    width: 100%;
    margin-top: 15px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #fff;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
}

.volume-bar {
    margin-top: 15px;
    width: 100%;
    height: 8px;
    background: #fff;
    border-radius: 5px;
    outline: none;
}

/* Alert Box */
.alert-box {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #7f00ff;
    color: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 100;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alert-box.show {
    display: block;
    opacity: 1;
}

.alert-text {
    font-size: 16px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Social Icons Styles */
.discord-icon, .tiktok-icon, .mail-icon, .youtube-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #7f00ff, #ff00ff);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effects for icons */
.discord-icon:hover, .tiktok-icon:hover, .mail-icon:hover, .youtube-icon:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #ff00ff, #7f00ff);
}
