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

body {
    background: linear-gradient(180deg, #2a1f14 0%, #1a120a 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.back-link {
    position: fixed;
    top: 10px;
    left: 10px;
    color: #d4a574;
    text-decoration: none;
    font-size: 14px;
    z-index: 100;
    padding: 5px 10px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    border-radius: 8px;
    transition: all 0.2s;
}

.back-link:hover {
    background: rgba(212, 165, 116, 0.1);
    border-color: #d4a574;
}

#game-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(212, 165, 116, 0.3);
}

#gameCanvas {
    display: block;
    cursor: pointer;
}
