body {
    font-family: 'Pretendard', sans-serif;
    background-color: #0f1012;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 535px;
    margin: 0 auto;
    padding: 120px 20px 320px;
    text-align: center;
}

.logo {
    width: 72px;
    height: auto;
    margin-bottom: 20px;
}

.title {
    font-size: clamp(20px, 5.5vw, 28px);
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 56px;
}

.btn-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-type {
    display: block;
    width: 90%;
    margin: 0 auto;
    padding: 16px 20px;
    background-color: #484B4E;
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: clamp(14px, 3.8vw, 20px);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.15s;
}

.btn-type:hover {
    background-color: #5a5d60;
}
