    :root {
      --primary: #4A90E2;
      --accent: #50E3C2;
      --bg: #F5F7FA;
      --text: #333;
      --light: #FFF;
      --shadow: rgba(0, 0, 0, 0.1);
    }

    html,
    body {
      height: 100%;
      margin: 0;
      font-family: 'Noto Sans KR', sans-serif;
      background: var(--bg);
    }

    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      background: var(--primary);
      color: var(--light);
      box-shadow: 0 2px 4px var(--shadow);
      z-index: 1000;
    }

    .logo {
      font-size: 1.4rem;
      font-weight: bold;
    }

    .btn {
      background: none;
      border: none;
      font-size: 1.2rem;
      color: var(--light);
      cursor: pointer;
    }

    .filter-bar {
      position: fixed;
      top: 56px;
      left: 0;
      right: 0;
      height: 56px;
      background: var(--light);
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0 20px;
      box-shadow: 0 1px 3px var(--shadow);
      z-index: 999;
    }

    .filter-bar select,
    .filter-bar input {
      padding: 8px 12px;
      font-size: 0.9rem;
      border: 1px solid #CCC;
      border-radius: 4px;
      outline: none;
      transition: border-color .2s;
    }

    .filter-bar select:focus,
    .filter-bar input:focus {
      border-color: var(--primary);
    }

    .filter-bar button {
      padding: 8px 16px;
      font-size: 0.9rem;
      border: none;
      border-radius: 4px;
      background: var(--accent);
      color: var(--light);
      cursor: pointer;
      transition: background .2s;
    }

    .filter-bar button:hover {
      background: var(--primary);
    }

    .container {
      display: flex;
      position: absolute;
      top: 112px;
      bottom: 0;
      left: 0;
      right: 0;
    }

    .sidebar {
      width: 320px;
      max-width: 80%;
      overflow-y: auto;
      background: var(--light);
      border-right: 1px solid #E0E0E0;
      padding: 12px 0;
    }

    .map-area {
      flex: 1;
      position: relative;
    }

    #map {
      width: 100%;
      height: 100%;
      border-radius: 4px;
    }

    .place-card {
      margin: 8px 16px;
      background: var(--light);
      border-radius: 8px;
      box-shadow: 0 2px 6px var(--shadow);
      padding: 12px;
      cursor: pointer;
      transition: transform .2s, box-shadow .2s;
    }

    .place-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px var(--shadow);
    }

    .place-title {
      margin: 0;
      font-size: 1.1rem;
      color: var(--primary);
    }

    .place-meta {
      margin: 4px 0 0;
      color: var(--text);
      font-size: 0.9rem;
    }

    .mobile-cards {
      display: none;
    }

    @media(max-width:768px) {
      .sidebar {
        display: none;
      }

      .mobile-cards {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 12px;
        background: rgba(255, 255, 255, 0.95);
        overflow-x: auto;
        white-space: nowrap;
        z-index: 1000;
      }

      .mobile-cards .card {
        display: inline-block;
        width: 80%;
        max-width: 280px;
        margin-right: 12px;
        background: var(--light);
        border-radius: 8px;
        box-shadow: 0 2px 6px var(--shadow);
        overflow: hidden;
        transition: transform .2s;
      }

      .mobile-cards .card:hover {
        transform: translateY(-4px);
      }

      .mobile-cards .card img {
        width: 100%;
        height: 140px;
        object-fit: cover;
      }

      .mobile-cards .card .content {
        padding: 10px;
      }

      .mobile-cards .card h4 {
        margin: 0 0 6px;
        font-size: 1rem;
        color: var(--primary);
      }

      .mobile-cards .card p {
        margin: 0;
        font-size: 0.85rem;
        color: var(--text);
      }
    }

    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }

    .modal-content {
      position: relative;
      background: #fff;
      border-radius: 8px;
      width: 80%;
      max-width: 600px;
      max-height: 80%;
      padding: 1.5rem;
      overflow-y: auto;
    }

    .modal-close {
      position: absolute;
      top: 0.5rem;
      right: 0.5rem;
      background: transparent;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    @media (max-width:768px) {
      .modal-content {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: none;
        border-radius: 0;
        padding: 1rem;
      }
    }