.promo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.promo-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.promo-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 0;
    line-height: 1;
}

.promo-close-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.promo-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.visit-btn {
    background-color: #1DB954;  /* Spotify green */
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.visit-btn:hover {
    background-color: #1ed760;  /* Slightly lighter Spotify green on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .promo-content {
        max-width: 95%;
    }
    
    .promo-close-btn {
        top: -20px;
        right: -10px;
    }
} 
