/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f172a; /* Dark Slate Blue background */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container to center everything */
.main-container {
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
}

/* Title Styling with Gradient */
.site-title {
    font-size: 4rem; /* Big font */
    font-weight: 900;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -2px;

    /* Gradient Text Effect */
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Fallback color if gradient fails */
    color: #00f2fe;
}

/* Layout for the buttons */
.nav-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; /* Allows stacking on mobile */
}

/* Card/Button Base Styling */
.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: #1e293b; /* Slightly lighter dark card */
    padding: 2.5rem 2rem;
    border-radius: 16px;
    width: 300px; /* Fixed width for consistency */
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    color: #94a3b8; /* Muted text color */
}

/* --- Specific Hover Effects --- */

/* Hover Logic for Qui-est-ce (Blue theme) */
.link-lol:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}
.link-lol:hover .card-title {
    color: #60a5fa;
}

/* Hover Logic for MRSTCG (Gold theme) */
.link-tcg:hover {
    transform: translateY(-5px);
    border-color: #eab308;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
}
.link-tcg:hover .card-title {
    color: #facc15;
}

/* Mobile Responsiveness */
@media (max-width: 650px) {
    .site-title {
        font-size: 2.5rem;
    }

    .card {
        width: 100%;
        max-width: 100%;
    }
}