body {
    margin: 0;
    background-color: #111;
    color: #fff;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}
.container {
    background-color: #222;
    border-radius: 12px;
    padding: 30px 40px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    display: inline-block;
}
img {
    width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}
img + img {
    margin-top: 20px;
}
p {
    white-space: normal;
    word-break: normal;
    margin-top: 20px;
    font-size: 1.2rem;
    max-width: 100%;
}
a.next {
    display: inline-block;
    margin-top: 30px;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    background-color: #444;
    padding: 10px 30px;
    border-radius: 8px;
    transition: background 0.2s;
}
a.next:hover {
    background-color: #666;
}
ul {
    text-align: left;
    margin-top: 10px;
    padding-left: 20px; /* space for bullets */
}
.home-btn {
    position: fixed;   /* stays in the corner even when scrolling */
    top: 20px;
    left: 30px;
    display: inline-block;
    transition: filter 0.2s;
    z-index: 1000;     /* ensures it’s above other content */
    padding: 10px 20px;
    border-radius: 12px;
}
.home-btn img {
    width: 70px;
    height: auto;
}
.home-btn:hover {
    background-color: #333;
}
.container p {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 20px;
}
.chatlog {
    max-width: 600px;
    margin: 20px auto;
    background: #000;
    border: 2px solid #fff;
    padding: 10px;
    font-family: "Courier New", monospace;
    color: #fff;
    text-align: left;
}
.chatlog button {
    display: block;
    margin: 5px auto;
    padding: 5px 10px;
    background: #222;
    color: #fff;
    border: 1px solid #888;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}
.chatlog button:hover {
    background: #555;
}
.chat-content {
    display: none;
    margin-top: 10px;
}
.chat-line {
    display: block;
    margin-bottom: 5px;
}
.chat-line .pfp {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 8px;
    display: inline-block;
    margin-top: 10px;
}
.chat-line span {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    margin-top: 10px;
}
.chat-line p {
    margin: 0;
    padding: 0;
    margin-top: 5px;
}
.warn-btn {
    position: fixed;   /* stays in the corner even when scrolling */
    top: 20px;
    left: 30px;
    display: inline-block;
    transition: filter 0.2s;
    z-index: 1000;     /* ensures it’s above other content */
    padding: 10px 20px;
    border-radius: 12px;
}
.warn-btn img {
    width: 70px;
    height: auto;
}
.warn-btn:hover {
    background-color: #333;
}
.warn-btn:focus {
    outline: 2px solid #0ff;    /* or box-shadow if you prefer */
    outline-offset: 2px;
}
iframe {
    width: 600px;
    height: 450px;
    aspect-ratio: 4 / 3; /* or 16/9 if your video is widescreen */
    max-width: 100%;
}