body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin: 0;
}

#streamers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.streamer-card {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    width: 700px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.streamer-card h2 {
    margin-bottom: 10px;
    font-size: 2em;
}

.streamer-card p {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.live {
    color: #00ff00;
    font-weight: bold;
}

.offline {
    color: #ff0000;
    font-weight: bold;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Main container for the website embed */
#website-embed-container {
    position: relative;
    width: 70%; /* Adjust width here to make the embed smaller */
    max-width: 960px; /* Max width to prevent it from growing too large */
    margin: 0 auto 20px; /* Centers horizontally with spacing below */
    overflow: hidden; /* Ensures iframe doesn't overflow */
}

/* The iframe will now be 100% of the container's size */
#website-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Full-screen handling */
iframe:fullscreen {
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Forces the iframe to scale properly in full screen */
}

/* Ensures the embed has a proper 16:9 aspect ratio */
#website-embed-container::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (9 / 16 = 0.5625 or 56.25%) */
}

/* Fix to remove extra space below the embed */
#website-embed-container iframe {
    height: 100%; /* Ensure it fills the container */
}
