
      :root {
        /* Base (match Profile) */
        --bg: #f4f4fb;
        --ink: #0f172a;
        --muted: rgba(100, 116, 139, 1);
        --line: rgba(148, 163, 184, 0.35);

        /* Accent palette (softer, more modern) */
        --blue: #38bdf8;
        --blueInk: #0f172a;
        --coral: #fb7185;
        --purple: #a855f7;
        --green: #22c55e;
        --yellow: #facc15;
        --orange: #fb923c;

        /* Shadows / layout */
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
        --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
        --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.15);

        --max: 980px;

        /* Home-specific helpers */
        --card: rgba(255, 255, 255, 0.85);
        --text: var(--ink);
        --radius: 18px;

        /* Offer colors */
        --o1: #fb923c;
        --o2: #38bdf8;
        --o3: #a855f7;

        --accent: var(--blueInk);
      }

      * {
        box-sizing: border-box;
      }
      html,
      body {
        height: 100%;
      }
      body {
        margin: 0;
        font-family:
          -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
        color: var(--ink);
        background:
          radial-gradient(
            circle at 0% 0%,
            rgba(56, 189, 248, 0.24) 0%,
            transparent 55%
          ),
          radial-gradient(
            circle at 100% 100%,
            rgba(168, 85, 247, 0.2) 0%,
            transparent 55%
          ),
          linear-gradient(180deg, #f9fafb 0%, #eef2ff 40%, #e0f2fe 100%);
        background-attachment: fixed;
        min-height: 100vh;
        position: relative;
        overflow-x: hidden;
      }

      body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
          radial-gradient(
            circle at 30% 30%,
            rgba(255, 255, 255, 0.4) 0%,
            transparent 40%
          ),
          radial-gradient(
            circle at 70% 70%,
            rgba(156, 214, 230, 0.2) 0%,
            transparent 40%
          );
        pointer-events: none;
        z-index: 0;
      }

      /* -------- Topbar + Tabs -------- */
      header {
        position: sticky;
        top: 0;
        z-index: 30;
        backdrop-filter: blur(12px);
        background: rgba(255, 255, 255, 0.4);
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      }

      .top {
        max-width: 980px;
        margin: 0 auto;
        padding: 14px 16px 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 160px;
      }

      .badge {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--blue);
        color: var(--blueInk);
        box-shadow: 0 8px 18px rgba(15, 23, 42, 0.18);
      }
      .brand h1 {
        font-size: 15px;
        margin: 0;
        letter-spacing: 0.2px;
      }
      .brand p {
        margin: 2px 0 0;
        font-size: 12px;
        color: var(--muted);
      }

      .actions {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .pill {
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.55);
        border-radius: 999px;
        padding: 8px 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--text);
        cursor: pointer;
        transition:
          transform 0.15s ease,
          background 0.2s ease;
        user-select: none;
      }
      .pill:hover {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.75);
      }
      .pill:active {
        transform: translateY(0px) scale(0.99);
      }

      .avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: rgba(43, 43, 43, 0.08);
        font-weight: 700;
        font-size: 12px;
      }

      /* Tabs */
      .tabs-wrap {
        max-width: 980px;
        margin: 0 auto;
        padding: 0 16px 12px;
      }
      .tabs {
        position: relative;
        display: flex;
        gap: 10px;
        padding: 8px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.55);
        border: 1px solid rgba(0, 0, 0, 0.06);
        overflow: hidden;
      }
      .tab {
        position: relative;
        flex: 1;
        border: 0;
        background: transparent;
        padding: 10px 12px;
        border-radius: 999px;
        cursor: pointer;
        color: rgba(43, 43, 43, 0.75);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-weight: 650;
        transition:
          color 0.2s ease,
          transform 0.2s ease;
        outline: none;
        z-index: 2;
        white-space: nowrap;
      }
      .tab:hover {
        color: var(--text);
        transform: translateY(-1px);
      }
      .tab:active {
        transform: translateY(0px);
      }

      /* Moving underline indicator (the "line") */
      .indicator {
        position: absolute;
        left: 8px;
        top: calc(100% - 6px);
        height: 3px;
        width: 60px;
        background: var(--accent);
        border-radius: 999px;
        transition:
          transform 0.25s ease,
          width 0.25s ease,
          opacity 0.25s ease;
        opacity: 0.95;
        z-index: 1;
      }

      .tab.active {
        color: var(--text);
      }

      /* -------- Layout -------- */
      main {
        max-width: var(--max);
        margin: 0 auto;
        padding: 18px 16px 36px;
        position: relative;
        z-index: 1;
      }

      .hero {
        display: grid;
        gap: 10px;
        text-align: center;
        padding: 24px 10px 10px;
        animation: fadeInDown 0.6s ease-out;
      }
      .hero .hello {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        font-weight: 800;
      }
      .hero h2 {
        margin: 0;
        font-size: 32px;
        font-weight: 900;
        letter-spacing: -0.05em;
        background: linear-gradient(
          135deg,
          var(--blueInk),
          var(--blue),
          var(--purple)
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .hero p {
        margin: 0;
        color: var(--muted);
        font-size: 15px;
      }

      @keyframes fadeInDown {
        from {
          opacity: 0;
          transform: translateY(-24px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .grid {
        margin-top: 18px;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 14px;
        align-items: start;
      }

      .panel {
        border-radius: 24px;
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.96),
          rgba(255, 255, 255, 0.9)
        );
        border: 1px solid rgba(255, 255, 255, 0.85);
        box-shadow: var(--shadow);
        overflow: hidden;
        backdrop-filter: blur(14px);
        transition: all 0.25s ease;
      }
      .panel:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(-3px);
      }

      .panel-head {
        padding: 14px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
      }
      .panel-title {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--muted);
        font-weight: 700;
        font-size: 13px;
        margin: 0;
      }
      .chip {
        padding: 7px 10px;
        border-radius: 999px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.6);
        font-size: 12px;
        color: rgba(43, 43, 43, 0.75);
      }

      /* Offers */
      .offers {
        padding: 14px;
      }
      .offer {
        border-radius: 18px;
        padding: 16px;
        color: rgba(255, 255, 255, 0.92);
        position: relative;
        overflow: hidden;
        box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
        transition:
          transform 0.18s ease,
          box-shadow 0.18s ease;
        cursor: pointer;
      }
      .offer:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
      }
      .offer::after {
        content: "";
        position: absolute;
        width: 240px;
        height: 240px;
        right: -90px;
        top: -120px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.18);
      }
      .offer-top {
        position: relative;
        z-index: 1;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: flex-start;
      }
      .offer h3 {
        margin: 0 0 6px;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 0.2px;
      }
      .offer p {
        margin: 0;
        font-size: 13px;
        opacity: 0.95;
      }
      .off-badge {
        background: rgba(255, 255, 255, 0.25);
        padding: 8px 12px;
        border-radius: 999px;
        font-weight: 900;
        font-size: 12px;
        white-space: nowrap;
      }
      .offer-foot {
        margin-top: 12px;
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        opacity: 0.95;
      }

      /* Destinations */
      .destinations {
        padding: 14px;
      }
      .dest {
        border-radius: 18px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.75);
        border: 1px solid rgba(0, 0, 0, 0.06);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.18s ease;
        cursor: pointer;
      }
      .dest:hover {
        transform: translateY(-2px);
      }
      .dest img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        display: block;
      }
      .dest .meta {
        padding: 10px 12px 12px;
      }
      .dest .name {
        margin: 0;
        font-weight: 900;
        font-size: 14px;
      }
      .dest .sub {
        margin: 4px 0 0;
        font-size: 12px;
        color: var(--muted);
      }

      /* Skeleton (loading) */
      .skeleton {
        position: relative;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.55);
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 18px;
        height: 92px;
      }
      .skeleton::before {
        content: "";
        position: absolute;
        inset: 0;
        transform: translateX(-60%);
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.55),
          transparent
        );
        animation: shine 1.1s infinite;
      }
      @keyframes shine {
        0% {
          transform: translateX(-60%);
        }
        100% {
          transform: translateX(60%);
        }
      }

      /* Responsive */
      @media (max-width: 900px) {
        .grid {
          grid-template-columns: 1fr;
        }
        .brand {
          min-width: auto;
        }
      }
    