body {
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
}
.logo {
    display: block;
    margin: 0 auto;
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}
h2 {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}
a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: #ffffff;
}
p {
    align-items: center;
    text-align: center;
    margin-top: 10px;

}
.section {
    /* margin-bottom: 20px; */
    padding: 20px;
    /* border-bottom: 1px solid #eaeaea; */
}
.cta-button {
    display: block;
    width: 200px;
    height: 50px;
    margin: 20px auto;
    background-color: #232323;
    text-align: center;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    line-height: 50px;
    transition: background-color 0.3s, transform 0.3s;
}
.cta-button:hover {
    background-color: #333;
    transform: scale(1.05);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.social-icon {
    font-size: 24px;
    filter: grayscale(100%);
    transition: transform 0.3s;
}
.social-icon:hover {
    transform: scale(1.1);
}

/* Media query for smaller screens */
@media (max-width: 600px) {
    .social-links {
        margin-top: -20px;
    }

}

.music-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
    text-align: center;
    font-size: 18px;
}

.music-card {
    display: flex;
    align-items: center;
    justify-content: center; /* This will center the content horizontally */
    max-width: 800px;
    width: 100%;
    padding: 10px 20px;
    background-color: white;
    border: 1px solid rgb(192, 192, 192);
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
    height: 40px; /* You can adjust this value as per your requirement */
}

.music-card:hover {
    background-color: #333;
}

.music-card img {
    margin-right: 10px;
    width: 30px;
    height: 30px;
}

.music-card:hover img {
    filter: invert(1); /* This will change the image color to white on hover */
}

/* Responsive styles for mobile view */
@media (max-width: 768px) {
    .music-card {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .music-card img {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Floating Chat Button */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.359); /* Added shadow for emphasis */
    transition: box-shadow 0.3s;
    animation: bounce 2s infinite; /* Apply the bounce animation */

}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}


.chat-button:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.chat-button img {
    width: 30px;
    height: 30px;
}

.notification-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 14px;
}

/* Chat Interface */
.chat-interface {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default */
}

/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .chat-interface {
        width: 250px; /* Reduced width for small screens */
    }
}

.instagram-feed {
    display: flex;
    gap: 10px;
    overflow: auto;
    margin-bottom: 10px;
}

.instagram-post {
    width: 60px;
    height: 60px;
    background-color: #eee; /* Placeholder background */
    background-size: cover;
    border-radius: 5px;
    overflow: hidden;
}

.instagram-post img {
    width: 100%;       /* Make the image take the full width of its container */
    height: auto;      /* Maintain the original aspect ratio of the image */
    border-radius: 5px;/* Optional: Add rounded corners to the image */
    overflow: hidden;
    margin-bottom: 50px;
}
