.zacknation-streaming-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-color: #f5f5f5; /* Light background as seen in image */
    padding: 20px;
    border-radius: 8px;
}

.zacknation-streaming-title {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zacknation-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.zacknation-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.zacknation-streaming-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-stream {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none !important;
    color: white !important;
    transition: transform 0.2s ease, opacity 0.2s ease;
    min-width: 200px;
    flex: 1;
    max-width: 250px;
}

.btn-stream:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn-stream .icon-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.btn-stream .btn-text {
    font-size: 10px;
    line-height: 1.2;
    text-align: left;
    text-transform: uppercase;
}

.btn-stream .btn-text strong {
    font-size: 15px;
    font-weight: 700;
    text-transform: none;
}

.btn-youtube-music {
    background-color: #ff0000;
}

.btn-spotify {
    background-color: #1ed760;
}

.btn-apple-music {
    background-color: #000000;
}

.btn-audiomack {
    background-color: #ffa200;
}

@media (max-width: 768px) {
    .btn-stream {
        min-width: 160px;
    }
}

@media (max-width: 600px) {
    .zacknation-streaming-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-stream {
        width: 100%;
        max-width: 300px;
    }
}