* {
    box-sizing: border-box;
    font-family: "Inter", serif;
    color: #fff;
    padding: 0;
    margin: 0;
}

body {
    background: #111226;
}

a {
    text-decoration: none;
}


.max-width {
    max-width: 1120px;
    width: 100%;
}


.nav a, .menu-wrapper a {
    margin: 0 10px;
    font-size: 20px;
    font-style: italic;
    color: #fff;
}

.nav a:hover {
    color: #dedede;
}

.nav-mobile {
    display: none;
    cursor: pointer;
}

.menu-wrapper {
    position: absolute;
    width: 100%;
    background: #fff;
    top: 0;
    padding: 10px;
    display: none;
    border-top: 1px solid grey;
}

.menu-wrapper a {
    margin: 10 0;
    color: #000;
}

.opened {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: menu-open 0.5s forwards;
}

.top-header {
    text-align: center;
    padding: 10px;
    background: #fff;
    color: #000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo p {
    font-weight: 900;
    margin: 10px;
    font-size: 1.5em;
}
.logo img {
    width: 50px;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #111226;
}


.menu-wrapper a {
    margin: 5px 0;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em;
    margin: 0 auto;
}

.popup_wrapper {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #000000b5;
    z-index: 999;
    display: none;
}

.popup_content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 96%;
    max-width: 450px;
    width: 100%;
    transform: translate(-50%, -50%) scale(1);
    animation: openPopup 0.5s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    display: flex;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 10px 35px 10px;
    gap: 10px;
}

.popup_content * {
    color: #000;
}

.popup_actions {
    width: 100%;
    gap: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_actions button {
    padding: 10px 15px;
    border: 1px solid #000;
    width: 100px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    font-weight: 800;
    text-shadow: 1px 1px 1px black;
    font-size: 2em;
}

.popup_actions button:first-child {
    background: rgb(0, 218, 0);
}

.popup_actions button:last-child {
    background: red;
}

.popup_content h1 {
    text-align: center;
}

.opened-popup {
    display: block;
}


.banner {
    background: #1D1F3F;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3em 0;
    text-align: center;
}

.banner img {
    width: 100%;
    max-width: 600px;
}

h1 {
    font-size: 3em;
    font-weight: 900;
    font-style: italic;
}
h2 {
    font-size: 2em;
    font-weight: 800;
}

h3 {
    font-size: 1.3em;
    color: #ADA3FF;
    font-weight: 600;
}

.cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 2em;
    margin-top: 2em;
}

.card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1em;
    background: #1a1b37;
    border: 1ps solid lightblue;
    border-radius: 15px;
    padding: 1em;
    height: 200px;
}

.card_left {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;  
    gap: 1em;
    justify-content: space-between;
    height: 100%;
}

.card_left img {
    width: 100%;
    max-width: 250px;
}

.card_right {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.card_right img {
    width: 100%;
}

.link-btn {
    background: #28D0D0;
    color: #fff;
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    border-radius: 5px;
}
.card_rate span {
    font-size: 3em;
    font-weight: 900;
    

    
}



.card_bonus {
    font-size: 2em;
    font-weight: 900;
}

.card_rate span {
    color: #ada3ff;
}

.card_rate {
    gap: 1em;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(211, 211, 211, 0.341);
}

.bonus_title {
    font-size: 1.5em;
}

.content {
    width: 100%;
}

.footer {
    width: 100%;
    display: flex;
    padding: 1em;
    flex-direction: column;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-around;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.links a {
    margin: 5px 0;
}

.footer-brands {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    flex-wrap: wrap;
}

.copyright {
    width: 100%;
    text-align: center;
    font-size: 1em;
}



.footer-links {
    justify-content: center;
}

.faq {
    margin: 2em 0;
    padding: 1em 0;
    border-top: 1px solid rgba(211, 211, 211, 0.341);
    border-bottom: 1px solid rgba(211, 211, 211, 0.341);
}

.faq p {
    font-weight: 800;
}

.disclaimer {
    background: #1a1b37;
    padding: 1em;
    border-radius: 10px;
    margin: 1em 0;
}


form {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

label {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    display: inline-block;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    color: #000;
}

form button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

form button:hover {
    background-color: #45a049;
}

@media screen and (max-width: 765px) {
    .nav {
        display: none;
    }

    .header {
        justify-content: space-between;
    }

    .nav-mobile {
        display: block;
    }
    
    .card {
        flex-direction: column;
        height: 400px;
    }

    .card_right, .card_left {
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        
    }

    .footer .links {
        margin: 1em 0;
        border-bottom: 1px solid lightgray;
        padding-bottom: 1em;
    }
}

@keyframes menu-open {
    from {
        top: -100%;
    }

    to {
        top: 60px;
    }
}