/* Base Styles - Reset, Body, Typography */

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

        body {
            font-family: 'Inter', 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #000000 url('../images/bg2.jpg') center/cover fixed;
            color: #FFFFFF;
            overflow-x: hidden;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.3);
            pointer-events: none;
            z-index: -1;
        }
