body {
    background: url('https://s41.ax1x.com/2026/02/28/peSVXoF.webp') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: var(--text-primary);
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.08) 0%, 
        rgba(139, 92, 246, 0.05) 30%,
        rgba(6, 182, 212, 0.05) 60%,
        rgba(236, 72, 153, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
}

@media (max-width: 768px) {
    body {
        background: url('https://s21.ax1x.com/2025/10/14/pVqCCcQ.jpg') no-repeat center center fixed;
        background-size: cover;
    }
}

.container {
    width: 90%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
