      :root {
        --felt: #0a5a2b;
        --felt-dark: #064a22;
        --card-w: clamp(48px, 6.3vw, 88px);
        --card-h: calc(var(--card-w) * 1.625);
        --card-radius: 10px;
        --side-inset: 10vw;
        --side-center-gap: 18vw; /* distance from viewport center to inner edge of side stacks */
        --suit-gap: 16px;
        --trick-side-gap-mult: 1.1; /* multiplier for side trick landing gap */
        --hand-overlap-mult: -0.4;
        --dummy-overlap: -0.73;
        --stack-step-mult: 0.20;
        /* Suit colors (modern palette) */
        --spade-color: #1a1a1a;   /* black */
        --heart-color: #d32f2f;   /* rich red */
        --diamond-color: #e65100; /* dark orange */
        --club-color: #616161;    /* lighter dark gray */
        /* Dealer highlight */
        --dealer-red: #e53935;    /* vibrant red */
        /* Legacy fallbacks */
        --black: #1a1a1a;
        --red: #b00020;
        --front-bg: #fff;
        --front-border: #d7d7d7;
        --shadow: 0 2px 6px rgba(0,0,0,.25);
      }

      * { box-sizing: border-box; }
      html {
        width: 100%;
        max-width: 100%;
        scrollbar-gutter: auto;
      }
      html, body {
        height: 100%;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
      }
      body {
        margin: 0;
        color: #eee;
        font: 14px/1.3 system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
        background:
          radial-gradient(1200px 60% at 50% 50%, rgba(255,255,255,0.06), rgba(0,0,0,0) 60%),
          linear-gradient(180deg, var(--felt) 0%, var(--felt-dark) 100%);
      }
      /* Disable page scroll when a modal is open */
      html.modal-open, body.modal-open { overflow: hidden; }

      .table {
        height: calc(100vh - var(--app-header-h, 0px) - var(--app-footer-h, 0px));
        height: calc(100dvh - var(--app-header-h, 0px) - var(--app-footer-h, 0px));
        margin-top: var(--app-header-h, 0px);
        padding: 12px;
        display: grid;
        grid-template-areas:
          "north north north"
          "west  center east"
          "south south south";
        grid-template-rows: auto 1fr auto;
        grid-template-columns: 1fr 2fr 1fr;
        gap: 12px;
        overflow: hidden;
      }

      .seat { display: flex; flex-direction: column; align-items: center; gap: 8px; }
      .north { grid-area: north; }
      .south { grid-area: south; }
      .west { grid-area: west; justify-content: center; }
      .east { grid-area: east; justify-content: center; }
      .center { grid-area: center; }

      .label { opacity: .9; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; font-size: 12px; }
      .rotate { writing-mode: vertical-rl; transform: rotate(180deg); }

      /* Cards */
      .card {
        width: var(--card-w);
        height: var(--card-h);
        border-radius: var(--card-radius);
        position: relative;
        box-shadow: var(--shadow);
        user-select: none;
        -webkit-user-select: none;
      }

      .card.front {
        background:
          linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0) 30%),
          var(--front-bg);
        border: 1px solid var(--front-border);
      }

      .card.back {
        border: 1px solid rgba(244, 198, 89, 0.72);
        background:
          repeating-linear-gradient(45deg, rgba(255, 225, 151, 0.16) 0 6px, rgba(0, 0, 0, 0.14) 6px 12px),
          radial-gradient(120% 90% at 20% 20%, #525a67, #2a2f38);
        box-shadow:
          var(--shadow),
          inset 0 1px 0 rgba(255, 238, 194, 0.2),
          inset 0 -1px 0 rgba(8, 10, 15, 0.6);
      }

      .card .corner {
        position: absolute;
        width: calc(var(--card-w) * 0.26);
        text-align: center;
        line-height: 0.9;
        font-weight: 700;
      }
      .card .corner .r { font-size: clamp(14px, calc(var(--card-w) * 0.27), 24px); display: block; }
      .card .corner .s { font-size: clamp(14px, calc(var(--card-w) * 0.27), 24px); display: block; margin-top: -2px; }
      .card .corner.tl { top: 3px; left: 3px; }
      .card .corner.br { bottom: 3px; right: 3px; transform: rotate(180deg); }

      .card .pip {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        font-size: clamp(18px, calc(var(--card-w) * 0.35), 31px);
        opacity: .9;
      }

      /* Clickable cards */
      .hand .card, .dummy .card { cursor: pointer; }

      /* Floating clone for click animation */
      .floating {
        position: fixed;
        z-index: 1000;
        transition: top 350ms ease, left 350ms ease;
        pointer-events: none;
      }

      #boardStatus {
        position: fixed;
        top: calc(var(--app-header-h, 0px) + 12px);
        left: 12px;
        width: 86px;
        height: 86px;
        display: grid;
        grid-template-columns: 20px 1fr 20px;
        grid-template-rows: 20px 1fr 20px;
        border: 1px solid rgba(255,255,255,0.45);
        border-radius: 8px;
        overflow: hidden;
        background: rgba(0,0,0,0.2);
        z-index: 1600;
      }
      #boardStatus .zone {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 700;
        line-height: 1;
      }
      #boardStatus .north { grid-column: 2; grid-row: 1; background: #d32f2f; color: #fff; }
      #boardStatus .south { grid-column: 2; grid-row: 3; background: #d32f2f; color: #fff; }
      #boardStatus .east  { grid-column: 3; grid-row: 2; background: #fff; color: #222; }
      #boardStatus .west  { grid-column: 1; grid-row: 2; background: #fff; color: #222; }
      #boardStatus .center {
        grid-column: 2;
        grid-row: 2;
        background: rgba(0,0,0,0.55);
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      #boardStatus .board-no { font-size: 22px; font-weight: 800; line-height: 1; }

      #scoreboard {
        position: fixed;
        right: 12px;
        bottom: calc(var(--app-footer-h, 0px) + 12px);
        padding: 8px 10px;
        background: rgba(0,0,0,0.35);
        color: #fff;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 8px;
        font-weight: 700;
        letter-spacing: 0.02em;
        font-size: 18px;
        line-height: 1;
        z-index: 1600;
      }
      #topRightDock {
        position: fixed;
        top: calc(var(--app-header-h, 0px) + 12px);
        right: 12px;
        width: min(420px, 38vw);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        z-index: 1700;
        pointer-events: none;
      }
      #topRightDock > * {
        pointer-events: auto;
      }
      #biddingToggle {
        display: none;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255,255,255,0.28);
        border-radius: 10px;
        background: rgba(0,0,0,0.42);
        color: #fff;
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
        align-items: center;
        justify-content: center;
      }
      #biddingToggle:hover { background: rgba(0,0,0,0.56); }
      /* Bidding box (top-right) */
      #bidding {
        width: 100%;
        color: #fff;
        display: flex;
        flex-direction: column;
      }
      #bidding .bidding-panel {
        background: rgba(0,0,0,0.35);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 10px;
        box-shadow: var(--shadow);
        overflow: hidden;
        backdrop-filter: blur(2px);
      }
      #bidding .bid-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 10px;
        background: rgba(0,0,0,0.25);
        border-bottom: 1px solid rgba(255,255,255,0.15);
      }
      #bidding .bid-head .title {
        font-weight: 700;
        letter-spacing: 0.04em;
      }
      #bidding .bid-head .dealer-tag {
        font-size: 12px;
        opacity: 0.9;
      }
      #bidding .bid-table {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        column-gap: 6px;
        row-gap: 4px;
        padding: 8px 10px 10px;
        font-variant-numeric: tabular-nums;
      }
      /* Column headers */
      #bidding .col-head {
        text-align: center;
        font-weight: 700;
        letter-spacing: 0.06em;
        font-size: 16px; /* larger like bids */
        opacity: 0.95;
        position: relative;
        padding: 0;
        height: 20px;
        line-height: 20px; /* keep row height */
      }
      /* Dealer header color (compact) */
      #bidding .col-head.dealer { color: var(--dealer-red); font-weight: 900; }
      /* Dealer badge */
      .dealer-badge {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 2px solid #ffd54f;
        color: #ffd54f;
        font-weight: 800;
        letter-spacing: 0.04em;
      }
      #bidding .dealer-badge { width: 22px; height: 22px; font-size: 12px; }
      #biddingModal .dealer-badge { width: 26px; height: 26px; font-size: 14px; }
      #bidding .cell {
        min-height: 20px;
        padding: 0 6px; /* no vertical padding to keep row height */
        text-align: center;
        border-radius: 6px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.12);
        font-size: 16px; /* larger text */
        line-height: 20px; /* lock row height */
      }
      #bidding .cell.has-note {
        border-color: rgba(244, 198, 89, 0.58);
        box-shadow: inset 0 0 0 1px rgba(244, 198, 89, 0.14);
        cursor: pointer;
      }
      #bidding .bid-note-marker {
        color: #ffd54f;
        font-weight: 900;
        font-size: 0.72em;
        line-height: 0;
        vertical-align: super;
        margin-left: 1px;
      }
      #bidding .bidding-panel {
        position: relative;
      }
      .bidding-explanation-popup {
        position: absolute;
        z-index: 4;
        display: none;
        width: min(340px, calc(100% - 20px));
        border-radius: 8px;
        border: 1px solid rgba(126, 176, 255, 0.34);
        background: linear-gradient(180deg, rgba(52, 86, 138, 0.96), rgba(36, 63, 108, 0.96));
        color: #fff;
        padding: 10px 12px;
        box-shadow: 0 10px 22px rgba(8, 18, 38, 0.34);
      }
      .bidding-explanation-popup.open {
        display: block;
      }
      .bidding-explanation-text {
        margin: 0;
        color: #fff;
        font-size: 13px;
        line-height: 1.45;
        white-space: pre-wrap;
      }
      @media (hover: hover) and (pointer: fine) {
        .bidding-explanation-popup {
          pointer-events: none;
        }
      }
      /* Suit coloring + larger symbols inside bidding (compact) */
      #bidding .spades { color: var(--spade-color); }
      #bidding .hearts { color: var(--heart-color); }
      #bidding .diamonds { color: var(--diamond-color); }
      #bidding .clubs { color: var(--club-color); }
      #bidding .bid-table .spades,
      #bidding .bid-table .hearts,
      #bidding .bid-table .diamonds,
      #bidding .bid-table .clubs { font-size: 1.35em; line-height: 1; vertical-align: -1px; }

      @media (max-width: 1400px) {
        #topRightDock {
          width: calc(100vw - 24px);
          align-items: flex-end;
        }
        #biddingToggle { display: inline-flex; }
        #boardStatus {
          width: 58px;
          height: 58px;
          grid-template-columns: 14px 1fr 14px;
          grid-template-rows: 14px 1fr 14px;
          border-radius: 6px;
        }
        #boardStatus .zone { font-size: 9px; }
        #boardStatus .board-no { font-size: 14px; }
        #scoreboard {
          top: 76px;
          left: 12px;
          right: auto;
          bottom: auto;
          padding: 3px 5px;
          font-size: 11px;
          line-height: 1.1;
        }
        #bidding {
          display: none;
          width: min(420px, calc(100vw - 24px));
          max-height: calc(100dvh - 76px);
          overflow: auto;
        }
        #bidding .bidding-panel {
          background: rgba(0,0,0,0.72);
        }
        #bidding.open { display: block; }
      }

      @media (max-width: 900px), (max-height: 820px) {
        :root {
          --card-w: clamp(36px, 9.1vw, 58px);
          --card-radius: 6px;
          --side-inset: 2vw;
          --side-center-gap: 12vw;
          --suit-gap: 8px;
          --hand-overlap-mult: -0.52;
          --dummy-overlap: -0.68;
          --stack-step-mult: 0.16;
        }

        .table {
          padding: 6px;
          gap: 6px;
        }

        .seat { gap: 4px; }
        .label { font-size: 10px; }
        .dummy { gap: 8px; }
        .suit-col { gap: 3px; }
        .hand { padding: 2px 0 4px; }
        .card .pip { font-size: clamp(14px, calc(var(--card-w) * 0.28), 22px); }
        #snark .card { width: min(92vw, 520px); max-width: 92vw; }
      }

      @media (max-width: 640px), (max-height: 700px) {
        .card .pip { display: none; }
      }

      /* Bidding modal */
      #biddingModal {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.75);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 2000;
      }
      #biddingModal.open { display: flex; }
      #biddingModal .modal {
        width: min(900px, 92vw);
        max-height: 90vh;
        overflow: auto;
        background: rgba(12,12,12,0.88);
        border: 1px solid rgba(255,255,255,0.28);
        border-radius: 12px;
        box-shadow: 0 6px 24px rgba(0,0,0,0.4);
        backdrop-filter: blur(3px);
        position: relative;
      }
      #biddingModal .modal .close {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
        padding: 4px 8px;
        border-radius: 6px;
        position: absolute;
        top: 8px; right: 10px;
      }
      #biddingModal .modal .close:hover { background: rgba(255,255,255,0.1); }
      #biddingModal .bid-table {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        column-gap: 8px;
        row-gap: 6px;
        padding: 12px 16px 16px;
        font-variant-numeric: tabular-nums;
      }
      
      
      
      #biddingModal .col-head { text-align: center; font-weight: 800; letter-spacing: 0.06em; font-size: 20px; opacity: 0.95; position: relative; padding: 0; height: 26px; line-height: 26px; }
      #biddingModal .col-head.dealer { color: var(--dealer-red); font-weight: 900; }
      /* Congrats modal + fireworks */
      #congrats {
        position: fixed;
        inset: 0;
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.6);
        z-index: 4000;
        backdrop-filter: blur(2px);
      }
      #congrats.open { display: flex; }
      #congrats .confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
      #congrats .confetti .piece {
        position: absolute;
        top: -12px;
        width: 8px;
        height: 14px;
        opacity: 0.95;
        border-radius: 2px;
        transform: rotate(0deg);
        animation-name: confetti-fall, confetti-spin;
        animation-timing-function: linear, ease-in-out;
        animation-iteration-count: 1, infinite;
        animation-fill-mode: forwards;
      }
      /* Firework bursts spread from random centers */
      #congrats .confetti .burst { position: absolute; width: 0; height: 0; }
      #congrats .confetti .spark {
        position: absolute;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        opacity: 0.95;
        transform: translate(0,0) scale(1);
        animation: spark-move var(--dur,1200ms) ease-out forwards;
      }
      @keyframes spark-move {
        to { transform: translate(var(--dx,0px), var(--dy,0px)) scale(0.6); opacity: 0; }
      }
      @keyframes confetti-fall {
        0% { transform: translateY(-12px) rotate(0deg); }
        100% { transform: translateY(110vh) rotate(720deg); }
      }
      @keyframes confetti-spin {
        0% { transform: rotate(0deg); }
        50% { transform: rotate(180deg); }
        100% { transform: rotate(360deg); }
      }
      #congrats .card {
        position: relative;
        height: auto;
        background: rgba(255,255,255,0.97);
        color: #202020;
        border-radius: 14px;
        padding: 40px 56px 72px 56px;
        border: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 8px 28px rgba(0,0,0,0.45);
        text-align: center;
        display: block;
        box-sizing: border-box;
        width: min(92vw, 640px);
        max-width: 100%;
      }
      #congrats .card .title {
        margin: 0;
        font-size: clamp(28px, 6vw, 56px);
        font-weight: 900;
        letter-spacing: 0.02em;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        max-width: 100%;
      }
      #congrats .card .close {
        position: absolute;
        top: 6px; right: 8px;
        background: transparent;
        border: none;
        color: #444;
        font-size: 22px;
        line-height: 1;
        cursor: pointer;
        padding: 4px 6px;
        border-radius: 6px;
      }
      #congrats .card .close:hover { background: rgba(0,0,0,0.06); }

      /* Snark (no fireworks) */
      #snark {
        position: fixed;
        inset: 0;
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.7);
        z-index: 4000;
        backdrop-filter: blur(3px);
      }
      #snark.open { display: flex; animation: snark-fade 180ms ease-out; }
      @keyframes snark-fade { from { opacity: 0; } to { opacity: 1; } }
      #snark .card {
        position: relative;
        display: inline-block;
        box-sizing: border-box;
        height: auto;
        width: auto;
        max-width: min(92vw, 720px);
        /* Prevent internal scrollbars */
        max-height: none;
        overflow: visible;
        padding: 28px 36px 44px 36px;
        border-radius: 16px;
        background: linear-gradient(180deg, #ffffff, #f8f9fb);
        border: 1px solid rgba(0,0,0,0.08);
        box-shadow: 0 14px 40px rgba(0,0,0,0.35);
        color: #1c1c1c;
        text-align: center;
        animation: snark-pop 220ms cubic-bezier(.2,.8,.2,1);
      }
      @keyframes snark-pop {
        from { transform: translateY(8px) scale(.98); opacity: 0; }
        to   { transform: translateY(0) scale(1);    opacity: 1; }
      }
      #snark .card .title {
        font-size: clamp(26px, 5.2vw, 40px);
        font-weight: 900;
        letter-spacing: 0.01em;
        margin: 0 0 6px 0;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        max-width: 100%;
      }
      #snark .card .subtitle {
        margin-top: 8px;
        opacity: 0.8;
        font-size: clamp(14px, 3.2vw, 18px);
        line-height: 1.35;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        max-width: 100%;
      }
      #snark .card .close {
        position: absolute;
        top: 10px;
        right: 12px;
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.06);
        border: 1px solid rgba(0,0,0,0.08);
        color: #333;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
        border-radius: 50%;
        transition: background 120ms ease, transform 120ms ease;
      }
      #snark .card .close:hover { background: rgba(0,0,0,0.12); transform: scale(1.04); }
      #snark .card .close:focus { outline: 3px solid rgba(41,182,246,0.35); outline-offset: 2px; }
      
      
      #biddingModal .cell { min-height: 26px; padding: 0 8px; text-align: center; border-radius: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); font-size: 20px; line-height: 26px; }
      #biddingModal .spades { color: var(--spade-color); }
      #biddingModal .hearts { color: var(--heart-color); }
      #biddingModal .diamonds { color: var(--diamond-color); }
      #biddingModal .clubs { color: var(--club-color); }
      #biddingModal .bid-table .spades,
      #biddingModal .bid-table .hearts,
      #biddingModal .bid-table .diamonds,
      #biddingModal .bid-table .clubs { font-size: 1.6em; line-height: 1; vertical-align: -2px; }

      .card.spades { color: var(--spade-color); }
      .card.hearts { color: var(--heart-color); }
      .card.diamonds { color: var(--diamond-color); }
      .card.clubs { color: var(--club-color); }

      /* Dummy (top) — columns by suit */
      .dummy {
        display: flex;
        gap: 18px;
        justify-content: center;
        align-items: flex-start;
      }
      .suit-col { display: flex; flex-direction: column; gap: 6px; align-items: center; width: var(--card-w); flex: 0 0 var(--card-w); }
      .suit-col .col-cards { display: flex; flex-direction: column; align-items: center; }
      .suit-col .col-cards .card:not(:first-child) { margin-top: calc(var(--card-h) * var(--dummy-overlap)); }
      .suit-head { display: flex; align-items: center; gap: 6px; margin-bottom: 4px; font-weight: 600; }
      .suit-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

      /* Player (bottom) — open hand */
      .hand {
        display: flex;
        gap: 0;
        flex-wrap: nowrap;
        justify-content: center;
        padding: 6px 0 10px;
      }
      .hand .card:not(:first-child) { margin-left: calc(var(--card-w) * var(--hand-overlap-mult)); }
      .hand .card.suit-first { margin-left: var(--suit-gap); }

      @media (max-width: 1024px), (hover: none), (pointer: coarse) {
        .dummy.touch-suit-zoom-active .suit-col,
        .hand.touch-suit-zoom-active .card.front[data-seat="BOTTOM"] {
          transition: transform 150ms ease, opacity 150ms ease, filter 150ms ease, margin 150ms ease;
        }

        .dummy.touch-suit-zoom-active .suit-col.touch-zoom-active {
          transform-origin: top center;
          transform: scale(2.0);
          z-index: 2;
        }

        .dummy.touch-suit-zoom-active .suit-col.touch-zoom-muted {
          transform: scale(0.94);
          opacity: 0.46;
          filter: saturate(0.82);
        }

        .hand.touch-suit-zoom-active .card.front[data-seat="BOTTOM"].touch-zoom-active {
          transform-origin: bottom left;
          transform: translateY(-24px) scale(2.0);
          z-index: 3;
        }

        .hand.touch-suit-zoom-active .card.front[data-seat="BOTTOM"].touch-zoom-active:not(.suit-first) {
          margin-left: calc(var(--card-w) * 0.2);
        }

        .hand.touch-suit-zoom-active .card.front[data-seat="BOTTOM"].touch-zoom-active.suit-first {
          margin-left: var(--suit-gap);
        }

        .hand.touch-suit-zoom-active .card.front[data-seat="BOTTOM"].touch-zoom-muted {
          opacity: 0.4;
          transform: scale(0.94);
          filter: saturate(0.82);
        }
      }

      /* Opponents — face down stacks */
      .stack { position: relative; height: calc(var(--card-h) + 12px); width: var(--card-w); overflow: visible; }
      .stack .card { position: absolute; left: 0; }
      .stack .card:nth-child(n) { top: calc((var(--i)) * 4px); }

      /* Side stacks rotated 90deg and offset horizontally */
      .stack.side { height: calc(var(--card-w) + 12px); width: var(--card-h); }
      .stack.side .card {
        top: 0;
        left: calc((var(--card-h) - var(--card-w)) / 2);
        transform: rotate(90deg);
        transform-origin: center;
      }

      /* Center side stacks vertically on the viewport */
      .west .stack.side, .east .stack.side {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
      }
      .west .stack.side { left: var(--side-inset); }
      .east .stack.side { right: var(--side-inset); }

      /* Helpers */
      #status {
        position: fixed;
        left: 12px;
        bottom: 12px;
        padding: 8px 10px;
        background: rgba(0,0,0,0.35);
        color: #fff;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 8px;
        font-size: 13px;
        z-index: 1600;
      }
      #newDeal {
        position: fixed;
        right: 12px;
        top: 12px;
        border: 1px solid rgba(255,255,255,0.28);
        border-radius: 10px;
        background: rgba(0,0,0,0.42);
        color: #fff;
        font-size: 14px;
        line-height: 1;
        cursor: pointer;
        padding: 10px 12px;
        z-index: 1800;
      }
      #newDeal:hover { background: rgba(0,0,0,0.56); }
