.guest-input-card {
      background-color: var(--card-bg);
      border: 3px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 30px 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin: auto 0;
      transition: border-color 0.2s;
    }

    .guest-input-card:focus-within {
      border-color: var(--secondary-color);
    }

    .guest-input {
      width: 100%;
      min-height: 64px;
      padding: 12px 20px;
      font-size: 24px;
      font-weight: 800;
      border: 3px solid var(--border-color);
      border-radius: var(--radius-sm);
      text-align: center;
      color: var(--text-main);
      background-color: #F8F9FA;
      transition: all 0.15s ease-in-out;
    }

    .guest-input:focus {
      outline: none;
      background-color: white;
      border-color: var(--secondary-color);
      box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.15);
    }

    .experience-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background-color: #E0F2F1;
      border: 2px solid #80CBC4;
      color: #00796B;
      padding: 8px 16px;
      border-radius: var(--radius-sm);
      font-size: 16px;
      font-weight: 800;
      margin: 0 auto;
    }

    .public-nav-slot + .kiosk-body {
      padding-top: 0 !important;
    }

    .review-list {
      max-height: 520px;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      padding-right: 6px;
    }

    /* 스크롤바 디자인 모던화 */
    .review-list::-webkit-scrollbar {
      width: 6px;
    }
    .review-list::-webkit-scrollbar-track {
      background: #f8f9fa;
      border-radius: 10px;
    }
    .review-list::-webkit-scrollbar-thumb {
      background: #cbd5e0;
      border-radius: 10px;
    }
    .review-list::-webkit-scrollbar-thumb:hover {
      background: #a0aec0;
    }

    /* 게스트 리뷰 모달 스타일 */
    .guest-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 9999;
      justify-content: center;
      align-items: center;
      padding: 16px;
      backdrop-filter: blur(2px);
    }

    .guest-modal-content {
      background-color: white;
      border-radius: var(--radius-md);
      width: 100%;
      max-width: 480px;
      max-height: 90vh;
      display: flex;
      flex-direction: column;
      position: relative;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      animation: modalFadeIn 0.2s ease-out;
    }

    .guest-modal-close {
      position: absolute;
      right: 12px;
      top: 12px;
      font-size: 28px;
      color: #A0AEC0;
      background: none;
      border: none;
      cursor: pointer;
      line-height: 1;
      z-index: 10;
      padding: 4px 12px;
      border-radius: 50%;
      transition: background-color 0.2s, color 0.2s;
    }

    .guest-modal-close:active {
      background-color: #EDF2F7;
      color: #4A5568;
    }

    .guest-modal-body {
      flex: 1;
      overflow-y: auto;
      padding: 30px 24px 20px;
      -webkit-overflow-scrolling: touch;
    }

    .guest-modal-footer {
      display: flex;
      justify-content: space-between;
      padding: 16px 20px;
      border-top: 1px solid var(--border-color);
      background: #F8FAFC;
      border-radius: 0 0 var(--radius-md) var(--radius-md);
      gap: 12px;
    }

    .guest-modal-btn {
      flex: 1;
      min-width: 100px;
      padding: 14px 0;
      font-weight: 800;
      font-size: 16px;
      border-radius: var(--radius-sm);
      border: 2px solid var(--border-color);
      background-color: white;
      color: var(--text-main);
      cursor: pointer;
      transition: all 0.1s ease;
    }

    .guest-modal-btn:active {
      transform: scale(0.96);
      background-color: #F1F5F9;
      border-color: #CBD5E1;
    }

    .guest-modal-btn:disabled {
      opacity: 0.4;
      cursor: not-allowed;
      transform: none;
      background-color: #F8FAFC;
    }

    .review-card-item {
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
    }

    .review-card-item:active {
      transform: scale(0.98);
      border-color: var(--secondary-color);
      box-shadow: 0 4px 12px rgba(46, 196, 182, 0.15) !important;
    }

    /* 빛나는 회전 테두리 배너 컨테이너 */
    .rotating-glow-banner {
      position: relative;
      display: block;
      width: 100%;
      box-sizing: border-box;
      margin-top: 14px;
      border-radius: 16px;
      padding: 2.5px; /* 테두리 광선 두께 확보 */
      overflow: hidden;
      text-decoration: none;
      background: #E2E8F0; /* 기본 배경 */
      transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      z-index: 1;
    }

    /* 마우스 호버 및 터치 시 튕김 */
    .rotating-glow-banner:hover,
    .rotating-glow-banner:active {
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(255, 107, 107, 0.2);
    }

    /* 시계방향으로 계속 회전하는 그라디언트 광선 */
    .rotating-glow-banner::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: conic-gradient(
        from 0deg,
        transparent 20%,
        #20B8AA 40%, /* 민트 */
        #FF6B6B 60%, /* 핑크 */
        transparent 80%
      );
      animation: rotateGlow 3s linear infinite;
      z-index: 1;
    }

    /* 내용물을 담는 내부 컨테이너 (광선을 덮고 테두리만 보이게 함) */
    .rotating-glow-banner .banner-inner {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #FFFFFF;
      padding: 11px 16px;
      border-radius: 14px;
      z-index: 2; /* 광선 위에 배치 */
      min-height: 48px;
      box-sizing: border-box;
    }

    .rotating-glow-banner .banner-title {
      font-size: 15px;
      font-weight: 900;
      color: #2D3748;
    }

    .rotating-glow-banner .banner-btn {
      font-size: 12px;
      font-weight: 900;
      background: linear-gradient(135deg, #FF6B6B, #E53E3E);
      color: #FFFFFF;
      padding: 4px 10px;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(229, 62, 62, 0.2);
    }

    /* 회전 애니메이션 */
    @keyframes rotateGlow {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }
