@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/inter.ttf') format('truetype'),
}

:root {
    --black: #000;
    --white: #fff;
    --dark: #171717;
    --light: #252525;
    --accent: #6964F7;
    --bg: #131226;
    --hot: #FF003D;
}

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

ul {
    padding-left: 20px;
}

a {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
    font-family: 'Inter';
    background: var(--bg);
    color: var(--white);
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: clip;
}

main {
    flex-grow: 1;
}

[class*="__container"] {
    max-width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

/* Header */

.header {
    padding-block: 48px;
}

.header__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.header__container h1 {
    font-size: 56px;
    line-height: 56px;
    font-weight: 600;
}

.header__container h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
}

.header__container span {
    color: var(--accent);
}


.header__container a {
    color: var(--white);
    background: var(--accent);
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    line-height: 150%;
    font-weight: 700;
}

.header__container a:hover {
    background: var(--hot);
}

@media (max-width: 600px) {

    .header__container h1 {
        font-size: 40px;
    }

    .header__container h2 {
        font-size: 16px;
    }
}

/* Offer */

.offer__container {
    max-width: 400px;
}

.offer-block {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    border: 12px solid var(--white);
    height: 100%;
    background:
        linear-gradient(to right, white 50%, black 50%) top,
        linear-gradient(to right, black 50%, white 50%) bottom;
    background-size: 100% 53%;
    background-repeat: no-repeat;
}

.offer-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 60px;
}

.offer-hot {
    background: var(--black);
    flex: 1;
    align-items: center;
    padding: 4px 15px;
    display: flex;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.offer-hot img {
    background: var(--hot);
    border-radius: 50%;
    padding: 6px;
    width: 38px;
}

.offer-bonus {
    flex: 1;
    color: var(--black);
    display: flex;
    gap: 4px;
    flex-direction: column;
    border-radius: 0px 0px 0px 20px;
    background: var(--white);
    padding: 4px 15px;
    text-align: center;
}

.offer-bonus p {
    font-weight: 500;
    color: #595959;
    font-size: 12px;
    line-height: 150%;
}

.offer-bonus h3 {
    line-height: 150%;
    font-size: 22px;
}

.logo-ofer {
    width: 100%;
}

.offer-info {
    background: var(--black);
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 10px 20px;
    height: 50px;
}

.offer-rating {
    display: flex;
    flex-direction: row;
    gap: 6px;
    background: var(--black);
    align-items: center;
}

.offer-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 60px;

}

.offer-bonus-fs {
    flex: 1;
    color: var(--black);
    display: flex;
    gap: 6px;
    flex-direction: column;
    border-radius: 0px 20px 0px 0px;
    background: var(--white);
    padding: 4px 15px;
    align-items: center;
    justify-content: center;

}

.offer-bonus-fs p {
    color: var(--accent);
    font-size: 32px;
    font-weight: 700;
}

.offer-btn-block {
    background: var(--black);
    flex: 1;
    padding: 4px 15px;
    border-radius: 0px 0px 20px 20px;
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
}

.offer-btn-block a {
    color: var(--white);
    background: var(--accent);
    width: 100%;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    line-height: 150%;
    font-weight: 700;
}

.offer-btn-block a:hover {
    background: var(--hot);
}

@media (max-width: 600px) {

    .offer-btn-block a {
        padding: 5px 20px;
    }

}

/* Footer */

.footer {
    padding-block: 48px;
}

.footer__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-block {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    background: var(--accent);
    padding: 20px;
    border-radius: 20px;
}

.footer-logo-block img {
    max-height: 50px;
}

.disclaimer {
    font-size: 36px;
    padding: 10px;
    border-radius: 100%;
    border: 1px solid var(--white);
}

.footer-disclaimer-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-disclaimer-block h2 {
    text-align: center;
    color: var(--accent);
    font-size: 16px;
    line-height: 20px;
}

.footer-disclaimer-block p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.footer-menu-block {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: space-between;
    border-top: 1px solid var(--accent);
    padding-top: 20px;
}

.footer-copy p {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.footer-menu {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.footer-menu a {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    transition: all 0.4s;
}

@media (max-width: 600px) {

    .footer-logo-block {
        flex-direction: column;
    }

    .footer-menu-block {
        flex-direction: column;
    }

    .footer-menu {
        flex-direction: column;
    }
}

/* Politic */

.politic__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}