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

body {
    background-color: #1a1a2e;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#game-container {
    position: relative;
    border: 4px solid #16213e;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

#gameCanvas {
    display: block;
    background-color: #0f0f23;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

#loading-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0f0f23;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: opacity 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: #e8e8e8;
}

.loading-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #4169e1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.loading-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.loading-bar {
    width: 300px;
    height: 20px;
    background-color: #16213e;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #4169e1, #32cd32);
    transition: width 0.3s ease;
}
