.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    color: #fff;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 1rem;
    color: #333;
}

.error-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    color: #333;
}

.error-description {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.action-group {
    display: flex;
    gap: 15px;
}



.btn-home,
.btn-back{
    border: 1px solid #444;
    background: #fff;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: opacity 0.2s;
}

.btn-retry {
    border: 1px solid #444;
    color: #444444;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.2s;
}

.btn-home:hover,
.btn-retry:hover,
.btn-back:hover{
    opacity: 0.8;
    background: #222;
    color: #fff;
}

/* error.css 예시 */
.error-container {
    text-align: center;
    padding: 100px 20px;
}

.error-visual-icon {
    width: 80px;      /* 너무 크지 않은 적당한 아이콘 크기 */
    margin-bottom: 20px;
    opacity: 0.8;
}

.error-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff; /* 혹은 브랜드 컬러 */
}

.error-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 40px;
}