html, body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: #0d0d12;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#unity-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#unity-canvas {
    width: 100%;
    height: 100%;
    background: #0d0d12;
    display: block;
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

#unity-logo {
    width: 280px;
    height: 60px;
    margin: 0 auto 20px;
    color: #f5a623;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    line-height: 60px;
}

#unity-logo::before {
    content: "MISMAR GAMES";
}

#unity-progress-bar-empty {
    width: 280px;
    height: 18px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9px;
    overflow: hidden;
}

#unity-progress-bar-full {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #f5a623, #ff6b35);
    transition: width 0.2s ease;
}

#unity-warning {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 100;
}
