/* base.css - 기본 스타일, body, container */

@font-face {
    font-family: 'SacheonUju';
    src: url('../font/SacheonUju-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'SacheonUju', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3f 50%, #1a472a 100%);
    position: relative;
    overflow-x: hidden;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
}
