body {
    font-family: 'Fredoka One', cursive;
    background: #FFF3E0;
    text-align: center;
    margin: 0;
    padding: 20px;
}

.game-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.title {
    color: #FF6B6B;
    font-size: 32px;
}

.palette-container {
    background: #f7f7f7;
    padding: 15px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.palette {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.color-swatch:hover,
.color-swatch.active {
    transform: scale(1.2);
    border-color: #333;
}

.canvas-box {
    margin: 20px auto;
    width: 100%;
    max-width: 350px;
    /* SVG Size */
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 10px;
}

.coloring-svg {
    width: 100%;
    height: auto;
    cursor: crosshair;
}

.actions {
    margin-top: 20px;
}

.btn {
    font-family: 'Fredoka One', cursive;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    margin: 0 5px;
    transition: transform 0.1s;
}

.reset-btn {
    background: #e0e0e0;
    color: #555;
}

.save-btn {
    background: #4ECDC4;
    color: white;
}

.btn:active {
    transform: scale(0.95);
}