body{
    background:#0d0d0d;
    color:#fff;
    font-family:Arial,sans-serif;
    margin:0;
}


h1{
    text-align:center;
    color:#9146ff;
    font-size:4rem;
}

.live{
    background:#1b1b1b;
    padding:20px;
    border-radius:15px;
}

.offline{
    text-align:center;
}

.offline img{
    max-width:100%;
    border-radius:15px;
}
.offline-banner {
    width: 100%;
    max-width: 1200px;
    display: block;
    margin: 0 auto 25px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

.offline-section {
    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.offline-section img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.twitch-button {
    display: inline-block;
    background: #9146ff;
    color: #ffffff;
    text-decoration: none;

    padding: 14px 28px;
    margin-top: 20px;

    font-size: 1.1rem;
    font-weight: bold;

    border-radius: 10px;
    border: 2px solid #a970ff;

    box-shadow: 0 0 15px rgba(145, 70, 255, 0.5);

    transition: all 0.3s ease;
}

.twitch-button:hover {
    background: #772ce8;
    border-color: #c29dff;

    transform: translateY(-2px);

    box-shadow: 0 0 25px rgba(145, 70, 255, 0.8);
}

.twitch-button:active {
    transform: translateY(0);
}

.live-section {
    text-align: center;
}

.live-badge {
    display: inline-block;
    background: #e91916;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(233,25,22,.6);
}

.stream-info {
    color: #9146ff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.stream-player iframe {
    width: 100%;
    max-width: 1200px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(145,70,255,.4);
}

.live-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.stream-player {
    flex: 1;
    min-width: 700px;
}

.chat-container {
    width: 350px;
}

.chat-container iframe {
    height: 720px;
    width: 100%;
    border: none;
    border-radius: 15px;
}