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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.content {
    text-align: center;
    animation: fadeIn 1.5s ease-in;
}

.date {
    font-size: clamp(1.5rem, 5vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-weight: 800;
    color: #f8f8f8;
    text-transform: uppercase;
    border-bottom: 4px solid #ff3d00;
    padding-bottom: 10px;
    display: inline-block;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 10vw, 6rem);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #ff3d00, #ffeb3b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(255, 61, 0, 0.3);
    margin-bottom: 1rem;
}

/* Add a subtle animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries for various device sizes */
@media screen and (max-width: 768px) {
    .content {
        max-width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .date {
        margin-bottom: 0.8rem;
    }
    
    .title {
        line-height: 1.1;
    }
}

/* Add some additional contrast for accessibility */
@media (prefers-contrast: more) {
    .title {
        background: none;
        color: #ff3d00;
        text-shadow: none;
    }
}
