.container {
    background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
    padding: 14px;
    border-radius: 0;
    box-shadow: 
        0 0 0 4px #8a2be2,
        0 0 0 8px #1a1a2e,
        0 0 20px rgba(138, 43, 226, 0.8),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 100%;
    border: 4px solid #00ffff;
    position: relative;
    z-index: 1;
    overflow: visible;
    box-sizing: border-box;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.title-container {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

h1 {
    color: #00ffff;
    font-size: 18px;
    font-weight: normal;
    text-shadow: 
        3px 3px 0px #0066cc,
        0 0 20px rgba(0, 255, 255, 0.8);
    letter-spacing: 2px;
    line-height: 1.2;
}

.subtitle {
    color: #ff00ff;
    font-size: 8px;
    font-weight: normal;
    text-shadow: 
        2px 2px 0px #990099,
        0 0 10px rgba(255, 0, 255, 0.6);
    letter-spacing: 1px;
}

.score-container {
    background: linear-gradient(135deg, #8a2be2 0%, #4b0082 100%);
    padding: 6px 14px;
    border-radius: 0;
    text-align: center;
    box-shadow: 
        0 0 0 3px #00ffff,
        0 0 15px rgba(138, 43, 226, 0.8);
    border: 3px solid #1a1a2e;
}

.score-label {
    color: #00ff00;
    font-size: 8px;
    text-transform: uppercase;
    font-weight: normal;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #006600;
    margin-bottom: 4px;
}

.score {
    color: #ffff00;
    font-size: 16px;
    font-weight: normal;
    text-shadow: 
        2px 2px 0px #cc9900,
        0 0 10px rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

.controls {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.controls button {
    flex: 1;
}

button {
    background: linear-gradient(180deg, #8a2be2 0%, #4b0082 100%);
    color: #ffffff;
    border: 3px solid #00ffff;
    padding: 8px 16px;
    border-radius: 0;
    font-size: 9px;
    font-weight: normal;
    cursor: pointer;
    transition: all 0.1s;
    box-shadow: 
        0 4px 0 #1a1a2e,
        0 0 15px rgba(138, 43, 226, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Press Start 2P', cursive;
    position: relative;
}

button:hover {
    background: linear-gradient(180deg, #9d3bff 0%, #5b0099 100%);
    box-shadow: 
        0 4px 0 #1a1a2e,
        0 0 25px rgba(138, 43, 226, 1);
    transform: translateY(-2px);
}

button:active {
    background: linear-gradient(180deg, #7020cc 0%, #3b0066 100%);
    transform: translateY(2px);
    box-shadow: 
        0 2px 0 #1a1a2e,
        0 0 10px rgba(138, 43, 226, 0.6);
}

button:active {
    background: linear-gradient(180deg, #7020cc 0%, #3b0066 100%);
    transform: translateY(2px);
    box-shadow: 
        0 2px 0 #1a1a2e,
        0 0 10px rgba(138, 43, 226, 0.6);
}