body {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-shadow: 1px 1px 3px black;
    padding: 40px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    overflow: hidden;
}

.content {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    max-width: 1200px;
    margin: auto;
    backdrop-filter: blur(5px);
}

h1,
h2 {
    color: #ffcc66;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    text-align: justify;
}

.music-section {
    margin-top: 40px;
    text-align: center;
}

.music-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.music-item {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 15px;
    width: 320px;
    text-align: center;
    transition: all 0.3s ease;
}

.music-item:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.music-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.music-item img:hover {
    opacity: 0.8;
}

.music-item h3 {
    color: #ffcc66;
    margin: 15px 0 10px 0;
    font-size: 20px;
    font-weight: bold;
}

.video-container {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-link {
    margin-top: 15px;
}

.youtube-link a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff4444;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 15px;
    background-color: rgba(255, 68, 68, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.youtube-link a:hover {
    background-color: rgba(255, 68, 68, 0.2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.youtube-icon {
    width: 16px;
    height: 16px;
}
