/* ===== BASE STYLES ===== */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Static Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Container Alignment Utility */
.container-aligned {
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Main Content */
.main-content {
    padding: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}
