@charset "utf-8";

.menu-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.year-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.year-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #004ea2 0%, #003577 100%);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 78, 162, 0.2);
    position: relative;
    overflow: hidden;
}

.year-header {
    padding: 1.5rem 1.5rem 0.8rem 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.poster-image {
    margin: 0 1rem 0.5rem 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
}

.poster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.year-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 78, 162, 0.3);
    filter: brightness(1.1);
}

.year-card:hover .poster-image img {
    transform: scale(1.05);
}

.year-header {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.year {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.year-suffix {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


@media (max-width: 768px) {
    .menu-container {
        padding: 0 1rem;
    }
    
    .year-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .year {
        font-size: 1.8rem;
    }
    
    .year-suffix {
        font-size: 0.8rem;
    }
    
    .year-header {
        padding: 1rem 1rem 0.5rem 1rem;
    }
    
}

@media (max-width: 480px) {
    .year-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .year {
        font-size: 1.5rem;
    }
    
    .year-suffix {
        font-size: 0.7rem;
    }
    
}