/* css/simulator.css - Simulator styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

footer {
    color: #bdc3c7;
    font-size: 14px;
    padding: 20px;
    margin-top: auto;
}

.simulator-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

canvas {
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

h1 {
    color: #ecf0f1;
    margin-bottom: 20px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.controls-info {
    margin-top: 20px;
    color: #bdc3c7;
    font-size: 14px;
    text-align: center;
}

.controls-info p {
    margin: 5px 0;
}

.controls-info strong {
    color: #e74c3c;
}

@media (max-width: 480px) {
    h1 {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    body {
        justify-content: flex-start;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .simulator-container {
        padding: 10px;
    }
}
