/**
 * Vite 프로젝트 스타일
 */

:root {
    --primary-color: #646cff;
    --primary-hover: #535bf2;
    --bg-color: #242424;
    --text-color: rgba(255, 255, 255, 0.87);
}

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

body {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-color);
    color: var(--text-color);
}

#app {
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    margin-bottom: 2rem;
    color: #888;
}

button {
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    font-weight: 500;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s;
}

button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}
