:root {
    --midnight-1: #0f1e3d;
    --midnight-2: #1c3a63;
    --peacock: #0f6e6a;
    --peacock-light: #2f9e8f;
    --marigold: #eda634;
    --marigold-deep: #c9821f;
    --maroon: #b3134f;
    --maroon-deep: #8a0e3d;
    --cream: #fdf1da;
    --cream-2: #fbe7c4;
    --ink: #2a1c10;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
     font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--ink);
}

.page {
    margin: 0 auto;
    background: var(--cream);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
    position: relative;
    min-height: 100vh;
}

h1, h2, .display {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
}

a {
    color: inherit;
}

/* ============ HERO (shared banner) ============ */
.hero {
    position: relative;
  /*  background: radial-gradient(ellipse at 30% 20%, rgba(255, 221, 122, 0.25), transparent 55%),
    linear-gradient(180deg, var(--midnight-1) 0%, var(--midnight-2) 55%, var(--peacock) 130%);
     padding: 24px 40px 30px; */
    overflow: hidden;
}


.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: 'Rozha One', serif;
    font-size: 20px;
    position: relative;
    z-index: 2;
}

.brand a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
}

.brand small {
    display: block;
     font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--marigold);
    text-transform: uppercase;
}

.hero-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.member-pill {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.member-pill a {
    color: var(--marigold);
    text-decoration: none;
    font-weight: 700;
}

.hero-copy {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    max-width: 600px;
}

.hero-copy h1 {
    color: #fff;
    font-size: 38px;
    line-height: 1.16;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-copy h1 span {
    color: var(--marigold);
}

.hero-copy p {
    color: #f1e6d2;
    font-size: 15px;
    margin-top: 12px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    border: var(--maroon) 1px solid;
    color: var(--maroon);
    border: none;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: 16px;
    padding: 13px 30px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(179, 19, 79, 0.45);
    transition: transform .18s ease, box-shadow .18s ease;
    text-decoration: none;
    margin-top: 1rem;
}

.cta-btn:hover {
    color: var(--cream);
    background: var(--maroon-deep);
    border: var(--cream) 1px solid;
    box-shadow: 0 12px 26px rgba(177, 117, 139, 0.55);
}

.cta-btn:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

.cta-btn:focus-visible {
    outline: 3px solid #ffdd7a;
    outline-offset: 3px;
}

.cta-btn.ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
}




/* ============ LOGIN PAGE ============ */
.auth-wrap {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--cream-2);
    border: 1px solid rgba(179, 19, 79, 0.3);
    border-radius: 20px;
    padding: 36px 34px 30px;
    box-shadow: 0 18px 34px rgba(42, 28, 16, 0.12);
}

.auth-card h2 {
    font-size: 24px;
    color: var(--maroon-deep);
    text-align: center;
    margin-bottom: 6px;
}

.auth-sub {
    text-align: center;
    font-size: 13.5px;
    color: #5c4a34;
    margin-bottom: 26px;
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--cream);
}

.field label .req {
    color: var(--maroon);
}

.field input[type=tel], .field input[type=text] {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid rgba(42, 28, 16, 0.2);
    font-size: 15px;
     font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    letter-spacing: 1px;
}

.field input:focus {
    outline: none;
    border-color: var(--maroon);
}

#otpBoxes {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

#otpBoxes .otp-box {
    width: 15%;
    aspect-ratio: 1/1;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    border-radius: 10px;
    border: 1.5px solid rgba(42, 28, 16, 0.2);
    background: #fff;
     font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    padding: 0;
    letter-spacing: 0;
    transition: border-color .15s ease, box-shadow .15s ease;
}

#otpBoxes .otp-box:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(179, 19, 79, 0.15);
}

#otpBoxes .otp-box.filled {
    border-color: var(--peacock);
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  /*   margin-bottom: 20px; */
}

.checkbox-row input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--maroon);
    flex-shrink: 0;
}

.checkbox-row label {
    font-size: 13px;
    color: var(--marigold);
    line-height: 1.5;
}

.auth-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-actions .cta-btn {
    width: 100%;
    justify-content: center;
}

.link-btn {
    background: none;
    border: none;
    color: var(--maroon-deep);
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    text-decoration: underline;
    text-align: center;
}

.link-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    text-decoration: none;
}

.form-msg {
    font-size: 13.5px;
    font-weight: 600;
    text-align: center;
    margin-top: 14px;
    min-height: 18px;
}

.form-msg.error {
    color: var(--cream);
}

.form-msg.success {
    color: var(--peacock);
}

.otp-hint {
    font-size: 12px;
    color: #8a7457;
    text-align: center;
    margin-top: 8px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
}

.step-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(193, 98, 133, 0.5);
}

.step-indicator span.active {
    background: var(--cream-2);
    width: 22px;
    border-radius: 6px;
}

/* ============ GAME PAGE ============ */
.game-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: var(--midnight-1);
    color: #fff;
    position: relative;
    z-index: 3;
}

.score-pill {
    background: rgba(255, 255, 255, 0.12);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    gap: 14px;
}

.score-pill b {
    color: var(--marigold);
}

.game-stage {
    position: relative;
    background: linear-gradient(180deg, var(--midnight-2) 0%, var(--peacock) 100%);
    min-height: 300px;
    padding: 40px 20px 50px;
    overflow: hidden;
}

.game-instructions {
    text-align: center;
    color: #fdf1da;
    font-size: 14px;
    margin-bottom: 26px;
    opacity: .9;
}

.matki-row {
    display: flex;
    justify-content: center;
    gap: 34px;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-top: 10px;
}

.matki {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    position: relative;
    transition: transform .12s ease;
}

.matki:hover {
    transform: translateY(-4px);
}

.matki:focus-visible {
    outline: 3px solid var(--marigold);
    outline-offset: 4px;
    border-radius: 8px;
}

.matki .rope {
    width: 2px;
    height: 34px;
    background: rgba(255, 255, 255, 0.5);
}

.matki svg {
    width: 76px;
    height: auto;
    filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.35));
    transition: opacity .25s ease, transform .3s ease;
}

.matki .points-fly {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, 0);
    color: var(--marigold);
    font-weight: 800;
    font-size: 18px;
    opacity: 0;
    pointer-events: none;
    font-family:Arial, Helvetica, sans-serif;
}

.matki.broken svg {
    opacity: 0;
    transform: scale(0.5) rotate(25deg);
}

.matki.broken {
    cursor: default;
    pointer-events: none;
}

.matki.pop .points-fly {
    animation: flyUp 0.9s ease forwards;
}

@keyframes flyUp {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -40px);
    }
}

.matki-label {
    margin-top: 10px;
    font-size: 11.5px;
    color: #f1e6d2;
    font-weight: 600;
}

.game-footer-note {
    text-align: center;
    color: #fdf1da;
    font-size: 12.5px;
    padding: 16px;
    opacity: .75;
}

/* ============ MODAL ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 20, 40, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 20px;
}

.modal-overlay.show {
    display: flex;
}

.modal-card {
    background: #8c0611;
    border-radius: 22px;
    max-width: 380px;
    width: 100%;
    padding: 38px 30px 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    animation: popIn .3s ease;
    position: relative;
    color: var(--cream);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: #9a8266;
    cursor: pointer;
    padding: 4px;
}

.modal-close:hover {
    color: var(--maroon);
}

.modal-card.login-modal-card {
    max-width: 420px;
    text-align: left;
    padding: 40px 34px 30px;
}

.modal-card.login-modal-card h2 {
    text-align: center;
    font-size: 24px;
    color: var(--maroon-deep);
    margin-bottom: 6px;
}

/* ============ GAME EMBED (iframe on same page) ============ */
.game-embed {
   /*  background: var(--midnight-1); */
}

.game-embed-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    color: #fff;
}

.game-embed-topbar .brand {
    color: #fff;
}

.game-embed-topbar .link-btn {
    color: var(--marigold);
    text-decoration: none;
    font-size: 13.5px;
}

.game-iframe {
    display: block;
    width: 100%;
    height: 760px; /* fallback until the iframe reports its real height via postMessage */
    border: none;
}










@media (max-width: 680px) {
    .game-embed-topbar {
        padding: 12px 18px;
    }
}

@keyframes popIn {
    from {
        transform: scale(.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-card .kalash {
    width: 70px;
    margin: 0 auto 14px;
}

.modal-card h2 {
    color: var(--cream);;
    font-size: 26px;
    margin-bottom: 8px;
    text-align: center;
}

.modal-card p {
    font-size: 15px;
    color: var(--cream);;
    margin-bottom: 4px;
}

.modal-card .points-big {
    font-family:Arial, Helvetica, sans-serif;
    font-size: 34px;
    color: var(--cream-2);
    margin: 14px 0;
    line-height: 1.1;
}

.modal-card .cta-btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

/* ============ ALREADY PLAYED / INACTIVE STATES ============ */
.state-card {
    max-width: 460px;
    margin: 60px auto;
    background: var(--maroon);
    border: 1px solid rgba(179, 19, 79, 0.3);
    border-radius: 20px;
    padding: 40px 34px;
    text-align: center;
    box-shadow: 0 18px 34px rgba(42, 28, 16, 0.12);
}

.state-card h2 {
    color: var(--cream);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.state-card p {
    font-size: 14.5px;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 10px;
}

.state-card .points-big {
    font-family:Arial, Helvetica, sans-serif;
    font-size: 32px;
    color: var(--marigold-deep);
    margin: 10px 0;
}

@media (max-width: 680px) {
    

    .hero-copy h1 {
        font-size: 28px;
    }

    .about {
        padding: 34px 22px 6px;
    }

    .steps-wrap {
        padding: 30px 20px 40px;
    }

    .steps-grid {
        grid-template-columns:1fr;
        gap: 22px;
    }

    .game-topbar {
        padding: 14px 18px;
    }

    .matki-row {
        gap: 18px;
    }

    .matki svg {
        width: 56px;
    }
}










        .campaign-page {
            position: relative;
            min-height: 100vh;
            overflow: hidden;

            background-image: url('../img/bg-body.jpg');
            background-position: top center;
            background-repeat: repeat-y;
            background-size: cover;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            position: relative;
            padding: 3rem 0 0 0;
        }

        .main-title {
            color: #b50909;
            font-size: clamp(32px, 4vw, 54px);
            font-weight: 800;
        }

        .intro-text {
            max-width: 900px;
            margin: auto;
            color: #181818;
            font-size: clamp(20px, 2vw, 30px);
            font-weight: 700;
            line-height: 1.4;
        }

        /* Steps */

        .steps-wrapper {
            position: relative;
            margin-top: 100px;
        }

        .steps-heading {
            position: absolute;
            top: -32px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;

            min-width: 350px;
            padding: 10px 35px;

            border-radius: 50px;

            background: linear-gradient(
                #ffb32b,
                #f59a00
            );

            font-size: clamp(24px, 3vw, 34px);
            font-weight: 800;
            color: #111;
        }

        .steps-card {
            border: 1px solid #f0a52b;
            border-radius: 25px;
            padding: 75px 20px 25px;
        }

        .step {
            position: relative;
            min-height: 180px;
        }

        .step-divider {
            border-right: 1px solid #eca32b;
        }

        .step-number {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-51px);

            width: 27px;
            height: 27px;

            display: flex;
            justify-content: center;
            align-items: center;

            border-radius: 50%;
            background: #f6a20b;
            z-index: 1;
            font-size: 17px;
            font-weight: 800;
        }

        .step-icon {
            height: 70px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 52px;
            z-index: 2;
            position: relative;
        }

        .step-title {
            color: #b50909;
            font-size: clamp(25px, 2vw, 34px);
            font-weight: 800;
        }

        .step-text {
            font-size: clamp(18px, 1.8vw, 26px);
            line-height: 1.25;
            color: #171717;
        }

        /* Play button */

        .play-btn {
            display: inline-block;

            margin-top: 50px;
            padding: 12px 35px;

            border: 5px solid #f18b00;
            border-radius: 50px;

            background: linear-gradient(
                #df0000,
                #ff1d1d
            );

            color: #fff;
            font-size: clamp(24px, 3vw, 34px);
            font-weight: 800;
            text-decoration: none;

            transition: transform .2s ease;
        }

        .play-btn:hover {
            transform: scale(1.04);
            color: #fff;
        }

        /* Decorative Images */

        .matki-decoration {
           
            width: min(30vw, 360px);
            pointer-events: none;
            animation: matkiFloat 3s ease-in-out infinite;
        }

        @keyframes matkiFloat {
            0%,
            100% {
                transform: translateX(0) rotate(0deg);
            }

            50% {
                transform: translateX(-12px) rotate(2deg);
            }
        }

        .feather-decoration {
            width: min(30vw, 360px);
            pointer-events: none;
            animation: featherFloat 4s ease-in-out infinite;
            transform-origin: bottom center;
        }


        @keyframes featherFloat {
            0% {
                transform: translateY(0) rotate(-3deg);
            }

            25% {
                transform: translateY(-6px) rotate(1deg);
            }

            50% {
                transform: translateY(-12px) rotate(3deg);
            }

            75% {
                transform: translateY(-5px) rotate(0deg);
            }

            100% {
                transform: translateY(0) rotate(-3deg);
            }
        }



        .terms {
            position: absolute;
            bottom: 10px;
            right: 15%;

            color: rgba(255,255,255,.8);
            font-size: 12px;
        }

         .hero-title {
      color: #d40401;
      font-size: clamp(2.3rem, 5vw, 3.55rem);
      font-weight: 700;
      line-height: 1.1;
      text-align: center;
      margin: 0;
    }

   
    .hero-subtitle {
      font-size: clamp(1.35rem, 2vw, 2rem);
      line-height: 1.25;
      font-weight: 700;
      text-align: center;
      max-width: 900px;
      padding: 1rem 0;
      margin: 0 auto;
      margin-top: 1rem;
      margin-bottom: 1rem;
      background: #F5CA8F;
      background: linear-gradient(90deg,rgba(245, 202, 143, 1) 0%, rgba(245, 182, 63, 1) 50%, rgba(235, 165, 70, 1) 100%);
    }


    /* Main card */
    .steps-section {
      margin: 0 auto;
      margin-top: 55px;
      border: 1.5px solid #f9a815;
      border-radius: 25px;
      position: relative;
      padding: 45px 75px 22px;
      background: rgba(255, 238, 220, .16);
    }

    .steps-title {
      position: absolute;
      top: -35px;
      left: 50%;
      transform: translateX(-50%);
      background: #f9a815;
      color: #000;
      border-radius: 35px;
      padding: 8px 35px;
      font-size: clamp(1.5rem, 3vw, 2.15rem);
      font-weight: 700;
      white-space: nowrap;
    }

    .steps-title::before,
    .steps-title::after {
      content: "";
      position: absolute;
      top: 50%;
      height: 1px;
      width: 195px;
     /*  background: #d50059; */
    }

    .steps-title::before {
      right: calc(100% + 20px);
    }

    .steps-title::after {
      left: calc(100% + 20px);
    }



    .step:not(:last-child) {
      border-right: 1px solid rgba(80, 80, 80, .45);
     /*  margin-right: 10px; */
    }

    

     .step:last-child {
      border:none;
    }

    .icon-wrap {
      width: 62px;
      min-width: 62px;
      height: 62px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 48px;
      position: relative;
    }
    .icon-wrap img{
      z-index: 1;
    }

    .number {
      position: absolute;
      left: 6px;
      top: 20px;
      width: 25px;
      height: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: #ca0153;
      color: white;
      font-size: 14px;
      font-weight: 700;
    }

    .step-content h3 {
      margin: 0;
      font-size: clamp(1.6rem, 3vw, 2.05rem);
      font-weight: 700;
      line-height: 1.1;
    }

    .step-content p {
      margin: 3px 0 0;
      font-size: clamp(1.25rem, 2.5vw, 1.75rem);
      line-height: 1.25;
    }

    /* CTA */
    .cta-wrapper {
      text-align: center;
      margin-top: 54px;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 220px;
      padding: 14px 38px;
      border-radius: 40px;
      background: #ca0153;
      color: white;
      text-decoration: none;
      font-size: clamp(1.6rem, 3vw, 2.1rem);
      font-weight: 700;
      transition: all .2s ease;
      box-shadow: none;
    }

    .cta-button:hover {
      background: #aa004a;
      color: white;
      transform: translateY(-2px);
    }

    /* Decorative rakhi-like elements */
    .decorative-rakhi {
      position: absolute;
      width: 206px;
      height: 150px;
      bottom: 0px;
      left: 10px;

    }


    .decorative-box {
      position: absolute;
      right: 10px;
      bottom: 0px;
      width: 215px;
      height: 150px;
    
    }

    .modal-card a{
        color: var(--peacock-light) !important;
        font-weight: bold !important;
    }

    .link-btn{
        color: var(--cream) !important;
    }

    /* Tablet */
    @media (max-width: 991.98px) {
      .main-wrapper {
        padding-left: 20px;
        padding-right: 20px;
      }

      .steps-section {
        padding-left: 25px;
        padding-right: 25px;
      }

      .steps-title::before,
      .steps-title::after {
        width: 100px;
      }
    }

    /* Mobile */
    @media (max-width: 767.98px) {
      .ftr p{
        margin-top: 1rem;
      }
      .main-wrapper {
        padding: 18px 15px 35px;
      }

      .hero-title {
        font-size:1.6rem;
        margin-bottom: 1.5rem !important;
      }

      .hero-subtitle {
        font-size:1.1rem;
      }

      .separator {
        width: 90%;
        margin-top: 15px;
      }

      .step-title{
        font-weight: 700;
        font-size: 1.5rem;
      }
      .play-btn{
        font-size: 1.5rem;
      }

      .steps-section {
        margin-top: 35px;
        padding: 15px 15px 20px;
        border-radius: 20px;
      }

      .steps-title {
        font-size: 1.35rem;
        padding: 9px 25px;
        top: -25px;
      }

      .steps-title::before,
      .steps-title::after {
        width: 45px;
      }

      .steps-title::before {
        right: calc(100% + 10px);
      }

      .steps-title::after {
        left: calc(100% + 10px);
      }

      .step {
        min-height: auto;
        padding: 18px 8px;
        gap: 13px;
      }

      .step:nth-child(odd) {
        border-right: none;
      }

      .step:nth-child(-n+2) {
        border-bottom: none;
      }

      .step:not(:last-child) {
        border-bottom: 1px solid rgba(80, 80, 80, .35);
        border-right: none;
      }

      .icon-wrap {
        width: 48px;
        min-width: 48px;
        height: 55px;
        font-size: 38px;
      }
    .step-number{
        top: 20px;
    }
      .number {
        width: 22px;
        height: 22px;
        font-size: 12px;
        left: -8px;
      }

      .step-content h3 {
        font-size: 1rem;
      }

      .step-content p {
        font-size: 1.1rem;
      }

      .cta-wrapper {
        margin-top: 40px;
      }

      .cta-button {
        min-width: 195px;
        font-size: 1.55rem;
        padding: 13px 30px;
      }
      .decorative-rakhi{
        width:138px;
        height:100px;
      }
      .decorative-box{
        width:143px;
        height:100px;   
      }
      .bg-rangeen{
        padding: 3rem 0 0 0;
      }
      #main p.text-t{font-size: 0.75rem !important;}
      img.play{height:70px;}
      .game-iframe{
        height: 670px !important;
      }
    }

    /* Very small phones */
    @media (max-width: 400px) {
        .hero-title {
    font-size: 1.5rem;}
      .steps-title::before,
      .steps-title::after {
        display: none;
      }

      .steps-section {
        padding-left: 12px;
        padding-right: 12px;
      }

      .step {
        gap: 10px;
      }

      .step-content p {
        font-size: 1rem;
      }
    }

    
        /* Mobile */

        @media (max-width: 767.98px) {

            .campaign-page {
                padding-top: 2rem;
            }

            .main-title {
                font-size: 34px;
            }

            .steps-wrapper {
                margin-top: 80px;
            }

            .steps-heading {
                min-width: auto;
                width: 85%;
                font-size: 24px;
            }

            .steps-card {
                padding-top: 70px;
            }

            .step {
                min-height: auto;
                padding: 30px 15px;
            }

            .step-divider {
                border-right: none;
                border-bottom: 1px solid #eca32b;
            }

            .matki-decoration {
                width: 180px;
                left: -50px;
                margin-top: 2rem;
                animation: none;
            }

            .matki-decoration img{
                width: 100%;
                max-width: 100%;
            }

            .feather-decoration {
                width: 190px;
                right: -60px;
                margin-top: 2rem;
                animation: none;
            }

            .terms {
                right: 15px;
            }
        }