:root {
      --primary-color: #7C3AED;
      --text-main: #111111;
      --text-sub: #666666;
      --bg-color: #FFFFFF;
      --border-color: #E5E7EB;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    body {
      font-family: 'Gowun Batang', 'Noto Serif KR', Georgia, 'Times New Roman', serif;
      font-weight: 700;
      background: #E5E7EB;
      min-height: 100vh;
      color: var(--text-main);
      line-height: 1.6;
      letter-spacing: -0.02em;
    }

    .container {
      max-width: 480px;
      margin: 0 auto;
      min-height: 100vh;
      background: #FFFFFF;
      position: relative;
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    }

    /* Header - 완전 투명 헤더 */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      max-width: 480px;
      margin: 0 auto;
      height: 66px;
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      z-index: 100;
      transition: background 0.3s, box-shadow 0.3s;
    }

    .header.scrolled {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    }

    .header.scrolled .logo-text {
      color: #111111;
      text-shadow: none;
    }

    .header.scrolled .menu-btn span {
      background: #1F2937;
      box-shadow: none;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-img {
      height: 42px;
      width: 42px;
      border-radius: 11px;
      object-fit: cover;
    }

    .logo-text {
      font-size: 17px;
      font-weight: 700;
      color: #FFFFFF;
      letter-spacing: -0.3px;
      line-height: 1;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
      transition: color 0.3s, text-shadow 0.3s;
    }

    .menu-btn {
      width: 44px;
      height: 44px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      gap: 6px;
      cursor: pointer;
      background: transparent;
      border: none;
      padding: 8px;
      border-radius: 50%;
      transition: background-color 0.2s;
    }

    .menu-btn:hover {
      background: rgba(0, 0, 0, 0.04);
    }

    .menu-btn:active {
      transform: scale(0.95);
    }

    .menu-btn span {
      display: block;
      height: 2px;
      background: #FFFFFF;
      border-radius: 10px;
      transition: all 0.3s ease;
      box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }

    .menu-btn span:nth-child(1) {
      width: 20px;
    }

    .menu-btn span:nth-child(2) {
      width: 26px;
    }

    .menu-btn span:nth-child(3) {
      width: 16px;
    }

    /* Hover Interaction */
    .menu-btn:hover span:nth-child(1) {
      width: 26px;
    }

    .menu-btn:hover span:nth-child(2) {
      width: 20px;
    }

    .menu-btn:hover span:nth-child(3) {
      width: 26px;
    }

    /* Hero Section - Slider (청월당 스타일) */
    .hero {
      position: relative;
      width: 100%;
      height: 520px;
      overflow: hidden;
      margin: 0;
      padding: 0;
    }

    .hero-slider {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
      display: flex;
      align-items: flex-end;
      padding: 80px 24px 56px;
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
    }

    .hero-slide.active {
      opacity: 1;
    }

    /* 슬라이드 오버레이 */
    .slide-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
      z-index: 1;
    }

    .slide-content {
      position: relative;
      z-index: 5;
      flex: 1;
      padding-left: 8px;
      max-width: 50%;
    }

    .slide-label {
      font-size: 14px;
      font-weight: 600;
      color: #FFFFFF;
      margin-bottom: 8px;
      letter-spacing: 0.5px;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .slide-title {
      font-size: 40px;
      font-weight: 900;
      color: #FFFFFF;
      line-height: 1.15;
      margin-bottom: 16px;
      letter-spacing: -1px;
      text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    }

    .slide-title .highlight {
      color: #FFD700;
    }

    .slide-title .sub {
      font-size: 20px;
      font-weight: 700;
      display: block;
      margin-bottom: 4px;
      color: #F0F0F0;
    }

    .slide-desc {
      font-size: 14px;
      color: #FFFFFF;
      margin-bottom: 24px;
      line-height: 1.5;
      text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }

    .slide-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 24px;
      background: #FFFFFF;
      color: #374151;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      border-radius: 30px;
      border: 1px solid rgba(0,0,0,0.08);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s;
    }

    .slide-cta:active {
      transform: scale(0.98);
    }

    .slide-cta svg {
      width: 16px;
      height: 16px;
    }

    .slide-image {
      display: none;
    }

    .slide-image img {
      display: none;
    }

    /* 슬라이드 하단 컨트롤 */
    .slider-controls {
      position: absolute;
      bottom: 20px;
      left: 0;
      right: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding-right: 20px;
      gap: 12px;
      z-index: 10;
    }

    .slider-dots {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .slider-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.2);
      cursor: pointer;
      transition: all 0.3s;
    }

    .slider-dot.active {
      width: 24px;
      border-radius: 4px;
      background: #6B7280;
    }

    .slider-nav {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.8);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.2s;
      color: #6B7280;
    }

    .slider-nav svg {
      width: 16px;
      height: 16px;
    }

    .slider-nav:hover {
      background: #FFFFFF;
      transform: translateY(-1px);
    }

    .slider-nav:active {
      transform: scale(0.96);
    }

    /* Decorative Line - Removed, kept empty class for layout if needed */
    .deco-line {
      display: none;
    }

    /* Section */
    .section {
      padding: 0 20px 32px;
    }

    .section-best {
      margin-top: 8px;
    }

    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-top: 8px;
    }

    .section-title {
      font-size: 22px;
      font-weight: 800;
      color: #111111;
      letter-spacing: -0.8px;
    }

    .section-more {
      font-size: 13px;
      color: #9CA3AF;
      text-decoration: none;
      font-weight: 600;
    }

    /* Quick BEST Section - 인기 페이지 */
    .quick-best {
      display: flex;
      gap: 10px;
      padding: 0 0 20px;
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .quick-best::-webkit-scrollbar {
      display: none;
    }

    .quick-best-item {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      background: #FFFFFF;
      border: 1px solid #E5E7EB;
      border-radius: 24px;
      text-decoration: none;
      color: #374151;
      font-size: 13px;
      font-weight: 600;
      white-space: nowrap;
      transition: all 0.2s ease;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    }

    .quick-best-item:hover {
      border-color: #1e3a5f;
      background: #F8FAFC;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .quick-best-item.hot {
      background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
      border-color: #FDBA74;
      color: #C2410C;
    }

    .quick-best-item.hot:hover {
      border-color: #F97316;
    }

    .quick-best-item.new {
      background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%);
      border-color: #A78BFA;
      color: #6D28D9;
    }

    .quick-best-item.new:hover {
      border-color: #7C3AED;
    }

    .quick-best-icon {
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .quick-best-badge {
      font-size: 9px;
      font-weight: 700;
      padding: 2px 6px;
      border-radius: 10px;
      background: #EF4444;
      color: #FFFFFF;
    }

    /* Quick BEST Grid - 그리드 형태 */
    .quick-best-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
      padding: 0 0 24px;
    }

    .quick-best-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .quick-best-card:active {
      transform: scale(0.96);
    }

    .quick-best-card-icon {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin-bottom: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      overflow: hidden;
    }

    .quick-best-card-icon .icon-emoji {
      font-size: 24px;
    }

    .quick-best-card-icon .icon-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 14px;
    }

    .quick-best-card-icon .quick-best-badge {
      position: absolute;
      top: 6px;
      right: 6px;
      font-size: 8px;
      padding: 2px 5px;
      border-radius: 6px;
    }

    .quick-best-card-icon .quick-best-badge.hot {
      background: #EF4444;
      color: #FFFFFF;
    }

    .quick-best-card-icon .quick-best-badge.new {
      background: #6366F1;
      color: #FFFFFF;
    }

    .quick-best-card-title {
      font-size: 11px;
      font-weight: 600;
      color: #374151;
      text-align: center;
      letter-spacing: -0.3px;
      line-height: 1.3;
      word-break: keep-all;
    }

    @media (max-width: 400px) {
      .quick-best-grid {
        gap: 8px;
      }

      .quick-best-card-icon {
        border-radius: 12px;
      }

      .quick-best-card-icon .icon-emoji {
        font-size: 20px;
      }

      .quick-best-card-title {
        font-size: 10px;
      }

      .quick-best-card-icon .quick-best-badge {
        font-size: 7px;
        padding: 1px 4px;
        top: 4px;
        right: 4px;
      }
    }

    /* Main Menu Grid - 청월당 스타일 */
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      padding: 0;
    }

    .image-card {
      background: #FFFFFF;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
      cursor: pointer;
      position: relative;
      border: none;
    }

    .image-card:active {
      transform: scale(0.98);
    }

    .card-image-wrapper {
      width: 100%;
      aspect-ratio: 1 / 1;
      position: relative;
      overflow: hidden;
      border-radius: 16px;
    }

    .card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .image-card:active .card-image {
      transform: scale(1.05);
    }

    .card-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 6px 10px;
      background: #1e3a5f;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      color: #FFFFFF;
      z-index: 2;
      line-height: 1;
    }

    .card-badge .year {
      font-size: 14px;
      display: block;
    }

    .card-badge .sub {
      font-size: 10px;
      font-weight: 500;
      opacity: 0.8;
    }

    .card-badge.hot {
      background: #1e3a5f;
    }

    .card-badge.free {
      background: #C75050;
    }

    .card-badge.new {
      background: #6366F1;
    }

    .card-content {
      padding: 14px 4px;
      background: transparent;
    }

    .card-title {
      font-size: 15px;
      font-weight: 700;
      color: #1F2937;
      margin-bottom: 4px;
      letter-spacing: -0.3px;
    }

    .card-desc {
      font-size: 13px;
      color: #9CA3AF;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-weight: 400;
    }

    /* Famous People Saju Section */
    .section-celebrities {
      padding: 40px 20px 56px;
    }

    .section-subtitle {
      font-size: 13px;
      color: #9CA3AF;
      margin-top: 4px;
      font-weight: 400;
      letter-spacing: -0.2px;
    }

    .celebrity-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-bottom: 16px;
      max-height: calc(3 * 115px + 2 * 10px);
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .celebrity-grid.expanded {
      max-height: 1000px;
    }

    .celebrity-card {
      background: #FFFFFF;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
    }

    .celebrity-card:active {
      transform: scale(0.98);
    }

    .celebrity-hidden {
      opacity: 0;
      transform: scale(0.95);
      pointer-events: none;
      transition: all 0.3s ease 0.05s;
    }

    .celebrity-grid.expanded .celebrity-hidden {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
    }

    .celebrity-image {
      width: 100%;
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .celebrity-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

    .celebrity-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
      pointer-events: none;
    }

    .celebrity-initial {
      font-family: 'Noto Serif KR', serif;
      font-size: 28px;
      font-weight: 700;
      color: rgba(0, 0, 0, 0.15);
      position: relative;
      z-index: 1;
      letter-spacing: -1px;
    }

    .celebrity-info {
      flex: 1;
      padding: 8px 10px 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .celebrity-name {
      font-size: 12px;
      font-weight: 700;
      color: #1F2937;
      margin-bottom: 2px;
      letter-spacing: -0.3px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .celebrity-title {
      font-size: 10px;
      color: #9CA3AF;
      margin-bottom: 0;
      font-weight: 500;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .celebrity-date {
      display: none;
    }

    /* 더보기 버튼 */
    .view-more-btn {
      width: 100%;
      padding: 14px 20px;
      background: transparent;
      border: 2px solid #E5E7EB;
      border-radius: 12px;
      color: #6B7280;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.3s ease;
    }

    .view-more-btn:hover {
      border-color: #8B5CF6;
      color: #8B5CF6;
      background: rgba(139, 92, 246, 0.05);
    }

    .view-more-btn:active {
      transform: scale(0.98);
    }

    .view-more-icon {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .view-more-btn.expanded .view-more-icon {
      transform: rotate(180deg);
    }

    /* 카드 내 캐릭터 이미지 스타일 */
    .card-character {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center bottom;
    }

    /* 카드 배경색 */
    .card-bg-blue {
      background: linear-gradient(180deg, #E8F4F8 0%, #D4E8F2 100%);
    }

    .card-bg-red {
      background: linear-gradient(180deg, #FFF0F0 0%, #FFE0E0 100%);
    }

    .card-bg-purple {
      background: linear-gradient(180deg, #F5F0FF 0%, #EBE0FF 100%);
    }

    .card-bg-orange {
      background: linear-gradient(180deg, #FFF8F0 0%, #FFEDD5 100%);
    }

    .card-bg-green {
      background: linear-gradient(180deg, #F0FFF4 0%, #D1FAE5 100%);
    }

    .card-bg-gray {
      background: linear-gradient(180deg, #F9FAFB 0%, #F3F4F6 100%);
    }

    /* 탭 네비게이션 */
    .tab-nav {
      display: flex;
      gap: 0;
      margin-bottom: 20px;
      border-bottom: 1px solid #E5E7EB;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .tab-nav::-webkit-scrollbar {
      display: none;
    }

    .tab-btn {
      flex: 1;
      min-width: fit-content;
      padding: 14px 16px;
      background: transparent;
      border: none;
      font-size: 14px;
      font-weight: 600;
      color: #9CA3AF;
      cursor: pointer;
      transition: all 0.2s;
      position: relative;
      white-space: nowrap;
    }

    .tab-btn.active {
      color: #1F2937;
    }

    .tab-btn.active::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 2px;
      background: #1e3a5f;
    }

    .tab-btn:active {
      background: rgba(0,0,0,0.02);
    }

    /* 탭 컨텐츠 래퍼 (스와이프용) */
    .tab-content-wrapper {
      touch-action: pan-y pinch-zoom;
      user-select: none;
      -webkit-user-select: none;
      cursor: grab;
    }

    .tab-content-wrapper:active {
      cursor: grabbing;
    }

    /* 탭 컨텐츠 */
    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
      animation: tabSlideIn 0.3s ease;
    }

    @keyframes tabSlideIn {
      from { opacity: 0; transform: translateX(20px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* 하단 CTA 버튼 - 청월당 스타일 */
    .bottom-cta {
      display: flex;
      gap: 12px;
      margin-top: 24px;
      padding: 0;
    }


    .bottom-cta-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 24px;
      background: linear-gradient(135deg, #132944 0%, #1f3a5f 45%, #254a7a 100%);
      color: #FFFFFF;
      font-size: 15px;
      font-weight: 600;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 30px;
      cursor: pointer;
      box-shadow: 0 10px 22px rgba(15, 23, 42, 0.18);
      letter-spacing: -0.2px;
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }

    .bottom-cta-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(15, 23, 42, 0.22);
      filter: brightness(1.03);
    }

    .bottom-cta-btn:focus-visible {
      outline: 2px solid rgba(37, 99, 235, 0.35);
      outline-offset: 2px;
    }

    .bottom-cta-btn:active {
      transform: scale(0.98);
      box-shadow: 0 6px 14px rgba(15, 23, 42, 0.18);
      filter: brightness(0.98);
    }

    .bottom-cta-btn svg {
      width: 18px;
      height: 18px;
    }

    .bottom-cta-icon {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      border: 1px solid #e5e7eb;
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .bottom-cta-icon:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 26px rgba(15, 23, 42, 0.12);
      border-color: #d1d5db;
    }

    .bottom-cta-icon svg {
      width: 24px;
      height: 24px;
      color: #1f3a5f;
    }

    .bottom-cta-icon:active {
      transform: scale(0.95);
    }

    /* Feature Grid */
    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .feature-card {
      background: #FFFFFF;
      border-radius: 20px;
      padding: 24px 20px;
      text-align: center;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0, 0, 0, 0.03);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      aspect-ratio: 1 / 1;
      cursor: pointer;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    }

    .feature-icon {
      font-size: 32px;
      margin-bottom: 12px;
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    }

    .feature-title {
      font-size: 16px;
      font-weight: 700;
      color: #1F2937;
      margin-bottom: 6px;
    }

    .feature-desc {
      font-size: 13px;
      color: #9CA3AF;
      font-weight: 500;
      background: #F3F4F6;
      padding: 4px 10px;
      border-radius: 20px;
      display: inline-block;
    }


    /* Quote Slider Section V2 - Text Left, Image Right with Gradient */
    .section-quote {
      padding: 24px 20px 40px;
    }

    .quote-slider-v2 {
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%);
    }

    .quote-slides-container {
      position: relative;
      min-height: 240px;
    }

    .quote-slide-v2 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      opacity: 0;
      transform: translateX(20px);
      transition: all 0.5s ease;
      pointer-events: none;
    }

    .quote-slide-v2.active {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
      position: relative;
    }

    /* Left side - Text Content */
    .quote-content-v2 {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 32px 24px;
      position: relative;
      z-index: 2;
    }

    .quote-mark-v2 {
      font-family: 'Noto Serif KR', serif;
      font-size: 48px;
      color: rgba(139, 92, 246, 0.15);
      line-height: 1;
      margin-bottom: 8px;
      margin-left: -4px;
    }

    .quote-text-v2 {
      font-family: 'Noto Serif KR', serif;
      font-size: 16px;
      font-weight: 500;
      color: #374151;
      line-height: 1.8;
      margin-bottom: 16px;
      word-break: keep-all;
      letter-spacing: -0.3px;
    }

    .quote-text-v2 .highlight {
      color: #7C3AED;
      font-weight: 700;
    }

    .quote-author-v2 {
      font-family: 'Pretendard', sans-serif;
      font-size: 12px;
      color: #9CA3AF;
      font-weight: 600;
      letter-spacing: 0.5px;
      padding: 6px 12px;
      border-radius: 20px;
      background: rgba(124, 58, 237, 0.08);
      display: inline-block;
      width: fit-content;
    }

    /* Right side - Image with Gradient */
    .quote-image-v2 {
      width: 140px;
      min-width: 140px;
      position: relative;
      overflow: hidden;
    }

    .quote-image-v2 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .quote-image-gradient {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        to right,
        rgba(248, 249, 250, 1) 0%,
        rgba(248, 249, 250, 0.8) 15%,
        rgba(248, 249, 250, 0.3) 40%,
        rgba(248, 249, 250, 0) 70%
      );
      pointer-events: none;
    }

    /* Quote Navigation V2 */
    .quote-nav-v2 {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      padding: 16px;
      background: rgba(255, 255, 255, 0.6);
      border-top: 1px solid rgba(0, 0, 0, 0.04);
    }

    .quote-nav-btn-v2 {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #FFFFFF;
      border: 1px solid #E5E7EB;
      border-radius: 50%;
      cursor: pointer;
      color: #6B7280;
      transition: all 0.2s ease;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    }

    .quote-nav-btn-v2:hover {
      background: #F9FAFB;
      border-color: #D1D5DB;
      color: #374151;
    }

    .quote-nav-btn-v2:active {
      transform: scale(0.95);
    }

    .quote-nav-btn-v2 svg {
      width: 14px;
      height: 14px;
    }

    .quote-dots-v2 {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .quote-dot-v2 {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #D1D5DB;
      border: none;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .quote-dot-v2:hover {
      background: #9CA3AF;
    }

    .quote-dot-v2.active {
      width: 20px;
      border-radius: 4px;
      background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    }



    /* Celebrity Detail Modal */
    .celebrity-detail-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 300;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .celebrity-detail-modal.active {
      display: block;
    }

    .celebrity-detail-container {
      width: 100%;
      max-width: 480px;
      margin: 0 auto;
      background: #FFFFFF;
      min-height: 100vh;
      position: relative;
    }

    .celebrity-detail-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid #E5E7EB;
      background: #FFFFFF;
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .celebrity-detail-back {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
      cursor: pointer;
      color: #1F2937;
      border-radius: 50%;
      transition: background 0.2s ease;
    }

    .celebrity-detail-back:hover {
      background: #F3F4F6;
    }

    .celebrity-detail-back svg {
      width: 24px;
      height: 24px;
    }

    .celebrity-detail-title {
      font-size: 18px;
      font-weight: 700;
      color: #1F2937;
      letter-spacing: -0.3px;
      flex: 1;
      text-align: center;
    }

    .celebrity-detail-content {
      padding: 0;
    }

    .celebrity-detail-image {
      width: 100%;
      height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .celebrity-detail-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
      pointer-events: none;
    }

    .celebrity-detail-initial {
      font-family: 'Noto Serif KR', serif;
      font-size: 80px;
      font-weight: 700;
      color: rgba(0, 0, 0, 0.2);
      position: relative;
      z-index: 1;
      letter-spacing: -3px;
    }

    .celebrity-detail-section {
      padding: 20px 20px;
      border-bottom: 1px solid #F3F4F6;
    }

    .celebrity-detail-section:last-child {
      border-bottom: none;
      padding-bottom: 40px;
    }

    .section-title {
      font-size: 15px;
      font-weight: 700;
      color: #1F2937;
      margin-bottom: 14px;
      letter-spacing: -0.3px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .section-title::before {
      content: '';
      width: 4px;
      height: 4px;
      background: #8B5CF6;
      border-radius: 50%;
    }

    .celebrity-detail-info {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .info-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px;
      background: #F9FAFB;
      border-radius: 8px;
    }

    .info-label {
      font-size: 13px;
      font-weight: 600;
      color: #6B7280;
    }

    .info-value {
      font-size: 14px;
      font-weight: 600;
      color: #1F2937;
    }

    .saju-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 16px;
    }

    .saju-item {
      background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
      padding: 16px;
      border-radius: 12px;
      border: 1px solid #E5E7EB;
      text-align: center;
    }

    .saju-label {
      display: block;
      font-size: 12px;
      font-weight: 600;
      color: #6B7280;
      margin-bottom: 8px;
    }

    .saju-value {
      display: block;
      font-family: 'Noto Serif KR', serif;
      font-size: 16px;
      font-weight: 700;
      color: #1F2937;
      letter-spacing: -0.3px;
    }

    .saju-element {
      background: rgba(139, 92, 246, 0.05);
      padding: 12px 16px;
      border-radius: 8px;
      border: 1px solid rgba(139, 92, 246, 0.2);
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .saju-element .label {
      font-size: 13px;
      font-weight: 600;
      color: #6B7280;
    }

    .saju-element .value {
      font-size: 14px;
      font-weight: 700;
      color: #8B5CF6;
    }

    .detail-text {
      font-size: 14px;
      line-height: 1.8;
      color: #4B5563;
      word-break: keep-all;
      letter-spacing: -0.2px;
    }

    /* Sidebar */

    .sidebar {
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      max-width: 420px;
      height: 100vh;
      background: #FFFFFF;
      z-index: 200;
      transform: translateX(100%);
      transition: transform 0.35s ease;
      box-shadow: -12px 0 24px rgba(17, 17, 17, 0.08);
      border-left: 1px solid #E1E1E1;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }

    .sidebar.open {
      transform: translateX(0);
    }

    .sidebar-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 199;
      display: none;
    }

    .sidebar-overlay.open {
      display: block;
    }

    .sidebar-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 20px;
      border-bottom: 1px solid #F1F1F1;
      background: #FFFFFF;
    }

    .sidebar-title {
      font-size: 16px;
      font-weight: 600;
      color: #111111;
      letter-spacing: -0.3px;
    }

    .close-btn {
      width: 32px;
      height: 32px;
      background: #FFFFFF;
      border: 1px solid #E1E1E1;
      border-radius: 8px;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #111111;
      transition: all 0.2s ease;
    }

    .close-btn:hover {
      background: #F7F9FA;
    }

    .sidebar-menu {
      list-style: none;
      padding: 0 20px 16px;
    }

    .sidebar-menu li {
      margin-bottom: 0;
    }

    .sidebar-menu a {
      display: flex;
      align-items: center;
      gap: 0;
      padding: 16px 0;
      color: #111111;
      text-decoration: none;
      border-radius: 0;
      transition: all 0.2s;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: -0.3px;
      min-height: 52px;
      border-bottom: 1px solid #F1F1F1;
    }

    .sidebar-menu a:hover {
      background: #F7F9FA;
    }

    .sidebar-menu a.active {
      background: #F7F9FA;
      font-weight: 700;
    }

    .sidebar-menu li:last-child a {
      border-bottom: none;
    }

    .sidebar-menu .menu-icon {
      width: 20px;
      height: 20px;
      margin-right: 12px;
      color: #6B7280;
      flex-shrink: 0;
      transition: color 0.2s;
    }

    .sidebar-menu a {
      display: flex;
      align-items: center;
    }

    .sidebar-menu a:hover .menu-icon,
    .sidebar-menu a.active .menu-icon {
      color: #1e3a5f;
    }

    /* Form Modal - Modern Sleek Style */
    .form-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: 300;
      justify-content: center;
      align-items: flex-end;
    }

    .form-modal.active {
      display: flex;
    }

    .form-container {
      width: 100%;
      max-width: 480px;
      max-height: 90vh;
      background: #FFFFFF;
      border-radius: 20px 20px 0 0;
      overflow: hidden;
      box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.12);
      position: relative;
    }

    .form-container::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 36px;
      height: 4px;
      background: #E0E0E0;
      border-radius: 2px;
      z-index: 20;
    }

    .form-header {
      padding: 20px 20px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      background: #FFFFFF;
      z-index: 10;
      border-bottom: none;
    }

    .form-header h2 {
      font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #191F28;
      letter-spacing: -0.4px;
    }

    .form-close {
      width: 28px;
      height: 28px;
      background: transparent;
      border: none;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #8B95A1;
      transition: all 0.15s ease;
    }

    .form-close:hover {
      background: #F2F4F6;
      color: #4E5968;
    }

    .form-close:active {
      transform: scale(0.92);
    }

    .form-body {
      padding: 8px 20px 32px;
      max-height: calc(90vh - 70px);
      overflow-y: auto;
    }

    /* Kakao Login */
    .kakao-login-btn {
      width: 100%;
      padding: 14px;
      border: none;
      border-radius: 12px;
      background: #FEE500;
      color: #000000;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 24px;
    }

    .kakao-login-btn svg {
      width: 18px;
      height: 18px;
    }

    .divider {
      display: flex;
      align-items: center;
      margin: 20px 0;
    }

    .divider::before,
    .divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #E5E7EB;
    }

    .divider span {
      padding: 0 16px;
      font-size: 12px;
      color: #9CA3AF;
    }

    /* User Info */
    .user-info {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      background: #F9FAFB;
      border-radius: 12px;
      border: 1px solid #E5E7EB;
      margin-bottom: 20px;
    }

    .user-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
    }

    .user-name {
      flex: 1;
      font-size: 14px;
      font-weight: 500;
      color: #5c4a3a;
    }

    .logout-btn {
      padding: 6px 12px;
      border: 1px solid rgba(139, 115, 85, 0.2);
      border-radius: 4px;
      background: #fff;
      color: #8b7355;
      font-size: 12px;
      cursor: pointer;
    }

    /* Form Elements - 한국 전통 감성 스타일 */
    .form-group {
      margin-bottom: 24px;
    }

    /* Form Elements - Modern Sleek Style */
    .form-label {
      display: block;
      font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 8px;
      color: #6B7684;
      letter-spacing: -0.2px;
    }

    .form-row {
      display: flex;
      gap: 8px;
    }

    .form-select {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid #E5E8EB;
      border-radius: 10px;
      background: #F9FAFB;
      color: #191F28;
      font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238B95A1' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
      transition: all 0.15s ease;
    }

    .form-select:focus {
      outline: none;
      border-color: #3182F6;
      background: #FFFFFF;
      box-shadow: 0 0 0 3px rgba(49, 130, 246, 0.12);
    }

    .form-select:hover {
      border-color: #D1D6DB;
      background: #FFFFFF;
    }

    .toggle-group {
      display: flex;
      gap: 8px;
      background: #F2F4F6;
      padding: 4px;
      border-radius: 10px;
    }

    .toggle-btn {
      flex: 1;
      padding: 12px 16px;
      border: none;
      border-radius: 8px;
      background: transparent;
      color: #6B7684;
      font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.15s ease;
      letter-spacing: -0.2px;
    }

    .toggle-btn:hover {
      color: #4E5968;
    }

    .toggle-btn.active {
      background: #FFFFFF;
      color: #191F28;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    /* Price - Hidden for cleaner look */
    .price-section {
      display: none;
    }

    /* Submit Button - Modern Sleek Style */
    .submit-btn {
      width: 100%;
      padding: 16px 24px;
      border: none;
      border-radius: 12px;
      background: #3182F6;
      color: #FFFFFF;
      font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.15s ease;
      letter-spacing: -0.2px;
      margin-top: 8px;
    }

    .submit-btn:hover {
      background: #1B64DA;
    }

    .submit-btn:active {
      transform: scale(0.98);
    }

    /* Intro Modal - 청월당 스타일 */
    .intro-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #000;
      z-index: 250;
      justify-content: center;
      align-items: center;
    }

    .intro-modal.active {
      display: flex;
    }

    .intro-container {
      width: 100%;
      max-width: 480px;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .intro-bg-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .intro-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.9);
      border: none;
      border-radius: 50%;
      font-size: 24px;
      color: #374151;
      cursor: pointer;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .intro-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 100px 24px 40px;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
      text-align: center;
      z-index: 10;
    }

    .intro-label {
      font-size: 14px;
      color: rgba(255,255,255,0.7);
      margin-bottom: 8px;
      font-weight: 500;
    }

    .intro-title {
      font-size: 36px;
      font-weight: 800;
      color: #FFFFFF;
      margin-bottom: 12px;
      line-height: 1.2;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .intro-title .highlight {
      color: #FFD700;
    }

    .intro-desc {
      font-size: 15px;
      color: rgba(255,255,255,0.8);
      margin-bottom: 28px;
      line-height: 1.5;
    }

    .intro-cta {
      width: 100%;
      padding: 18px 32px;
      background: #C75050;
      color: #FFFFFF;
      font-size: 16px;
      font-weight: 700;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .intro-cta:active {
      transform: scale(0.98);
      background: #B54545;
    }

    /* Intro Form Panel - Modern Sleek Style */
    .intro-form-panel {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: #FFFFFF;
      border-radius: 20px 20px 0 0;
      padding: 0;
      transform: translateY(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 30;
      max-height: 90vh;
      overflow: hidden;
      box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.12);
    }

    .intro-form-panel::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 36px;
      height: 4px;
      background: #E0E0E0;
      border-radius: 2px;
      z-index: 10;
    }

    .intro-form-panel.active {
      transform: translateY(0);
    }

    .intro-form-inner {
      padding: 32px 24px 40px;
      max-height: 90vh;
      overflow-y: auto;
    }

    .intro-form-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      position: relative;
      padding: 0;
      border-bottom: none;
    }

    .intro-form-header::after {
      display: none;
    }

    .intro-form-title {
      font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #191F28;
      letter-spacing: -0.4px;
    }

    .intro-form-close {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 28px;
      height: 28px;
      background: transparent;
      border: none;
      border-radius: 50%;
      font-size: 24px;
      color: #8B95A1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.15s ease;
      line-height: 1;
    }

    .intro-form-close:hover {
      background: #F2F4F6;
      color: #4E5968;
    }

    .intro-form-close:active {
      transform: translateY(-50%) scale(0.92);
    }

    /* Intro Form Inner Styles - Modern Sleek */
    .intro-form-panel .form-group {
      margin-bottom: 20px;
    }

    .intro-form-panel .form-label {
      font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: #6B7684;
      margin-bottom: 8px;
      letter-spacing: -0.2px;
    }

    .intro-form-panel .toggle-group {
      display: flex;
      gap: 8px;
      background: #F2F4F6;
      padding: 4px;
      border-radius: 10px;
    }

    .intro-form-panel .toggle-btn {
      flex: 1;
      padding: 12px 16px;
      border: none;
      border-radius: 8px;
      background: transparent;
      color: #6B7684;
      font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.15s ease;
      letter-spacing: -0.2px;
    }

    .intro-form-panel .toggle-btn:hover {
      color: #4E5968;
    }

    .intro-form-panel .toggle-btn.active {
      background: #FFFFFF;
      color: #191F28;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .intro-form-panel .form-select {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid #E5E8EB;
      border-radius: 10px;
      background: #F9FAFB;
      color: #191F28;
      font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238B95A1' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 40px;
      transition: all 0.15s ease;
    }

    .intro-form-panel .form-select:focus {
      outline: none;
      border-color: #3182F6;
      background: #FFFFFF;
      box-shadow: 0 0 0 3px rgba(49, 130, 246, 0.12);
    }

    .intro-form-panel .form-select:hover {
      border-color: #D1D6DB;
      background: #FFFFFF;
    }

    .intro-form-panel .submit-btn {
      width: 100%;
      padding: 16px 24px;
      margin-top: 8px;
      border: none;
      border-radius: 12px;
      background: #3182F6;
      color: #FFFFFF;
      font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      letter-spacing: -0.2px;
      transition: all 0.15s ease;
    }

    .intro-form-panel .submit-btn:hover {
      background: #1B64DA;
    }

    .intro-form-panel .submit-btn:active {
      transform: scale(0.98);
    }

    /* 인트로 타입별 색상 */
    .intro-modal[data-type="saju"] .intro-cta,
    .intro-modal[data-type="fortune"] .intro-cta {
      background: #1e3a5f;
    }

    .intro-modal[data-type="saju"] .intro-cta:active,
    .intro-modal[data-type="fortune"] .intro-cta:active {
      background: #152c48;
    }

    .intro-modal[data-type="compatibility"] .intro-title .highlight {
      color: #FF6B6B;
    }

    .intro-modal[data-type="tarot"] .intro-cta {
      background: #7C3AED;
    }

    .intro-modal[data-type="tarot"] .intro-cta:active {
      background: #6D28D9;
    }

    .intro-modal[data-type="tarot"] .intro-title .highlight {
      color: #A78BFA;
    }

    .intro-modal[data-type="lotto"] .intro-cta {
      background: #059669;
    }

    .intro-modal[data-type="lotto"] .intro-cta:active {
      background: #047857;
    }

    .intro-modal[data-type="lotto"] .intro-title .highlight {
      color: #6EE7B7;
    }

    /* Result Modal - Modern Sleek Style */
    .result-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 300;
      justify-content: center;
      align-items: flex-end;
    }

    .result-modal.active {
      display: flex;
    }

    .result-container {
      width: 100%;
      max-width: 480px;
      max-height: 90vh;
      background: #FFFFFF;
      border-radius: 20px 20px 0 0;
      overflow: hidden;
      box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.12);
      position: relative;
    }

    .result-container::before {
      content: '';
      position: absolute;
      top: 8px;
      left: 50%;
      transform: translateX(-50%);
      width: 36px;
      height: 4px;
      background: #E0E0E0;
      border-radius: 2px;
      z-index: 20;
    }

    .result-header {
      padding: 24px 20px 16px;
      text-align: center;
      border-bottom: 1px solid #F2F4F6;
    }

    .result-icon {
      font-size: 48px;
      margin-bottom: 12px;
    }

    .result-title {
      font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: #191F28;
      letter-spacing: -0.4px;
    }

    .result-body {
      padding: 20px;
      max-height: calc(90vh - 200px);
      overflow-y: auto;
    }

    .result-content {
      font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
      font-size: 15px;
      line-height: 1.8;
      color: #333D4B;
      white-space: pre-line;
      letter-spacing: -0.2px;
    }

    .result-actions {
      display: flex;
      gap: 8px;
      padding: 16px 20px 24px;
      border-top: 1px solid #F2F4F6;
      background: #FFFFFF;
    }

    .action-btn {
      flex: 1;
      padding: 14px 20px;
      border-radius: 12px;
      font-family: -apple-system, BlinkMacSystemFont, 'Pretendard', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.15s ease;
      letter-spacing: -0.2px;
      border: none;
    }

    .action-btn.primary {
      background: #3182F6;
      color: #FFFFFF;
    }

    .action-btn.primary:hover {
      background: #1B64DA;
    }

    .action-btn.secondary {
      background: #F2F4F6;
      color: #4E5968;
    }

    .action-btn.secondary:hover {
      background: #E5E8EB;
    }

    .sidebar-logo {
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid #F1F1F1;
    }

    .sidebar-logo img {
      height: 36px;
      width: auto;
      border-radius: 8px;
    }

    .sidebar-logo-text {
      font-size: 16px;
      font-weight: 600;
      color: #111111;
      letter-spacing: -0.4px;
    }

    .sidebar-auth {
      padding: 16px 20px;
      border-bottom: 1px solid #F1F1F1;
    }

    .kakao-login-sidebar {
      width: 100%;
      height: 52px;
      background: #FEE500;
      color: #191600;
      border: none;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.2s;
      box-shadow: 0 2px 8px rgba(254, 229, 0, 0.3);
    }

    .kakao-login-sidebar:hover {
      background: #F5DC00;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(254, 229, 0, 0.4);
    }

    .kakao-login-sidebar svg {
      width: 22px;
      height: 22px;
    }

    .sidebar-footer {
      padding: 16px 20px 24px;
      margin-top: auto;
      border-top: 1px solid #F1F1F1;
      background: #FFFFFF;
    }

    .kakao-contact-btn {
      width: 100%;
      height: 52px;
      background: #FEE500;
      color: #191600;
      border: none;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
      box-shadow: 0 4px 12px rgba(254, 229, 0, 0.3);
    }

    .kakao-contact-btn:hover {
      background: #FDD835;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(254, 229, 0, 0.5);
    }

    .kakao-footer-btn {
      width: 100%;
      height: 48px;
      background: #FEE500;
      color: #000000;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
      box-shadow: 0 2px 8px rgba(254, 229, 0, 0.2);
    }

    .kakao-footer-btn:hover {
      background: #FDD835;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(254, 229, 0, 0.4);
    }

    .kakao-icon-footer {
      width: 22px;
      height: 22px;
    }

    /* Footer Layout - Force Compact */
    .footer {
      padding: 20px 0 32px !important;
    }

    .footer-section {
      margin-bottom: 6px !important;
    }

    .footer-info-row {
      margin-bottom: 2px !important;
      gap: 4px !important;
    }

    .footer-links {
      margin: 10px 0 8px !important;
      gap: 10px !important;
    }

    .copyright {
      margin-bottom: 10px !important;
    }

    /* Footer Text Styles Redefined */
    .footer-section {
      margin-bottom: 20px;
    }

    .footer-info-row {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 4px;
    }

    .footer-info-item {
      font-size: 12px;
      color: #9CA3AF;
      line-height: 1.4;
    }

    .footer-info-item::after {
      content: '|';
      margin-left: 6px;
      color: #E5E7EB;
      font-size: 10px;
      vertical-align: text-top;
    }

    .footer-info-item:last-child::after {
      display: none;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin: 24px 0 16px;
    }

    .footer-links a {
      font-size: 13px;
      color: #4B5563;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: #111827;
    }

    .copyright {
      font-size: 11px;
      color: #D1D5DB;
      margin-bottom: 24px;
    }

    .kakao-contact-btn svg {
      width: 20px;
      height: 20px;
    }

    .kakao-icon-footer {
      width: 24px;
      height: 24px;
    }

    .action-btn.kakao:hover {
      background: #f5dc00;
    }

    /* Loading Modal */
    .loading-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(250, 248, 245, 0.95);
      z-index: 400;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .loading-modal.active {
      display: flex;
    }

    .loading-spinner {
      width: 40px;
      height: 40px;
      border: 2px solid rgba(139, 115, 85, 0.15);
      border-top-color: #8b7355;
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin-bottom: 24px;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .loading-text {
      font-family: 'Nanum Myeongjo', serif;
      font-size: 16px;
      color: #3d3428;
      font-weight: 700;
      letter-spacing: 2px;
    }

    .loading-subtext {
      font-size: 13px;
      color: #8b7355;
      margin-top: 8px;
      letter-spacing: 1px;
    }

    /* Footer Style Match */
    .footer {
      background: #F7F9FA;
      padding: 40px 20px 60px;
      margin-top: 60px;
      text-align: center;
      border-top: 1px solid #F3F4F6;
      font-size: 12px;
      color: #9CA3AF;
    }

    .footer-content {
      max-width: 480px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .footer-logo-img {
      height: 24px;
      opacity: 0.8;
      margin-bottom: 8px;
    }

    .footer-logo-text {
      font-family: 'Pretendard', sans-serif;
      font-weight: 700;
      font-size: 16px;
      color: #374151;
      letter-spacing: -0.5px;
    }

    .footer-section {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-info-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
      line-height: 1.5;
    }

    .footer-info-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-info-item::after {
      content: '';
      width: 1px;
      height: 10px;
      background: #D1D5DB;
      display: block;
    }

    .footer-info-item:last-child::after {
      display: none;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin: 12px 0 4px;
    }

    .footer-links a {
      color: #4B5563;
      text-decoration: none;
      font-weight: 600;
    }

    .copyright {
      color: #9CA3AF;
      font-size: 11px;
    }

    .social-icons {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }

    .social-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #E5E7EB;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      color: #6B7280;
      text-decoration: none;
      font-size: 18px;
    }

    .social-btn:hover {
      background: #D1D5DB;
    }

    .hidden {
      display: none !important;
    }

    /* ===== Interactive Animations ===== */

    /* Scroll Reveal Animation */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger Animation for Cards - 기본 보이게 하고 애니메이션은 추가 효과로 */
    .menu-grid .image-card {
      opacity: 1;
      transform: translateY(0) scale(1);
      transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .menu-grid .image-card.will-animate {
      opacity: 0;
      transform: translateY(30px) scale(0.95);
    }

    .menu-grid .image-card.animate {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* Hero Title Animation */
    .hero-title {
      opacity: 0;
      transform: translateY(30px);
      animation: heroFadeIn 1s ease forwards;
      animation-delay: 0.3s;
    }

    .hero-subtitle {
      opacity: 0;
      transform: translateY(20px);
      animation: heroFadeIn 1s ease forwards;
      animation-delay: 0.6s;
    }

    .hero-cta {
      opacity: 0;
      transform: translateY(20px) scale(0.9);
      animation: ctaFadeIn 0.8s ease forwards;
      animation-delay: 0.9s;
    }

    @keyframes heroFadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes ctaFadeIn {
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* Pulse Animation for CTA */
    .hero-cta {
      position: relative;
      overflow: hidden;
    }

    .hero-cta::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(124, 58, 237, 0.3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .hero-cta:hover::after {
      width: 300px;
      height: 300px;
    }

    /* Card Shine Effect */
    .image-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      z-index: 3;
      transition: left 0.6s ease;
    }

    .image-card:hover::before {
      left: 100%;
    }

    /* Feature Card Bounce */
    .feature-card {
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .feature-card:hover {
      transform: translateY(-8px) scale(1.02);
    }

    .feature-card:active {
      transform: translateY(-2px) scale(0.98);
    }

    /* Icon Float Animation */
    .feature-icon {
      animation: iconFloat 3s ease-in-out infinite;
    }

    .feature-card:nth-child(1) .feature-icon { animation-delay: 0s; }
    .feature-card:nth-child(2) .feature-icon { animation-delay: 0.5s; }
    .feature-card:nth-child(3) .feature-icon { animation-delay: 1s; }
    .feature-card:nth-child(4) .feature-icon { animation-delay: 1.5s; }

    @keyframes iconFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    /* Quote Fade Animation */
    .quote-section .quote-text {
      opacity: 0;
      transform: scale(0.95);
      transition: all 1s ease;
    }

    .quote-section.animate .quote-text {
      opacity: 1;
      transform: scale(1);
    }

    /* Ripple Effect */
    .ripple {
      position: relative;
      overflow: hidden;
    }

    .ripple-effect {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      transform: scale(0);
      animation: rippleAnim 0.6s ease-out;
      pointer-events: none;
    }

    @keyframes rippleAnim {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }

    /* Loading Shimmer */
    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    .shimmer {
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }

    /* Button Press Effect */
    .submit-btn, .cta-btn, .hero-cta, .action-btn, .kakao-login-btn {
      transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .submit-btn:active, .cta-btn:active, .hero-cta:active, .action-btn:active, .kakao-login-btn:active {
      transform: scale(0.96);
    }

    /* Smooth Scroll Indicator */
      40% { transform: rotate(45deg) translateY(8px); }
      60% { transform: rotate(45deg) translateY(4px); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateX(-50%) translateY(20px); }
      to { opacity: 1; transform: translateX(-50%) translateY(0); }
    }

    /* Modal Animation */
    .form-modal, .result-modal {
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .form-modal.active, .result-modal.active {
      opacity: 1;
      visibility: visible;
    }

    .form-container, .result-container {
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .form-modal.active .form-container,
    .result-modal.active .result-container {
      transform: translateY(0);
    }

    /* Sidebar Animation */
    .sidebar {
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .sidebar.open {
      transform: translateX(0);
    }

    .sidebar-overlay {
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .sidebar-overlay.open {
      opacity: 1;
      visibility: visible;
      display: block;
    }

    /* Floating Button Pulse */
    .floating-kakao {
      animation: floatPulse 2s infinite;
    }

    @keyframes floatPulse {
      0%, 100% { box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); }
      50% { box-shadow: 0 8px 32px rgba(254, 229, 0, 0.4); }
    }

    /* Badge Animation */
    .card-badge.hot {
      animation: badgePulse 2s infinite;
    }

    @keyframes badgePulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    /* Text Typing Effect - for loading */
    .loading-text {
      overflow: hidden;
      animation: typing 2s steps(20) infinite;
    }

    /* Parallax Effect (subtle) */
    .hero-slide {
      transition: transform 0.3s ease-out;
    }


.floating-kakao {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 60px;
      height: 60px;
      background: #FEE500;
      border-radius: 50%;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      border: 1px solid rgba(0, 0, 0, 0.02);
    }

    .floating-kakao:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .floating-kakao svg {
      width: 30px;
      height: 30px;
    }

    /* Quote Section V2 - Mobile Responsive */
    @media (max-width: 600px) {
      .section-quote {
        padding: 20px 16px 32px;
      }

      .quote-slides-container {
        min-height: 220px;
      }

      .quote-content-v2 {
        padding: 24px 20px;
      }

      .quote-mark-v2 {
        font-size: 40px;
        margin-bottom: 6px;
      }

      .quote-text-v2 {
        font-size: 14px;
        line-height: 1.7;
      }

      .quote-author-v2 {
        font-size: 11px;
        padding: 5px 10px;
      }

      .quote-image-v2 {
        width: 120px;
        min-width: 120px;
      }

      .quote-nav-v2 {
        padding: 12px;
        gap: 12px;
      }

      .quote-nav-btn-v2 {
        width: 28px;
        height: 28px;
      }

      .quote-nav-btn-v2 svg {
        width: 12px;
        height: 12px;
      }

      .quote-dot-v2 {
        width: 5px;
        height: 5px;
      }

      .quote-dot-v2.active {
        width: 16px;
      }
    }

    @media (max-width: 480px) {
      .floating-kakao {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
      }

      .floating-kakao svg {
        width: 26px;
        height: 26px;
      }

      .quote-slides-container {
        min-height: 200px;
      }

      .quote-content-v2 {
        padding: 20px 16px;
      }

      .quote-mark-v2 {
        font-size: 36px;
        margin-bottom: 4px;
      }

      .quote-text-v2 {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 12px;
      }

      .quote-author-v2 {
        font-size: 10px;
        padding: 4px 8px;
      }

      .quote-image-v2 {
        width: 100px;
        min-width: 100px;
      }

      .quote-nav-v2 {
        padding: 10px;
        gap: 10px;
      }

      .quote-dot-v2.active {
        width: 14px;
      }
    }

    @media (max-width: 360px) {
      .quote-image-v2 {
        width: 80px;
        min-width: 80px;
      }

      .quote-text-v2 {
        font-size: 12px;
      }
    }

    /* Bottom Navigation Bar */
    .bottom-nav {
      position: fixed;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 480px;
      max-width: 100vw;
      height: 64px;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: space-around;
      z-index: 100;
      box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.06);
    }

    .bottom-nav-item {
      flex: 1;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 3px;
      background: transparent;
      border: none;
      cursor: pointer;
      color: #9CA3AF;
      transition: all 0.2s ease;
      padding: 8px 0;
      position: relative;
    }

    .bottom-nav-item:active {
      transform: scale(0.95);
    }

    .bottom-nav-item.active {
      color: #1e3a5f;
    }

    .bottom-nav-icon {
      width: 22px;
      height: 22px;
      stroke-width: 1.8;
    }

    .bottom-nav-label {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: -0.3px;
    }

    .bottom-nav-item.active .bottom-nav-label {
      font-weight: 600;
    }

    /* Adjust container padding for bottom nav */
    .container {
      padding-bottom: 64px;
    }

    @media (max-width: 600px) {
      .bottom-nav {
        width: 100%;
        height: 60px;
      }

      .bottom-nav-icon {
        width: 20px;
        height: 20px;
      }

      .bottom-nav-label {
        font-size: 9px;
      }

      .container {
        padding-bottom: 60px;
      }
    }

    @media (max-width: 480px) {
      .bottom-nav {
        height: 56px;
      }

      .bottom-nav-item {
        gap: 2px;
        padding: 6px 0;
      }

      .bottom-nav-icon {
        width: 18px;
        height: 18px;
      }

      .bottom-nav-label {
        font-size: 9px;
      }

      .container {
        padding-bottom: 56px;
      }

      .container {
        padding-bottom: 60px;
      }
    }

/* ==========================================================
   월하 채팅 진입점 (사이드바 메뉴 + BEST 배너)
   ========================================================== */

/* 사이드바 메뉴 강조 항목 */
.sidebar-menu .menu-chat {
  color: var(--primary-color);
  font-weight: 700;
}

.sidebar-menu .menu-chat .menu-icon {
  color: var(--primary-color);
}

.menu-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 9px;
  font-weight: 700;
  color: #FFFFFF;
  background: #6366F1;
  border-radius: 6px;
  vertical-align: middle;
  letter-spacing: 0.3px;
}

/* BEST 섹션 상단 월하 배너 - 본 UI(밝은 카드)에 맞춤 */
.wolha-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  padding: 14px 16px;
  border-radius: 16px;
  text-decoration: none;
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(17, 17, 17, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wolha-banner:active {
  transform: scale(0.99);
}

.wolha-banner-orb {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  color: #FFF3C4;
  background: linear-gradient(135deg, #8B5CF6, #7C3AED);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.28);
}

.wolha-banner-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.wolha-banner-badge {
  align-self: flex-start;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 700;
  color: #6366F1;
  background: #EEF0FF;
  border-radius: 6px;
  letter-spacing: 0.2px;
}

.wolha-banner-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.wolha-banner-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-sub);
  line-height: 1.5;
  word-break: keep-all;
}

.wolha-banner-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #C7C9D1;
}

@media (max-width: 400px) {
  .wolha-banner { gap: 12px; padding: 13px 14px; border-radius: 14px; }
  .wolha-banner-orb { width: 46px; height: 46px; border-radius: 12px; font-size: 23px; }
  .wolha-banner-title { font-size: 14px; }
  .wolha-banner-desc { font-size: 11.5px; }
}
