body {
    font-family: Arial, sans-serif;
    background: #f9f6e7;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    margin-top: 30px;
    color: #b8860b;
}

#game-info {
    margin: 20px 0;
}

#haystack {
    display: grid;
    grid-gap: 4px;
    justify-content: center;
    margin: 30px auto;
    width: fit-content;
}
.arrow {
    position: absolute;
    width: 30px;
    height: 30px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #228B22;
    z-index: 2;
}

.hay {
    width: 30px;
    height: 30px;
    background: #e2c275;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.hay:hover {
    background: #d1b26a;
}

.needle {
    background: #c41e3a !important;
    box-shadow: 0 0 10px #c41e3a;
}

#result {
    font-size: 1.2em;
    margin-left: 20px;
    color: #228B22;
}
