:root {
    --font-family: "myriad-pro", "Roboto", Arial, sans-serif;

    --font-size-h1: 42px;
    --font-size-h2: 28px;
    --font-size-h3: 18px;
    --font-size-h4: 16px;
    --font-size-body: 16px;

    --font-weight-heading: 700;
    --font-weight-body: 400;

    --line-height-heading: 1.2;
    --line-height-body: 1.6;

    /* London Drugs blue */
    --blue: #005DAA;
}

/* Kill Header Gap */
header .navbar {
    display: none;
}

/* =========================================================
   APP FRAME
   The one place mobile width lives. .app-frame-content is
   fixed at 430px and centered — background images inside it
   never need responsive math again. .app-frame (the parent)
   fills the rest of the viewport on tablet/desktop with
   wallpaper, using a full-bleed breakout so it escapes any
   ancestor padding/max-width without touching _Layout.cshtml.
   ========================================================= */

.app-frame {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;

    min-height: 100vh;

    display: flex;
    justify-content: center;

    background-color: #0a2f5c; /* solid fallback so nothing looks broken before you add art */


    /*background-image: url("/images/ShopAndWin_bg_RGB_V3.jpg");
       background-repeat: repeat-y;
       background-position: center top;*/
}

.app-frame-content {
    display: flex;
    flex-direction: column;

    position: relative;
    width: 100%;
    max-width: 430px;
    min-height: 100vh;

    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
}

.app-frame-content main {
    flex: 1 0 auto;
}




html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  color: var(--blue);
  margin-bottom: 60px;
}

.footer {
  font-size: 11px;
}

.step-indicator { display: none; }

/* Debug panel pills — pale tints instead of saturated Bootstrap badges */
.pill-pass    { background-color: #d1f0d1; color: #1a5c1a; border-radius: 4px; padding: 1px 7px; white-space: nowrap; }
.pill-fail    { background-color: #f8d7da; color: #842029; border-radius: 4px; padding: 1px 7px; white-space: nowrap; }
.pill-warn    { background-color: #fff3cd; color: #664d03; border-radius: 4px; padding: 1px 7px; white-space: nowrap; }
.pill-info    { background-color: #cfe2ff; color: #084298; border-radius: 4px; padding: 1px 7px; white-space: nowrap; }
.pill-unknown { background-color: #e2e3e5; color: #41464b; border-radius: 4px; padding: 1px 7px; white-space: nowrap; }
.pill-neutral { background-color: #e2e3e5; color: #41464b; border-radius: 4px; padding: 1px 7px; white-space: nowrap; }

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.container {
    padding: 0px;
}

.main {
    width: 100%;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
}

h1 {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-heading);
    line-height: 1.1;
}

h2 {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    line-height: var(--line-height-heading);
}

h3 {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-heading);
    line-height: var(--line-height-heading);
}

h4 {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-heading);
    line-height: 1.4;
}

p {
    line-height:1.2;
    }

.drop-shadow {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* =========================================================
   SITE SHELL
   Wraps every panel (in _Layout.cshtml) so the 430px mobile
   frame floats centered on wider viewports during dev/preview.
   ========================================================= */

.site-shell {
    display: flex;
    justify-content: center;
    padding: 24px 0;
    background: #eef3f7;
    min-height: 100vh;
}


/* =========================================================
   WELCOME PAGE
   ========================================================= */

.welcome-page {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    overflow: hidden;
    background: #ffffff;
    font-family: "myriad-pro", "Roboto", Arial, sans-serif;
}


/* -------------------------
   HEROES
   ------------------------- */


.welcome-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0px 30px 70px;

    background-image: url("/images/bg_tall.png");
    background-size: 550px;
    background-position: 0% -700px;
    color: #ffffff;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.welcome-hero-content {
    width: 100%;
    padding: 0px;
}

.welcome-logo {
    display: block;
    width: min(670px, 100%);
    height: auto;
    margin: 0 auto -15px;
}


.prize-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0px 30px 50px;

    background-image:
        
        url("/images/bg_tall.png");
    background-size: 550px;
    background-position: 0px -700px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.prize-hero-inner {
    width: 100%;
    padding: 0;
}



.prize-logo {
    display: block;
    width: min(670px, 100%);
    height: auto;
    margin: 0 auto 5px;
}





.welcome-dates {
    margin-top: 0px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    font-size: 18px;
    font-weight: 400;
}

.registration-subtext {
    margin-top: 0px;
    padding-right: 10px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 18px;
    font-weight: 400;
}

.welcome-calendar {
    display: inline-flex;
    width: 21px;
    height: 21px;
    color: #ff85c4;
}

.welcome-calendar svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* -------------------------
   HOW TO PLAY
   ------------------------- */

.how-to-play {
    position: relative;

    margin-top: -60px;
    padding: 22px 38px 32px;

    background: #ffffff;

    border-top-left-radius: 60px;
}

.how-to-play h2 {
    margin: 10px 0px;

    text-align: center;

    font-size: 25px;
    line-height: 1.1;
    font-weight: 700;

    color: #0066b3;
}


/* -------------------------
   STEPS
   ------------------------- */

.steps {
    position: relative;
    max-width: 330px;
    margin: 20px auto 40px 45px;
}



.play-step {
    position: relative;

    display: grid;
    grid-template-columns: 78px 45px 1fr;
    align-items: center;

    min-height: 88px;
}

/*
    Dotted line between the numbered circles
*/
.play-step:not(:last-child)::after {
    content: "";

    position: absolute;
    left: 99px;
    top: 65px;

    height: 47px;

    border-left: 3px dotted #9acbea;
}


/* Step icon */

.steps::before {
    content: "";
    position: absolute;
    top: 35px;      /* roughly the first icon's vertical center */
    bottom: 35px;   /* roughly the last icon's vertical center */
    left: 34px;     /* horizontal center of the 78px icon column */
    width: 2px;

    background: #d9eff8; /* same blue as your existing dotted connector */
    z-index: 0;
}

.step-icon {

    position: relative; /* needed for z-index below to actually take effect */
    z-index: 1;          /* sits above the line, so the line only shows in the gaps */

    width: 70px;
    height: 70px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #daf2fb;
}

.step-icon img {
    width: 70px;
    height: 70px;

    fill: none;
    stroke: #0068bf;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Number */

.step-number {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number span {
    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ef8fc6;
    color: #ffffff;

    font-size: 22px;
    font-weight: 700;
}


/* Step copy */

.step-copy {
    padding-left: 6px;

    color: #0066b3;

    font-size: 16px;
    line-height: 1.05;
}

.step-copy strong {
    display: block;

    font-size: 17px;
    line-height: 1;
    font-weight: 700;
}

.step-copy span {
    display: block;
    font-weight: 400;
}


/* -------------------------
   CTA (shared pill button — reused as-is on Registration/Play/Win)
   ------------------------- */

.welcome-cta {
    margin-top: 26px;
    text-align: center;
}

.welcome-cta p {
    margin-bottom: 25px;

    color: #0066b3;

    font-size: 15px;
    font-weight: 400;
}

.main-btn {
  --blue: #005DAA;

  position: relative;
  display: inline-flex;    /* was flex — this is the only change */
  align-items: center;
  justify-content: center;

  min-width: 240px;
  height: 56px;
  padding: 0 50px;

  background: var(--blue);
  color: #fff;

  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;

  border: 0;
  border-radius: 999px;
  cursor: pointer;

  box-shadow:
    0 0 0 5px rgba(0, 93, 170, 0.22),
    0 0 0 10px rgba(53, 191, 235, 0.18),
    0 0 0 15px rgba(170, 225, 244, 0.14);

  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.main-btn span {
  position: relative;
  z-index: 1;
}

.main-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 8px rgba(0, 93, 170, 0.25),
    0 0 0 16px rgba(53, 191, 235, 0.20),
    0 0 0 24px rgba(170, 225, 244, 0.12);
}

.main-btn:active {
  transform: translateY(0) scale(0.98);
}

.main-btn:focus-visible {
  outline: 3px solid #35bfeb;
  outline-offset: 6px;
}

.main-btn.is-processing,
.main-btn.is-processing:hover,
.main-btn.is-processing:active {
  background: #9aa0a6;
  box-shadow: none;
  transform: none;
  cursor: default;
  pointer-events: none;
}

.main-btn svg {
    position: absolute;       /* NEW — pulls it out of the centered flex group */
    right: 22px;               /* NEW — pins it to the right edge, tune this */
    top: 50%;
    transform: translateY(-50%);

    width: 18px;
    height: 18px;
    flex-shrink: 0;

    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   REGISTRATION PAGE
   Same 430px frame + masthead treatment as Welcome, just a
   shorter hero (no dates/steps) leading into the form card.
   ========================================================= */

.registration-page {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    overflow: hidden;
    background: #ffffff;
    font-family: "myriad-pro", "Roboto", Arial, sans-serif;
}

.registration-hero {
    position: relative;
    min-height: 200px;

    background-image:
        linear-gradient(
            110deg,
            rgba(0, 89, 177, 0.9),
            rgba(24, 111, 196, 0.45) 48%,
            rgba(236, 79, 159, 0.72)
        ),
        url("/images/welcome-hero-bg.jpg");

    background-size: cover;
    background-position: center;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.registration-hero-content {
    width: 100%;
    padding: 30px 28px 34px;
}

.registration-logo {
    width: min(220px, 70%);
    margin-bottom: 8px;
}

.registration-hero h1 {
    margin: 10px 0 0;

    font-family: "myriad-pro", "Roboto", Arial, sans-serif;
    font-size: 34px;
    font-weight: 700;

    color: #ffffff;
}

.registration-form-panel {
    position: relative;

    margin-top: -20px;
    padding: 28px 30px 32px;

    background: #ffffff;

    border-top-left-radius: 44px;
}

.form-field {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    margin-bottom: 6px;

    color: #0066b3;
    font-weight: 700;
    font-size: 15px;
}

.form-field .required {
    color: #ec4f9f;
}

.form-field .form-control {
    width: 100%;
    border: 1.5px solid #9acbea;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 15px;
}

.form-field .form-control::placeholder {
    color: #9ba7b3;
}

.terms-check input[type="checkbox"] {
    margin-top: 3px;
}

.terms-check a {
    color: #0077cc;
    text-decoration: underline;
}


.prize-page {
padding:0px;
margin:0px;
    width: 100%;
    background: #004c97;
    font-family: "myriad-pro", "Roboto", Arial, sans-serif;
}



.prize-subtext {
    max-width: 300px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.4;
}

.prize-returning-note {
    margin:0px;
    font-size: 16px;
    opacity: 0.9;
}

.prize-image-frame {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 40px auto 30px;

    border-radius: 50%;
    background: #cfe9fb;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    box-shadow:
        0 0 30px 8px rgba(255, 255, 255, 0.35),
        0 0 70px 25px rgba(120, 190, 255, 0.30);
}

/* GamePlay only — lets the basket rest on top of the shrunk oval
   instead of being clipped/centered through its middle */
.prize-image-frame.is-oval {
    overflow: visible;
    align-items: flex-end;
    height: 80px;
    margin: 140px auto 20px;
}

.prize-image-frame img {
    width: 95%;
    height: auto;
}

/* GameResult winner prize image — overflows the circle and pops in on load */
@keyframes prize-pop-in {
    0%   { transform: scale(0.3);    opacity: 0; }
    55%  { transform: scale(1.18);   opacity: 1; }
    75%  { transform: scale(0.96); }
    100% { transform: scale(1); }
}

.prize-image-frame.is-result-prize {
    overflow: visible;
}

.prize-image-frame.is-result-prize img {
    width: 115%;
    height: auto;
    position: relative;
    z-index: 2;
    transform-origin: center center;
    filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.22));
    animation: prize-pop-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.prize-hero-curve {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 80px;
    display: block;
}

.prize-cta {
    width: 100%;
    background: #ffffff;
    padding: 26px 30px 40px;
    text-align: center;
}

.prize-cta-inner {
    max-width: 430px;
    margin: 0 auto;
}

.prize-loyalty-note {
    margin-top: 18px;
    font-size: 0.85rem;
    color: #6c757d;
    opacity: 0.75;
}



/* -------------------------
   PRIVACY POLICY
   ------------------------- */

.privacy-policy-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
}

.privacy-policy-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #005daa;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #e0e8f4;
}

.privacy-policy-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #005daa;
    margin-top: 1.5rem;
    margin-bottom: 0.4rem;
}

.privacy-policy-content p {
    margin-bottom: 0.85rem;
}

.privacy-policy-content ul {
    margin: 0.5rem 0 1rem 1.25rem;
    padding: 0;
}

.privacy-policy-content ul li {
    margin-bottom: 0.4rem;
}

.privacy-policy-content address {
    font-style: normal;
    background: #f4f8fd;
    border-left: 3px solid #005daa;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    border-radius: 0 4px 4px 0;
    line-height: 1.8;
}

.privacy-policy-content a {
    color: #005daa;
    text-decoration: underline;
}

.privacy-policy-content a:hover {
    color: #003d73;
}

.security-opt-out-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    font-size: 0.9rem;
}
.security-opt-out-table th,
.security-opt-out-table td {
    border: 1px solid #d0dcea;
    padding: 0.75rem 1rem;
    vertical-align: top;
    line-height: 1.6;
    color: #333;
}
.security-opt-out-table thead th {
    background: #005daa;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
}
.security-opt-out-table tbody tr:nth-child(odd) td {
    background: #f8fafd;
}
.security-opt-out-table tbody tr:nth-child(even) td {
    background: #fff;
}
.security-opt-out-table td:first-child {
    width: 35%;
    font-size: 0.875rem;
}
.security-opt-out-table td p { margin: 0 0 0.5rem; }
.security-opt-out-table td p:last-child { margin-bottom: 0; }
.security-opt-out-table td ul { margin: 0.25rem 0 0 1.25rem; padding: 0; }
.security-opt-out-table td ul li { margin-bottom: 0.25rem; }
.security-opt-out-table a { color: #005daa; word-break: break-all; }

.privacy-updated {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* -------------------------
   FOOTER
   ------------------------- */

.site-footer {
    background: #005daa;
    padding: 30px 24px 22px;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.site-footer .footer-link a {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: underline;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    max-width: 130px;
    height: auto;
}

.footer-copyright {
    color: #cfe4f6;
    font-size: 11px;
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: none;
    padding: 0px;
    margin: 0px;
    width: 100%;
}

.header {
    padding: 0;
    margin: 0;
}

body {
    padding: 0;
    margin: 0;
}

.text-center { 
    margin:0px;
    padding:0px;
    }


/* -------------------------
   FAQ
   ------------------------- */

    .faq-section {
    padding: 30px 24px 40px;
    text-align: center;
}

.faq-title {
    margin: 0 0 18px;
    color: #0066b3;
    font-size: 26px;
    font-weight: 700;
}

.faq-list {
    text-align: left;
    border: 1.5px solid #9acbea;
    border-radius: 8px;
    overflow: hidden; /* clips each item's square corners to the list's rounded shape */
}

.faq-item {
    border-top: 1.5px solid #9acbea;
}

.faq-item:first-child {
    border-top: none;
}

/* remove the default browser triangle marker */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question {
    list-style: none;
    display: block;
    position: relative;
    padding: 16px 44px 16px 18px;
    cursor: pointer;

    color: #0066b3;
    font-weight: 700;
    font-size: 15px;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

/* +/- indicator — absolutely positioned so text flows full width */
.faq-question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    color: #0066b3;
}

.faq-item[open] .faq-question::after {
    content: "\2212"; /* − */
}

.faq-answer {
    padding: 0 18px 18px;
    color: #333333;
    font-size: 14px;
    line-height: 1.5;
}

/* -------------------------
   Fillable Forms
   ------------------------- */

.form-label {
    display: block;
    margin-bottom: 0px;
    color: #005daa;
    font-weight: 700;
    font-size: 15px;
}

.form-control {
    border: 1.5px solid #9ec1de;
    border-radius: 5px;
    padding: 8px 15px;
    font-size: 15px;
}

.form-control::placeholder {
    color: #9ec1de;
}

.form-control:focus {
    border-color: #0067b9;
    box-shadow: 0 0 0 3px rgba(0, 103, 185, 0.15);
}

.form-label.required::after {
    content: " *";
    color: #dc3545;
    font-weight: 700;
}

.prize-image-frame svg {
    width: 62%;
    height: 62%;
}

/* -------------------------
   Terms & Cond
   ------------------------- */

.terms-check {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 0px;
    font-size: 14px;
    color: #333333;
}

.terms-check input[type="checkbox"] {
    margin-top: 3px;
}

.terms-check .required-mark {
    color: #dc3545;
    font-weight: 700;
}

.terms-check a {
    color: #0077cc;
    text-decoration: underline;
}


/* -------------------------
   Play Animation
   ------------------------- */

/* ── Phase 1: shake + grow in place ── */
@keyframes basketShake {
    0%   { transform: scale(1)    rotate(0deg); }
    10%  { transform: scale(1.03) rotate(-4deg); }
    20%  { transform: scale(1.05) rotate(4deg); }
    30%  { transform: scale(1.07) rotate(-5deg); }
    40%  { transform: scale(1.09) rotate(5deg); }
    50%  { transform: scale(1.11) rotate(-4deg); }
    60%  { transform: scale(1.13) rotate(4deg); }
    70%  { transform: scale(1.16) rotate(-3deg); }
    80%  { transform: scale(1.22) rotate(3deg); }
    90%  { transform: scale(1.05) rotate(-2deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.prize-image-frame img.is-shaking {
    animation: basketShake 0.7s ease-in-out forwards;
}

/* ── Phase 2: starburst explosion, contained to the mobile card ── */
.play-overlay {
    position: fixed;
    overflow: hidden;
    z-index: 999;
}

.play-overlay-burst,
.play-overlay-flash {
    position: absolute;
    opacity: 0;
}

.play-overlay-flash {
    inset: 0;
    background: #fff;
}

.play-overlay-burst {
    top: 50%;
    left: 50%;
    /* width/height set inline via JS — always a square */
    background-image: url("/images/starburst.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%) scale(0.2) rotate(0deg);

    -webkit-mask-image: radial-gradient(circle, black 0%, black 55%, transparent 85%);
            mask-image: radial-gradient(circle, black 0%, black 55%, transparent 85%);
}

.play-overlay.is-exploding .play-overlay-burst {
    animation: playBurst 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.play-overlay.is-exploding .play-overlay-flash {
    animation: playFlash 0.6s cubic-bezier(0.6, 0, 0.85, 0.5) forwards;
}

@keyframes playBurst {
    0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.2) rotate(0deg); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(2.2) rotate(70deg); }
}

@keyframes playFlash {
    0%   { opacity: 0; }
    100% { opacity: 1; }
}

.reveal-flash {
    position: absolute;
    inset: 0;
    z-index: 500;

    background: #fff; /* same warm white as GamePlay's explosion flash, for continuity */
    pointer-events: none;

    animation: revealFadeOut 0.5s ease-out forwards;
}

@keyframes revealFadeOut {
    0%   { opacity: 1; }
    100% { opacity: 0; }
}


/* -------------------------
   LDExtras Banner CTA
   ------------------------- */

.ldextras-banner {
    position: relative;
    display: flex;
    align-items: center;
    background: #9fd900;
    /*padding: 20px 10px 20px 50px;
    margin: 48px 40px 20px -38px;*/
    padding: 20px 10px 40px 50px;
    margin: 48px 10px 20px -38px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}

.ldextras-banner-img {
    position: absolute;
    right: -26px;
    bottom: 0;
    width: 220px;
    height: auto;

    pointer-events: none; /* purely decorative — shouldn't intercept taps */
}

.ldextras-banner-text {
    margin: 0;
    max-width: 400px;

    color: #023da3;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
}

.ldextras-brand em {
    font-style: italic;
}

.ldextras-join-btn {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);

    width: 80px;
    height: 80px;
    border-radius: 50%;

    background: #023da3;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.15;

    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.ldextras-join-btn:hover {
    background: #012a7a;
}

/* -------------------------
   Wheres your code popup
   ------------------------- */

.receipt-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1000;

    align-items: center;
    justify-content: center;
    padding: 20px;
}

.receipt-modal-overlay.is-open {
    display: flex;
}

.receipt-modal {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 24px 24px;

    width: 100%;
    max-width: 380px;
    max-height: 85vh;
    overflow-y: auto;

    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.receipt-modal h3 {
    margin: 0 0 16px;
    color: #0066b3;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.receipt-modal img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.receipt-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f0f0f0;
    color: #333;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
}

.receipt-modal-close svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.receipt-modal-close:hover {
    background: #e0e0e0;
}



/* -------------------------
   Other
   ------------------------- */

.manual-help-link svg {
    vertical-align: -3px;
    margin-right: 4px;

    fill: none;
    stroke: #0066b3;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.manual-help-link a {
    color: #0077cc;
    text-decoration: underline;
}

.h3-title {
    text-align: center;
}


.ldextras-extras {
    color: white;
    font-style: italic;
}

.tm-tiny {
font-style: normal;
  font-size: 0.5em;         
  vertical-align: super;    
  line-height: 0;
  }