html {
    height: 100%;
    width: 100%;
    background-color: #1d292c;
}
body {
    margin: 0;
    max-height: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #1d292c;
    font-family: Helvetica, arial, sans-serif;
    position: relative;
    width: 100%;

    -webkit-tap-highlight-color: transparent;
}

#application-canvas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#application-canvas.fill-mode-NONE {
    margin: auto;
}
#application-canvas.fill-mode-KEEP_ASPECT {
    width: 100%;
    height: auto;
    margin: 0;
}
#application-canvas.fill-mode-FILL_WINDOW {
    width: 100%;
    height: 100%;
    margin: 0;
}

canvas:focus {
    outline: none;
}

#lifo-badge {
    position: fixed;
    bottom: 16px;
    left: 16px;
    z-index: 9999;
    display: block;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}
#lifo-badge:hover {
    opacity: 1;
}
#lifo-badge img {
    height: 40px;
    width: auto;
    display: block;
}

#watermark {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
    user-select: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    align-items: center;
    justify-items: center;
    overflow: hidden;
}
#watermark span {
    color: rgba(255, 255, 255, 0.08);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 6px;
    transform: rotate(-35deg);
    white-space: nowrap;
}

#confidential-note {
    position: fixed;
    bottom: 26px;
    right: 16px;
    z-index: 9999;
    color: rgba(255, 255, 255, 0.6);
    font-family: Helvetica, Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    pointer-events: none;
    user-select: none;
}
