.stream-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
    background-color: #2d2d44;
}

.stream-thumbnail {
    width: 100%;
    height: auto;
}

.stream-content {
    padding: 1.5rem;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.stream-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffdd57;
    margin-bottom: 0.5rem;
}

.stream-meta .viewers {
    font-size: 1rem;
    color: #ff7f50;
    font-weight: 500;
}

.stream-meta .description {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.4;
    margin-bottom: 1rem;
    max-height: 50px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stream-card:hover {
    /* transform: scale(1.05);
    transition: all 0.3s ease-in-out; */
}

.stream-card a {
    text-decoration: none;
}

.stream-card a:hover .stream-thumbnail {
    opacity: 0.8;
}

.official-stream-container {
    margin-top: 2rem;
}

.vod-card {
    max-width: 100%;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background-color: #2d2d44;
    padding: 2rem;
    /* transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; */
}

.vod-card iframe {
    width: 100%; /* Ensure the iframe takes the full width of the card */
    height: auto; /* Maintain aspect ratio */
    aspect-ratio: 16 / 9; /* Set a 16:9 aspect ratio for the iframe */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.vod-card:hover {
    /* transform: scale(1.05); */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.vod-thumbnail {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.vod-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffdd57;
    margin-bottom: 0.5rem;
}

.vod-subtitle {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 1rem;
}

.vod-description {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 1rem;
}