    @import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
    @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    *::selection {
        background-color: #2bec72;
        color: white;
    }

    body {
        font-family: "Noto Sans", sans-serif;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow-x: hidden;
        background-image: url("../../assets/01.png");
        background-repeat: repeat;
        background-size: cover;
        background-position: center;
        overflow-x: hidden;
        position: relative;
    }

    .coins-bg {
        position: absolute;
        width: 100%;
        height: 200px;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 0;
    }

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

    @keyframes float {

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

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

    /* Header */
    .header {
        text-align: center;
        margin-bottom: 30px;
        z-index: 2;
    }

    .logo {
        font-size: 32px;
        font-weight: bold;
        color: #2c3e50;
        display: flex;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    /* Bear */
    .character-section {
        text-align: center;
        margin: 0;
        z-index: 2;
    }

    .bear-svg {
        width: 200px;
        height: 200px;
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
        animation: bearFloat 3s ease-in-out infinite;
        cursor: pointer;
    }

    @keyframes bearFloat {

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

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

    span.badge {
        display: inline-block;
        background: #ffbb7b;
        color: #5c0404;
        padding: 10px 30px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.12rem;
        margin-bottom: 10px;
    }

    [data-type="light"] {
        color: white;
    }


    h1 {
        text-align: center;
        font-size: 5rem;
        font-family: "Pacifico", cursive;
        font-weight: 400;
        font-style: normal;
        color: black;
        margin: 20px;
    }

    h2 {
        font-family: "Roboto", sans-serif;
        font-size: 20px;
        font-weight: 400;
        font-style: normal;
        font-variation-settings:
            "wdth" 100;
    }

    /* Cards */
    .cards {
        display: flex;
        gap: 3rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .card {
        width: 280px;
        box-shadow: 2px 2px 10px grey;
        border-radius: 10px;
    }

    .card__outer {
        background: #ebecee;
        border-radius: 12px;
        height: 380px;
        padding: 20px;
        position: relative;
        display: flex;
        align-items: flex-end;
        transition: 0.3s;
    }

    .card__inner {
        background: white;
        border-radius: 12px;
        padding: 30px;
        width: 100%;
        height: 90%;
        position: absolute;
        bottom: 60px;
        right: 0;
        display: flex;
        flex-direction: column;
    }

    .icon svg {
        width: 35px;
    }

    .title {
        font-weight: bold;
        margin: 10px 0;
    }

    .price--number {
        font-size: 3rem;
        font-weight: 600;
    }

    ul {
        list-style: none;
        margin-top: auto;
    }

    ul li {
        margin-bottom: 5px;
    }

    a {
        text-decoration: none;
        font-weight: bold;
    }

    /* ===== CARDS ===== */
    .cards {
        display: flex;
        gap: 3rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 280px;
        cursor: pointer;
    }

    .card__outer {
        background: #ebecee;
        height: 380px;
        border-radius: 12px;
        padding: 20px;
        position: relative;
        display: flex;
        align-items: flex-end;
        transition: 0.35s ease;
    }

    .card__inner {
        background: white;
        position: absolute;
        bottom: 60px;
        right: 0;
        width: 100%;
        height: 80%;
        border-radius: 12px;
        padding: 30px;
        display: flex;
        flex-direction: column;
    }

    .icon svg {
        width: 32px;
    }

    .title {
        font-weight: bold;
        margin: 12px 0;
        text-transform: capitalize;
    }

    .price--number {
        font-size: 3rem;
        font-weight: 600;
        position: relative;
    }

    .price--number::after {
        content: "";
        display: block;
        height: 2px;
        background: #f1f1f1;
        margin-top: 10px;
    }

    ul {
        list-style: none;
        margin-top: auto;
    }

    ul li {
        margin-bottom: 6px;
    }

    a {
        text-decoration: none;
        font-weight: bold;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* ===== COLOR THEMES ===== */

    /* PURPLE */
    .card--purple .title,
    .card--purple a,
    .card--purple svg {
        color: #6824d6;
    }

    .card--purple:hover .card__outer {
        background: #6824d6;
        box-shadow: 5px 18px 13px rgba(104, 36, 214, .45);
    }

    .card--purple:hover a {
        color: white;
    }



    /* RED */
    .card--red .title,
    .card--red a,
    .card--red svg {
        color: #fe3258;
    }

    .card--red:hover .card__outer {
        background: #fe3258;
        box-shadow: 5px 18px 13px rgba(254, 50, 88, .45);
    }

    .card--red:hover a {
        color: white;
    }

    /* GREEN */
    .card--green .title,
    .card--green a,
    .card--green svg {
        color: #4ccda7;
    }

    .card--green:hover .card__outer {
        background: #4ccda7;
        box-shadow: 5px 18px 13px rgba(76, 205, 167, .45);
    }

    .card--green:hover a {
        color: white;
    }


    /* Orange */
    .card--orange .title,
    .card--orange a,
    .card--orange svg {
        color: orange;
    }

    .card--orange:hover .card__outer {
        background: orange;
        box-shadow: 5px 18px 13px rgba(76, 205, 167, .45);
    }

    .card--orange:hover a {
        color: white;
    }


    /* Pink */
    .card--pink .title,
    .card--pink a,
    .card--orange svg {
        color: #a906ea;
    }

    .card--pink:hover .card__outer {
        background: #a906ea;
        box-shadow: 5px 18px 13px rgba(76, 205, 167, .45);
    }

    .card--pink:hover a {
        color: white;
    }

    .bear-wrapper {
        position: relative;
        z-index: 2;
        /* coins ke upar */
    }

    .eye .eyelid {
        fill: #fff;
        transform-origin: center;
        animation: blink 5s infinite;
    }

    @keyframes blink {

        0%,
        95%,
        100% {
            transform: scaleY(0);
        }

        96%,
        99% {
            transform: scaleY(1);
        }
    }

    .bear-svg:hover #mouth {
        d: path("M250 335 Q292 365 334 335");
    }

    .footer-bar-design {
        position: absolute;
        width: 100%;
        height: 120px;
        margin-top: 100px;
        overflow: hidden;
        background: linear-gradient(326deg,
                #a4508b 0%,
                #FFD700 15%,
                #6824d6 30%,
                #FFA500 45%,
                #fe3258 60%,
                #FF69B4 75%,
                #87CEEB 85%,
                #98FB98 100%);
        filter: opacity(0.6);
        bottom: 0;
    }

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

    .listar-map-button {
        position: relative;
        z-index: 2;
        background-color: black;
    }



    .svg_wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 300px;
        padding: 10px;
    }

    h2 {
        text-align: center;
    }


    .theme-btn {
        position: fixed;
        right: 30px;
        bottom: 90px;
        height: 52px;
        width: 52px;
        border-radius: 30px;
        border: none;
        background-color: white;
        color: black;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0 18px;
        cursor: pointer;
        overflow: hidden;
        transition: width 0.35s ease, background 0.3s;
        z-index: 999;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    }

    .theme-btn .text {
        white-space: nowrap;
        opacity: 0;
        transform: translateX(10px);
        transition: 0.3s ease;
        font-size: 14px;
    }

    .theme-text {
        display: none;
        transition: 0.6s all ease-in-out;
        font-size: 16px;
        font-weight: 700;
    }


    .theme-btn:hover {
        width: 100px;
    }

    .theme-btn:hover .theme-text {
        opacity: 1;
        display: block;
        transform: translateX(0);
    }

    .theme-btn .icon {
        font-size: 20px;
    }




    /* WAVY Animation */

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

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


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


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


    .footer-bar-design {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 120px;
        z-index: 1;
    }

    .footer-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 200%;
        height: 180px;
        z-index: 1;
        pointer-events: none;
    }

    body {
        padding-bottom: 160px;
        /* wave + footer ke liye */
    }

    @media (max-width: 768px) {
        .footer-wave {
            height: 140px;
        }

        body {
            padding-bottom: 180px;
        }
    }


    @media (max-width: 375px) {


        h1 {
            font-size: 3rem;
        }

        .footer-wave {
            height: 180px;
        }

        body {
            padding-bottom: 180px;
        }
    }


    html {
        overflow-x: hidden;
    }

    body {
        font-family: "Noto Sans", sans-serif;
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-image: url("../../assets/01.png");
        background-repeat: repeat;
        background-size: cover;
        background-position: center;
        overflow-x: hidden;
        position: relative;
        max-width: 100vw;
    }

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

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

        100% {
            background-position: 720px;
            /* 1440px se 720px kiya */
        }
    }
