body {
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.87);
    background-color: #000000; 
    font-family: Arial, Helvetica, sans-serif;
}

#app {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spritePosition {
    margin: 10px 0 0 10px;
    font-size: 0.8em;
}

.button {
    width: 140px;
    margin: 10px;
    padding: 10px;
    background-color: #000000;
    color: rgba(255, 255, 255, 0.87);
    border: 1px solid rgba(255, 255, 255, 0.87);
    cursor: pointer;
    transition: all 0.3s;

    &:hover {
        border: 1px solid #0ec3c9;
        color: #0ec3c9;
    }

    &:active {
        background-color: #0ec3c9;
    }

    /* Disabled styles */
    &:disabled {
        cursor: not-allowed;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: rgba(255, 255, 255, 0.3);
    }
}

/* Debug Panel Styles */
.debug-panel {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 300px;
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.5);
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    z-index: 1000;
    backdrop-filter: blur(3px);
}

.debug-panel h3 {
    margin: 0 0 8px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.5);
    padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.debug-fps {
    color: #00ff00;
    font-weight: bold;
}

.debug-section {
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.4);
}

.debug-section h4 {
    margin: 0 0 5px 0;
    font-size: 12px;
    color: #00ffff;
    font-weight: normal;
}

.debug-section p {
    margin: 3px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}

.debug-section p span {
    color: #ffff00;
}

.debug-footer {
    margin-top: 10px;
    font-size: 10px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    padding-top: 5px;
}