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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.landing {
    padding: 2rem;
    text-align: center;
}

.landing-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.info-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 50%, #c41e3a 100%);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    font-family: system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: button-shine 3s ease-in-out infinite;
}

.info-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes button-shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
