/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #0a0a0f;
    color: #f0f0f0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Анимированный фон с движением из правого верхнего угла */
.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: linear-gradient(135deg, #0a0a0f 0%, #151525 25%, #0a0a1f 50%, #1a1a2e 75%, #0a0a0f 100%);
    background-size: 300% 300%;
    animation: gradientMove 20s ease infinite;
}

.bg2 {
    z-index: -2;
    background: radial-gradient(circle at 90% 10%, rgba(138, 43, 226, 0.3) 0%, transparent 40%);
    animation: drift 25s infinite linear;
}

.bg3 {
    z-index: -1;
    background: radial-gradient(circle at 10% 90%, rgba(0, 191, 255, 0.2) 0%, transparent 40%);
    animation: drift 30s infinite linear reverse;
}

@keyframes gradientMove {
    0% { background-position: 100% 0%; }
    50% { background-position: 0% 100%; }
    100% { background-position: 100% 0%; }
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    33% { transform: translate(20px, -15px); }
    66% { transform: translate(-10px, 20px); }
    100% { transform: translate(0, 0); }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}