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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fa;
    color: #333;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem 1rem 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    margin-bottom: 2.5rem;
}

header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 0.95rem;
    color: #666;
    max-width: 80%;
    margin: 0 auto;
}

.links-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem; /* Increased gap to account for button overlap */
}

.card {
    text-decoration: none;
    display: block;
    position: relative;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: transparent;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.full-banner {
    width: 100%;
    display: block;
    border-radius: 24px;
    aspect-ratio: 2.35 / 1;
    object-fit: cover;
    object-position: center;
}

.btn {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8A151B;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 12px 28px;
    border-radius: 24px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(138, 21, 27, 0.4);
    z-index: 3;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.card:hover .btn {
    background-color: #6E1015;
    transform: translateX(-50%) scale(1.02);
}

footer {
    margin-top: 4rem;
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}

@media (max-width: 480px) {
    .btn {
        font-size: 0.8rem;
        padding: 10px 24px;
        bottom: -16px;
    }
}
