body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Trebuchet MS", Arial, sans-serif;
    color: #f0ffe8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.85);
    background: #071810 url('Zxogx.jpg') center center / cover no-repeat fixed;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: rgba(4, 18, 10, 0.35);
}

.game-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    border-radius: 18px;
    background: rgba(7, 24, 16, 0.72);
    border: 2px solid rgba(154, 205, 50, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}

#gameCanvas {
    border: 5px solid #4a2c0b;
    box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.info {
    min-width: 180px;
    background: linear-gradient(180deg, rgba(20, 50, 28, 0.92), rgba(10, 30, 18, 0.95));
    padding: 20px 22px;
    border-radius: 12px;
    border: 1px solid rgba(154, 205, 50, 0.35);
}

.info h2 {
    margin: 0 0 12px;
    color: #ffd700;
    letter-spacing: 0.04em;
}

.info p {
    margin: 8px 0;
    line-height: 1.45;
    color: #d8f0c8;
}

.info p:last-child {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #a8c898;
}
