.quiz-grid-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.quiz-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 80px 30px;
    width: 80%;
}

.category-card {
    position: relative;
    background: #1e1e1e;
    border: 2px solid #333;
    border-radius: 8px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.category-name {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 2rem;
}

.points-container {
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.point-circle {
    width: 60px;
    height: 60px;
    background: #2c3e50;
    border: 4px solid #1f2346; /* Fixed to match background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f1c40f;
    font-weight: bold;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.2s;
}

.point-circle:hover {
    transform: scale(1.1);
} 