#jcl-game {
    max-width: 420px;
    margin: 20px auto;
    padding: 15px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    font-family: sans-serif;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

#jcl-game h2 {
    text-align: center;
    margin-bottom: 15px;
}

.jcl-player {
    margin-bottom: 12px;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
}

.jcl-names label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.jcl-gender-label {
    margin-top: 6px;
}

#jcl-game input,
#jcl-game select {
    width: 100%;
    padding: 6px 8px;
    border-radius: 6px;
    border: none;
    margin-top: 4px;
    background: #222;
    color: #fff;
}

#jcl-game button {
    margin-top: 10px;
    width: 100%;
    padding: 8px 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

#jcl-game button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

#jcl-start {
    background: #e91e63;
    color: #fff;
}

#jcl-next-gage {
    background: #ff9800;
    color: #111;
}

.jcl-status {
    margin-bottom: 10px;
}

.jcl-level {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.jcl-gauge {
    position: relative;
    width: 100%;
    height: 10px;
    background: #333;
    border-radius: 999px;
    overflow: hidden;
}

.jcl-gauge-fill {
    height: 100%;
    width: 0;
    background: #4caf50;
    transition: width 0.3s ease, background 0.3s ease;
}

.jcl-gauge[data-level="soft"] .jcl-gauge-fill {
    background: #4caf50;
}

.jcl-gauge[data-level="hot"] .jcl-gauge-fill {
    background: #ff9800;
}

.jcl-gauge[data-level="hard"] .jcl-gauge-fill {
    background: #e91e63;
}

.jcl-turn {
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 10px;
}

.jcl-gage {
    margin-bottom: 8px;
    line-height: 1.4;
}

.jcl-context {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.4;
}

.jcl-place-select {
    margin-top: 10px;
}
