body {
    background: #050505;
    color: #00f2ff;
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.glass-panel {
    width: 90%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(188, 19, 254, 0.3);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.2);
}

.header {
    color: #bc13fe;
    font-weight: bold;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

#console {
    height: 150px;
    background: #000;
    padding: 10px;
    font-size: 12px;
    overflow-y: auto;
    border-radius: 5px;
    color: #00f2ff;
}

button {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    background: transparent;
    border: 1px solid #bc13fe;
    color: #bc13fe;
    font-weight: bold;
    border-radius: 5px;
    text-shadow: 0 0 5px #bc13fe;
}

button:active {
    background: #bc13fe;
    color: #fff;
}
