body {
    background-color: #4b2e83;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    margin: 0;
}

.container {
    max-width: 1440px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: auto;
    margin-bottom: auto;
}

h1 {
    color: #b7a57a;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
}

.highlight {
    font-weight: bold;
    color: #e8e3d3;
}

.suggestion-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
}

.club-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px auto 0;
    max-width: 100%;
    text-align: left;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.club-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, background-color 0.2s ease;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.club-card:nth-child(1) {
    animation-delay: 0.5s;
}

.club-card:nth-child(2) {
    animation-delay: 1s;
}

.club-card:nth-child(3) {
    animation-delay: 1.5s;
}

.club-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.club-cover-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    background-color: rgba(0, 0, 0, 0.1);
}

.club-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.club-info h3 {
    margin-top: 0;
    color: #b7a57a;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.club-info p {
    font-size: 1rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

a.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #b7a57a;
    color: #4b2e83;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
}

a.button:hover {
    background-color: #85754d;
    color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 20px;
        margin: 15px;
    }

    .club-list {
        grid-template-columns: 1fr;
    }

    .club-cover-image {
        height: 200px;
    }

    p {
        font-size: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .club-info h3 {
        font-size: 1.2rem;
    }
}

footer {
    margin-top: 20px;
    padding: 10px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

footer p {
    margin: 5px 0;
    font-size: 0.75rem;
}

footer a {
    color: rgba(183, 165, 122, 0.8);
    text-decoration: none;
}

footer a:hover {
    color: #b7a57a;
    text-decoration: underline;
}
