/* 전체 배경 */
body {
  margin: 0;
}

/* 컨테이너 */
.start-container {
  min-height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFF57E;
}

/* 박스 */
.start-box {
  text-align: center;
  padding: 60px 40px;
}

/* 제목 */
.start-title {
  font-size: 48px;
  color: #452829;
  margin-bottom: 20px;
}

/* 설명 */
.start-sub {
  font-size: 18px;
  color: #452829;
  line-height: 1.6;
  margin-bottom: 50px;
}

/* 이름 입력 영역 */
.name-area {
  margin-bottom: 40px;
}

.name-input {
  width: 320px;
  padding: 14px 16px;
  font-size: 16px;
  border: 2px solid #452829;
  border-radius: 8px;
  outline: none;
}

.name-input::placeholder {
  color: #999;
}

/* 개인정보 안내 */
.privacy-text {
  font-size: 13px;
  color: #452829;
  margin-top: 10px;
  line-height: 1.4;
}

/* 시작 버튼 */
.start-btn {
  background-color: #452829;
  color: #FFF57E;
  font-size: 18px;
  padding: 16px 48px;
  border: none;
  border-radius: 30px;
  cursor: pointer;

  transition: background-color 0.25s ease;
}

.start-btn:hover {
  background-color: #2f1a15;
}


/* ================================================
   반응형 미디어 쿼리 (4단계)
================================================ */

/* --- Tablet (768px ~ 1199px) --- */
@media (max-width: 1199px) {
    .start-title {
        font-size: 40px;
    }

    .start-sub {
        font-size: 16px;
    }
}

/* --- Mobile L (480px ~ 767px) --- */
@media (max-width: 767px) {
    .start-box {
        padding: 40px 24px;
    }

    .start-title {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .start-sub {
        font-size: 15px;
        margin-bottom: 36px;
    }

    .name-input {
        width: 100%;
        max-width: 320px;
    }

    .start-btn {
        font-size: 16px;
        padding: 14px 36px;
    }
}

/* --- Mobile S (~ 479px) --- */
@media (max-width: 479px) {
    .start-box {
        padding: 30px 16px;
    }

    .start-title {
        font-size: 26px;
    }

    .start-sub {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .name-input {
        width: 100%;
        font-size: 14px;
    }

    .start-btn {
        width: 100%;
        font-size: 15px;
        padding: 14px 20px;
        border-radius: 24px;
    }
}
