* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffccdf;
    color: #333;
}

header {
    background: #ff66b3;
    color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
}

.home-button {
    background: #ff99cc;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.home-button:hover {
    background: #e6007e;
    transform: scale(1.05);
}

.game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.scoreboard {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    margin: 20px 0;
}

.score {
    font-size: 24px;
    color: #ff4f81;
    font-weight: bold;
    width: 50%;
    text-align: center;
}

canvas {
    border: 4px solid #ff4f81;
    background: #fff;
}
