/* Twitch embed styles */
#twitch-embed {
    margin-top: 30px;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    min-height: 400px;
    display: none;
    border-radius: 12px;
    overflow: hidden;
}

@media (max-width: 768px) {
    #twitch-embed {
        aspect-ratio: 1 / 1;
        min-height: 250px;
        max-width: 100vw;
    }
}

.twitch-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.twitch-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

