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

body {
    font-family: 'Inconsolata', monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    color: #0066CC;
}

header {
    text-align: center;
    padding: 2.5rem 1rem;
    background: #ffffff;
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header h1 {
    font-family: 'Inconsolata', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    color: #0066CC;
    margin: 0;
}

header .subheader {
    font-family: 'Inconsolata', monospace;
    font-size: 1.2rem;
    font-weight: 400;
    color: #0066CC;
    margin: 0.5rem 0 0 0;
    letter-spacing: 0.1rem;
    opacity: 0.8;
}

/* Screen reader only - visible to search engines and screen readers but not visually */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.animation-container {
    width: 100%;
    max-width: 800px;
    height: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.agocho-gif {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

footer {
    font-family: 'Inconsolata', monospace;
    text-align: center;
    padding: 2rem 1rem;
    background: #ffffff;
    border-top: 2px solid #e0e0e0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    font-weight: 400;
    color: #0066CC;
    letter-spacing: 0.05rem;
}

footer p {
    margin: 0.5rem 0;
}

footer a {
    color: #0066CC;
    text-decoration: underline;
    text-decoration-color: #0066CC;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #0052a3;
    text-decoration-color: #0052a3;
    text-decoration-thickness: 2px;
}

