* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-family: "Georgia", "Times New Roman", serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
}

.breaking-news-bar {
    width: 100%;
    background-color: #000;
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    flex-shrink: 0;
}

.ticker-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    font-family: Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    animation: ticker 30s linear infinite;
}

.newspaper-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}

.content-wrapper {
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 65px 20px; 
    text-align: center;
}

#current-date, #update-time, #homepage-link {
    font-family: Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

#current-date {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.headline-area h1 {
    font-size: clamp(2.5rem, 8vw, 6.8rem);
    line-height: 1.0;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.sub-footer {
    margin-top: 35px;
    text-align: center;
}

#update-time {
    font-size: 0.65rem;
    color: #888;
    margin-bottom: 15px;
}

#homepage-link {
    font-size: 0.65rem;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
    cursor: pointer;
}

#homepage-link:hover {
    opacity: 0.5;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}