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

@font-face {
    font-family: 'Kulikov Soft';
    src: url('../fonts/Nunito-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Kulikov Soft';
    src: url('../fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

.draw-header {
    background-image: url('../../images/draw-bg-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding-top: 36px;
    padding-bottom: 300px;
}

.draw-header__nav {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.draw-header__nav-logo {
    max-width: 280px;
}

.draw-header__nav-img {
    max-width: 250px;
}

.draw-header__nav-daami {
    max-width: 180px;
}

.draw-header__content {
    color: white;
    font-size: 40px;
    text-align: center;
    margin-top: 36px;
    font-weight: 700;
}

.draw-header__img img {
    max-width: 1100px;
    height: 550px;
    margin: 0 auto;
}

.terms-block {
    border-radius: 24px;
    background: #F0F0F0;
    padding: 64px;
    margin-bottom: 100px;
    margin-top: -325px;
}

.terms-block__title {
    color: #A60FAD;
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 64px;
}

.terms-block__cards {
    display: flex;
    justify-content: space-between;
    padding-bottom: 24px;
    gap: 24px;
}

.terms-block__card {
    padding: 48px;
    background: white;
    border-radius: 24px;
}

.block__card {
    width: 50%;
}

.terms-block__card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.terms-block__card-title-num {
    background: #A60FAD;
    color: white;
    padding: 10px;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    text-align: center;
}

.terms-block__card-title-date {
    font-size: 20px;
    font-weight: 400;
    color: #4A4A4A;
}

.terms-block__card-text {
    color: #4A4A4A;
    font-size: 32px;
    line-height: 36px;
    font-weight: 400;
    max-width: 446px;
}

.apple-text {
    max-width: 100%;
}

.points-block {
    margin-bottom: 120px;
}

.points-block__title {
    color: #A60FAD;
    font-size: 48px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 26px;
}

.points-card-info {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.points-block-cards {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.points-block-card {
    color: white;
    background: #A60FAD80;
    width: 33%;
    padding: 16px;
    border-radius: 30px;
}

.points-block__coin img {
    height: 90px;
}

.points-block__name {
    font-size: 24px;
}

.apple-tech-block {
    background-image: url('../../images/draw-apple-block.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 64px;
    height: 726px;
    border-radius: 20px;
    margin-bottom: 700px;
}

.apple-block__title {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 58px;
    text-align: center;
}

.apple-block__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 58px;
    margin-top: 320px;
}

.apple-block-card {
    background: #F1F1F1;
    border-radius: 20px;
    padding: 16px;
    color: #949598;
    font-size: 18px;
    max-width: 330px;
}

.apple-block-card img {
    margin-bottom: 0.5rem;
}

.date-block {
    background-image: url('../../images/draw-bg-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 387px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    padding: 32px 64px;
    margin-bottom: 100px;
}

.date-block__img {
    width: 70%;
    height: 420px;
    object-fit: contain;
    display: block;
    margin-top: -85px;
}

.date-block-logo {
    max-width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.date-block__logo-img {
    max-width: 250px;
}

.date-block__date {
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 700;
}

.draw-buttons {
    margin: 0 auto 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.draw-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #A60FAD;
    color: white;
    font-size: 16px;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 400;
    width: 552px;
    margin-bottom: 20px;
}

.draw-button.oferta {
    background-color: #A2D23F;
}

.draw-button:hover {
    background-color: #8c0d9b;
}

.draw-button.oferta:hover {
    background-color: #8ccf3c;
}

.draw-footer {
    background-color: #A60FAD;
    padding: 47px;
}

.draw-footer__content {
    display: flex;
    justify-content: space-between;
    color: #FFFFFF;
}

.draw-footer__text {
    font-size: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.draw-footer__logo-home {
    font-size: 30px;
    font-weight: 700;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 24px;
}

.draw-footer__logo-links {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.draw-footer__logo-link {
    max-width: 61px;
}

.draw-footer__logo-link img {
    background-color: #FFFFFF;
    border-radius: 50px;
    width: 45px;
    height: 41px;
    padding: 8px;
}

.draw-footer__logo-link span {
    line-height: 10px;
    font-size: 14px;
}

@media screen and (max-width: 1280px) {
    .apple-tech-block {
        margin-bottom: 800px;
    }
    .apple-block-card {
        max-width: 220px;
    }
}

@media screen and (max-width: 1024px) {
    .points-block__name {
        font-size: 16px;
    }
    .draw-header__nav-img {
        max-width: 150px;
    }
    .draw-header__nav-daami {
        max-width: 120px;
    }
    .draw-header__nav-logo {
        max-width: 180px;
    }
    .draw-header__img img {
        max-width: 100%;
        object-fit: contain;
    }
    .terms-block__card {
        padding: 24px;
    }
    .terms-block__card-text {
        font-size: 16px;
        line-height: 20px;
    }
    .terms-block__card-title-date {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .draw-header {
        padding-bottom: 180px;
    }
    .draw-header__content {
        font-size: 20px;
    }
    .draw-header__nav-img {
        max-width: 100px;
    }
    .draw-header__nav-daami {
        max-width: 80px;
    }
    .draw-header__nav-logo {
        max-width: 120px;
    }
    .draw-header__img {
        margin-top: -90px;
    }
    .terms-block__cards {
        flex-direction: column;
    }
    .block__card {
        width: 100%;
    }
    .terms-block__title {
        margin-bottom: 24px;
        font-size: 24px;
    }
    .terms-block {
        padding: 32px;
    }
    .points-block__title {
        font-size: 28px;
    }
    .terms-block {
        margin-bottom: 50px;
    }
    .points-block-cards {
        flex-direction: column;
    }
    .points-block-card {
        width: 100%;
        display: flex;
        gap: 16px;
    }
    .points-block-card .ice-cream {
        width: 200px;
    }
    .points-card-info {
        width: 100%;
        gap: 16px;
    }
    .apple-tech-block {
        height: 550px;
        margin-bottom: 750px;
    }
    .apple-block__title {
        font-size: 42px;
    }
    .apple-block__cards {
        gap: 24px;
        margin-top: 220px;
    }
    .apple-block-card {
        max-width: 200px;
    }
    .apple-block__name {
        font-size: 14px;
    }
    .apple-tech-block {
        padding: 32px 0;
    }
    .date-block {
        padding: 24px;
        flex-direction: column;
    }
    .date-block-logo {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .date-block__logo-img {
        max-width: 150px;
    }
    .date-block__img {
        width: 370px;
        height: auto;
        margin: 0 auto;
    }
    .draw-footer {
        padding: 32px 0;
    }
    .draw-footer__content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .draw-footer__logo-links {
        justify-content: center;
    }
    .draw-footer__logo-link {
        text-align: left;
    }
}

@media screen and (max-width: 550px) {
    .draw-footer__text {
        font-size: 18px;
    }
    .date-block__logo-img {
        max-width: 100px;
    }
    .date-block__date {
        font-size: 16px;
    }
    .draw-button {
        max-width: 100%;
    }
    .points-block__title {
        font-size: 23px;
    }
    .terms-block__card-text {
        font-size: 14px;
    }
    .terms-block__card-title-date {
        font-size: 16px;
    }
    .points-block-card .ice-cream {
        width: 120px;
    }
    .points-block__name {
        font-size: 14px;
    }
    .points-block__coin img {
        height: 60px;
        object-fit: contain;
    }
    .apple-block__cards {
        margin-top: 150px;
        gap: 8px;
    }
    .apple-block-card {
        width: 48%;
    }
    .apple-block__title {
        margin: 0 auto;
        max-width: 300px;
        font-size: 28px;
    }
    .apple-tech-block {
        height: 350px;
        margin-bottom: 625px;
    }
    .apple-block__name {
        font-size: 12px;
    }
    .points-block {
        margin-bottom: 60px;
    }
    .date-block {
        margin-bottom: 50px;
    }
    .draw-buttons {
        margin-bottom: 40px;
    }
    .draw-button {
        font-size: 14px;
    }
}

@media screen and (max-width: 425px) {
    .apple-tech-block {
        height: 300px;
        margin-bottom: 635px;
    }
}
