* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
}

.page-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: rgb(19, 12, 14);
}

.background-image {
    position: absolute;
    inset: 0px;
    z-index: 0;
    background-image: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Bball%20Court%20Expanded%201-1xSeTiPyyFjFF8YdgcalCGhec7JNHi.png");
    background-size: cover;
    background-position: center center;
}

.background-overlay {
    position: absolute;
    inset: 0px;
    background: linear-gradient(rgba(19, 12, 14, 0.6), rgba(19, 12, 14, 0.4), rgba(19, 12, 14, 0.7));
}

.main-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(-120px + 100vh);
    padding: 48px 64px;
}

.logo-container {
    flex-shrink: 0;
}

.main-logo {
    height: 573px;
    width: 500px;
    object-fit: contain;
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-left: 48px;
}

.heading-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.main-heading {
    font-size: 120px;
    font-weight: 900;
    font-style: italic;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: rgb(255, 255, 255);
}

.subtitle {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgb(255, 255, 255);
}

.cta-button {
    height: 80px;
    width: 600px;
    border-radius: 8px;
    background-color: rgb(0, 80, 181);
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: rgba(0, 80, 181, 0.9);
}

.footer {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0px 32px 24px;
    background: #130C0E;
}

.legal-text {
    max-width: 1200px;
}

.legal-text p {
    font-size: 20px;
    line-height: 1.4;
    color: rgb(255, 255, 255);
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 24px;
}

.travel-leisure-logo {
    height: 64px;
    width: 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 2px solid rgb(255, 255, 255);
    padding-left: 16px;
}

.travel-text, .leisure-text {
    font-size: 12px;
    font-weight: 700;
    color: rgb(255, 255, 255);
}

.vacations-text {
    font-size: 8px;
    color: rgb(255, 255, 255);
}

.footer-magic-logo {
    height: 100%;
    width: 100%;
}

.footer-magic-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-overlay {
    position: fixed;
    inset: 0px;
    z-index: 50;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 16px;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 950px;
}

.modal-border {
    position: relative;
    border-radius: 20px;
    background-image: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Modal-j21zn2crbiz3XdYtGTD3uX3WOlf7ac.png");
    background-size: cover;
    background-position: center center;
    padding: 30px;
}

.modal-content {
    position: relative;
    border-radius: 12px;
    background-color: rgb(255, 255, 255);
    padding: 40px 60px 45px;
    border: 8px solid rgb(255, 255, 255);
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 3px;
}

.close-button {
    position: absolute;
    right: 25px;
    top: 25px;
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    font-size: 32px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
    z-index: 10;
    line-height: 1;
}

.close-button:hover {
    opacity: 0.7;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 28px;
}

.modal-logo {
    height: 180px;
    width: 180px;
    flex-shrink: 0;
}

.modal-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-title {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.modal-heading {
    font-size: 68px;
    font-weight: 900;
    font-style: italic;
    line-height: 0.88;
    letter-spacing: -0.015em;
}

.modal-heading-blue {
    color: rgb(0, 80, 181);
}

.modal-heading-black {
    color: rgb(0, 0, 0);
}

.modal-description {
    margin-bottom: 22px;
    text-align: center;
}

.description-main {
    font-size: 16px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.description-sub {
    font-size: 26px;
    font-weight: 700;
    color: rgb(0, 80, 181);
    letter-spacing: 0.015em;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    height: 56px;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 4px;
    padding: 0px 18px;
    font-size: 16px;
    background-color: rgb(255, 255, 255);
}

.form-input::placeholder {
    color: rgb(0, 0, 0);
    font-weight: 600;
    opacity: 1;
}

.consent-text {
    font-size: 9.5px;
    line-height: 1.45;
    color: rgb(0, 0, 0);
    text-align: center;
    max-width: 750px;
    margin: 0px auto;
}

.submit-button {
    height: 60px;
    width: 100%;
    max-width: 400px;
    margin: 4px auto 0px;
    border-radius: 6px;
    background-color: rgb(0, 80, 181);
    color: rgb(255, 255, 255);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.submit-button:hover {
    background-color: rgba(0, 80, 181, 0.9);
}

.btn-tap-text {
    height: 60px;
    width: 100%;
    max-width: 400px;
    margin: 4px auto 0px;
    border-radius: 6px;
    background-color: rgb(0, 80, 181);
    color: rgb(255, 255, 255);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    display: block;
}

.btn-tap-text:hover {
    background-color: rgba(0, 80, 181, 0.9);
}

.modal-footer {
    margin: 32px -60px -45px;
    background-color: transparent;
    padding: 30px 60px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    flex-wrap: wrap;
}

.legal-links a {
    color: rgb(0, 0, 0);
    text-decoration: underline;
}

.legal-links a:hover {
    text-decoration: none;
}

.legal-links span {
    color: rgb(0, 0, 0);
}

.modal-legal-text {
    text-align: center;
    font-size: 7.5px;
    line-height: 1.4;
    color: rgb(0, 0, 0);
    max-width: 750px;
    margin: 0px auto;
}

.sponsor-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.sponsor-travel-leisure {
    height: 44px;
    width: 85px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 2px solid rgb(0, 0, 0);
    padding-left: 12px;
}

.sponsor-travel-text, .sponsor-leisure-text {
    font-size: 9px;
    font-weight: 700;
    color: rgb(0, 0, 0);
}

.sponsor-vacations-text {
    font-size: 6.5px;
    color: rgb(0, 0, 0);
}

.sponsor-magic-logo {
    height: 100px;
    width: 233px;
}

.sponsor-magic-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .main-heading {
        font-size: 80px;
    }

    .main-logo {
        height: 320px;
        width: 320px;
    }

    .cta-button {
        width: 400px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
        padding: 32px;
        text-align: center;
    }

    .content-section {
        padding-left: 0px;
        align-items: center;
    }

    .main-heading {
        font-size: 60px;
    }

    .main-logo {
        height: 240px;
        width: 240px;
    }

    .cta-button {
        width: 100%;
        max-width: 400px;
    }

    .footer {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .modal-content {
        padding: 24px;
    }

    .modal-header {
        flex-direction: column;
    }

    .modal-heading {
        font-size: 48px;
    }

    .modal-logo {
        height: 180px;
        width: 180px;
    }
}

.confirmation-page {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-image: url("https://hebbkx1anhila5yf.public.blob.vercel-storage.com/Bball%20Court%20Expanded%201-1xSeTiPyyFjFF8YdgcalCGhec7JNHi.png");
    background-size: cover;
    background-position: center center;
    background-color: rgb(19, 12, 14);
}

.confirmation-page::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(rgba(19, 12, 14, 0.6), rgba(19, 12, 14, 0.7));
    z-index: 1;
}

.confirmation-content {
    position: relative;
    z-index: 10;
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 32px;
    gap: 48px;
}

.confirmation-title {
    font-size: 120px;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: rgb(255, 255, 255);
    text-align: center;
    text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 8px;
}

.confirmation-logo {
    height: 200px;
    width: 200px;
    object-fit: contain;
    filter: drop-shadow(rgba(0, 0, 0, 0.3) 0px 4px 12px);
}

.confirmation-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.confirmation-text {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: rgb(255, 255, 255);
    text-align: center;
    line-height: 1.1;
    text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 8px;
}

.confirmation-subtext {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgb(255, 255, 255);
    text-align: center;
    margin-top: 16px;
    text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 8px;
}

.confirmation-footer {
    position: relative;
    z-index: 10;
    padding: 24px 32px;
    background: transparent;
}

.confirmation-footer-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.confirmation-legal-text {
    flex: 1 1 0%;
    max-width: 1200px;
    font-size: 10px;
    line-height: 1.4;
    color: rgb(255, 255, 255);
    text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 3px;
}

.confirmation-footer-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.confirmation-travel-leisure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 2px solid rgb(255, 255, 255);
    padding-left: 16px;
    height: 64px;
    width: 128px;
}

.confirmation-travel-text, .confirmation-leisure-text {
    font-size: 12px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    line-height: 1;
    text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 3px;
}

.confirmation-vacations-text {
    font-size: 8px;
    color: rgb(255, 255, 255);
    line-height: 1;
    text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 3px;
}

.confirmation-magic-logo {
    height: 64px;
    width: 64px;
}

.confirmation-magic-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(rgba(0, 0, 0, 0.3) 0px 2px 4px);
}

@media (max-width: 1200px) {
    .confirmation-title {
        font-size: 80px;
    }

    .confirmation-logo {
        height: 220px;
        width: 220px;
    }

    .confirmation-text {
        font-size: 42px;
    }

    .confirmation-subtext {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .confirmation-title {
        font-size: 48px;
    }

    .confirmation-logo {
        height: 160px;
        width: 160px;
    }

    .confirmation-text {
        font-size: 28px;
    }

    .confirmation-subtext {
        font-size: 18px;
    }

    .confirmation-content {
        padding: 32px 16px;
        gap: 32px;
    }

    .confirmation-footer-content {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .confirmation-legal-text {
        text-align: center;
    }
}

.confirmation-page-simple {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: rgb(0, 0, 0);
}

.confirmation-content-simple {
    flex: 1 1 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 32px;
    gap: 60px;
}

.confirmation-logo-simple {
    height: 280px;
    width: 280px;
    object-fit: contain;
}

.confirmation-message-simple {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 0.02em;
    color: rgb(255, 255, 255);
    text-align: center;
    line-height: 1.1;
    max-width: 1400px;
}

.confirmation-footer-simple {
    background-color: rgb(0, 80, 181);
    padding: 32px 48px;
}

.confirmation-footer-content-simple {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 1600px;
    margin: 0px auto;
}

.confirmation-legal-simple {
    flex: 1 1 0%;
    font-size: 11px;
    line-height: 1.5;
    color: rgb(255, 255, 255);
    max-width: 1200px;
}

.confirmation-logos-simple {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}

.travel-logo-simple {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.magic-logo-simple {
    height: 70px;
    width: 70px;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .confirmation-message-simple {
        font-size: 56px;
    }

    .confirmation-logo-simple {
        height: 220px;
        width: 220px;
    }
}

@media (max-width: 768px) {
    .confirmation-content-simple {
        padding: 48px 24px;
        gap: 40px;
    }

    .confirmation-message-simple {
        font-size: 36px;
    }

    .confirmation-logo-simple {
        height: 180px;
        width: 180px;
    }

    .confirmation-footer-simple {
        padding: 24px;
    }

    .confirmation-footer-content-simple {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .confirmation-legal-simple {
        text-align: center;
        font-size: 10px;
    }

    .confirmation-logos-simple {
        gap: 24px;
    }

    .travel-logo-simple {
        height: 50px;
    }

    .magic-logo-simple {
        height: 60px;
        width: 60px;
    }
}


/* â€”â€”â€” let the modal scroll if it's taller than the screen â€”â€”â€” */
.modal-overlay{
  position:fixed;
  inset:0;
  /* display:flex; */
  align-items:flex-start;
  justify-content:center;
  background:rgba(0,0,0,.75);
  overflow-y:auto;                 /* <- enables scroll */
  padding:32px 16px;               /* top/bottom breathing room */
  z-index:9999;
}
.modal-container{
  width:100%; max-width:980px;
  max-height:none;                 /* container can grow; overlay scrolls */
  margin:auto;                     /* keep centered while scrolling */
}

/* â€”â€”â€” single striped background on the BLUE FRAME only â€”â€”â€” */
.modal-border{
  position:relative;
  border-radius:20px;
  padding: 30px;                    /* space around the white card */
  /* background:  #0050B5  repeating-linear-gradient(to right, rgb(255 255 255) 0, rgba(255, 255, 255, .85) 2px, #ffffff00 2px, #ffffff00 127px); */
  /* background-blend-mode:overlay; */   /* stripes over blue */
  overflow:hidden;
}

/* â€”â€”â€” the white card â€”â€”â€” */
.modal-content{
  position:relative;
  border-radius:12px;
  background:#fff;
  padding:40px 60px 28px;
  border: 3px solid #000000;
  box-shadow: 0 0 0 3px #ffffff inset;
}
.modal-content::before{
  content:"";
  position:absolute;
  inset:12px;
  border-radius:10px;
  /* border:2px solid #0B0B0B; */
  pointer-events:none;
}

/* â€”â€”â€” footer sits ON TOP of the same striped blue frame â€”â€”â€” */
/* remove footerâ€™s own stripes/background so the parentâ€™s stripes show through */
.modal-footer{
  margin:28px 0 0;
  padding:30px 60px 36px;
  background:transparent;          /* <- IMPORTANT */
  color:#fff; text-align:center;
  border-bottom-left-radius:12px;
  border-bottom-right-radius:12px;
}
.modal-footer::before{ content:none !important; }  /* kill any old stripe layer */

/* footer text styles */
.legal-links{ display:flex; justify-content:center; flex-wrap:wrap;
  gap:10px; font-size:10px; font-weight:800; color:#fff; }
.legal-links a{color: black;text-decoration:underline;font-weight: 600;font-size: 11px;}
.modal-legal-text{color: black;font-size:11px;max-width:880px;margin:8px auto 0;}

/* â€”â€”â€” header / form (unchanged except for responsive) â€”â€”â€” */
.modal-header{display:grid;grid-template-columns:200px 1fr;align-items:center;gap:28px;margin-bottom:16px;position: relative;left: 74px;}
.modal-logo img{ width:200px; height:200px; object-fit:contain; }
.modal-title{ line-height:.9; }
.modal-heading{ font-size:72px; font-weight:900; font-style:italic; letter-spacing:-.015em; }
.modal-heading-blue{ color:#0050B5; }
.modal-heading-black{ color:#0B0B0B; }

.modal-description{ text-align:center; margin-bottom:20px; }
.description-main{ font-size:16px; font-weight:700; text-transform:uppercase; }
.description-sub{ font-size:26px; font-weight:900; text-transform:uppercase; color:#0050B5; }

.form-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.form-input,.form-select{ height:56px; border:2px solid #000; border-radius:8px; font-size:16px; font-weight:700; padding:0 16px; }
.form-input::placeholder{ color:#000; font-weight:700; }
.form-select{
  appearance:none; background-repeat:no-repeat; background-position:right 14px center;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
}

.consents{ display:flex; flex-direction:column; gap:8px; margin-top:10px; font-size:12px; line-height:1.35; }
.btn-tap-text{
  height:60px;
  max-width:420px;
  margin:16px auto 0;
  background:#0050B5;
  color:#fff;
  border:2px solid #fff;
  border-radius:10px;
  font-weight: 700;
  letter-spacing:.05em;
  text-transform:uppercase;
  cursor:pointer;
}

/* â€”â€”â€” responsive â€”â€”â€” */
@media (max-width:900px){
  .form-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px){
  .modal-header{ display:flex; flex-direction:column; gap:16px; }
  .modal-title{ text-align:center; }
  .modal-heading{ font-size:44px; }
  .modal-content{ padding:24px; }
  .form-grid{ grid-template-columns:1fr; }
  .modal-footer{ padding:24px; }
}
