:root {
    --bg-color: #e0f4ff; /* baby blue, very light */
    --text-color: #1e3a5f; /* deep blue for contrast */
    --card-bg: rgba(255, 255, 255, 0.6);
    --card-hover: rgba(255, 255, 255, 0.9);
    --accent: #0077b6;
}

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

body {
    /* Modern typography */
    font-family: 'Outfit', sans-serif;
    /* Baby blue, very light background with a subtle gradient for visual excellence */
    background: linear-gradient(135deg, #e0f4ff 0%, #c1e8ff 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1400px;
    width: 100%;
}

header h1 {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: -1px;
    background: linear-gradient(to right, #0077b6, #03045e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeDown 1s ease-out;
    text-shadow: 0 10px 20px rgba(0, 119, 182, 0.1);
}

main.sports-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    animation: fadeUp 1s ease-out 0.3s both;
}

.sports-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.sports-column h2 {
    font-size: 1.8rem;
    color: var(--text-color);
    text-align: center;
    border-bottom: 2px solid rgba(0, 119, 182, 0.2);
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.column-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.sports-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0, 119, 182, 0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sports-link:hover {
    background: var(--card-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.15);
    color: var(--accent);
}

.link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 119, 182, 0.1);
    color: var(--accent);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}

.sports-link:hover .link-icon {
    transform: translateX(5px);
    background: var(--accent);
    color: white;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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