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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    font-family: 'Cinzel Decorative', serif;
}

#app-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
}

#canvas {
    display: block;
    cursor: pointer;
    touch-action: none;
}

#footer {
    position: fixed;
    bottom: 4px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

#footer a {
    color: #c9a530;
    font-family: 'Cinzel Decorative', serif;
    font-size: 11px;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}

#footer a:hover {
    opacity: 1;
    text-decoration: underline;
}