body {
    margin: 0;
    background-color: #fafafa;
    font-family: 'Noto Sans KR', sans-serif;
}

/* 전체 구조 */
.dogname-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px);
    padding: 40px 20px;
}

/* 중앙 카드 */
.dogname-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    padding: 50px 60px;
    text-align: center;
    max-width: 460px;
    width: 100%;
    transition: transform 0.2s ease;
}
.dogname-container:hover {
    transform: translateY(-3px);
}

/* 타이틀 */
.title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #222;
    font-weight: 700;
}
.subtitle {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 30px;
}

/* 이름 표시 */
.name-display {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #ffb833, #ffcc66);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

/* 버튼 그룹 */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 14px;
}
.btn {
    text-decoration: none;
    font-weight: 600;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}
.btn.refresh {
    background: linear-gradient(90deg, #ffcc66, #ffb833);
    color: #fff;
}
.btn.refresh:hover {
    background: linear-gradient(90deg, #ffb833, #ffa726);
    transform: translateY(-1px);
}
.btn.home {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}
.btn.home:hover {
    background: #f9f9f9;
}

/* 반응형 */
@media (max-width: 600px) {
    .dogname-container {
        padding: 40px 30px;
    }
    .name-display {
        font-size: 1.8rem;
    }
    .btn-group {
        flex-direction: column;
        gap: 10px;
    }
}
