/* General styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header and navigation styling */
header {
    background-color: #333;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px; /* Increased font size for icons */
}

/* Banner and content styling */
.banner-container {
    text-align: center;
    margin: 20px 0;
}

.banner {
    max-width: 100%;
    height: auto;
}

.content-container {
    text-align: center;
    padding: 20px;
}

.shop-button, .subscribe-button {
    display: block;
    background-color: #ff0000;
    color: white;
    padding: 15px;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    margin: 10px auto;
    width: 300px;
    text-align: center;
}

.shop-button {
    background-color: #008000;
}

/* Music player and download button styling */
.music-container {
    text-align: center;
    margin: 20px 0;
}

.download-button {
    display: inline-block;
    background-color: #0000ff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 5px;
}

/* Scroll Down Indicator styling */
.scroll-down-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.scroll-down-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 4px solid #000;
    border-right: 4px solid #000;
    transform: rotate(45deg);
    animation: scroll-down 1.5s infinite;
}

.scroll-down-indicator span:nth-child(2) {
    animation-delay: 0.3s;
}

.scroll-down-indicator span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes scroll-down {
    0% {
        opacity: 0;
        transform: translateY(-20px) rotate(45deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(20px) rotate(45deg);
    }
}

/* Footer styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* User Authentication Section styling */
#user-authentication {
    padding: 20px;
    display: flex;
    justify-content: space-around;
}

#sign-up-form, #login-form {
    margin-bottom: 20px;
}

#sign-up-name, #login-name {
    padding: 10px;
    width: 200px;
    margin-right: 10px;
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Hide content initially, show after login */
.content-container {
    display: none;
}
.youtube-link:hover {
    color: #e4405f;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    color: #d62976;
    text-decoration: underline;
    transform: scale(1.1);
    letter-spacing: 0.5px;
}
