
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    background: #000000;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}
main{
    width: 100%;
    height: 100vh;
}

.logo {
width: 40px;
height: 40px;
}

.currency {
    display: flex;
    align-items: center;
}

.currency-btn {
    background: #2A2C3B;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 20px;
    margin-left: 10px;
    cursor: pointer;
}

h1 {
    margin-top: 20px;
    font-weight: 600;
}

.subtext {
    color: #A0A0A0;
    font-size: 14px;
    margin-bottom: 20px;
}

.toggle-buttons {
    background: #19212B;
    display: inline-block;
    padding: 5px;
    border-radius: 20px;
    width: 370px;
    text-align: center;
    margin-bottom: 40px;
}

.toggle {
    background: none;
    border: none;
    color: white;
    padding: 10px 50px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 20px;
}

.toggle.active {
    background: #55ddff;
    color: rgb(0, 0, 0);
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 50px;
}

.card {
    /* background: #161825; */
    /* background: radial-gradient(circle at top right, rgba(0, 174, 239, 0.3), transparent 60%), #161825; */
    background: url('https://vshowcards.com/images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px;
    border-radius: 10px;
    width: 332px;
    text-align: center;
    /* box-shadow: 0px 0px 15px rgba(0, 174, 239, 0.3); */
    /* border: 2px solid #55ddff; */
}

.icon {
    font-size: 30px;
    color: #55ddff;
    text-align: left;
}

h2 {
    margin: 10px 0;
    text-align: left;
}

h3 {
    color: #55ddff;
    margin: 10px 0;
    text-align: left;

}

.small-text {
    font-size: 12px;
    color: #A0A0A0;
    letter-spacing: 8px;
    text-align: left;
    margin: 8px 0px 73px 0px;
}

.small-text2 {
    font-size: 16px;
    color: #A0A0A0;
    letter-spacing: 2px;
    text-align: left;
    margin: 8px 0px;
}
.price-tag{
    font-size: 31px;
    font-weight: bold;
    color: #55ddff;
    margin: 8px 0;
    text-align: left;
}
sub{
    font-size: 16px;
    color: #A0A0A0;
    font-weight: normal;
}
.mr-5{
    margin-right: 10px;
}
.custom-hr {
    border: none;
    height: 0.1px;
    background-color: #ffffff;
    margin-top: 10px;
    margin-bottom: 20px;
    width: 100%;
    opacity: 0.3;
}

.join-btn {
    background: #55ddff;
    border: none;
    padding: 12px 120px;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.features {
    text-align: left;
    width: 60%;
    max-width: 600px;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

/* .features li::before {
    content: "✔";
    color: #55ddff;
    font-size: 18px;
    margin-right: 10px;
} */
/* .features li::before {
    content: "";
    display: inline-block;
    width: 19px;
    height: 19px;
    background-image: url('Wavy.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
} */

.login {
    margin-top: 20px;
    text-align: center;
}

.login a {
    color: #55ddff;
    text-decoration: none;
}

/* 📌 MEDIA QUERIES FOR RESPONSIVENESS */

/* ✅ For tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    header {
        padding: 20px 30px;
    }
    .content {
        flex-direction: column;
        gap: 30px;
    }
    .features {
        text-align: center;
        width: 90%;
    }
}

/* ✅ For mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .currency {
        margin-top: 10px;
    }

    .content {
        flex-direction: column;
        gap: 20px;
    }

    .features {
        width: 90%;
        text-align: center;
    }
}

/* ✅ For small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    h1 {
        font-size: 22px;
    }
    .subtext {
        font-size: 12px;
    }

    .features {
        width: 90%;
        text-align: center;
    }
}
