/* Modal styles */
            #project-overview-modal {
              position: fixed;
              top: 0;
              left: 0;
              width: 100vw;
              height: 100vh;
              background: rgba(0,0,0,0.45);
              z-index: 9999;
              display: flex;
              align-items: center;
              justify-content: center;
            }
            #project-overview {
              max-width: 700px;
              margin: 0;
              padding: 24px;
              background: #f9f9f9;
              border-radius: 8px;
              box-shadow: 0 2px 24px #0003;
              font-family: inherit;
              position: relative;
              font-size: 18px;
            }
            #project-overview .close-btn {
              position: absolute;
              top: 16px;
              right: 16px;
              background: #e4003a;
              color: #fff;
              border: none;
              border-radius: 50%;
              width: 36px;
              height: 36px;
              font-size: 1.5rem;
              font-weight: bold;
              cursor: pointer;
              box-shadow: 0 2px 8px #0002;
              transition: background 0.2s;
            }
            #project-overview .close-btn:hover {
              background: #b8002c;
            }
            #project-overview-open {
                top: 24px;
                right: 24px;
                position: fixed;
                background-color: #fff;
            }
      body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial; background: #232323; }
      #root { height: 100vh; }
      .special-card {
        background: #232323;
        border-radius: 20px;
        box-shadow: 0 4px 24px #0002;
        padding: 0;
        margin: 24px 12px;
        color: #fff;
        font-family: inherit;
        min-width: 370px;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
      }
      .special-card img {
        width: 100%;
        border-radius: 16px 16px 0 0;
        background: #222;
        object-fit: contain;
        margin-bottom: 0;
      }
      .special-card .card-content {
        padding: 28px 24px 18px 24px;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .special-card .card-title {
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 2px;
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .special-card .card-badge {
        display: inline-block;
        background: #ffd600;
        color: #232323;
        font-size: 0.85rem;
        font-weight: 700;
        border-radius: 6px;
        padding: 2px 10px;
        margin-bottom: 8px;
      }
      .special-card .card-apr {
        font-size: 2.5rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0;
      }
      .special-card .card-term {
        font-size: 1.1rem;
        color: #fff;
        margin-bottom: 0;
      }
      .special-card .card-expires {
        font-size: 0.95rem;
        color: #ccc;
        margin-bottom: 12px;
      }
      .special-card .card-ctas {
        display: flex;
        gap: 16px;
        margin-top: 18px;
      }
      .special-card .cta-primary {
        background: #e4003a;
        color: #fff;
        font-weight: 700;
        border: none;
        border-radius: 24px;
        padding: 12px 28px;
        font-size: 1.1rem;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.2s;
      }
      .special-card .cta-primary:hover {
        background: #b8002c;
      }
      .special-card .cta-secondary {
        background: transparent;
        color: #fff;
        border: 2px solid #e4003a;
        border-radius: 24px;
        padding: 12px 28px;
        font-size: 1.1rem;
        font-weight: 700;
        cursor: pointer;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
      }
      .special-card .cta-secondary:hover {
        background: #e4003a;
        color: #fff;
      }
      .info-btn {
        position: fixed;
        top: 16px;
        right: 16px;
        z-index: 10000;
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255,255,255,0.15);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 8px #0004;
      }
      body, .x-body {
        background: #f9f9f9;
      }
      .info-btn:hover { background: rgba(255,255,255,0.06); }
      /* Ext JS visual overrides (small, non-invasive tweaks) */
      .x-panel, .x-panel-default, .x-panel-header { border-radius: 8px; }
      .x-panel-body, .x-panel-default .x-body { background: #ffffff; }
      .x-panel-header-ct, .x-panel-header { background: linear-gradient(#fbfdff,#f3f7fb); border-bottom: 1px solid #e6eef6; }
      .x-toolbar { background: linear-gradient(#fafafa,#f1f5f8); border-bottom: 1px solid #e6eaf0; }
      .x-grid-header-ct .x-column-header-inner { background: linear-gradient(#f6f9fc,#eef5fb); color: #1f2d3d; font-weight: 600; }
      .x-grid-row .x-grid-cell { border-bottom: 1px solid #eef3f6; }
      .x-btn { border-radius: 6px; box-shadow: none; }
      .x-btn-default-small, .x-btn-default-medium { background-image: none; }
      .x-form-label { font-weight: 600; color: #22303a; }
      .x-form-field, .x-field, .x-form-item .x-form-field { border-radius: 6px; border: 1px solid #d9e2ea; background: #fff; }
      .x-grid-empty { color: #667786; }
      /* Slightly lift modal/backdrop visuals */
      #project-overview { box-shadow: 0 6px 36px rgba(0,0,0,0.25); }