<!DOCTYPE html>
<html lang="ko">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>시스템 점검중</title>
  <meta http-equiv="refresh" content="60;url=">
  <style>
	@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

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

    :root {
      --title-gray: #4a4a4a;
      --title-teal: #4a90b8;
      --divider: #c8d0d8;
      --text-main: #5a6472;
      --text-sub: #333333;
    }

    html, body {
      height: 100%;
    }

    body {
      font-family: 'Pretendard', sans-serif;
      background-image: url('/core/inc/images/maintenance-bg.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
    }
 
    .content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: clamp(24px, 6vw, 60px) clamp(20px, 8vw, 80px);
      max-width: 600px;
      width: 100%;
    }
 
    .icon-wrap {
      display: flex;
      justify-content: center;
      margin-bottom: clamp(24px, 4vw, 40px);
    }
 
    .icon-wrap img {
      width: clamp(100px, 16vw, 160px);
      height: auto;
    }
 
    .title {
      font-size: clamp(22px, 4.5vw, 40px);
      font-weight: 400;
      letter-spacing: -0.01em;
      margin-bottom: clamp(16px, 2.5vw, 24px);
      color: var(--title-gray);
    }
 
    .title strong {
      font-weight: 700;
      color: var(--title-teal);
    }
 
    .divider {
      width: clamp(180px, 40%, 320px);
      height: 1px;
      background: var(--divider);
      margin: 0 auto clamp(20px, 3vw, 28px);
    }
 

    .desc-secondary {
      font-size: clamp(13px, 1.8vw, 18px);
      font-weight: 300;
      color: var(--text-sub);
      line-height: 1.9;
    }
 
    @media (max-width: 480px) {
      .content { padding: 36px 20px; }
    }
 
    @media (max-width: 360px) {
      .title { font-size: 20px; }
    }
  </style>
</head>
<body>

  <main class="content" role="main">

    <div class="icon-wrap" aria-hidden="true">
      <img src="/core/inc/images/maintenance-icon.png" alt="시스템 점검 아이콘" />
    </div>

    <h1 class="title">시스템 <strong>점검중</strong> 입니다.</h1>

    <div class="divider" aria-hidden="true"></div>

    <p class="desc-secondary">
		DB서버 일시적인 장애로 점검중입니다.<br><br>
      불편을 드려 죄송하며,<br>
      빠른 복구를 위해 최선을 다하겠습니다.<br>
      감사합니다.
    </p>

  </main>

</body>
</html>
