/* base.css - Grundlagen und globale Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1100px;
}

h1 { text-align: center; color: #333; }