body {
    background-color: #f0f0f0;
    background-image: url('background-pattern.png');
    background-repeat: repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Courier New', monospace;
}

#watch {
    width: 400px;
    height: 466px;
    background-color: #555;
    border-radius: 26px;
    position: relative;
    box-shadow: 0 13px 26px rgba(0,0,0,0.3);
}

#bezel {
    width: calc(100% - 26px);
    height: calc(100% - 26px);
    background-color: #333;
    border-radius: 20px;
    position: absolute;
    top: 13px;
    left: 13px;
    overflow: hidden;
}

#screen-container {
    width: calc(100% - 26px);
    height: 320px;
    background-color: #222;
    margin: 13px auto;
    border-radius: 13px;
    padding: 13px;
    box-shadow: inset 0 0 13px rgba(0,0,0,0.5);
}

#title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #9acd32;
    margin-bottom: 13px;
    text-shadow: 0 0 6px rgba(154, 205, 50, 0.7);
}

#screen {
    width: 100%;
    height: 240px;
    background-color: #9acd32;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 2px solid #6b8e23;
    box-shadow: inset 0 0 13px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#player {
    width: 30px;
    height: 30px;
    background-image: url('player.png'); 
    background-size: cover;
    position: absolute;
    bottom: 13px;
    left: 13px;
}

.item {
    position: absolute;
    right: 0;
    font-size: 14px;
    white-space: nowrap;
}

#score {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 16px;
}

#time {
    position: absolute;
    top: 6px;
    right: 6px;
    font-size: 16px;
}

#controls {
    display: flex;
    justify-content: space-around;
    margin-top: 13px;
}

.button {
    width: 53px;
    height: 53px;
    background: linear-gradient(145deg, #2e2e2e, #373737);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #9acd32;
    cursor: pointer;
    user-select: none;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3), -2px -2px 6px rgba(255,255,255,0.1);
}

.button:active {
    box-shadow: inset 2px 2px 6px rgba(0,0,0,0.3), inset -2px -2px 6px rgba(255,255,255,0.1);
}

#set {
    font-size: 18px;
}

#start-screen {
    color: #000;
    text-align: center;
    padding: 20px;
    background-color: #9acd32;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#start-screen h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

#start-screen p {
    font-size: 18px;
    margin: 10px 0;
}