* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow-x: hidden;
}

.selectable-text {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

* {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  background: #f5f5f5;
  scroll-snap-type: y mandatory;
}

/* 섹션 기본 스타일 - 일관된 여백 적용 */
.section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 30px 20px; /* 상하 30px, 좌우 20px로 통일 */
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* 시작 페이지 - 중앙 정렬 예외 */
#start {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  background: url('../img/start-bg.png') no-repeat center center/cover;
  color: #1d1d1d;
  text-align: center;
  justify-content: center;
  padding: 40px 20px; /* 시작 페이지는 상하 여백 더 크게 */
}

#start h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease;
}

#start .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.3s both;
}

#start p {
  margin-bottom: 2rem;
}

.start-btn {
  background: white;
  color: #003d74;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse 2s infinite;
}

.start-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* 각 섹션별 배경 그라데이션 */
#peace-gate {
  background: linear-gradient(180deg, #a8edea 0%, #fed6e3 100%);
}

#hidden-land {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  color: white;
}

#wind-hill {
  background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
  color: white;
}

#flowers {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

#peace-bridge {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

#millennium {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

#forgotten-village {
  background: linear-gradient(135deg, #fa8231 0%, #ffd14f 100%);
  color: white;
}

#iron-horse {
  background: linear-gradient(135deg, #f83600 0%, #f9d423 100%);
  color: white;
}

#peace-promise {
  background: linear-gradient(135deg, #0ba360 0%, #3cba92 100%);
  color: white;
}

#nature-secret {
  background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);
  color: white;
}

#peace-path {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
}

#complete {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #333;
  justify-content: flex-start; /* 완주 페이지도 다른 섹션과 동일하게 */
  padding: 30px 20px; /* 일관된 여백 적용 */
}

/* 퀴즈 컨테이너 - 일관된 여백과 크기 */
.quiz-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  max-width: 450px; /* 최대 너비 통일 */
  width: 100%;
  margin: 20px 0; /* 상하 여백 통일 */
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

/* 완주 페이지 특별 처리 */
#complete .quiz-container {
  text-align: center;
  max-width: 500px; /* 완주 페이지만 약간 더 크게 */
  padding: 20px;
}

.quiz-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.quiz-info {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.ar-info {
  background: #e3f2fd;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #333;
}

.ar-steps {
  list-style: none;
  padding: 10px;
}

.ar-steps li {
  padding: 8px 0;
  color: #1976d2;
  font-weight: 500;
}

.ar-steps li:before {
  content: '✓ ';
  font-weight: bold;
  margin-right: 8px;
}

.content-box {
  background: white;
  border-radius: 15px;
  padding: 25px;
  margin: 20px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: black;
}

.question-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  border-radius: 15px;
  margin: 20px 0;
}

.answer-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.answer-list li {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px;
  margin: 8px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  border: 2px solid transparent;
}

.answer-list li:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

.answer-list li.correct {
  background: rgba(76, 175, 80, 0.3);
  border-color: #4caf50;
  animation: correctPulse 0.6s ease;
}

.answer-list li.incorrect {
  background: rgba(244, 67, 54, 0.3);
  border-color: #f44336;
  animation: shake 0.5s ease;
}

.answer-list li.disabled {
  pointer-events: none;
  opacity: 0.7;
}

.quiz-result {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  display: none;
}

.quiz-result.correct {
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  color: white;
}

.quiz-result.incorrect {
  background: linear-gradient(135deg, #f44336, #ff9800);
  color: white;
}

.completed-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #4caf50;
  color: white;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.fireworks {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.firework {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  animation: firework 1.5s ease-out forwards;
}

.ar-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: transform 0.3s;
  text-align: center;
  width: 100%;
  border: none;
  cursor: pointer;
}

.ar-btn:hover {
  transform: scale(1.05);
}

.completion-badge {
  width: 150px;
  height: 150px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 20px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: rotate 3s linear infinite;
}

/* 완주 페이지 전용 스타일들 */
.verification-container {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.verification-badge, .success-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.verification-badge.incomplete {
  background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
}

.success-badge {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  animation: successPulse 2s ease-in-out infinite;
}

.progress-overview {
  margin: 30px 0;
}

.progress-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: conic-gradient(#28a745 0deg, #28a745 var(--progress, 0deg), #e9ecef var(--progress, 0deg));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  position: relative;
}

.progress-inner {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: #333;
}

.progress-text {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

.verify-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin: 20px 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

.verify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.continue-btn {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin: 10px 5px;
  transition: all 0.3s ease;
}

.retry-btn {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin: 10px 5px;
  transition: all 0.3s ease;
}

.share-btn {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin: 20px 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(23, 162, 184, 0.3);
}

.requirement-box {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #dc3545;
}

.requirement-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.req-label {
  color: #666;
  font-size: 0.9rem;
}

.req-value {
  font-weight: bold;
  color: #333;
}

.req-value.highlight {
  color: #dc3545;
  font-size: 1.1rem;
}

.achievement-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 20px;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.achievement-header {
  margin-bottom: 25px;
}

.achievement-header h3 {
  margin: 0 0 10px 0;
  font-size: 1.4rem;
}

.achievement-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.achievement-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 25px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffd700;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.9;
}

.stamps-collection h4 {
  margin: 25px 0 15px 0;
  font-size: 1.1rem;
}

.stamp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.stamp-item {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 8px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.mission-status h4 {
  margin: 20px 0 15px 0;
  color: #333;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

.mission-item {
  padding: 10px;
  border-radius: 10px;
  font-size: 0.85rem;
  text-align: center;
  border: 2px solid;
}

.mission-item.completed {
  background: #d4edda;
  color: #155724;
  border-color: #28a745;
}

.mission-item.incomplete {
  background: #f8d7da;
  color: #721c24;
  border-color: #dc3545;
}

.completion-message {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  margin: 20px 0;
  line-height: 1.8;
  color: #495057;
}

.highlight-text {
  color: #28a745;
  font-weight: bold;
}

.common-actions {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
}

.back-btn {
  background: #6c757d;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin: 10px 0;
  transition: all 0.3s ease;
}

.reset-btn {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: transform 0.3s, background 0.3s;
  text-align: center;
  width: 100%;
  border: none;
  cursor: pointer;
}

.reset-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 50% auto;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  transform: translateY(-50%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.modal-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}

.modal-btn:hover {
  transform: scale(1.05);
}

.modal-btn.confirm {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
}

.modal-btn.cancel {
  background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
  color: white;
}

.celebration {
  animation: celebrationBounce 1s ease-in-out;
}

#celebration-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffd700;
  animation: confettiFall 3s linear forwards;
}

.firework-burst {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: fireworkBurst 2s ease-out forwards;
}

/* 네비게이션 도트 */
.nav-dots {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 8px 0;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-dot.active {
  background: white;
  transform: scale(1.5);
}

/* 애니메이션 키프레임 */
@keyframes correctPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes firework {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes celebrationBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes confettiFall {
  0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

@keyframes fireworkBurst {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .section {
    padding: 25px; /* 태블릿에서 모든 방향 25px */
  }

  #start h1 {
    font-size: 2rem;
  }

  .quiz-title {
    font-size: 1.3rem;
  }

  .quiz-container {
    max-width: 400px;
  }

  .nav-dots {
    right: 10px;
  }

  .nav-dot {
    margin: 6px 0;
  }

  .modal-content {
    margin: 40% auto;
    width: 85%;
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 20px; /* 모바일에서 모든 방향 20px */
  }

  .quiz-container {
    max-width: 350px;
    padding: 20px; /* 섹션과 동일한 패딩 */
    margin: auto;
  }

  #start h1 {
    font-size: 1.8rem;
  }

  .start-btn {
    padding: 12px 30px;
    font-size: 1rem;
    margin-top: 20px;
  }

  .nav-dots {
    right: 8px;
  }

  .achievement-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .stamp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .verification-badge, .success-badge {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }
  
  .achievement-card {
    padding: 20px;
  }

  .modal-content {
    margin: 30% auto;
    padding: 20px;
  }
}

@media (max-width: 375px) {
  .section {
    padding: 15px; /* 작은 모바일에서 모든 방향 15px */
  }

  .quiz-container {
    padding: 15px; /* 섹션과 동일한 패딩 */
  }

  #start h1 {
    font-size: 1.6rem;
  }
}

@media (max-width: 320px) {
  .section {
    padding: 12px; /* 매우 작은 화면에서 모든 방향 12px */
  }

  .quiz-container {
    padding: 12px; /* 섹션과 동일한 패딩 */
  }

  #start h1 {
    font-size: 1.4rem;
  }
}

.completion-main {
  text-align: center;
  padding: 20px 0;
}

.completion-title {
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.completion-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* 스탬프 컬렉션 그리드 */
.stamps-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 30px 0;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
}

.stamp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.stamp-image {
  width: 60px;
  /* height: 60px;
  border-radius: 50%; */
  object-fit: cover;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  opacity: 0.4;
  filter: grayscale(100%);
}

.stamp-image.completed {
  opacity: 1;
  filter: grayscale(0%);
  /* border-color: #28a745; */
  /* box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3); */
}

.stamp-label {
  font-size: 0.7rem;
  color: #666;
  margin-top: 5px;
  text-align: center;
  line-height: 1.2;
}

.stamp-label.completed {
  color: #28a745;
  font-weight: 600;
}

/* 완주 인증 버튼 */
.completion-verify-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin: 30px 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
  width: 100%;
  max-width: 300px;
}

.completion-verify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* 하단 액션 버튼들 */
.bottom-actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-btn {
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.action-btn.reset {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
}

.action-btn.home {
  background: #6c757d;
  color: white;
}

/* 성공 축하 컨테이너 */
.success-container {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: bounce 1s ease-in-out infinite;
}

.success-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #28a745;
  margin-bottom: 15px;
}

.success-message {
  font-size: 1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.completion-stats {
  display: flex;
  justify-content: space-around;
  margin: 30px 0;
  padding: 20px;
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  border-radius: 15px;
  color: white;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

.share-completion-btn {
  background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin: 20px 0;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
}

.back-to-main-btn {
  background: #6c757d;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

/* 미달 안내 컨테이너 */
.insufficient-container {
  text-align: center;
  padding: 20px 0;
}

.insufficient-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0.7;
}

.insufficient-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #dc3545;
  margin-bottom: 15px;
}

.insufficient-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.continue-mission-btn {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin: 10px;
  transition: all 0.3s ease;
}

.retry-verification-btn {
  background: #6c757d;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin: 10px;
}

/* 축하 효과 */
#celebration-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffd700;
  animation: confettiFall 3s linear forwards;
}

.firework-burst {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: fireworkBurst 2s ease-out forwards;
}

/* 애니메이션 */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes confettiFall {
  0% { transform: translateY(-100vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

@keyframes fireworkBurst {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}

/* 반응형 디자인 */
@media (max-width: 480px) {
  .stamps-collection-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 2px;
  }
  
  .stamp-image {
    width: 80px;
    /* height: 80px; */
  }
  
  .completion-title {
    font-size: 1.2rem;
  }
  
  .completion-subtitle {
    font-size: 0.9rem;
  }
  
  .bottom-actions {
    margin-top: 30px;
  }

  /* 기본정보 입력 모달 스타일 - style.css에 추가 */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-container {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 30px;
  max-width: 400px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.peace-symbol {
  position: absolute;
  font-size: 30px;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.peace-symbol:first-child {
  top: 20px;
  left: 30px;
  animation-delay: -2s;
}

.peace-symbol:nth-child(2) {
  bottom: 20px;
  right: 30px;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.modal-header {
  text-align: center;
  margin-bottom: 20px;
}

.modal-title {
  color: #2d5016;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.division-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, #28a745, transparent);
  margin: 20px 0;
  border-radius: 1px;
}

.modal-body {
  margin-bottom: 25px;
}

.discovery-message {
  text-align: center;
  margin-bottom: 25px;
}

.discovery-text {
  color: #2d5016;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.discovery-subtext {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.input-group {
  margin-bottom: 20px;
}

.input-label {
  display: block;
  color: #2d5016;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.input-field {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 14px;
  background: white;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.input-field::placeholder {
  color: #adb5bd;
}

.error-message {
  color: #dc3545;
  font-size: 13px;
  text-align: center;
  margin-top: 10px;
  padding: 8px;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 6px;
}

.modal-actions {
  display: flex;
  justify-content: center;
}

.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.btn-confirm {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-confirm:active {
  transform: translateY(0);
}

/* 모바일 반응형 */
@media (max-width: 480px) {
  .modal-container {
    margin: 10px;
    padding: 20px;
    max-width: none;
  }
  
  .modal-title {
    font-size: 18px;
  }
  
  .discovery-text {
    font-size: 15px;
  }
  
  .discovery-subtext {
    font-size: 13px;
  }

  /* 섹션 블러/모자이크 효과 CSS - style.css에 추가 */

/* 기본 섹션 스타일 (블러 효과 적용) */
.section:not(#start) {
    position: relative;
    overflow: hidden;
}

/* 블러 오버레이 기본 스타일 */
.section:not(#start)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(15px) saturate(0.3);
    -webkit-backdrop-filter: blur(15px) saturate(0.3);
    background: rgba(255, 255, 255, 0.4);
    z-index: 10;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* 모자이크 효과를 위한 추가 레이어 */
.section:not(#start)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 2px,
            rgba(255, 255, 255, 0.1) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 2px,
            rgba(255, 255, 255, 0.1) 4px
        );
    z-index: 11;
    opacity: 0.6;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* 컨텐츠 블러 효과 */
.section:not(#start):not(#complete):not(.unlocked) .quiz-container,
.section:not(#start):not(#complete):not(.unlocked) .quiz-title,
.section:not(#start):not(#complete):not(.unlocked) .quiz-info,
.section:not(#start):not(#complete):not(.unlocked) .question-box,
.section:not(#start):not(#complete):not(.unlocked) .ar-info,
.section:not(#start):not(#complete):not(.unlocked) .content-box,
.section:not(#start):not(#complete):not(.unlocked) .ar-btn,
.section:not(#start):not(#complete):not(.unlocked) .answer-list,
.section:not(#start):not(#complete):not(.unlocked) button,
.section:not(#start):not(#complete):not(.unlocked) li {
    /* filter: blur(3px) grayscale(0.7); */
    /* -webkit-filter: blur(3px) grayscale(0.7); */
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
    pointer-events: none !important;
    cursor: default !important;
    user-select: none !important;
}

.section.unlocked .quiz-container,
.section.unlocked .quiz-title,
.section.unlocked .quiz-info,
.section.unlocked .question-box,
.section.unlocked .ar-info,
.section.unlocked .content-box,
.section.unlocked .ar-btn,
.section.unlocked .answer-list,
.section.unlocked button,
.section.unlocked li {
    filter: none !important;
    -webkit-filter: none !important;
    transform: scale(1) !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    user-select: auto !important;
}

/* 잠금 아이콘 표시 */
.section:not(#start):not(.unlocked) .quiz-container::before {
    content: '🔒';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    z-index: 12;
    animation: lockPulse 2s ease-in-out infinite;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* 잠금 해제 상태 클래스 */
.section.unlocked::before {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    opacity: 0 !important;
}

.section.unlocked::after {
    opacity: 0 !important;
}

.section.unlocked .quiz-container,
.section.unlocked .quiz-title,
.section.unlocked .quiz-info,
.section.unlocked .question-box,
.section.unlocked .ar-info,
.section.unlocked .content-box {
    filter: none !important;
    -webkit-filter: none !important;
    transform: scale(1) !important;
    pointer-events: auto !important;  /* 이 줄 추가 */
    cursor: pointer !important;        /* 이 줄 추가 */
    user-select: auto !important;      /* 이 줄 추가 */
}

.section.unlocked .quiz-container::before {
    display: none !important;
}

/* 부분 해제 상태 (미리보기) */
.section.preview::before {
    backdrop-filter: blur(8px) saturate(0.6);
    -webkit-backdrop-filter: blur(8px) saturate(0.6);
    background: rgba(255, 255, 255, 0.2);
}

.section.preview::after {
    opacity: 0.3;
}

.section.preview .quiz-container,
.section.preview .quiz-title,
.section.preview .quiz-info,
.section.preview .question-box,
.section.preview .ar-info,
.section.preview .content-box {
    filter: blur(1px) grayscale(0.3);
    -webkit-filter: blur(1px) grayscale(0.3);
    transform: scale(0.98);
}

.section.preview .quiz-container::before {
    content: '👀';
    font-size: 36px;
    animation: previewPulse 1.5s ease-in-out infinite;
}

/* 해제 중 애니메이션 상태 */
.section.unlocking::before {
    animation: unlockEffect 1.2s ease-out forwards;
}

.section.unlocking::after {
    animation: unlockMosaicEffect 1.2s ease-out forwards;
}

.section.unlocking .quiz-container,
.section.unlocking .quiz-title,
.section.unlocking .quiz-info,
.section.unlocking .question-box,
.section.unlocking .ar-info,
.section.unlocking .content-box {
    animation: contentReveal 1.2s ease-out forwards;
}

.section.unlocking .quiz-container::before {
    animation: lockDisappear 1.2s ease-out forwards;
}

/* 키프레임 애니메이션들 */
@keyframes lockPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.8;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1); 
        opacity: 1;
    }
}

@keyframes previewPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg); 
        opacity: 0.7;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05) rotate(5deg); 
        opacity: 1;
    }
}

@keyframes unlockEffect {
    0% {
        backdrop-filter: blur(15px) saturate(0.3);
        -webkit-backdrop-filter: blur(15px) saturate(0.3);
        background: rgba(255, 255, 255, 0.4);
        opacity: 1;
    }
    50% {
        backdrop-filter: blur(25px) saturate(0.1);
        -webkit-backdrop-filter: blur(25px) saturate(0.1);
        background: rgba(255, 255, 255, 0.6);
    }
    100% {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: transparent;
        opacity: 0;
    }
}

@keyframes unlockMosaicEffect {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

@keyframes contentReveal {
    0% {
        filter: blur(3px) grayscale(0.7);
        -webkit-filter: blur(3px) grayscale(0.7);
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        filter: blur(1px) grayscale(0.3);
        -webkit-filter: blur(1px) grayscale(0.3);
        transform: scale(0.97);
        opacity: 0.85;
    }
    100% {
        filter: none;
        -webkit-filter: none;
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes lockDisappear {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3) rotate(15deg);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(0) rotate(45deg);
        opacity: 0;
        display: none;
    }
}

/* 특별한 효과들 */
.section.golden-unlock::before {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 255, 255, 0.2) 70%);
    animation: goldenShimmer 2s ease-in-out infinite;
}

.section.golden-unlock .quiz-container::before {
    content: '✨';
    color: gold;
    text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.5);
}

@keyframes goldenShimmer {
    0%, 100% {
        background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 255, 255, 0.2) 70%);
    }
    50% {
        background: radial-gradient(circle, rgba(255, 215, 0, 0.5) 0%, rgba(255, 255, 255, 0.3) 70%);
    }
}

/* 모바일 최적화 */
@media (max-width: 768px) {
    .section:not(#start)::before {
        backdrop-filter: blur(10px) saturate(0.4);
        -webkit-backdrop-filter: blur(10px) saturate(0.4);
    }
    
    .section:not(#start) .quiz-container,
    .section:not(#start) .quiz-title,
    .section:not(#start) .quiz-info,
    .section:not(#start) .question-box,
    .section:not(#start) .ar-info,
    .section:not(#start) .content-box {
        filter: blur(2px) grayscale(0.6);
        -webkit-filter: blur(2px) grayscale(0.6);
    }
    
    .section:not(#start) .quiz-container::before {
        font-size: 36px;
    }
}

/* 고해상도 디스플레이 최적화 */
@media (min-resolution: 2dppx) {
    .section:not(#start)::after {
        background-size: 2px 2px;
    }
}

/* 접근성을 위한 대체 스타일 (사용자가 motion을 줄이길 원하는 경우) */
@media (prefers-reduced-motion: reduce) {
    .section:not(#start)::before,
    .section:not(#start)::after,
    .section:not(#start) .quiz-container,
    .section:not(#start) .quiz-title,
    .section:not(#start) .quiz-info,
    .section:not(#start) .question-box,
    .section:not(#start) .ar-info,
    .section:not(#start) .content-box {
        transition: none;
    }
    
    .section:not(#start) .quiz-container::before {
        animation: none;
    }
}
}

/* Complete 섹션 블러 강제 제거 - style.css 맨 아래에 추가 */

/* Complete 섹션은 절대 블러 처리하지 않음 */
#complete {
    position: relative !important;
}

#complete::before,
#complete::after {
    display: none !important;
    content: none !important;
}

#complete .quiz-container,
#complete .quiz-title,
#complete .quiz-info,
#complete .question-box,
#complete .ar-info,
#complete .content-box {
    filter: none !important;
    -webkit-filter: none !important;
    transform: none !important;
    opacity: 1 !important;
}

#complete .quiz-container::before {
    display: none !important;
    content: none !important;
}

/* 확실히 하기 위한 추가 스타일 */
section#complete {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
}

section#complete * {
    filter: none !important;
    -webkit-filter: none !important;
}

/* Complete 섹션의 모든 하위 요소들 정상화 */
#complete .completion-main,
#complete .success-container,
#complete .insufficient-container,
#complete .stamps-collection-grid,
#complete .completion-verify-btn,
#complete .bottom-actions {
    filter: none !important;
    -webkit-filter: none !important;
    transform: none !important;
    opacity: 1 !important;
}

/* 잠금 오버레이 스타일 */
.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lock-overlay:hover {
    background: rgba(0, 0, 0, 0.85);
}

.lock-content {
    text-align: center;
    max-width: 320px;
    animation: lockFadeIn 0.6s ease-out;
}

.lock-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: lockShake 2s ease-in-out infinite;
}

.lock-title {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.lock-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.lock-message strong {
    color: #ffd700;
    font-weight: bold;
}

.lock-btn {
    background: linear-gradient(200deg, #ffffff 0%, #f8f1ff 100%);
    color: #003d74;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(208, 217, 255, 0.4);
    transition: all 0.3s ease;
}

.lock-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.lock-btn:active {
    transform: translateY(0);
}

/* 섹션이 해제되면 오버레이 숨김 */
.section.unlocked .lock-overlay {
    display: none !important;
    pointer-events: none !important;
    opacity: 0 !important;
}

/* 애니메이션 */
@keyframes lockFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lockShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-5deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(5deg);
    }
}

/* 모바일 최적화 */
@media (max-width: 480px) {
    .lock-icon {
        font-size: 48px;
    }
    
    .lock-title {
        font-size: 1.5rem;
    }
    
    .lock-message {
        font-size: 1rem;
    }
    
    .lock-btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
}

/* 플로팅 버튼 컨테이너 */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 플로팅 버튼 기본 스타일 */
.float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    min-width: 110px;
    white-space: nowrap;
}

/* QR 스캔 버튼 */
.float-btn.qr-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* 인증 현황 버튼 */
.float-btn.status-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

/* 호버 효과 */
.float-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.float-btn.status-btn:hover {
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

.float-btn:active {
    transform: translateY(0) scale(1);
}

/* 버튼 아이콘 */
.btn-icon {
    font-size: 18px;
    line-height: 1;
}

/* 버튼 라벨 */
.btn-label {
    font-size: 14px;
}

/* 펄스 애니메이션 (QR 버튼에만 적용) */
.float-btn.qr-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: rgba(102, 126, 234, 0.4);
    animation: btnPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes btnPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* 태블릿 최적화 */
@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 25px;
        gap: 10px;
    }
    
    .float-btn {
        padding: 10px 16px;
        min-width: 100px;
        font-size: 13px;
    }
    
    .btn-icon {
        font-size: 16px;
    }
    
    .btn-label {
        font-size: 13px;
    }
}

/* 모바일 최적화 */
@media (max-width: 480px) {
    .floating-buttons {
        right: 12px;
        bottom: 20px;
        gap: 8px;
    }
    
    .float-btn {
        padding: 10px 14px;
        min-width: 90px;
        font-size: 12px;
    }
    
    .btn-icon {
        font-size: 16px;
    }
    
    .btn-label {
        font-size: 12px;
    }
}

/* 작은 모바일 화면 - 아이콘만 표시 */
@media (max-width: 360px) {
    .float-btn {
        min-width: auto;
        padding: 12px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
    
    .btn-label {
        display: none;
    }
    
    .btn-icon {
        font-size: 20px;
    }
}

/* 접근성: 포커스 스타일 */
.float-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* 버튼이 다른 요소를 가리지 않도록 */
.floating-buttons {
    pointer-events: none;
}

.float-btn {
    pointer-events: auto;
}