
:root {
    --primary-color: #ffb74d; 
    --secondary-color: #64b5f6; 
    --bg-color: #fffaf0;
    --text-color: #4e342e;
}

body {
    font-family: 'Comic Sans MS', 'Chalkboard SE', sans-serif; 
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 20px;
}

header {
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    padding: 40px 20px;
    border-radius: 30px 30px 5px 5px;
    margin-bottom: 30px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}


.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}


.game-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.game-card h3 {
    margin: 10px 0;
    color: var(--primary-color);
}

.tag {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.75rem;
    background: #e3f2fd;
    color: #1565c0;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: bold;
    text-transform: uppercase;
}


.pro-tip {
    margin-top: 40px;
    background: #e8f5e9;
    padding: 25px;
    border-radius: 15px;
    border-left: 8px solid #4caf50;
}

footer {
    text-align: center;
    padding: 30px;
    font-style: italic;
}