
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   background-image: url("ozadje.jpg");
    color: #e0e0e0;
    margin: 0;
    padding: 20px;
    min-height: 100vh;
}

h1 { 
    text-align: center;
    margin-bottom: 30px; 
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ff4500; 
}


.game-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr; 
    gap: 40px; 
    align-items: flex-start;
    width: 100%;
    margin: 0 auto;
}


.maze-container {
    grid-column: 2;
   
    padding: 15px;
     
}


.sidebar {
    grid-column: 3; 
    background: #1f1f1f; 
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #444;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 260px; 
    justify-self: start;
}


.timer-box {
    font-size: 32px;
    font-weight: bold;
    font-family: 'Courier New', Courier, monospace; 
    color: #ffcc00; 
    background: #000; 
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #ff4500;
    text-align: center;
}


button {
    background: linear-gradient(45deg, #8b0000, #e74c3c, #ff4500);
    color: white;
    border: none;
    padding: 18px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s;
}

button:hover { 
    background: linear-gradient(45deg, #e74c3c, #ff4500, #ff6347);
    transform: translateY(-2px);
}

button:active { 
    transform: translateY(1px) scale(0.98); 
}

button:disabled {
    cursor: not-allowed;
    background: #444;
    color: #888;
    opacity: 0.7;
}


.instructions {
    font-size: 15px;
    color: #e0ac69; 
    text-align: left;
    margin-top: 10px;
    line-height: 1.6;
    background: #2a2a2a;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #444;
}

.instructions strong {
    color: #ff8c00; 
}