/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Base Form Elements */
input[type="number"],
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
select {
    font-size: 16px;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px 20px;
    min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}