/*=============== FONTS ===============*/
@font-face {
    font-family: 'AmericanCaptain';
    src: url('../fonts/AmericanCaptain.woff2') format('woff2'),
        url('../fonts/AmericanCaptain.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/*=============== VARIABLES CSS ===============*/
:root {
    --thm-font: 'AmericanCaptain';
    --body-font: "myriad-pro", sans-serif;
    --thm-white: #ffffff;
    --thm-black: #000000;
    --thm-pink: #FF00D3;
    --thm-dark-blue: #311C74;
    --purple-light: #CCBBE5;

    /* Typography */
    --fs-h1: 1.5rem;
    --fs-h3: 0.875rem;
    --fs-small: 0.875rem;
}

/*=============== DESKTOP CSS ===============*/
@media (min-width: 992px) {
    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/*=============== BASE ===============*/
html {
    scroll-behavior: smooth;
    /* scroll-padding-top: 6rem; */
    overflow: hidden;
}

*,
::after,
::before {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    font-family: var(--body-font);
    font-size: 14px;
}

a:active,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--thm-font);
    font-weight: 600;
    font-style: normal;
    line-height: 1.4;
    text-shadow: 0 0 1px var(--thm-text);
}

img {
    vertical-align: middle;
    border-style: none;
}

p {
    font-size: 14px;
    line-height: 1.2;
    color: var(--thm-text);
    margin-top: 0;
    margin-bottom: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.text-start {
    text-align: start;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: end;
}

.d-flex {
    display: flex;
}

.jc-center {
    justify-content: center;
}

.jc-sb {
    justify-content: space-between;
}

.ai-center {
    align-items: center;
}

.row {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.mt-0 {
    margin-top: 0rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.text-uppercase {
    text-transform: uppercase;
}

.w-100 {
    width: 100%;
    height: auto;
}

.img-fit {
    width: 100%;
    height: auto;
    display: block;
}

/*=============== CUSTOM CSS STARTS ===============*/

.page-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--thm-dark-blue);
}

.main-wrapper {
    width: 100%;
    height: 100svh;
    height: 100dvh;
    max-height: 100vh;
    overflow: hidden;
    background-image: url("../images/blur-bg.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Bottom Image Background Image */
.btm-special-bg {
    background-image: url("../images/bottom-bg-image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}

.sec-side-padd {
    padding-left: 1rem;
    padding-right: 1rem;
}

.page-padding {
    padding: 1.25rem;
}

h1.page-heading {
    color: var(--thm-white);
    font-size: var(--fs-h1);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
}

h3.sub-heading {
    font-family: var(--body-font);
    color: var(--purple-light);
    font-size: var(--fs-h3);
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
    max-width: 300px;
    width: 100%;
    margin: 0 auto 1rem auto;
}

/* ================= INTRO BANNER STACKING ================= */
#home-banner-sec {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 1;
    transform: translateY(0);

    transition:
        transform 2s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 1.6s ease;
}

#home-banner-sec.hide-banner {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* HOME PAGE START */
.home-banner-sec {
    width: 100%;
    height: 100%;
}

.home-banner-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-banner-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    z-index: 2;
}

.home-banner-sec,
.home-banner-box {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.home-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-challenge-ticket-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.play-challenge-ticket-btn {
    display: block;
    width: 100%;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.play-challenge-ticket-btn:active {
    transform: scale(0.96);
}

.play-challenge-ticket-img {
    width: 145px;
    /* adjust if needed */
    max-width: 80vw;
}

/* HOME PAGE END */

/* HEADER START */
.header-top {
    width: 100%;
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    align-items: end;
    position: relative;
    z-index: 2;
}

.header-top-logo {
    width: 142px;
    height: 44px;
}

.header-line {
    width: calc(100% - 130px);
    height: 1px;
    background-color: var(--thm-white);
    position: absolute;
    z-index: 3;
    right: -20px;
    bottom: 12px;
}

.middle-sec {
    min-height: 100dvh;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    /* justify-content: center;
    align-items: center; */
}

/* Header stays at top */
.second-header {
    align-self: start;
    width: 100%;
}

/* HEADER END */

/* Content Center */
.content-center {
    width: 100%;
    height: calc(100dvh - 220px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ENTER DETAILS PAGE START */
.head-text {
    width: 100%;
}

#detailsForm {
    width: 100%;
    display: block;
}

.input-control {
    width: 100%;
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #A293B8;
    border-radius: 2px;
    padding: 1rem;
    background-color: rgba(162, 147, 184, 0.4);
    backdrop-filter: blur(14px);
    height: 54px;
    color: var(--thm-white);
}

.input-control:focus {
    border-color: var(--thm-pink);
}

.input-control::placeholder {
    color: #A293B8;
}

.phone-field {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;

    background-color: rgba(162, 147, 184, 0.4);
    backdrop-filter: blur(14px);

    border: 1px solid #A293B8;
    border-radius: 2px;
    padding: 1rem;
    height: 54px;

    color: #A293B8;
}

.phone-prefix {
    color: var(--thm-white);
    /* font-size: 1.1rem; */
    margin-right: 1rem;
}

.divider {
    height: 24px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    margin-right: 1rem;
}

.phone-field input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--thm-white);
}

.phone-field input::placeholder {
    color: #A293B8;
}

/* select.input-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('../images/dropdown-arrow-icon.png');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 36px;
    color: #A293B8;
} */

select.input-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-image: url('../images/dropdown-arrow-icon.png');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;

    padding-right: 36px;
    color: #A293B8;
    /* placeholder color */
}

/* When user selects a value */
select.input-control:valid {
    color: #ffffff;
}

/* select.input-control option {
    color: #ffffff;
} */

.submit-btn {
    font-family: var(--thm-font);
    width: 100%;
    display: block;
    background: linear-gradient(180deg, #FF00D3 18.18%, #99007F 100%);
    padding: 0.8rem;
    cursor: pointer;
    color: var(--thm-white);
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;

    position: relative;
    border-radius: 2px;
    border: none;
    overflow: hidden;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    padding: 1px;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.75),
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.75));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.submit-btn:disabled {
    cursor: not-allowed;
    background: #681068;
    color: rgba(255, 255, 255, 0.45);
    /* muted text */
    letter-spacing: 1px;
}

/* Disable glow / border effect */
.submit-btn:disabled::before {
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.15),
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0.15));
    opacity: 0.6;
}

.error-field {
    border: 1px solid #FD2D2D !important;
}

.field-error-box {
    width: 100%;
    margin-top: -8px;
    margin-bottom: 16px;
}

.field-error-box img {
    width: 13px;
    height: 13px;
    margin-right: 4px;
}

.field-error-box p {
    color: #FD2D2D;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.login-text {
    color: var(--thm-white);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: var(--fs-small);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.login-text a {
    color: var(--thm-white);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-offset: 3px;
}

/* ENTER DETAILS PAGE END */

/* OTP PAGE START */

/* OTP box sizing */
.otp-box {
    width: 100%;
    text-align: center;
}

.edit-number {
    display: flex;
    justify-content: center;
    align-items: center;
}

.edit-number p {
    color: var(--thm-white);
    font-size: var(--fs-small);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.edit-number img {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

.otp-field {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 12px 0;
}

.otp-input {
    text-align: center;
    outline: none;

    display: flex;
    width: 48px;
    height: 48px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;

    border-radius: 2px;
    border: 1px solid #A293B8;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(7px);

    color: var(--thm-white);
    font-size: var(--fs-small);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.otp-input:focus {
    border-color: #FF00D3;
}

.resend-text {
    color: var(--thm-white);
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

.resend-text a {
    color: var(--thm-white);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-offset: 3px;
}

.otp-box .field-error-box {
    margin-top: 10px;
}

/* OTP PAGE END */

/* IDENTITY PAGE START */
.identity-box {
    width: 100%;
}

/* IDENTITY PAGE END */

/* CREW PAGE START */
.crew-box {
    width: 100%;
}

.crew-title {
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
}

/* CREW PAGE END */

/* LOG IN PAGE START */
.login-box {
    width: 100%;
}

.signup-text a {
    color: var(--thm-white);
    font-size: var(--fs-small);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-underline-offset: 3px;
}

.signup-text a:hover {
    color: var(--thm-pink);
}

/* LOG IN PAGE END */

/* ================= SCAN SCREEN START ================= */
/* CAMERA BACKGROUND */
.full-camera {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: #000;
}

.full-camera img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* SCAN SCREEN OVERLAY */
.scan-screen {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 24px 20px 28px;
    color: var(--thm-white);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    /* purple overlay like reference */
    background: linear-gradient(180deg,
            rgba(54, 20, 82, 0.75) 0%,
            rgba(54, 20, 82, 0.55) 50%,
            rgba(54, 20, 82, 0.85) 100%);
}

/* HEADER */
.scan-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
}

.scan-logo {
    width: auto;
    height: 44px;
}

.scan-badge {
    height: 32px;
}

.scan-title {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
}

/* CAMERA AREA */
.scan-camera {
    position: relative;
    width: 100%;
    max-width: 220px;
    height: 220px;
    margin: 18px auto 28px;
    aspect-ratio: 1 / 1;
}

/* CORNER IMAGES */
.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 2;
}

.corner.tl {
    top: 0;
    left: 0;
}

.corner.tr {
    top: 0;
    right: 0;
}

.corner.bl {
    bottom: 0;
    left: 0;
}

.corner.br {
    bottom: 0;
    right: 0;
}

/* CAMERA FRAME */
.scan-frame {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
}

.scan-frame::before,
.scan-frame::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    border: 3px solid #fff;
}

.scan-frame::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.scan-frame::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

/* SCAN BUTTON */
.scan-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border: none;
    outline: none;

    color: var(--thm-white);
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.32px;
    text-align: center;
}

.camera-icon {
    width: 87px;
    height: 87px;
    background-color: #2a183e;
    border-radius: 50%;
    display: block;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem auto;
}

.camera-icon .camera-icon-img {
    width: 40px;
}

.scan-receipt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 210px;
    height: 210px;

    background: var(--thm-white);
    padding: 6px;

    border-radius: 0px;

    /* camera blur look */
    filter: blur(0.4px) contrast(1.1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);

    z-index: 1;
}

/* INFO CARD */
.scan-info {
    position: relative;
    margin-top: 24px;
    background-color: #E1E1E1;
    /* background-image: url("../images/machine-code-bg.png"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 26px 22px 24px 0;
    max-width: 335px;
    width: 100%;

    border-radius: 0;
}

/* TOP & BOTTOM CENTER NOTCH */
.scan-info::before,
.scan-info::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 10px;
    background: #3b1c5a;
}

.scan-info::before {
    top: -1px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.scan-info::after {
    bottom: -1px;
    clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
}

/* INNER LAYOUT */
.scan-info-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* IMAGE */
.scan-info img {
    width: 92px;
    flex-shrink: 0;
    margin-left: 0;
    /* margin-left: -10px; */
}

/* TEXT */
.info-text h3 {
    color: #291A3D;
    font-size: var(--fs-h1);
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-top: 0px;
    margin-bottom: 10px;
    text-transform: uppercase;
    max-width: 160px;
    width: 100%;
}

.info-text {
    padding-left: 18px;
}

.info-text p {
    color: #291A3D;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3;
}

.scan-error-box {
    padding: 6px 12px;
    gap: 4px;
    border-radius: 2px;
    background: rgba(79, 46, 46, 0.60);
}

.scan-error-box img {
    width: 16px;
    height: 16px;
}

.scan-error-box p {
    color: #FD2D2D;
    font-size: var(--fs-small);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* ================= SCAN SCREEN END ================= */

/* FOOTER CSS Start */
.banner-footer {
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 100%;
    padding: 0 1.25rem;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 10px;
    color: var(--thm-white);
    z-index: 5;
}

span#year {
    margin-left: 3px;
}

.marvel-logo {
    width: auto;
    display: block;
    height: 9px;
    margin-left: 3px;
}

.copyright {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    line-height: 1.3;
}

.tnc-text {
    line-height: 1;
}

.footer-product-img {
    position: absolute;
    right: 0;
    /* same as banner-footer padding */
    bottom: calc(100% + 4px);
    /* image sits just above footer */
    z-index: 6;
    /* footer se upar rahe */
    pointer-events: none;
}

.footer-product-img img {
    max-width: 174px;
    height: auto;
    display: block;
}

/* FOOTER CSS End */

/* Desktop Rotate Screen Start */
.desk-rotate-screen {
    display: block;
    width: 100%;
}

.desk-rotate-con {
    background: url("../images/page-bg.jpg") lightgray 50% / cover no-repeat;
    width: 100%;
    height: 100%;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.rotate-content-box {
    border-radius: 20px;
    opacity: 0.8;
    background: var(--thm-dark-blue);
    box-shadow: 0 0 24px 8px rgba(255, 0, 211, 0.50);
    padding: 1rem;
    max-width: 733px;
    /* min-height: 585px; */
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.rotate-content-inner {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rotate-content-inner img {
    width: 458px;
    height: auto;
    display: block;
    margin-bottom: 3rem;
}

.rotate-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
}

.rotate-box img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    margin-top: 0;
    margin-bottom: 1rem;
}

.rotate-box p {
    text-align: center;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    background: linear-gradient(180deg, #FFF 46.12%, #B9AAE0 55.04%, #B9AAE0 75%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rotate-foot-box {
    width: 100%;
}

.rotate-foot-box ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rotate-foot-box ul li a {
    color: var(--thm-white);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
}

.rotate-foot-box .marvel-logo {
    width: 54px;
    height: auto;
}

.page-wrapper {
    display: none;
}

/* Desktop Rotate Screen End */

/* RESPONSIVE MEDIA QUERIES START */
@media (min-width: 768px) {
    body {
        overflow: hidden;
    }
}

/* ================= SMALL HEIGHT DEVICES ================= */
@media (max-height: 620px) {

    html,
    body {
        height: auto;
        overflow-y: auto;
    }

    .main-wrapper {
        height: auto;
        min-height: 100svh;
        overflow-y: auto;
    }

    .page-wrapper {
        height: auto;
        overflow-y: auto;
    }
}


@media (max-width: 992px) {
    .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

}

@media (max-width: 576px) {

    .page-wrapper {
        display: block;
    }

    .desk-rotate-screen {
        display: none;
    }
}

@media (max-width: 375px) {}

@media (max-height: 820px) {}

@media (max-height: 750px) {}

@media (max-height: 700px) {}

@media (max-height: 620px) {}

/* RESPONSIVE MEDIA QUERIES END */