body {
    color: #fff;
    font-family: Pusab;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-image: url(GDbackground.jpg);
}

.container {
    width: 90%;
    max-width: 600px;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-text-stroke: #000;
    -webkit-text-stroke-width: 50%;
    margin: 0;
}

h1 span {
    color: #ff0055;
}

.panel {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ffff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

h2 {
    color: #ffd700;
    margin-top: 0;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.subtext {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 15px;
}

.log-window {
    background: #000;
    color: #0f0;
    font-family: 'OCR A', monospace;
    height: 100px;
    overflow-y: auto;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #333;
    font-size: 0.8rem;
}

button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to bottom, #00aa00, #005500);
    border: 2px solid #fff;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.1s;
    font-family: Pusab;
    letter-spacing: 3px;
}

button:hover {
    filter: brightness(1.2);
}

button:active {
    transform: scale(0.98);
}

button:disabled {
    background: #444;
    cursor: not-allowed;
    border-color: #666;
}

.result-box {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #ff0055;
    text-shadow: 0 0 20px #ff0055;
    margin: 20px 0;
    min-height: 60px;
    letter-spacing: 20%;
}

@font-face {
  font-family: 'Pusab'; /* Common family name */
  src: url('PUSAB___.otf') format('opentype'),
       url('PUSAB___.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}