/* 1. 폰트 및 기본 설정 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700;900&display=swap');

body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #dfdfdf; /* 선명한 격자를 위해 배경색 고정 */
    font-family: 'Noto Sans KR', sans-serif;
    overflow: hidden;

    /* ★ 격자 배경 (나노바나나 스타일로 선명하게 구현) ★ */
    background-image: 
        linear-gradient(rgba(0,0,0,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* 2. 안전 테이프 애니메이션 */
.safety-stripe {
    position: fixed;
    width: 200%;
    height: 40px;
    background: repeating-linear-gradient(45deg, #ffd700, #ffd700 20px, #222 20px, #222 40px);
    z-index: 0;
    animation: stripeScroll 10s linear infinite;
}
.safety-stripe:not(.bottom) { top: 10%; transform: rotate(-5deg); }
.safety-stripe.bottom { bottom: 10%; transform: rotate(3deg); }

@keyframes stripeScroll {
    0% { background-position: 0 0; }
    100% { background-position: -200px 0; }
}

/* 3. 중앙 컨테이너 */
.container {
    text-align: center;
    background: white;
    padding: 60px 50px;
    border: 6px solid #222;
    box-shadow: 15px 15px 0px rgba(0,0,0,0.1);
    z-index: 10;
    position: relative;
    min-width: 380px;
    border-radius: 4px;
}

/* -------------------------------------------
   ★ 사용자 요청 정밀 위치 고정 구역 ★
------------------------------------------- */
.construction-zone {
    position: relative;
    width: 250px; /* 위치 계산의 기준이 되는 너비 고정 */
    height: 100px;
    margin: 0 auto 20px auto;
}

.dino {
    font-size: 80px;
    position: absolute;
    left: 90px;  /* [사용자 값] */
    bottom: 0px; 
    z-index: 5;
}

.dino-shadow {
    position: absolute;
    width: 80px;
    height: 12px;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    bottom: -5px;
    left: 105px; 
    filter: blur(4px);
    z-index: 1;
}

.hammer-box {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 114px; /* [사용자 값] */
    bottom: 17px;  /* [사용자 값] */
    z-index: 3;
    transform-origin: right bottom; 
    animation: hammering 0.5s infinite alternate ease-in-out;
}

.hammer {
    font-size: 30px; /* [사용자 값] */
    display: block;
    line-height: 1;
}

@keyframes hammering {
    0% { transform: rotate(-30deg); }
    100% { transform: rotate(20deg); }
}
/* ------------------------------------------- */

/* 5. 로고 및 텍스트 스타일 */
.logo {
    font-weight: 900;
    font-size: 3.2rem;
    margin: 15px 0 5px;
    color: #222;
    letter-spacing: -2px;
}

.sub-title {
    background: #222;
    color: #ffd700;
    padding: 4px 12px;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
}



.notice { color: #555; line-height: 1.7; margin-bottom: 25px; }

.domain { color: #bbb; font-weight: bold; font-size: 0.9rem; letter-spacing: 1px; }