* {
    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;
    -webkit-text-stroke: 3px black;
}

.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: 2px solid black;
    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: 18px;
    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(0 0 0) 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;
    left: 71px;
    position: relative;
}

.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: 900;
    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;
    }
}
