@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

body {
    font-family: 'Lato', sans-serif;
    background-color: #F9F6F0;
    color: #2E4030;
    margin: 0;
}
.font-serif {
    font-family: 'Playfair Display', serif;
}
/* Completely override the card layouts to match the new style */
.game-card {
    background: #FFFFFF;
    border: 1px solid rgba(46, 64, 48, 0.1);
    padding: 15px;
    border-radius: 0; /* Sharp elegant edges */
    transition: all 0.4s ease;
}
.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(46, 64, 48, 0.15);
    border-color: #D4AF37;
}
