@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

:root {
  --black-color: #101117;
  --white-color: #fff;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

html, body {
  scroll-behavior: auto; /* Ensure instant scroll to top */
}

body {
  font-family: "Oswald", sans-serif;
  background: linear-gradient(
    to right,
    #fbfaff 0%,
    40.00000059604645%,
    #fbfaff 80.0000011920929%,
    90.00000059604645%,
    #ecf0fb 100%
  );
  color: var(--black-color);
  font-size: 16px;
  line-height: 1.3;
  overflow-x: hidden;
}

body.loading {
  overflow: hidden;
}

canvas,
#webgl {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

a {
  text-decoration: none;
  color: var(--black-color);
}

ul,
ol {
  list-style: none;
}

section {
  margin: 0;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

h1 {
  font-size: 160px;
}

h2 {
  font-size: 34px;
}

button {
  outline: none;
  border: none;
  cursor: pointer;
}

.mouse-effect {
  opacity: 0;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999999;
}

.circle {
  position: absolute;
  background-color: var(--black-color);
  width: 10px;
  height: 10px;
  left: 0px;
  top: 0px;
  border-radius: 100%;
  z-index: 999999;
  user-select: none;
  pointer-events: none;
  transition: all 0.05s;
}

.circle-follow {
  position: absolute;
  border: 1px solid var(--black-color);
  width: 40px;
  height: 40px;
  left: 0px;
  top: 0px;
  border-radius: 100%;
  z-index: 999999;
  user-select: none;
  pointer-events: none;
  transition: all 0.1s;
}

.ham-btn {
  background: transparent;
  border: none;
  display: none; /* 기본적으로 숨김 */
}

.ham-btn i {
  font-size: 24px;
  color: var(--black-color);
  line-height: 1;
}

/* 모바일 메뉴 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 0 0 20px 20px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  list-style: none;
  border-bottom: none;
}

.mobile-menu ul li:last-child {
  text-align: center;
}

.mobile-menu ul li a {
  display: block;
  padding: 16px 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-menu ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(254, 151, 142, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-menu ul li a:hover {
  background-color: rgba(254, 151, 142, 0.1);
  transform: translateX(5px);
  padding-left: 28px;
}

.mobile-menu ul li a:hover::before {
  left: 100%;
}

.mobile-menu ul li a:active {
  transform: translateX(3px) scale(0.98);
  background-color: rgba(254, 151, 142, 0.15);
}

.mobile-download-btn {
  width: auto;
  background-color: #fe978e;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 8px auto;
  display: block;
}

.mobile-download-btn:hover {
  background-color: #e8877e;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(254, 151, 142, 0.3);
}

.mobile-menu-handle {
  width: 40px;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  margin: 20px auto 10px;
  cursor: grab;
  transition: background-color 0.3s ease;
}

.mobile-menu-handle:active {
  cursor: grabbing;
  background-color: rgba(0, 0, 0, 0.3);
}

.main-icon {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: fit-content;
  z-index: -1;
  transition: opacity 0.5s ease-in-out;
}

.app-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.3));
  border-radius: 60px;
  overflow: hidden;
}

.hide-text {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.header-inner {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1152px;
  margin: 0 auto;
  padding: 16px 0;
}

.header-inner nav {
  display: flex;
  align-items: center;
  gap: 80px;
}

.download-btn {
  background-color: #fe978e;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.download-btn:hover {
  background-color: #e8877e;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(254, 151, 142, 0.3);
}

.header-inner .navbar-brand {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #fe978e;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.header-inner nav ul {
  display: flex;
  display: -webkit-flex;
  gap: 120px;
  align-items: center;
  -webkit-align-items: center;
}

.header-inner nav ul a {
  font-weight: 800;
  position: relative;
  text-transform: uppercase;
}

.header-inner nav ul a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--black-color);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.header-inner nav ul a:hover::after {
  width: 100%;
}

.header-inner .ham-btn img {
  width: 40px;
}

.rotated-text {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translate(45%, -600%) rotate(90deg);
  text-transform: uppercase;
  font-size: 14px;
}

.banner-inner {
  padding: 100px 24px 100px;
  /* 구형 브라우저용 폴백 */
  min-height: calc(100vh - 90px);
  /* 최신 브라우저: 주소창/네비게이션 바가 펴져 있을 때의 높이를 기준으로 고정 */
  min-height: calc(100svh - 90px);
  gap: 10px;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  height: 100%;
  max-width: 1152px;
  margin: 0 auto;
}

.banner-inner .top-desc {
  padding-left: 0;
}

.banner-inner .top-desc h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.banner-inner .top-desc h6 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}

.banner-inner .top-desc span {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: var(--black-color);
  border-radius: 50px;
}

.banner-inner .bottom-desc {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  align-items: flex-end;
  -webkit-align-items: flex-end;
}

.banner-inner .bottom-desc-secondary {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 1rem;
}

.banner-inner .bottom-desc-secondary .top-desc {
  text-align: right;
  padding-right: 0;
}

/* 칭찬 설명 카드 */
.praise-card {
  display: flex;
  gap: 10rem;
  margin: 3rem auto 0 auto;
  align-items: center;
  max-width: 1000px;
}

.praise-image {
  flex: 1.5;
  max-width: 500px;
  margin-left: 0;
  position: relative;
}

.praise-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* 떠있는 칭찬 카드 */
.floating-praise-card {
  position: absolute;
  right: -90px;
  top: 64px;
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 25px -5px rgba(61, 61, 61, 0.1), 0 10px 10px -5px rgba(61, 61, 61, 0.04);
  border: 1px solid #F5EDE4;
  animation: floatUpDown 3s ease-in-out infinite;
}

.floating-praise-card-left {
  right: auto;
  left: -100px;
  top: auto;
  bottom: 64px;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(-3.83px);
  }
  50% {
    transform: translateY(3.83px);
  }
}

.floating-card-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.floating-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.heart-icon {
  width: 20px;
  height: 20px;
  color: #fe978e;
  fill: #fe978e;
  stroke: #fe978e;
}

.floating-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.floating-card-label {
  font-size: 12px;
  color: #6B6B6B;
  margin: 0;
  line-height: 1.2;
}

.floating-card-message {
  font-size: 14px;
  font-weight: 500;
  color: #3D3D3D;
  margin: 0;
  line-height: 1.3;
}

.praise-content {
  flex: 0.8;
  padding-left: 0;
}

.praise-content h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #fe978e;
  font-weight: 700;
  background: linear-gradient(135deg, #fe978e, #ffb3a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
  position: relative;
}

.praise-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #fe978e, #ffb3a7);
  border-radius: 2px;
}

.praise-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.2rem;
  text-align: left;
  font-weight: 400;
}

.praise-content p:first-of-type {
  margin-bottom: 0;
}

/* 앱 버튼 데모 */
.app-button-demo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 2rem;
  margin-left: 0;
  padding-left: 0;
  width: 100%;
  text-align: left;
  pointer-events: none;
}

.praise-add-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fe978e, #ffb3a7);
  border: none;
  color: white;
  font-size: 32px;
  font-weight: 300;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(254, 151, 142, 0.3);
  transition: all 0.3s ease;
}

.praise-add-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(254, 151, 142, 0.4);
}

.praise-add-btn:active {
  transform: scale(0.95);
}

.button-label {
  font-size: 1rem;
  color: #fe978e;
  font-weight: 600;
  margin: 0;
}

.banner-inner .bottom-desc .left-desc h1 {
  margin-bottom: 20px;
}

.banner-inner .bottom-desc .left-desc .desc-inner h5 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.banner-inner .bottom-desc .left-desc .desc-inner h6 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0px;
}

.banner-inner .bottom-desc .middle-desc h2 {
  text-transform: uppercase;
  letter-spacing: -2px;
}

.banner-inner .bottom-desc .right-desc h1 {
  margin-bottom: 20px;
  padding-right: 60px;
  position: relative;
  text-align: right;
}

.banner-inner .bottom-desc .right-desc h1::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20%;
  height: 6px;
  background: var(--black-color);
  transform: translate(-30%, 100%);
  -webkit-transform: translate(-30%, 100%);
}

.banner-inner .bottom-desc .right-desc .desc-inner {
  display: flex;
  display: -webkit-flex;
  gap: 50px;
  align-items: center;
  -webkit-align-items: center;
}

/* 소셜 링크 절대 고정 */
.right-desc {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.right-desc .desc-inner {
  display: flex;
  display: -webkit-flex;
  gap: 50px;
  align-items: center;
  -webkit-align-items: center;
}

.right-desc .desc-inner ul {
  display: flex;
  display: -webkit-flex;
  gap: 15px;
}

.right-desc .desc-inner ul li img {
  width: 16px;
}

.right-desc .desc-inner ul li i,
.right-desc .desc-inner ul li svg {
  font-size: 20px;
  width: 20px;
  height: 20px;
}

.banner-inner .bottom-desc .right-desc .desc-inner span {
  text-transform: uppercase;
  font-weight: 700;
}

.scroll-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black-color);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 0;
}

.scroll-to-top svg {
  width: 30px;
  height: 30px;
  font-size: 30px;
}

.scroll-to-top:hover {
  opacity: 0.7;
}

.banner-inner .bottom-desc .right-desc .desc-inner ul {
  display: flex;
  display: -webkit-flex;
  gap: 15px;
}

.banner-inner .bottom-desc .right-desc .desc-inner ul li img {
  width: 16px;
}

.banner-inner .bottom-desc .right-desc .desc-inner ul li i,
.banner-inner .bottom-desc .right-desc .desc-inner ul li svg {
  font-size: 20px;
  width: 20px;
  height: 20px;
}

@media (min-width: 1200px) and (max-width: 1499px) {
  h1 {
    font-size: 140px;
  }
  h2 {
    font-size: 28px;
  }
  .header-inner .navbar-brand {
    font-size: 38px;
    color: #fe978e;
    gap: 10px;
  }

  .logo-icon {
    width: 60px;
    height: 60px;
  }
  .header-inner nav ul {
    gap: 100px;
  }
  .header-inner .ham-btn img {
    width: 32px;
  }
  .banner-inner {
    min-height: calc(100vh - 85px);
    min-height: calc(100svh - 85px);
  }
  .banner-inner .bottom-desc .right-desc h1 {
    padding-right: 40px;
  }
  .banner-inner .bottom-desc .right-desc h1::after {
    width: 16%;
  }
  .banner-inner .bottom-desc .right-desc .desc-inner {
    gap: 20px;
  }
}

@media (max-width: 1199px) {
  .mouse-effect {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 100px;
  }
  h2 {
    font-size: 24px;
  }
  body {
    font-size: 14px;
  }
  .header-inner .navbar-brand {
    font-size: 32px;
    color: #fe978e;
    gap: 8px;
  }

  .logo-icon {
    width: 55px;
    height: 55px;
  }
  .header-inner nav ul {
    gap: 40px;
  }
  .header-inner .ham-btn img {
    width: 28px;
  }
  .download-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
  .banner-inner {
    min-height: calc(100vh - 76px);
    min-height: calc(100svh - 76px);
    padding-top: 80px;
  }
  .banner-inner .bottom-desc .right-desc h1 {
    padding-right: 30px;
  }
  .banner-inner .bottom-desc .right-desc h1::after {
    width: 12%;
  }
  .banner-inner .bottom-desc .right-desc .desc-inner {
    gap: 16px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 80px;
  }
  h2 {
    font-size: 20px;
  }
  body {
    font-size: 14px;
  }
  .header-inner .navbar-brand {
    font-size: 28px;
    color: #fe978e;
    gap: 8px;
  }

  .logo-icon {
    width: 50px;
    height: 50px;
  }
  .header-inner nav ul {
    gap: 20px;
  }
  .header-inner .ham-btn img {
    width: 24px;
  }
  .banner-inner {
    min-height: calc(100vh - 70px);
    min-height: calc(100svh - 70px);
    padding-top: 60px;
  }
  .banner-inner .bottom-desc .right-desc h1 {
    padding-right: 30px;
  }
  .banner-inner .bottom-desc .right-desc h1::after {
    width: 10%;
  }
  .banner-inner .bottom-desc .right-desc .desc-inner {
    gap: 12px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 16px;
  }
  body {
    font-size: 12px;
  }
  .app-icon {
    width: 150px;
    height: 150px;
    border-radius: 45px;
  }
  .header-inner {
    padding: 16px 16px;
  }
  .header-inner .navbar-brand {
    font-size: 22px;
    color: #fe978e;
    gap: 6px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }
  .header-inner nav ul {
    gap: 16px;
    display: none;
  }
  .ham-btn {
    display: block;
  }
  .download-btn {
    display: none; /* 모바일에서는 다운로드 버튼 숨김 */
  }
  .mobile-menu {
    display: block;
  }
  .header-inner .ham-btn img {
    width: 24px;
  }
  .rotated-text {
    font-size: 12px;
  }
  .banner-inner {
    min-height: calc(100vh - 60px);
    min-height: calc(100svh - 60px);
    padding-top: 40px;
    justify-content: flex-start;
    gap: 500px;
  }
  
  .banner-inner .bottom-desc-secondary {
    margin-top: 0;
  }
  .banner-inner .bottom-desc .left-desc h1 {
    margin-bottom: 14px;
  }
  .banner-inner .bottom-desc .middle-desc {
    display: none;
  }
  .banner-inner .bottom-desc .right-desc h1 {
    padding-right: 22px;
  }
  .banner-inner .bottom-desc .right-desc h1::after {
    width: 10%;
  }
  .banner-inner .bottom-desc .right-desc .desc-inner {
    gap: 12px;
  }
  .banner-inner .bottom-desc .right-desc .desc-inner ul {
    gap: 8px;
  }
  .banner-inner .bottom-desc .right-desc .desc-inner ul li img {
    width: 16px;
  }
  .banner-inner .bottom-desc .right-desc .desc-inner ul li i,
  .banner-inner .bottom-desc .right-desc .desc-inner ul li svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
  }
  .banner-inner .top-desc {
    padding-left: 0;
  }
  .banner-inner .bottom-desc-secondary .top-desc {
    padding-right: 0;
  }
  .section-title {
    padding-left: 0 !important;
  }
  .scroll-to-top svg {
    width: 30px;
    height: 30px;
    font-size: 30px;
  }
  .right-desc {
    bottom: 20px;
    right: 20px;
    padding: 8px 12px;
  }
  
  .right-desc .desc-inner {
    gap: 8px;
  }
  
  .right-desc .desc-inner ul {
    gap: 8px;
  }
  
  .right-desc .desc-inner ul li svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
  }
  
  .scroll-to-top svg {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }
}

/* dat.GUI 컨트롤 숨기기 */
.close-button.close-bottom {
  display: none !important;
}

/* 새로운 소개 섹션 */
.features-section {
  padding: 0;
  display: block;
}

.container {
  width: 100%;
  margin: 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 0;
  padding: 100px 20px;
  box-shadow: none;
}

/* 다운로드 섹션 */
.download-section {
  padding: 0;
  display: block;
}

.download-container {
  width: 100%;
  margin: 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 0;
  padding: 40px 20px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.download-content {
  max-width: 800px;
}

.download-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: #fe978e;
  font-weight: 700;
  background: linear-gradient(135deg, #fe978e, #ffb3a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-content p {
  font-size: 0.95rem;
  margin-bottom: 3rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.download-buttons {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.download-btn-appstore, .download-btn-google {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  justify-content: center;
}

.download-btn-appstore {
  background: linear-gradient(135deg, #000, #333);
  color: white;
}

.download-btn-appstore:hover {
  background: linear-gradient(135deg, #333, #555);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.download-btn-google {
  background: linear-gradient(135deg, #4285f4, #3367d6);
  color: white;
}

.download-btn-google:hover {
  background: linear-gradient(135deg, #3367d6, #2c5aa0);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(66, 133, 244, 0.3);
}

.download-btn-appstore i, .download-btn-google i {
  font-size: 1.5rem;
}

.download-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 800px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(254, 151, 142, 0.1), rgba(255, 179, 167, 0.1));
  border-radius: 20px;
  border: 1px solid rgba(254, 151, 142, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(254, 151, 142, 0.2);
}

.feature-item i {
  font-size: 2.5rem;
  color: #fe978e;
  margin-bottom: 0.5rem;
}

.feature-item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.download-image {
  display: none;
}

/* 사용자 리뷰 섹션 */
.user-review-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0;
  padding-bottom: 0;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  height: 40px;
}

.avatar-group {
  display: flex;
  align-items: center;
  margin-right: -0.75rem;
}

.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #FDFBF7;
  background: linear-gradient(135deg, #D8EFE9, #E8E0F0);
  margin-left: -12px;
}

.avatar-circle:first-child {
  margin-left: 0;
}

.review-text {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
  padding-bottom: 0;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.star-icon {
  width: 16px;
  height: 16px;
  color: #F4C67A;
  fill: #F4C67A;
}

.review-count {
  font-size: 0.875rem;
  color: #6B6B6B;
  margin: 0 !important;
  margin-bottom: 0 !important;
  padding: 0;
  padding-bottom: 0;
  line-height: 1.5;
}

.section-title {
  text-align: left;
  margin-bottom: 2rem;
  padding-left: 40px;
}

.section-title h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #333;
}

.section-title h6 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #666;
}

.section-title span {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: var(--black-color);
  border-radius: 50px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 600;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* 칭찬 카드 반응형 */
@media (max-width: 768px) {
  .praise-card {
    flex-direction: column;
    gap: 1.5rem;
  }

  .praise-image {
    max-width: 100%;
  }

  .floating-praise-card {
    right: 10px !important;
    left: auto !important;
    top: 50px !important;
    bottom: auto !important;
    padding: 12px;
    max-width: calc(100% - 20px);
    width: auto;
    min-width: 200px;
  }

  .floating-praise-card-left {
    left: 10px !important;
    right: auto !important;
    bottom: 50px !important;
    top: auto !important;
    max-width: calc(100% - 20px);
    width: auto;
    min-width: 200px;
  }

  .floating-card-avatar {
    width: 32px;
    height: 32px;
  }

  .heart-icon {
    width: 16px;
    height: 16px;
  }

  .floating-card-label {
    font-size: 11px;
  }

  .floating-card-message {
    font-size: 13px;
  }

  .praise-content {
    padding-left: 0;
    text-align: center;
  }

  .praise-content h3 {
    font-size: 1.5rem;
  }

  .container {
    padding: 64px 20px;
  }

  .download-section {
    padding: 0;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-btn-appstore, .download-btn-google {
    min-width: 250px;
  }

  .download-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .download-content h2 {
    font-size: 2rem;
  }

  .user-review-section {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .review-text {
    text-align: center;
    align-items: center;
  }

  .star-rating {
    justify-content: center;
  }

  .download-btn-google:hover {
    background: #3367d6;
    transform: translateY(-2px);
  }

  .download-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-weight: 500;
  }

  .download-image {
    display: none;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .download-features {
    flex-direction: column;
    gap: 1rem;
  }

  .download-content h2 {
    font-size: 1.5rem;
  }

  .app-button-demo {
    justify-content: center;
    padding: 1rem;
    margin-top: 0;
  }

  .praise-add-btn {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .praise-image {
    margin-left: 0;
  }

  .floating-praise-card {
    right: 5px !important;
    left: auto !important;
    top: 40px !important;
    bottom: auto !important;
    padding: 10px;
    max-width: calc(100% - 10px);
    width: auto;
    min-width: 160px;
  }

  .floating-praise-card-left {
    left: 5px !important;
    right: auto !important;
    bottom: 40px !important;
    top: auto !important;
    max-width: calc(100% - 10px);
    width: auto;
    min-width: 160px;
  }

  .floating-card-content {
    gap: 8px;
  }
}

/* 내 주변 시설 섹션 */
.nearby-section {
  padding: 100px 60px;
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.nearby-container {
  max-width: 1152px;
  margin: 0 auto;
}

.nearby-header {
  text-align: center;
  margin-bottom: 64px;
}

.nearby-label {
  font-size: 14px;
  font-weight: 500;
  color: #5BA68A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 16px;
}

.nearby-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fe978e;
  background: linear-gradient(135deg, #fe978e, #ffb3a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0 24px 0;
  line-height: 1.2;
}

.nearby-description {
  font-size: 14px;
  color: #6B6B6B;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.8;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.nearby-card {
  background: #FDFBF7;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid #F5EDE4;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nearby-card:hover {
  box-shadow: 0 20px 25px -5px rgba(61, 61, 61, 0.05), 0 10px 10px -5px rgba(61, 61, 61, 0.04);
  transform: translateY(-4px);
}

.nearby-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.nearby-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nearby-icon-svg {
  width: 32px;
  height: 32px;
}

.nearby-count {
  font-size: 1.875rem;
  font-weight: 700;
}

.nearby-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 12px;
}

.nearby-card-text {
  color: #6B6B6B;
  line-height: 1.75;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* 유치원 카드 오버레이 효과 */
.kindergarten-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.kindergarten-card.active {
  box-shadow: 0 20px 40px rgba(232, 146, 124, 0.15);
  transform: translateY(-2px);
}

.kindergarten-overlay {
  position: absolute;
  top: 0;
  left: 33.33%;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 15%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(15px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 24px 24px 0;
  z-index: 10;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.kindergarten-card.active .kindergarten-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.overlay-content {
  text-align: center;
  padding: 32px 24px;
  max-width: 90%;
  animation: fadeInUp 0.5s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.api-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(232, 146, 124);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.api-icon svg {
  width: 24px;
  height: 24px;
}

.api-message {
  font-size: 14px;
  color: #3D3D3D;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.5;
}

.api-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgb(232, 146, 124);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232, 146, 124, 0.1), rgba(232, 146, 124, 0.15));
  border: 1px solid rgba(232, 146, 124, 0.2);
  cursor: pointer;
  margin-top: 8px;
}

.api-link:hover {
  background: linear-gradient(135deg, rgba(232, 146, 124, 0.2), rgba(232, 146, 124, 0.25));
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(232, 146, 124, 0.2);
}

.api-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.api-link:hover svg {
  transform: translateX(2px);
}

/* 어린이집 카드 오버레이 효과 */
.childcare-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.childcare-card.active {
  box-shadow: 0 20px 40px rgba(91, 166, 138, 0.15);
  transform: translateY(-2px);
}

.childcare-overlay {
  position: absolute;
  top: 0;
  left: 33.33%;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 15%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(15px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 24px 24px 0;
  z-index: 10;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.childcare-card.active .childcare-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.childcare-card .api-icon {
  color: rgb(91, 166, 138);
}

.childcare-card .api-link {
  color: rgb(91, 166, 138);
  background: linear-gradient(135deg, rgba(91, 166, 138, 0.1), rgba(91, 166, 138, 0.15));
  border: 1px solid rgba(91, 166, 138, 0.2);
}

.childcare-card .api-link:hover {
  background: linear-gradient(135deg, rgba(91, 166, 138, 0.2), rgba(91, 166, 138, 0.25));
  box-shadow: 0 4px 12px rgba(91, 166, 138, 0.2);
}

/* 놀이시설 카드 오버레이 효과 */
.playground-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.playground-card.active {
  box-shadow: 0 20px 40px rgba(139, 122, 168, 0.15);
  transform: translateY(-2px);
}

.playground-overlay {
  position: absolute;
  top: 0;
  left: 33.33%;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 15%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(15px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 24px 24px 0;
  z-index: 10;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.playground-card.active .playground-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.playground-card .api-icon {
  color: rgb(139, 122, 168);
}

.playground-card .api-link {
  color: rgb(139, 122, 168);
  background: linear-gradient(135deg, rgba(139, 122, 168, 0.1), rgba(139, 122, 168, 0.15));
  border: 1px solid rgba(139, 122, 168, 0.2);
}

.playground-card .api-link:hover {
  background: linear-gradient(135deg, rgba(139, 122, 168, 0.2), rgba(139, 122, 168, 0.25));
  box-shadow: 0 4px 12px rgba(139, 122, 168, 0.2);
}

.nearby-card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-top: auto;
}

.link-icon {
  width: 16px;
  height: 16px;
}

.link-arrow {
  width: 16px;
  height: 16px;
}

/* 반응형 */
@media (max-width: 768px) {
  .nearby-section {
    padding: 64px 20px;
  }

  .nearby-title {
    font-size: 1.5rem;
  }

  .nearby-description {
    font-size: 14px;
  }

  .nearby-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .nearby-card {
    padding: 20px 24px;
  }

  /* 내 주변 시설 오버레이 모바일 최적화 */
  .kindergarten-overlay,
  .childcare-overlay,
  .playground-overlay {
    left: 0;
    right: 0;
    border-radius: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  }

  .overlay-content {
    padding: 20px 16px;
    max-width: 100%;
  }

  .api-message {
    font-size: 12px;
    line-height: 1.6;
  }

  .api-link {
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* 커뮤니티 섹션 */
.community-section {
  padding: 0;
  display: block;
  width: 100%;
}

.community-container {
  width: 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 0;
  padding: 100px 60px;
  box-shadow: none;
}

.community-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
  max-width: 1152px;
  margin: 0 auto;
}

.community-text {
  flex: 1;
}

.community-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #5BA68A;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.community-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fe978e;
  background: linear-gradient(135deg, #fe978e, #ffb3a7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0 1.5rem 0;
  line-height: 1.2;
  position: relative;
}

.community-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #fe978e, #ffb3a7);
  border-radius: 2px;
}

.community-description {
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.8;
  margin-bottom: 32px;
}

.community-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.community-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fe978e, #ffb3a7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon {
  width: 16px;
  height: 16px;
  color: white;
  margin: 0;
  display: block;
}

.feature-text {
  color: #3D3D3D;
  font-weight: 500;
  font-size: 14px;
}

.community-card-wrapper {
  flex: 1;
  position: relative;
}

.community-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #D8EFE9, #E8E0F0);
  border-radius: 2.5rem;
  transform: rotate(3deg);
  z-index: 0;
}

.community-card {
  position: relative;
  background: white;
  border-radius: 2.5rem;
  padding: 32px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 1;
}

.community-messages {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.community-message {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 1rem;
  background: #FDFBF7;
  border: 1px solid #F5EDE4;
}

.message-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.message-avatar-svg {
  width: 24px;
  height: 24px;
}

.message-content {
  flex: 1;
}

.message-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.message-author {
  font-weight: 600;
  color: #3D3D3D;
  font-size: 1rem;
}

.message-time {
  font-size: 0.75rem;
  color: #9B9B9B;
}

.message-text {
  color: #6B6B6B;
  font-size: 0.95rem;
  line-height: 1.5;
}

.message-hearts {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
}

.message-hearts svg {
  width: 16px;
  height: 16px;
}

/* 커뮤니티 섹션 반응형 */
@media (max-width: 1024px) {
  .community-content {
    flex-direction: column;
    gap: 48px;
  }

  .community-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .community-container {
    padding: 64px 20px;
  }

  .community-title {
    font-size: 1.5rem;
  }

  .community-description {
    font-size: 14px;
  }

  .message-text {
    font-size: 13px;
  }
}

/* 개인정보 보호 섹션 */
.privacy-section {
  padding: 96px 60px 0 60px;
  background: rgba(61, 61, 61, 0.9);
  backdrop-filter: blur(10px);
  width: 100%;
}

.privacy-container {
  max-width: 1152px;
  margin: 0 auto;
}

.privacy-header {
  text-align: center;
  margin-bottom: 64px;
}

.privacy-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #E8927C;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

.privacy-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin: 16px 0 24px 0;
  line-height: 1.2;
}

.privacy-description {
  font-size: 14px;
  color: #A0A0A0;
  max-width: 32rem;
  margin: 0 auto;
  line-height: 1.75;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.privacy-card {
  background: #4A4A4A;
  border-radius: 1.5rem;
  padding: 32px;
  border: 1px solid #5A5A5A;
}

.privacy-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: rgba(232, 146, 124, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.privacy-icon {
  width: 28px;
  height: 28px;
  color: #E8927C;
}

.privacy-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
}

.privacy-card-text {
  color: #A0A0A0;
  line-height: 1.75;
}

/* 개인정보 보호 섹션 반응형 */
@media (max-width: 1024px) {
  .privacy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .privacy-section {
    padding: 64px 20px 0 20px;
  }

  .privacy-title {
    font-size: 1.5rem;
  }

  .privacy-description {
    font-size: 14px;
  }

  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .privacy-header {
    margin-bottom: 48px;
  }
}

/* 푸터 */
.footer {
  padding: 64px 24px 48px 24px;
  background: transparent;
  width: 100%;
  margin-top: 0;
}

.footer-container {
  max-width: 1152px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #fe978e;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-link {
  font-size: 14px;
  color: #A0A0A0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-copyright {
  font-size: 14px;
  color: #A0A0A0;
  margin: 0;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    align-items: center;
  }
  .footer-links {
    gap: 32px;
  }
}

