/* Reset & Normalize */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    color: #1d1d1d;
    line-height: 1.6;
    font-size: 16px;
}

/* Basic Elements */
img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

/* Variables */
:root {
    --bz-font-primary: 'Open Sans', sans-serif;
    --bz-font-heading: 'Montserrat', sans-serif;

    --bz-color-bg: #ffffff;
    --bz-color-text: #1e1e1e;
    --bz-color-accent: #d12856;
    --bz-color-muted: #f3f3f3;
    --bz-color-dark: #111111;

    --bz-radius: 8px;
    --bz-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    --bz-transition: all 0.3s ease-in-out;
}

/* Header */
.bz-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 16px 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.bz-header__container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bz-logo__icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 8px;
}

.bz-header__logo {
    display: flex;
    align-items: center;
    font-family: var(--bz-font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--bz-color-dark);
}

.bz-header__nav .bz-nav__list {
    list-style: none;
    display: flex;
    gap: 24px;
}

.bz-nav__link {
    font-weight: 500;
    color: var(--bz-color-dark);
    transition: var(--bz-transition);
}

.bz-nav__link:hover {
    color: var(--bz-color-accent);
}

/* Burger */
.bz-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.bz-burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--bz-color-dark);
    border-radius: 2px;
    transition: 0.3s ease;
}

.bz-burger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.bz-burger.active span:nth-child(2) {
    opacity: 0;
}

.bz-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

@media (max-width: 768px) {
    .bz-burger {
        display: flex;
    }

    .bz-header__nav {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #fff;
        box-shadow: var(--bz-shadow);
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 24px;
        display: none;
    }

    .bz-header__nav.active {
        display: flex;
    }

    .bz-nav__list {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .bz-nav__link {
        font-size: 18px;
    }
}

/* Hero */
.bz-hero {
    position: relative;
    background: linear-gradient(135deg, #ffe3ec, #ffd3a5);
    color: var(--bz-color-dark);
    padding: 80px 24px;
    text-align: center;
    overflow: hidden;
}

.bz-hero__overlay {
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bz-hero__container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.bz-hero__title {
    font-family: var(--bz-font-heading);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.bz-hero__subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    color: #f9f9f9;
}

.bz-hero__btn {
    background: var(--bz-color-accent);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--bz-radius);
    font-weight: 600;
    transition: var(--bz-transition);
}

.bz-hero__btn:hover {
    background: #b11f45;
}

.bz-hero__payments {
    margin: 32px auto 16px;
    max-width: 280px;
}

.bz-hero__timer {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

/* Modal */
.bz-modal {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.bz-modal__content {
    background: #fff;
    padding: 32px;
    border-radius: var(--bz-radius);
    width: 90%;
    max-width: 400px;
    position: relative;
}

.bz-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 20px;
    color: #999;
    background: none;
}

.bz-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bz-form input {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: var(--bz-radius);
    font-size: 16px;
}

.bz-form__submit {
    background: var(--bz-color-accent);
    color: #fff;
    padding: 12px;
    font-weight: 600;
    border-radius: var(--bz-radius);
}

/* Thank you */
.bz-thankyou {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.bz-thankyou__content {
    background: #fff;
    padding: 24px 32px;
    border-radius: var(--bz-radius);
    text-align: center;
}

.bz-thankyou__close {
    margin-top: 16px;
    background: var(--bz-color-accent);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--bz-radius);
}

/* About */
.bz-about {
    padding: 80px 24px;
    background: var(--bz-color-muted);
}

.bz-about__container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
}

.bz-about__text {
    flex: 1 1 500px;
}

.bz-about__title {
    font-family: var(--bz-font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

.bz-about__desc {
    font-size: 18px;
    line-height: 1.6;
}

.bz-about__image-wrapper {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bz-about__image {
    width: 100%;
    max-width: 380px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Steps */
.bz-steps {
    padding: 80px 24px;
    background: #fff;
    text-align: center;
}

.bz-steps__title {
    font-family: var(--bz-font-heading);
    font-size: 32px;
    margin-bottom: 40px;
}

.bz-steps__list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.bz-step {
    background: var(--bz-color-muted);
    padding: 24px;
    border-radius: var(--bz-radius);
    flex: 1 1 240px;
    max-width: 280px;
    box-shadow: var(--bz-shadow);
}

.bz-step__icon {
    font-size: 32px;
    color: var(--bz-color-accent);
    margin-bottom: 16px;
}

.bz-step__label {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.bz-step__desc {
    font-size: 15px;
    color: #555;
}

/* Prizes */
.bz-prizes {
    padding: 80px 24px;
    background: linear-gradient(135deg, #fff0f5, #ffe8d4);
    text-align: center;
}

.bz-prizes__title {
    font-family: var(--bz-font-heading);
    font-size: 32px;
    margin-bottom: 32px;
}

.bz-prizes__main {
    margin-bottom: 48px;
}

.bz-prizes__main-amount {
    font-size: 52px;
    font-weight: 800;
    color: #d12856;
    margin-bottom: 12px;
}

.bz-prizes__main-text {
    font-size: 18px;
    color: #333;
}

.bz-prizes__grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.bz-prize-card {
    background: #fff;
    padding: 24px 16px;
    border-radius: var(--bz-radius);
    box-shadow: var(--bz-shadow);
    flex: 1 1 200px;
    max-width: 220px;
}

.bz-prize-icon {
    font-size: 36px;
    color: var(--bz-color-accent);
    margin-bottom: 12px;
}

.bz-prize-title {
    font-weight: 600;
}

.bz-lotteries {
    padding: 80px 24px;
    background: var(--bz-color-bg);
    text-align: center;
}

.bz-lotteries__title {
    font-family: var(--bz-font-heading);
    font-size: 32px;
    margin-bottom: 48px;
}

.bz-lotteries__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.bz-lottery-card {
    background: #fff;
    border-radius: var(--bz-radius);
    box-shadow: var(--bz-shadow);
    padding: 24px;
    width: 100%;
    max-width: 360px;
    text-align: left;
    transition: var(--bz-transition);
}

.bz-lottery-card:hover {
    transform: translateY(-4px);
}

.bz-lottery-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.bz-lottery-card__name {
    font-size: 20px;
    font-weight: 700;
}

.bz-lottery-card__date {
    font-size: 14px;
    color: #888;
}

.bz-lottery-card__numbers,
.bz-lottery-card__supps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.bz-lottery-card__supps span {
    font-weight: 600;
    margin-right: 8px;
}

.bz-ball {
    width: 36px;
    height: 36px;
    background: #f3f3f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.bz-ball--supp {
    background: var(--bz-color-accent);
    color: #fff;
}

.bz-lottery-card__links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.bz-lottery-btn {
    flex: 1;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: var(--bz-radius);
    background: var(--bz-color-accent);
    color: #fff;
    text-align: center;
    transition: var(--bz-transition);
}

.bz-lottery-btn--alt {
    background: #111;
}

.bz-lottery-btn:hover {
    opacity: 0.9;
}

/* Why Us */
.bz-whyus {
    padding: 80px 24px;
    background: #fafafa;
    text-align: center;
}

.bz-whyus__title {
    font-family: var(--bz-font-heading);
    font-size: 32px;
    margin-bottom: 40px;
}

.bz-whyus__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.bz-adv {
    background: #fff;
    border-radius: var(--bz-radius);
    padding: 24px;
    width: 260px;
    box-shadow: var(--bz-shadow);
    text-align: center;
}

.bz-adv__icon {
    font-size: 32px;
    color: var(--bz-color-accent);
    margin-bottom: 12px;
}

.bz-adv__title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

/* More About */
.bz-moreabout {
    background: #fff;
    padding: 80px 24px;
}

.bz-moreabout__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.bz-moreabout__title {
    font-family: var(--bz-font-heading);
    font-size: 32px;
    margin-bottom: 24px;
}

.bz-moreabout__text {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

/* FAQ */
.bz-faq {
    background: var(--bz-color-muted);
    padding: 80px 24px;
}

.bz-faq__title {
    font-family: var(--bz-font-heading);
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
}

.bz-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.bz-faq__item {
    margin-bottom: 16px;
}

.bz-faq__question {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    border: none;
    border-radius: var(--bz-radius);
    text-align: left;
    cursor: pointer;
    box-shadow: var(--bz-shadow);
}

.bz-faq__answer {
    display: none;
    padding: 12px 20px;
    font-size: 15px;
    color: #333;
    background: #f8f8f8;
    border-radius: 0 0 var(--bz-radius) var(--bz-radius);
}

.bz-faq__item.active .bz-faq__answer {
    display: block;
}

/* CTA */
.bz-cta {
    background: linear-gradient(135deg, #fbe6e9, #e7f2ff);
    padding: 80px 24px;
    text-align: center;
}

.bz-cta__inner {
    max-width: 700px;
    margin: 0 auto;
}

.bz-cta__headline {
    font-family: var(--bz-font-heading);
    font-size: 36px;
    margin-bottom: 16px;
}

.bz-cta__sub {
    font-size: 18px;
    margin-bottom: 32px;
}

.bz-cta__button {
    background: var(--bz-color-accent);
    color: #fff;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--bz-radius);
    font-weight: 600;
    transition: var(--bz-transition);
}

.bz-cta__button:hover {
    background: #a81e41;
}

/* Footer */
.bz-footer {
    background: #111;
    color: #ccc;
    padding: 60px 24px 40px;
    font-size: 15px;
    text-align: center;
}

.bz-footer__disclaimer {
    max-width: 960px;
    margin: 0 auto 40px;
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

.bz-footer__disclaimer a {
    color: #fff;
    text-decoration: underline;
}

.bz-footer__support-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.bz-footer__support-links img {
    max-height: 60px;
    opacity: 0.9;
    transition: 0.3s ease;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

.bz-footer__legal {
    margin-bottom: 16px;
}

.bz-footer__legal a {
    margin: 0 10px;
    color: #aaa;
    text-decoration: none;
    font-weight: 500;
}

.bz-footer__legal a:hover {
    color: #fff;
}

.bz-footer__copy {
    font-size: 13px;
    color: #777;
}

.bz-cookie {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: var(--bz-radius);
    box-shadow: var(--bz-shadow);
    padding: 16px 24px;
    display: none;
    z-index: 999;
    width: 90%;
    max-width: 600px;
    animation: fadeInUp 0.6s ease;
}

.bz-cookie__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bz-cookie__text {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.bz-cookie__text a {
    color: var(--bz-color-accent);
    text-decoration: underline;
}

.bz-cookie__btn {
    background: var(--bz-color-accent);
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--bz-radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--bz-transition);
}

.bz-cookie__btn:hover {
    background: #a81e41;
}

@keyframes fadeInUp {
    from {
        transform: translate(-50%, 40px);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}