body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0d0d0d;
    color: #00ffcc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 900px;
}

h1 {
    font-size: 2.5rem;
    text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
    margin-bottom: 20px;
}

#setup-screen, #game-over {
    background: rgba(20, 20, 20, 0.9);
    padding: 30px;
    border: 2px solid #00ffcc;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
}

button {
    background: #00ffcc;
    color: #0d0d0d;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

button:hover {
    background: #00cca3;
    box-shadow: 0 0 15px #00ffcc;
    transform: scale(1.05);
}

#game-container {
    position: relative;
    width: 100%;
}

.view-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

canvas {
    background: #1a1a1a;
    border: 3px solid #333;
    border-radius: 10px;
    box-shadow: inset 0 0 30px #000;
    width: 100%;
    height: auto;
}

#webcam-container {
    width: 200px;
    height: 150px;
    border: 2px solid #00ffcc;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}

#webcam-container canvas {
    width: 100% !important;
    height: 100% !important;
}

.stats {
    display: flex;
    justify-content: space-around;
    font-size: 1.5rem;
    margin-top: 15px;
}

#pose-name {
    color: #ff00ff;
    font-weight: bold;
    text-shadow: 0 0 5px #ff00ff;
}

ul {
    text-align: left;
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1.6;
}

strong {
    color: #ff00ff;
}
