body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    display: flex;
    background-color: #121212; 
    color: #ecf0f1;
    min-height: 100vh;
}


.sidebar {
    height: 100vh;
    width: 250px;
    background-color: #1c2833; 
    color: white;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0;
    border-right: 1px solid #333;
}

.sidebar h2 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #3498db;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}


.project-btn {
    text-decoration: none;
    color: #bdc3c7;
    background-color: #2c3e50;
    width: 80%;
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.project-btn:hover {
    background-color: #3498db;
    color: white;
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}


.main-content {
    flex-grow: 1;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #121212; 
}

.game-container {
    position: relative;
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    border: 2px solid #333;
    margin-top: 20px;
}

canvas {
    display: block;
    max-width: 100%;
    outline: none;
}

.info-section {
    width: 100%;
    max-width: 800px;
    background-color: #1e1e1e; 
    color: #ecf0f1;}