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

body {
    width: 1920px;
    height: 1080px;
    overflow: hidden;
    font-family: -apple-system, 'DM Sans', 'Helvetica Neue', sans-serif;
    color: white;
}

#app {
    width: 100%;
    height: 100%;
    position: relative;
    background: #051420;
    background-size: cover;
    background-position: center;
}

/* Widget container */
.widgets {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.widget {
    position: absolute;
    overflow: hidden;
}

.widget.glass {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.15);
}

.widget-label {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    line-height: 1.1;
    padding: 0 4%;
    word-wrap: break-word;
}
