body {
    background: #181929;
    color: #fff;
    font-family: 'Orbitron', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
}
.wmc-container {
    max-width: 500px;
    margin: 40px auto;
    background: rgba(30, 32, 60, 0.95);
    border-radius: 18px;
    box-shadow: 0 0 32px #00ffe7, 0 0 8px #ff00cc;
    padding: 32px 24px 24px 24px;
    text-align: center;
}
.wmc-title {
    font-size: 2.2em;
    margin-bottom: 18px;
    color: #00ffe7;
    text-shadow: 0 0 8px #00ffe7, 0 0 2px #ff00cc;
}
.wmc-hud {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 1.1em;
}
.wmc-phase-display {
    font-size: 1.2em;
    margin-bottom: 12px;
    color: #ff00cc;
    min-height: 24px;
}
.wmc-word-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}
.wmc-word-list span {
    background: linear-gradient(90deg, #00ffe7 0%, #ff00cc 100%);
    color: #181929;
    border-radius: 8px;
    padding: 8px 18px;
    font-size: 1.1em;
    font-weight: bold;
    box-shadow: 0 0 8px #00ffe7;
    margin: 2px;
    user-select: none;
}
.wmc-input-area {
    margin-bottom: 16px;
}
#wmc-word-input {
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    font-size: 1em;
    margin-bottom: 8px;
    width: 70%;
    outline: none;
    box-shadow: 0 0 6px #00ffe7;
    background: #22223a;
    color: #fff;
}
#wmc-submit-btn {
    background: linear-gradient(90deg, #ff00cc 0%, #00ffe7 100%);
    color: #181929;
    border: none;
    border-radius: 8px;
    padding: 8px 22px;
    font-size: 1em;
    font-weight: bold;
    box-shadow: 0 0 8px #ff00cc;
    cursor: pointer;
    margin-left: 10px;
    transition: background 0.2s;
}
#wmc-submit-btn:hover {
    background: linear-gradient(90deg, #00ffe7 0%, #ff00cc 100%);
}
#wmc-start-btn {
    background: linear-gradient(90deg, #00ffe7 0%, #ff00cc 100%);
    color: #181929;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 1.1em;
    font-weight: bold;
    box-shadow: 0 0 12px #00ffe7;
    cursor: pointer;
    margin-top: 18px;
    transition: background 0.2s;
}
#wmc-start-btn:hover {
    background: linear-gradient(90deg, #ff00cc 0%, #00ffe7 100%);
}
.wmc-feedback {
    min-height: 28px;
    font-size: 1.1em;
    color: #00ffe7;
    margin-bottom: 10px;
    text-shadow: 0 0 6px #00ffe7;
}
.wmc-entered-words {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.wmc-entered-words span {
    background: #22223a;
    color: #00ffe7;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 1em;
    box-shadow: 0 0 4px #00ffe7;
    margin: 1px;
}
@media (max-width: 600px) {
    .wmc-container { padding: 12px 2vw; }
    .wmc-title { font-size: 1.3em; }
    .wmc-hud { font-size: 0.95em; }
    .wmc-word-list span, .wmc-entered-words span { font-size: 0.95em; padding: 6px 10px; }
}