@font-face {
    font-family: 'Rock Salt';
    src: url('/assets/fonts/RockSalt-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DM Sans';
    src: url('/assets/fonts/DMSans-VariableFont_opsz\,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

:root {
    --black: #000;
    --white: #fff;
    --dark: #171717;
    --light: #252525;
    --accent: #EAB308;
    --hover: #FF8008;
    --span: #FF004D;
    --bg: #D8FAF6;
    --gradient: linear-gradient(to right, #FF8008, #FFC837);
    --font-primary: 'DM Sans', sans-serif;
    --font-secondary: 'Rock Salt', cursive;
}

*,
::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: var(--font-primary);
    background: radial-gradient(circle at top left, rgba(255, 128, 8, 0.3), transparent 60%),
        radial-gradient(circle at bottom right, rgba(255, 128, 8, 0.3), transparent 60%),
        linear-gradient(to right, #fff7ef, #fff);
    background-attachment: fixed;
}

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

main {
    flex-grow: 1;
}

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

/* Header */

.header {
    padding-block: 44px;
}

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

.header__container h1 {
    font-size: 76px;
    line-height: 96%;
    letter-spacing: -4%;
    font-weight: 500;
}

.header__container h2 {
    font-size: 20px;
    line-height: 140%;
    font-weight: 700;
}

.header__container a {
    padding: 16px 24px;
    background: var(--accent);
    border-radius: 48px;
    max-width: 200px;
    margin: 0 auto;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -2%;
    transition: all 0.5s;
}

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

@media (max-width: 600px) {
    .header__container h1 {
        font-size: 40px;
    }

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

/* Offer */

.offer__container {
    max-width: 400px;
}

.offer-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--bg);
    border-radius: 20px;
    padding: 16px;
}

.offer-block h3 {
    font-family: var(--font-secondary);
    color: var(--span);
    text-align: center;
    font-size: 22px;
    line-height: 22px;
    letter-spacing: 0.5px;
}

.offer-logo {
    background: var(--black);
    padding: 10px;
    border-radius: 20px;
    text-align: center;
}

.offer-logo img {
    width: 250px;
}

.offer-bonus {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    gap: 16px;
}

.bonus {
    background: var(--gradient);
    padding: 8px 16px;
    border-radius: 20px;
    width: 130px;
    text-align: center;
}

.bonus p {
    font-weight: 700;
    font-size: 28px;

}

.offer-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.rating p {
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
}

.rating svg {
    color: var(--accent);
    width: 24px;
}

.btn {
    padding: 16px 24px;
    background: var(--accent);
    border-radius: 48px;
    max-width: 200px;
    margin: 0 auto;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -2%;
    transition: all 0.5s;
}

.btn:hover {
    background: var(--hover);
}

@media (max-width: 600px) {

    .offer-block {
        display: flex;
        flex-direction: column;
        gap: 16px;
        background: var(--bg);
        border-radius: 20px;
        padding: 16px;
    }

    .offer-block h3 {
        font-size: 18px;
    }

    .offer-logo img {
        width: 170px;
    }

}

/* Footer */

.footer {
    padding-block: 44px;
}

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

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

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

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

.footer-disclaimer-block h2 {
    text-align: center;
}

.footer-disclaimer-block p {
    font-size: 12px;
    line-height: 18px;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--black);
    padding-top: 20px;
}

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

.footer-menu-block a {
    font-weight: 500;
    line-height: 24px;
    transition: all 0.5s;
}

.footer-menu-block a:hover {
    color: var(--hover);
}

.footer-copy p {
    font-weight: 500;
    line-height: 24px;
}

@media (max-width: 600px) {

    .footer-logo-block {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .footer-menu-block {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Politic */


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

.politic__container h1 {
    text-align: center;
    font-size: 48px;
}

@media (max-width: 600px) {
    .politic__container h1 {
        text-align: center;
        font-size: 40px;
    }
}