*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "futura-pt", sans-serif;
}

html {
    font-size: 16px;
}

/*Global input styling start*/

input {
    font-size: 1.2rem !important;
    font-family: "Roboto", sans-serif; /* use Roboto for errors */
}

.font-roboto {
    font-family: "Roboto", sans-serif; /* use Roboto for errors */
}

.input-focus:focus {
  filter: blur(0px) !important;
  color: white !important;
  background: transparent !important;
}

input:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  transition: background-color 5000s ease-in-out 0s;
}

input::placeholder {
  @apply text-gray-400;
}

input::-ms-value {
  @apply text-gray-400;
}

input {
  color: white;

  &::-ms-value {
    color: white;
  }
}

input {
  background-color: transparent;
  color: white;
}

input:focus {
  backdrop-filter: blur(50px);
  box-shadow: 0px 5px 10px 0px transparent;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: #ffffff !important;
  color: white !important;
  caret-color: white !important;
  font-size: 1.2rem !important;
  transition: background-color 9999s ease-in-out 0s !important;
  box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;

  -webkit-font-smoothing: antialiased !important;
  font-smoothing: antialiased !important;
  /* border-radius: 8px !important ; */
}


/*Global input styling end*/


main {
    overflow-x: hidden;
}

body {
    background-color: #090B19;
}

.container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

section {
    position: relative;
}

.section1 {
    background-image: url(./assets/sec1-bg.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    height: 60rem;
}

.section1 .container::after {
    content: "";
    position: absolute;
    width: 20rem;
    height: 61rem;
    background: linear-gradient(to left, transparent, #090B19, transparent);
    top: -9rem;
    left: -24rem;
}

.section1 .container::before {
    content: "";
    position: absolute;
    width: 20rem;
    height: 61rem;
    background: linear-gradient(to left, transparent, #090B19, transparent);
    top: -9rem;
    right: -24rem;
}

nav {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    padding-bottom: 2.5rem;
    padding-top: 1.875rem;
}

nav .logo {
    height: 4.125rem;
}

.section1 .container .coins {
    position: absolute;
    left: -18rem;
    width: 39rem;
    z-index: 1;
    top: -5rem;
}

.section1 .gold-coin1 {
    position: absolute;
    width: 10rem;
    top: -3rem;
    left: -2rem;
    z-index: 1;
    animation: zigzag2 9s ease-in-out infinite;
}

.section1 .sc-coin1 {
    position: absolute;
    width: 3rem;
    top: -2rem;
    left: -7rem;
    rotate: 40deg;
    z-index: 1;
    animation: zigzag1 8s ease-in-out infinite;
}

.section1 .sc-coin2 {
    position: absolute;
    width: 6.5rem;
    top: 2rem;
    left: -13rem;
    z-index: 1;
    animation: zigzag2 12s ease-in-out infinite;
}

.section1 .sc-coin3 {
    position: absolute;
    width: 12rem;
    top: 12rem;
    left: -14rem;
    rotate: 10deg;
    z-index: 1;
    animation: zigzag3 7s ease-in-out infinite;
}

.section1 .sc-coin4 {
    position: absolute;
    width: 6rem;
    top: 27rem;
    left: -3.7rem;
    rotate: 10deg;
    z-index: 1;
    animation: zigzag2 12s ease-in-out infinite;
}

.section1 .sweep-coin1 {
    position: absolute;
    width: 5.5rem;
    top: 8rem;
    left: -3.6rem;
    rotate: 50deg;
    z-index: 1;
    animation: zigzag4 8s ease-in-out infinite;
}

.section1 .sweep-coin2 {
    position: absolute;
    width: 6rem;
    top: 38.4rem;
    left: -2rem;
    rotate: 0deg;
    z-index: 1;
    animation: zigzag4 8s ease-in-out infinite;
}

.section1 .sweep-coin3 {
    position: absolute;
    width: 4rem;
    top: -16.6rem;
    left: 45rem;
    rotate: 0deg;
    z-index: 1;
    display: none;
    animation: zigzag4 10s ease-in-out infinite;

}

.section1 .gold-coin2 {
    position: absolute;
    width: 14rem;
    top: 35.4rem;
    left: 5rem;
    rotate: 0deg;
    z-index: 1;
    animation: zigzag1 7s ease-in-out infinite;
}

.section1 .gold-coin3 {
    position: absolute;
    width: 5rem;
    top: -12rem;
    left: 37rem;
    rotate: 0deg;
    z-index: 3;
    display: none;
    animation: zigzag3 10s ease-in-out infinite;
}

@keyframes zigzag1 {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-8px, -6px);
    }

    40% {
        transform: translate(10px, -4px);
    }

    60% {
        transform: translate(-6px, 8px);
    }

    80% {
        transform: translate(6px, 4px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes zigzag2 {
    0% {
        transform: translate(0, 0);
    }

    15% {
        transform: translate(12px, -10px);
    }

    30% {
        transform: translate(-14px, 6px);
    }

    50% {
        transform: translate(16px, 12px);
    }

    70% {
        transform: translate(-8px, -14px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes zigzag3 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-14px, 10px) rotate(3deg);
    }

    50% {
        transform: translate(12px, -12px) rotate(-3deg);
    }

    75% {
        transform: translate(-10px, -6px) rotate(2deg);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes zigzag4 {
    0% {
        transform: translate(0, 0);
    }

    10% {
        transform: translate(6px, -8px);
    }

    30% {
        transform: translate(-12px, 6px);
    }

    45% {
        transform: translate(14px, 10px);
    }

    65% {
        transform: translate(-8px, -10px);
    }

    85% {
        transform: translate(10px, 4px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.section1 form {
    background-color: #090B19;
    padding: 2.375rem;
    border-radius: 1.875rem;
    border: 2px solid rgba(31, 255, 32, 23%);
    width: 43.75rem;
    z-index: 2;
    position: relative;
}

.section1 form h2 {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    padding-bottom: 1.75rem;
    text-align: center;
    text-transform: uppercase;
}

.section1 form h2 .yellow {
    display: inline-block;
    animation: 3s ease 0s infinite normal forwards running scale;
}

.section1 form h2 .green {
    display: inline-block;
    animation: 3s ease 1.5s infinite normal forwards running scale;
}

@keyframes scale {

    0%,
    25%,
    100% {
        transform: scale(1);
    }

    12.5% {
        transform: scale(1.1);
    }
}

.section1 form h3 {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    border-bottom: 1px solid rgba(31, 255, 32, 23%);
    padding-bottom: 1.75rem;
    text-align: center;
}

.section1 form h3 br {
    display: none;
}

.section1 form .inputContainer.row,
.section1 form .inputContainer.column .row {
    gap: 0.875rem;
}

.section1 form .inputContainer.column .row input:nth-child(1) {
    width: 4.375rem;
}

.section1 form .inputContainer.column .row input:nth-child(2) {
    width: 100%;
}

.section1 form .row {
    display: flex;
    flex-direction: row;
}

.section1 form .column {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.section1 form label {
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.8rem 0;
}

.section1 form label span {
    color: #52FB18;
}

.section1 form input {
    background-color: #151828;
    border: 1px solid rgba(31, 255, 32, 23%);
    color: #FFFFFF;
    font-size: 0.875rem;
    font-weight: 400;
    border-radius: 0.9375rem;
    height: 3.75rem;
    padding: 0 1rem;
}

/* Error message styling */
.error {
    position: absolute;
    right: 1rem;
    top: 100%;
    margin-top: 0.4rem;
    color: #ff4d4f;
    background: transparent;
    font-size: 0.875rem;
    pointer-events: none;
    font-family: "Roboto", sans-serif; /* use Roboto for errors */
    letter-spacing: 0.02em;
    z-index: 20;
}

/* Invalid input visual state */
.invalid {
    outline: 2px solid rgba(255, 77, 79, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.06) inset;
}

/* Utility class for screen-reader only text */
.sr-only {
    position: absolute !important;
    width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section1 .checkboxWrapper {
    display: flex;
    align-items: start;
    justify-content: start;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.section1 .checkboxContainer {
    display: block;
    position: relative;
    margin-right: 30px;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
    margin-top: 0;
    margin-bottom: 0;
}

.section1 .checkbox {
    position: absolute;
    position: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.section1 .checkmark {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    border: 2px solid #52fb18;
    border-radius: 2px;
    background-color: #151828;
}

/* Place checkbox-specific errors inside checkbox container so they don't overlap input errors */
.checkboxContainer .error {
    position: absolute;
    left: 34px; /* place right of checkbox box */
    top: 0.15rem;
    margin-top: 0.2rem;
    color: #ff4d4f;
    font-size: 0.875rem;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.02em;
    z-index: 20;
    pointer-events: none;
}

/* Toast notification */
.toast {
    position: fixed;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.02em;
    z-index: 9999;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast.success { background: #52FB18; color: #090B19; }
.toast.error { background: #ff4d4f; color: white; }

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkboxContainer input:checked~.checkmark:after {
    display: block;
}

.checkboxContainer .checkmark:after {
    top: 3px;
    left: 7.5px;
    width: 6px;
    height: 12px;
    border: solid #52fb18;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.section1 .info {
    color: white;
    text-align: left;
    font-size: 0.8rem;
}

.section1 form button {
    background-color: #52FB18;
    color: #090B19;
    font-weight: 700;
    font-size: 1.25rem;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 0.75rem;
    height: 3.75rem;
    margin-top: 0rem;
    cursor: pointer;
}

.section1 .textContainer {
    width: 100%;
    height: 35rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 44rem;
    gap: 3rem;
    z-index: 2;
}

.section1 .textContainer h1 {
    font-weight: 700;
    text-align: left;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: 0;
    color: #FFFFFF;
    background: none;
    -webkit-text-fill-color: #ffffff;
    text-transform: uppercase;
}

.section1 .textContainer h1 span {
    display: block;
}

span.yellow {
    color: #FEEE00;
    -webkit-text-fill-color: #FEEE00;
}

span.green {
    color: #52FB18;
    -webkit-text-fill-color: #52FB18;
}

.section1 .textContainer p {
    font-weight: 400;
    font-size: 1.875rem;
    line-height: 1.23;
    letter-spacing: 0;
    color: #FFFFFF;
}

.section2 .container {
    flex-direction: column;
    justify-content: center;
}

section .container h1 {
    background: linear-gradient(0deg, #FEEE00 -15.6%, #D7F005 5.35%, #90F60F 47.26%, #63F915 78.69%, #52FB18 89.16%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-style: 700;
    font-size: 3.125rem;
    line-height: 1.7;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    /* margin-bottom: 5.43rem; */
}

.section2 .container .boxContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.81rem;
}

.section2 .container .boxContainer .box {
    width: 26.25rem;
    height: 25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #151828;
    border: 1px solid rgba(31, 255, 32, 23%);
    filter: drop-shadow(-1px -1px 1px rgba(31, 255, 32, 23%)) drop-shadow(0px 0px 4px #52fb18) drop-shadow(0px 0px 6px #52fb18);
    border-radius: 0.9375rem;
    animation: box 3.5s infinite ease-in-out;
}

.section2 .container .boxContainer .box:nth-child(2) {
    animation-delay: 0.5s;
}

.section2 .container .boxContainer .box:nth-child(3) {
    animation-delay: 1s;
}

.section2 .container .boxContainer .box:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes box {

    0%,
    50%,
    100% {
        filter: drop-shadow(-1px -1px 1px rgba(31, 255, 32, 23%)) drop-shadow(0px 0px 0px rgba(31, 255, 32, 23%)) drop-shadow(0px 0px 0px rgba(31, 255, 32, 23%));
    }

    25% {
        filter: drop-shadow(-1px -1px 1px rgba(31, 255, 32, 23%)) drop-shadow(0px 0px 3px #52fb18) drop-shadow(0px 0px 6px #52fb18);
    }
}

.section2 .container .boxContainer .box .imgCont {
    width: 100%;
    height: 17.5rem;
    background-image: url(./assets/box-bg.png);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.section2 .container .boxContainer .box .imgCont img {
    height: 15.43rem;
}

.section2 .container .boxContainer .box h2 {
    height: 7.5rem;
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.18;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section3 {
    margin-top: 5.625rem;
}

.section3 .container {
    flex-direction: column;
}

.section3 .container h1 {
    margin-bottom: 3.18rem;
}

.brandSlider {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: slide 15s linear infinite;
    width: max-content;
    justify-content: flex-start;
    transform: translateX(95.6rem)
}

@keyframes slide {
    0% {
        transform: translateX(95.6rem);
    }

    100% {
        transform: translateX(0rem);
    }
}

.brandSlider .brandBox {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #151828;
    border: 1px solid rgba(31, 255, 32, 23%);
    border-radius: 0.9375rem;
    width: 17.125rem;
    height: 6.43rem;
}

.brandSlider .brandBox img {
    height: 2.5rem;
}

.section4 {
    margin-top: 5.625rem;
}

.section4 .container {
    gap: 1.25rem;
}

.section4 .container img:nth-child(1) {
    width: 23rem;
}

.section4 .container .imagesCont {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.section4 .swipe {
    display: none;
}

.section4 .container .imagesCont img {
    width: 11rem;
}

.section5 {
    margin-top: 11.6875rem;
    background-image: url(./assets/sec5-bg.png);
    background-size: cover;
    background-position: bottom center;
}

.section5 .container {
    justify-content: center;
    flex-direction: column;
}

.section5 .imagesCont {
    display: flex;
    align-items: center;
    justify-content: center;

}

.section5 .iphone18 {
    width: 24rem;
    margin-left: -2rem;
    margin-right: -1.5rem;
}

.section5 .phone-v2 {
    width: 14rem;
    position: relative;
    left: -2rem;
    filter: brightness(0.7);
}

.section5 .phone-v3 {
    width: 18rem;
    position: relative;
    left: 2rem;
    filter: brightness(0.7);
}

.section5 .sc-coin1,
.section5 .sc-coin2,
.section5 .sc-coin3,
.section5 .gold-coin1,
.section5 .gold-coin2,
.section5 .sweep-coin1,
.section5 .sweep-coin2,
.section5 .sweep-coin3 {
    display: none;
}

footer {
    padding: 8rem 0;
}

footer .container {
    flex-direction: column;
    gap: 3rem;
}

footer p {
    font-family: "Roboto", sans-serif;
    color: #A3A3A3;
    font-size: 0.75rem;
    font-weight: 400;
}

footer a {
    color: #A3A3A3;
    font-size: 0.75rem;
    text-decoration: none;
}

footer .row {
    display: flex;
    flex-direction: row;
}

footer .column {
    display: flex;
    flex-direction: column;
}

footer h3 {
    color: #A3A3A3;
    font-size: 0.875rem;
    font-weight: 400;
}

footer h3 span,
footer h3 a {
    color: #A1FE06;
    font-weight: 700;
}

footer h3 a {
    text-decoration: underline;
}

footer .justify-between {
    justify-content: space-between;
    width: 100%;
}

footer .line {
    border-bottom: 2px solid rgba(255, 255, 255, 5%);
    padding-bottom: 3rem;
}

footer .justify-between .column {
    gap: 1rem;
}

footer .justify-between .column img {
    height: 3.75rem;
}

footer .justify-between .column .row {
    gap: 1rem;
    align-items: center;
}

footer .justify-between .column .row a img {
    width: 2.125rem;
    height: auto;
}

footer .justify-between .row {
    gap: 5rem;
}

footer .footerBottom .row {
    gap: 1rem;
    align-items: center;
}

footer .footerBottom .row p {
    white-space: nowrap;
}

footer .justify-between .row .column a {
    font-weight: 500;
}

footer .justify-between .row .column a:nth-child(1) {
    color: #D4D4D4;
}

/******** RESPONSIVE *******/
@media (max-width: 1900px) {
    html {
        font-size: 15px;
    }
}

@media (max-width: 1800px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 1700px) {
    html {
        font-size: 13px;
    }
}

@media (max-width: 1500px) {
    html {
        font-size: 12px;
    }
}

@media (max-width: 1400px) {
    html {
        font-size: 11px;
    }
}

@media (max-width: 1250px) {
    html {
        font-size: 10px;
    }
}

@media (max-width: 1150px) {
    html {
        font-size: 0.85vw;
    }
}

@media (max-width: 750px) {
    html {
        font-size: 2.1vw;
    }

    nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .section1 .container {
        justify-content: center;
        margin-top: 9rem;
        flex-direction: column;
    }

    .section1::after {
        content: "";
        position: absolute;
        width: 9rem;
        height: 9rem;
        background-image: url(./assets/coin-mobile.png);
        background-size: cover;
        top: 10rem;
        right: 5rem;
        z-index: 3;
        animation: zigzag4 20s ease-in-out infinite;
    }

    .section1 {
        background-image: url(./assets/sec1-bg-mobile.png);
        background-position: top center;
        height: 75rem;
    }

    .section1 form h2 {
        color: #ffffff;
        font-weight: 700;
        font-size: 2.7rem;
        padding-bottom: 1.75rem;
        line-height: 1.3;
        text-align: center;
    }

    .section1 form h3 {
        color: white;
        font-weight: 500;
        font-size: 1.8rem;
        line-height: 1.3;
        border-bottom: 1px solid rgba(31, 255, 32, 23%);
        padding-bottom: 1.75rem;
        text-align: center;
    }

    .section1 form h3 br {
        display: block;
    }

    .section1 form label {
        font-size: 1.5rem;
        margin: 1rem 0;
    }

    .section1 form input {
        font-size: 1rem;
    }

    .section1 form button {
        font-size: 1.5rem;
    }

    .section1 .textContainer p {
        display: none;
    }

    .section1 .textContainer h1 {
        font-weight: 700;
        text-align: left;
        font-size: 3rem;
        line-height: 1.1;
        letter-spacing: 0;
        color: #FFFFFF;
        position: absolute;
        top: 2rem;
        width: 34rem;
        left: 4rem;
        display: none;
    }

    .section1 .checkboxContainer {
        margin-right: 4rem;
    }

    .section1 .info {
        font-size: 1.2rem;
    }

    .section1 .container .coins {
        position: absolute;
        left: -8rem;
        width: 21rem;
        z-index: 3;
        top: -27rem;
    }

    .section1 .gold-coin1 {
        position: absolute;
        width: 9rem;
        top: -21.5rem;
        left: 0.5rem;
        rotate: -28deg;
        z-index: 1;
    }

    .section1 .sc-coin1 {
        position: absolute;
        width: 3rem;
        top: -2rem;
        left: -7rem;
        rotate: 40deg;
        z-index: 1;
    }

    .section1 .sc-coin2 {
        position: absolute;
        width: 4.5rem;
        top: -9rem;
        left: 44rem;
        z-index: 1;
    }

    .section1 .sc-coin3 {
        position: absolute;
        width: 3rem;
        top: -11rem;
        left: -0.9rem;
        rotate: 10deg;
        z-index: 1;
    }

    .section1 .sc-coin4 {
        position: absolute;
        width: 4rem;
        top: -12rem;
        left: 3.4rem;
        rotate: 10deg;
        z-index: 1;
    }

    .section1 .sweep-coin1 {
        position: absolute;
        width: 2.7rem;
        top: -12.5rem;
        left: 8.4rem;
        rotate: 40deg;
        z-index: 1;
    }

    .section1 .sweep-coin2 {
        position: absolute;
        width: 4rem;
        top: -6.6rem;
        left: 0rem;
        rotate: 0deg;
        z-index: 1;
    }

    .section1 .sweep-coin3 {
        position: absolute;
        width: 4rem;
        top: -16.6rem;
        left: 45rem;
        rotate: 0deg;
        z-index: 1;
        display: block;
    }

    .section1 .gold-coin2 {
        position: absolute;
        width: 10rem;
        top: -8rem;
        left: 5rem;
        rotate: 0deg;
        z-index: 3;
    }

    .section1 .gold-coin3 {
        position: absolute;
        width: 5rem;
        top: -12rem;
        left: 37rem;
        rotate: 0deg;
        z-index: 3;
        display: block;
    }

    section .container h1 {
        width: 40rem;
    }

    .section2 .container .boxContainer {
        flex-direction: column;
    }

    .section2 .container h1 {
        line-height: 1.3;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section4 .container {
        overflow-x: scroll;
        max-width: 95vw;
    }

    .section4 .container .imagesCont {
        min-width: 61rem;
    }

    .section4 .swipe {
        width: 9vw;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-510%, 390%) rotate(-20deg);
        animation: swipe 10s linear forwards infinite;
    }

    @keyframes swipe {
        0% {
            transform: translate(-510%, 390%) rotate(-20deg);
        }

        10% {
            transform: translate(420%, 390%) rotate(30deg);
        }

        15% {
            transform: translate(350%, 390%) rotate(15deg);
        }

        20% {
            transform: translate(420%, 390%) rotate(30deg);
        }

        30% {
            transform: translate(-510%, 390%) rotate(-20deg);
        }

        35% {
            transform: translate(-460%, 390%) rotate(-10deg);
        }

        40% {
            transform: translate(-510%, 390%) rotate(-20deg);
        }

        50% {
            transform: translate(-510%, 390%) rotate(-20deg);
        }

        60% {
            transform: translate(420%, 390%) rotate(30deg);
        }

        65% {
            transform: translate(350%, 390%) rotate(15deg);
        }

        70% {
            transform: translate(420%, 390%) rotate(30deg);
        }

        80% {
            transform: translate(-510%, 390%) rotate(-20deg);
        }

        85% {
            transform: translate(-460%, 390%) rotate(-10deg);
        }

        90% {
            transform: translate(-510%, 390%) rotate(-20deg);
        }

        100% {
            transform: translate(-510%, 390%) rotate(-20deg);
        }
    }

    .section5 {
        background-image: none;
    }

    .section5 .iphone18 {
        width: 22rem;
    }

    .section5 .phone-v3 {
        /* width: 22rem; */
        filter: brightness(0.6);
    }

    .section5 .phone-v2 {
        /* width: 19rem; */
        filter: brightness(0.6);
    }

    .section5 .imagesCont {
        margin-left: 4rem;
    }

    .section5::after {
        content: "";
        position: absolute;
        width: 100vw;
        left: 0;
        height: 58rem;
        /* background-image: url(./assets/sec5-coins-mobile.png); */
        background-size: cover;
        top: 11rem;
    }

    .section5 .sc-coin1 {
        position: absolute;
        width: 11.5rem;
        top: 11rem;
        left: -3rem;
        z-index: 1;
        display: block;
        animation: zigzag1 8s ease-in-out infinite;
    }

    .section5 .sc-coin2 {
        position: absolute;
        width: 7rem;
        top: 13rem;
        left: 40rem;
        z-index: 1;
        display: block;
        rotate: 12deg;
        animation: zigzag2 12s ease-in-out infinite;
    }

    .section5 .sc-coin3 {
        position: absolute;
        width: 6.3rem;
        top: 61.4rem;
        left: 6rem;
        z-index: 1;
        display: block;
        rotate: 10deg;
        animation: zigzag3 7s ease-in-out infinite;
    }

    .section5 .gold-coin1 {
        position: absolute;
        width: 9.3rem;
        top: 59.4rem;
        left: 38rem;
        z-index: 1;
        display: block;
        rotate: -25deg;
        animation: zigzag2 9s ease-in-out infinite;
    }

    .section5 .gold-coin2 {
        position: absolute;
        width: 5.3rem;
        top: 20.9rem;
        left: 39rem;
        z-index: 1;
        display: block;
        rotate: -25deg;
        animation: zigzag1 7s ease-in-out infinite;
    }

    .section5 .sweep-coin2 {
        position: absolute;
        width: 3.3rem;
        top: 14.8rem;
        left: 13rem;
        z-index: 1;
        display: block;
        rotate: 105deg;
        animation: zigzag4 8s ease-in-out infinite;
    }

    .section5 .sweep-coin3 {
        position: absolute;
        width: 3rem;
        top: 24.5rem;
        left: 44.9rem;
        z-index: 1;
        display: block;
        rotate: 95deg;
        animation: zigzag4 10s ease-in-out infinite;
    }

    footer {
        padding: 14rem 3rem;
    }

    footer .justify-between {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    footer .justify-between .column {
        align-items: center;
    }

    footer h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    footer a {
        font-size: 1.5rem;
    }

    footer .justify-between .column .row a img {
        width: 4rem;
    }

    footer p {
        font-size: 1.2rem;
        text-align: center;
    }

    footer .footerBottom .row p {
        white-space: wrap;
    }

    footer .justify-start {
        align-items: flex-start !important;
    }
}

.zipColumn {
    width: 100%;
}

#promotions-error {
    top: 70% !important;
}   


/* dialog add  */
.open-btn {
  background: linear-gradient(to right, #52fb18, #32b810);
  color: black;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
}
.open-btn:hover {
  opacity: 0.9;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  padding: 20px;
}

/* Dialog */
.dialog {
  position: relative;
  width: 100%;
  max-width: 700px;
  background: #171718;
  border-radius: 16px;
overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  min-height: 500px;
  
}

.dialog::-webkit-scrollbar {
  display: none;
}

/* Background pattern */
.dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets//congrats-bg.png");
  background-size: cover;
  transform: rotate(-4.153deg) scale(1.2);
  opacity: 0.2;
  mix-blend-mode: screen;
}

/* Close button */
.close-btn {
  position: sticky;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
  font-size: 40px;
  margin-left: auto;
}
.close-btn:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* Dialog Content */
.dialog-content {
  position: relative;
  z-index: 5;
  padding: 6px 30px;
  text-align: center;
  padding-top: 30px;
    overflow: hidden;
  overflow-y: auto;
  scrollbar-width: 0px;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  max-height: 830px;

}

.dialog-content h1 {
  font-size: clamp(30px, 8vw, 60px);
  font-weight: 700;
  /* margin-bottom: 10px; */
  color: white;
}
.dialog-content h2 {
  font-size: clamp(40px, 5vh, 80px);
  font-weight: 700;
  color: #52fb18;
  margin-bottom: 10px;
}
.dialog-content p {
  font-size: clamp(20px, 4vw, 32px);
  line-height: 1.4;
  /* margin-bottom: 30px; */
  color: white;
}
.dialog-content img {
  max-width: 400px;
  width: 100%;
  height: auto;
  /* margin: 20px auto; */
  margin-inline: auto;
}

.cta-btn {
  background: linear-gradient(to right, #52fb18, #32b810);
  color: black;
  font-weight: bold;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.2s ease;
}
.cta-btn:hover {
  opacity: 0.9;
}
