.rm1-screen {
    padding: 16px;
    height: 100%;
    overflow-y: auto;
}

.gameboy-text {
    font-family: 'Courier New', monospace;
    color: #000;
}

.gameboy-text h2 {
    margin: -16px 0 16px 0;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
    position: relative;
    left: -4px;
}

.stat-item {
    background: #d0d0d0;
    border: 2px solid #000;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px;
}

.stat-label {
    font-size: 12px;
    color: #444;
    text-align: center;
    width: 100%;
    display: block;
}

.stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    border-radius: 12px;
    padding: 2px 14px;
    font-size: 20px;
    font-weight: bold;
    /* Neon gradient text */
    background: linear-gradient(90deg, #b6ff5b, #9acd32 80%);
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    /* Glow effect */
    text-shadow: 0 0 8px #b6ff5b, 0 0 2px #222;
    box-shadow: 0 0 8px #9acd32;
    min-width: 32px;
    min-height: 28px;
    margin: 4px 0;
}

.gameboy-button {
    display: block;
    width: 100%;
    padding: 8px;
    margin-top: 8px;
    background: #9acd32;
    border: 2px solid #000;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.gameboy-button:hover {
    background: #8ab322;
} 