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

body,
html {
    width: 100%;
    height: 100%;
    background-color: #050505;
    color: #fff;
    font-family: 'Be Vietnam Pro', sans-serif;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Vegas Backdrop */
body::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%),
        linear-gradient(rgba(30, 20, 20, 1) 1px, transparent 1px) 0 0 / 80px 80px,
        linear-gradient(90deg, rgba(30, 20, 20, 1) 1px, transparent 1px) 0 0 / 80px 80px;
    z-index: 0;
}

#app-container {
    perspective: 1200px;
    z-index: 10;
}
