* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
    text-decoration: none;
}

html {
    overflow-x: hidden;
}


body {
    margin: 0px;
    min-height: 100vh;
    /*! color: rgb(255, 255, 255); */
    overflow-x: hidden;
}

.app-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page {
    width: 100%;
    max-width: 1100px;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    margin-bottom: 10px;
    z-index: 1000;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.heading {
    font-size: 100px;
    text-align: center;
    line-height: 1.1;
    margin: 0px auto;
    z-index: 1;
}

.subtitle {
    color: white;
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
    max-width: 800px;
    line-height: 1.4;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    justify-content: center;
    margin: 0px auto;
    padding: 0px 20px;
}

.badge-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 15px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 280px;
}

.badge-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 25px 40px;
}

.badge-icon {
    font-size: 64px;
    margin-bottom: 15px;
}

.badge-card h2 {
    font-size: 22px;
    margin-bottom: 8px;
    text-align: center;
}

.amount {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.gold {
    border: 2px solid gold;
}

.gold .amount {
    color: white;
}

.silver {
    border: 2px solid silver;
}

.silver .amount {
    color: silver;
}

.bronze {
    border: 2px solid rgb(205, 127, 50);
}

.bronze .amount {
    color: rgb(205, 127, 50);
}

.coin {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: 3s ease-in-out 0s infinite normal none running float;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}



.proceedBtn {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(326deg, #a4508b 50%, #FF69B4 50%);
    padding: 18px 60px;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s;
    z-index: 150;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    border-radius: 50px;
    margin-top: 30px;
    border: none;
    cursor: pointer;
}

.proceedBtn:hover {
    box-shadow: rgba(0, 0, 0, 0.4) 0px 12px 30px;
    background: linear-gradient(326deg, rgb(255, 105, 180) 50%, rgb(164, 80, 139) 50%);
    transform: translateX(-50%) scale(1.05);
}

.footer-bar-design {
    position: absolute;
    width: -webkit-fill-available;
    height: 125px;
    margin-top: 100px;
    overflow: hidden;
    background: linear-gradient(326deg, rgb(164, 80, 139) 0%, rgb(255, 215, 0) 15%, rgb(104, 36, 214) 30%, rgb(255, 165, 0) 45%, rgb(254, 50, 88) 60%, rgb(255, 105, 180) 75%, rgb(135, 206, 235) 85%, rgb(152, 251, 152) 100%);
    filter: opacity(0.6);
    bottom: 0px;
}

.footer-wave {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 200%;
    height: 180px;
    background: url("https://1.bp.blogspot.com/-NYl6L8pz8B4/XoIVXwfhlNI/AAAAAAAAU3k/nxJKiLT706Mb7jUFiM5vdCsOSNnFAh0yQCLcBGAsYHQ/s1600/hero-wave.png") repeat-x;
    animation: 10s linear 0s infinite normal none running wave;
    transform: scaleY(-1);
    z-index: 1;
}

@keyframes wave {
    0% {
        background-position: 0px center;
    }

    100% {
        background-position: 1440px center;
    }
}

[data-heading="dark"] {
    color: white;
}

[data-heading="light"] {
    color: black;
}

@media screen and (max-width: 1024px) {
    .heading {
        font-size: 72px;
    }

    .subtitle {
        font-size: 24px;
        padding: 0px 20px;
    }

    .badge-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        max-width: 800px;
        gap: 25px;
    }

    .page {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 768px) {
    .heading {
        font-size: 48px;
        padding: 0px 15px;
        z-index: 1000;
    }

    .subtitle {
        font-size: 20px;
        padding: 0px 15px;
        z-index: 1000;
    }

    .badge-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 0px 15px;
    }

    .badge-card {
        padding: 25px 15px;
        min-height: 240px;
    }

    .badge-icon {
        font-size: 48px;
    }

    .badge-card h2 {
        font-size: 18px;
    }

    .amount {
        font-size: 16px;
    }

    .proceedBtn {
        padding: 15px 40px;
        font-size: 18px;
        bottom: 30px;
    }

    .page {
        padding: 20px 15px;
    }
}

@media screen and (max-width: 480px) {
    .heading {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }

    .badge-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        gap: 15px;
    }

    .badge-icon {
        display: flex;
    }


    .badge-card {
        min-height: 220px;
    }

    .proceedBtn {
        padding: 12px 30px;
        font-size: 16px;
        bottom: 25px;
        width: 90%;
        text-align: center;
        margin-top: 23px;
        max-width: 150px;
    }

    .app-wrapper {
        justify-content: center;
    }
}

@media screen and (min-width: 1400px) {
    .page {
        max-width: 1200px;
    }

    .badge-grid {
        max-width: 1100px;
    }
}

.footer-bar-design {
    position: fixed;
    width: 100%;
    height: 125px;
    overflow: hidden;
    background: linear-gradient(326deg, rgb(164, 80, 139) 0%, rgb(255, 215, 0) 15%, rgb(104, 36, 214) 30%, rgb(255, 165, 0) 45%, rgb(254, 50, 88) 60%, rgb(255, 105, 180) 75%, rgb(135, 206, 235) 85%, rgb(152, 251, 152) 100%);
    filter: opacity(0.6);
    bottom: 0px;
    left: 0px;
    z-index: 0;
}

.badge-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.badge-card {
    width: 420px;
    padding: 32px;
    border-radius: 26px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
    animation: 0.7s ease 0s 1 normal forwards running cardFadeUp;
    opacity: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

@keyframes cardFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}

.badge-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.badge-card::before {
    content: "";
    position: absolute;
    inset: 0px;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.badge-card:hover::before {
    transform: translateX(100%);
}

.badge-icon {
    font-size: 46px;
    margin-bottom: 14px;
}

.badge-card.gold {
    background: linear-gradient(145deg, rgb(255, 224, 130), rgb(244, 168, 37));
    box-shadow: rgba(244, 168, 37, 0.55) 0px 20px 45px, rgba(255, 255, 255, 0.35) 0px 0px 0px 1px inset;
}

.badge-card.silver {
    background: linear-gradient(145deg, rgb(247, 247, 247), rgb(207, 207, 207));
    box-shadow: rgba(160, 160, 160, 0.55) 0px 20px 45px, rgba(255, 255, 255, 0.4) 0px 0px 0px 1px inset;
}

.badge-card.bronze {
    background: linear-gradient(145deg, rgb(209, 145, 60), rgb(161, 92, 27));
    box-shadow: rgba(161, 92, 27, 0.55) 0px 20px 45px, rgba(255, 255, 255, 0.3) 0px 0px 0px 1px inset;
}

.badge-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.badge-card .amount {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 14px;
}

.badge-card .subtitle {
    font-size: 15px;
    margin: 6px 0px;
    opacity: 0.95;
}

#totalAmount,
#intAmount {
    font-size: 17px;
    font-weight: 700;
}

.hiddenBtn {
    animation: 0.7s ease 0s 1 normal forwards running cardFadeUp;
    position: static;
}
