/* =============================================================
   BASE — Reset, typography, root wrapper
   ============================================================= */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}
