body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: url('https://roc4et.de/img/1.gif') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}
  
.main-container {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}
  
.profile-image {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}
  
.profile-info {
    margin-bottom: 10px;
}
  
.profile-username {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    margin: 0;
}
  
.profile-joined,
.profile-network {
    font-size: 12px;
    color: #ccc;
}
  
.profile-network {
    font-weight: bold;
    font-size: 16px;
}
  
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}
  
.social-links a i {
    font-size: 24px;
    color: #fff;
    transition: transform 0.3s, color 0.3s;
}
  
.social-links a:hover i {
    transform: scale(1.2);
    color: #8700fd;
}
  
.notification-banner {
    background-color: rgba(255, 0, 0, 0.2);
    padding: 10px;
    border-radius: 10px;
    margin-top: 20px;
    font-size: 14px;
    width: 100%;
}
  
.notification-banner p {
    margin: 5px 0;
}
  
.notification-banner a {
    color: #ff6b6b;
    text-decoration: none;
}
  
.community-section {
    background-color: rgba(0, 102, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.community-section p {
    font-size: 14px;
    color: #fff;
    margin: 0;
    padding: 10px 0;
}

.community-section .fas.fa-users {
    font-size: 20px;
    margin-bottom: 10px;
}

.community-button {
    background: linear-gradient(45deg, #cd013b, #1a03c5);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    margin-top: 10px;
    display: inline-block;
}

.community-button:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #cd013b, #1a03c5);
}

  
.footer-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    width: 100%;
}
  
.media-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}
  
.media-controls i {
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}
  
#progress-bar {
    appearance: none;
    width: 100px;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    outline: none;
    margin-left: 10px;
}
  
#progress-bar::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}
  
#progress-bar::-webkit-slider-thumb:hover {
    background-color: #8700fd;
}
  
#play-btn,
#pause-btn {
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
}
  
#play-btn:hover,
#pause-btn:hover {
    color: #8700fd;
}
  
.soon-text {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 10px;
}
  
.footer-icons {
    display: flex;
    gap: 10px;
}
  
.footer-icons i {
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s;
}
  
.footer-icons i:hover {
    color: #8700fd;
}
  
@media (max-width: 600px) {
    .main-container {
        width: 95%;
    }
  
    .social-links {
        flex-wrap: wrap;
    }
  
    .community-button {
        width: 100%;
        margin-top: 10px;
    }
}
