@font-face {
    font-family: "BOSTON CAPS";
    src: url("./boston.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Nunito";
    src: url("./ttf/nunito-latin-400-normal.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Nunito";
    src: url("./ttf/nunito-latin-700-normal.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

body {
    background-color: black;
    color: white;
    font-family: "Nunito", sans-serif;
    margin: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

#info-section {
    margin-bottom: 40px;
}

#fake-article-link {
    color: #888;
    text-decoration: none;
    font-size: 18px;
    font-family: "Nunito", sans-serif;
    display: block;
    margin-top: -5px;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

#fake-article-link:hover {
    color: white;
}

#status-container {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}

#status-visual img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

#status-text {
    font-family: "BOSTON CAPS", sans-serif;
    font-size: 48px;
    white-space: nowrap;
    line-height: 1.2;
    margin: 0;
    display: inline-block;
    animation: marquee 15s linear infinite -4s;
    width: max-content;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "BOSTON CAPS", sans-serif;
    font-size: 48px;
    margin: 10px 0;
}

p {
    font-family: "Nunito", sans-serif;
    font-size: 24px;
    margin: 5px 0;
    white-space: normal;
    max-width: 600px;
}

#local-time {
    font-size: 18px;
    color: #888;
    margin-top: 15px;
}

@keyframes marquee {
    0% {
        transform: translateX(calc(50vw + 50%));
    }
    100% {
        transform: translateX(calc(-50vw - 50%));
    }
}

#status-text:empty {
    display: none;
}