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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: radial-gradient(circle, #3a5a3a 0%, #101b10 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    overflow: hidden;
}

.landing-container {
    text-align: center;
    width: 100%;
    max-width: 800px;
    padding: 20px;
}

.logo-wrapper {
    /* margin-bottom: 40px; */
}

.main-logo {
    width: 100%;
    max-width: 550px;
    height: 400px;
    filter: drop-shadow(0 0 20px rgba(167, 201, 167, 0.2));
    transition: transform 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.5);
}

/* Typography */
.date-header {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
    color: #c2d6c2; 
}

.sub-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #8fa38f;
    margin-bottom: 35px;
}

.highlight {
    color: #4ade80; 
    font-weight: 600;
}

/* Call to Action */
.cta-button {
    display: inline-block;
    background-color: #a7c9a7; 
    color: #0a110a;
    text-decoration: none;
    padding: 16px 40px;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(74, 222, 128, 0.2);
}

.pyho-link {
    text-decoration: none;
    color: #4ade80;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .date-header { font-size: 2rem; }
    .main-logo { max-width: 300px; }
}