html,
body {
    background:
        radial-gradient(circle at top right,
            rgba(76, 144, 255, 0.08),
            transparent 50%),
        radial-gradient(circle at bottom left,
            rgba(37, 99, 235, 0.045),
            transparent 48%),
        #FAFCFF;
}

.event {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px;

    margin-bottom: 90px;
}

.event__header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 26px;

    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.75), transparent 34%),
        linear-gradient(135deg, #F0FBF6 0%, #DDF5E8 48%, #CFF0DF 100%);
    box-shadow: 0 24px 60px rgba(16, 185, 129, 0.10);

    border-radius: 22px;
}

.event__header-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.event__header-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px 8px 12px;

    background: #FFFFFF;
    border-radius: 100px;
}

.vent__header-badge-text {
    font-family: "Onest", sans-serif;
    font-size: 14px;

    color: #16A34A;
}

.event__header-title {
    font-family: "BalsamqSansBold", sans-serif;
    font-size: 45px;
    letter-spacing: -1px;
    line-height: 1.08em;

    font-weight: 800;

    color: #1E3025;

    overflow-wrap: break-word;
    word-break: normal;

    width: 100%;
}

.event__header-description {
    color: #5C6C61;
    font-family: "Onest", sans-serif;
    font-size: 18px;
    line-height: 1.5em;
    font-weight: 400;
}

.event__header-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.event__header-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.event__header-btn-event {
    color: #FFFFFF;
    font-family: "Onest", sans-serif;
    font-size: 16px;
    line-height: 1em;
    font-weight: 400;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    background: #00B17C;
    border-radius: 12px;
    border: none;

    width: 100%;
    height: 44px;

    transition:
        transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
        background-color 0.2s ease,
        box-shadow 0.2s ease;

    transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);

    user-select: none;
}

.event__header-btn-event:hover {
    transform: scale(1.03);
}

.event__header-actions-success {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    height: 48px;

    background: #ECFDF5;

    border: 1px solid rgba(0, 177, 124, 0.45);
    color: #059669;

    font-family: "Onest", sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 400;

    border-radius: 12px;

    gap: 8px;
}

.event__header-actions-link {
    color: #777;
    font-family: "Onest", sans-serif;
    font-size: 14px;
    line-height: 1em;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    margin-top: 5px;
}

.event__header-counter {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 22px;
    background: #FFFFFF;
    border-radius: 22px;
    box-shadow: 0 16px 36px rgba(0, 177, 124, 0.14);
}

.event__header-counter-text {
    color: #5C6C61;
    font-family: "Onest", sans-serif;
    font-size: 15px;
    letter-spacing: -0.8px;
    line-height: 1.2em;
}

.event__header-counter-count {
    color: #1E3025;
    font-family: "BalsamqSansBold", sans-serif;
    font-size: 32px;
    line-height: 1em;
    font-weight: 900;
}

.event__prize {
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.event__prize-title {
    color: #1E3025;
    font-family: "BalsamqSansBold", sans-serif;
    font-size: 33px;
    letter-spacing: -0.8px;
    line-height: 1.15em;
    font-weight: bold;
}

.event__prize-cards {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;

    align-items: stretch;
}

.event__prize-first-card {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 28px;

    background: #00B17C;
    border-radius: 22px;

    box-shadow: 0 10px 24px rgba(0, 177, 124, 0.16);

    min-height: 250px;
}

.event__prize-first-number {
    color: #BFDBFE;
    font-family: "Onest", sans-serif;
    font-size: 15px;
    line-height: 1em;
    font-weight: bold;
}

.event__prize-first-name {
    color: #FFFFFF;
    font-family: "Onest", sans-serif;
    font-size: 28px;
    line-height: 1.1em;
    font-weight: bold;
}

.event__prize-first-description {
    color: #DBEAFE;
    font-family: "Onest", sans-serif;
    font-size: 16px;
    line-height: 1.4em;
}

.event__prize-second-card {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;

    background: #F5F9F6;
    border-radius: 22px;

    min-height: 250px;
}

.event__prize-second-number {
    color: #009B6B;
    font-family: "Onest", sans-serif;
    font-size: 14px;
    line-height: 1em;
}

.event__prize-second-name {
    color: #1E3025;
    font-family: "Onest", sans-serif;
    font-size: 21px;
    line-height: 1.1em;
    font-weight: bold;
}

.event__prize-other-card {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 24px;

    background: #EAF5ED;
    border-radius: 22px;

    min-height: 250px;
}

.event__prize-other-number {
    color: #009B6B;
    font-family: "Onest", sans-serif;
    font-size: 14px;
    line-height: 1em;
}

.event__prize-other-name {
    color: #1E3025;
    font-family: "Onest", sans-serif;
    font-size: 21px;
    line-height: 1.1em;
}

.event__how {
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 26px;
    background:
        radial-gradient(circle at 82% 16%, rgba(16, 185, 129, 0.14), transparent 32%),
        linear-gradient(135deg, #F8FCFA 0%, #EEF8F3 55%, #F3F7FF 100%);
    border-radius: 22px;
}

.event__how-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.event__how-header-title {
    color: #1E3025;
    font-family: "BalsamqSansBold", sans-serif;
    font-size: 33px;
    letter-spacing: -0.8px;
    line-height: 1.15em;
    font-weight: bold;
}

.event__how-header-text {
    color: #5C6C61;
    font-family: "Onest", sans-serif;
    font-size: 16px;
    line-height: 1.5em;
}

.event__how-steps {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.event__how-step {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px 14px 16px;

    background: #FFFFFF;
    border-radius: 14px;
}

.event__how-step-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E3F1E7;
    border-radius: 100px;

    flex-shrink: 0;
}

.event__how-step-number {
    color: #009B6B;
    font-family: "BalsamqSansBold", sans-serif;
    font-size: 14px;
    line-height: 1em;
    font-weight: 900;
}

.event__how-step-text {
    color: #1E3025;
    font-family: "Onest", sans-serif;
    font-size: 16px;
    line-height: 1.3em;
}

.event__how-step-link {
    color: #009B6B;
    font-family: "Onest", sans-serif;
    font-size: 16px;
    line-height: 1.3em;
    cursor: pointer;
}

.event__how-step-active {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px 14px 16px;

    background: #DBEAFE;
    border-radius: 14px;
}

.event__how-step-icon-active {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00B17C;
    border-radius: 100px;

    flex-shrink: 0;
}


.event__how-step-number-active {
    color: #FFFFFF;
    font-family: "BalsamqSansBold", sans-serif;
    font-size: 14px;
    line-height: 1em;
    font-weight: 900;
}

.event__how-step-text-active {
    color: #1E3025;
    font-family: "Onest", sans-serif;
    font-size: 16px;
    line-height: 1.3em;
    font-weight: 600;
}

.event__status {
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: #E6F4EA;
    border-radius: 22px;
}

.event__status-content {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
}

.event__status-content-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DCFCE7;
    border-radius: 100px;
}

.event__status-content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.event__status-content-title {
    color: #315B41;
    font-family: "Onest", sans-serif;
    font-size: 19px;
    line-height: 1.2em;
}

.event__status-content-description {
    color: #5C7A65;
    font-family: "Onest", sans-serif;
    font-size: 15px;
    line-height: 1.2em;
}

.event__winners {
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 26px;

    background:
        radial-gradient(circle at 82% 16%, rgba(16, 185, 129, 0.14), transparent 32%),
        linear-gradient(135deg, #F8FCFA 0%, #EEF8F3 55%, #F3F7FF 100%);
    border-radius: 22px;
}

.event__winners-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.event__winners-header-title {
    color: #1E3025;
    font-family: "BalsamqSansBold", sans-serif;
    font-size: 32px;
    letter-spacing: -0.8px;
    line-height: 1.15em;
    font-weight: bold;
}

.event__winners-result-await {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 18px;
}

.event__winners-result-await-icon {
    flex-shrink: 0;
}

.event__winners-result-await-text {
    color: #5C6C61;
    font-family: "Onest", sans-serif;
    font-size: 17px;
    line-height: 1.4em;
    font-weight: 400;
}

.event__winners-result-await-description {
    color: #5C6C61;
    font-family: "Onest", sans-serif;
    font-size: 15px;
    line-height: 1.45em;
    font-weight: 400;
}

.event__support {
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.32), transparent 28%),
        radial-gradient(circle at 12% 85%, rgba(167, 243, 208, 0.35), transparent 34%),
        linear-gradient(135deg, #22C55E 0%, #10B981 42%, #059669 100%);
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 22px;
    padding: 26px;
}

.event__support-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.event__support-title {
    color: #5C6C61;
    font-family: "Onest", sans-serif;
    font-size: 33px;
    line-height: 1.15em;
    font-weight: bold;
    color: #FFFFFF;
}

.event__support-text {
    color: #BFDBFE;
    font-size: 16px;
    line-height: 1.45em;
    font-family: "Onest", sans-serif;
    font-weight: 400;
}

.event__support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    width: 100%;

    background: rgba(255, 255, 255, 0.16);

    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;

    font-family: "Onest", sans-serif;
    font-weight: 400;
    color: #FFFFFF;

    transition:
        transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
        background-color 0.2s ease,
        box-shadow 0.2s ease;

    transition: transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);

    user-select: none;

    font-size: 14px;
}

.event__support-btn:hover {
    transform: scale(1.03);
}

.event__additive {
    margin-top: 32px;
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.event__additive-text {
    color: #999;
    font-family: "Onest", sans-serif;
    font-size: 12px;
    line-height: 1.3em;
    font-weight: 400;
}

@font-face {
    font-family: "Onest";
    src: url("/fonts/Onest-VariableFont_wght.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "BalsamqSansBold";
    src: url("/fonts/BalsamiqSans-Bold.ttf") format("truetype");

    font-weight: normal;
    font-style: normal;
}

@media (min-width:810px) and (max-width:1199px) {

    .event {
        padding: 32px;
        gap: 50px;
    }

    .event__header {
        gap: 28px;
        padding: 36px;
        border-radius: 28px;
    }

    .event__header-title {
        font-size: 46px;
    }

    .event__header-description {
        font-size: 18px;
    }

    .event__header-actions {
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }

    .event__header-form {
        width: auto;
    }

    .event__header-btn-event {
        width: auto;
        padding: 13px 20px 13px 20px;
        border-radius: 12px;
        gap: 8px;

        font-size: 16px;
    }

    .event__header-actions-success {
        width: auto;
        padding: 13px 20px 13px 20px;
        border-radius: 12px;
        gap: 8px;

        font-size: 16px;
    }

    .event__header-actions-link {
        font-size: 16px;
        gap: 8px;
        margin: 0;
    }

    .event__header-counter {
        padding: 28px;
        gap: 8px;
        border-radius: 22px;
    }

    .event__prize {
        gap: 20px;
    }

    .event__prize-title {
        font-size: 32px;
    }

    .event__prize-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .event__prize-first-card {
        grid-column: span 2;
        gap: 18px;
        padding: 28px;
        border-radius: 22px;
    }

    .event__prize-second-card {
        gap: 18px;
        padding: 28px;
        border-radius: 22px;
    }

    .event__prize-other-card {
        grid-column: span 2;
        gap: 18px;
        padding: 28px;
        border-radius: 22px;
    }

    .event__how-header-title {
        font-size: 32px;
    }

    .event__winners {
        padding: 36px;
        align-items: flex-start;
        border-radius: 28px;
        gap: 18px;
    }

    .event__winners-result-await {
        align-items: flex-start;
    }

    .event__support {
        flex-direction: row;
        gap: 24px;
        padding: 28px 30px 28px 30px;
        align-items: center;
    }

    .event__support-title {
        font-size: 28px;
    }

    .event__support-btn {
        width: auto;
        padding: 13px 18px 13px 18px;
        gap: 8px;
        border-radius: 12px;
        text-wrap: nowrap;
    }
}

@media (min-width:1200px) {

    .event {
        padding: 40px 48px 72px 48px;
        gap: 69px;
    }

    .event__header {
        gap: 48px;
        padding: 48px;
        border-radius: 28px;

        flex-direction: row;
    }

    .event__header-content {
        gap: 20px;
    }

    .event__header-title {
        font-size: 60px;
    }

    .event__header-description {
        font-size: 18px;
    }

    .event__header-actions {
        flex-direction: row;
        gap: 12px;
        align-items: center;
    }

    .event__header-form {
        width: auto;
    }

    .event__header-btn-event {
        width: auto;
        padding: 13px 20px 13px 20px;
        border-radius: 12px;
        gap: 8px;

        font-size: 16px;
    }

    .event__header-actions-success {
        width: auto;
        padding: 13px 20px 13px 20px;
        border-radius: 12px;
        gap: 8px;

        font-size: 18px;
    }

    .event__header-actions-link {
        font-size: 18px;
        gap: 8px;
        margin: 0;
    }

    .event__header-counter {
        padding: 28px;
        gap: 8px;
        border-radius: 22px;
        width: 310px;
        flex-shrink: 0;
    }

    .event__prize {
        gap: 20px;
    }

    .event__prize-title {
        font-size: 45px;
    }

    .event__prize-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .event__prize-first-card {
        grid-column: span 2;
        gap: 18px;
        padding: 28px;
        border-radius: 22px;
    }

    .event__prize-second-card {
        gap: 18px;
        padding: 28px;
        border-radius: 22px;
    }

    .event__prize-other-card {
        grid-column: span 2;
        gap: 18px;
        padding: 28px;
        border-radius: 22px;
    }

    .event__how {
        flex-direction: row;
        gap: 32px;
        padding: 36px;
        border-radius: 28px;
    }

    .event__how-header {
        width: 310px;
        flex-shrink: 0;
    }

    .event__how-header-title {
        font-size: 45px;
    }

    .event__winners {
        padding: 36px;
        align-items: flex-start;
        border-radius: 28px;
        gap: 18px;
    }

    .event__winners-header-title {
        font-size: 28px;
    }

    .event__winners-result-await {
        align-items: flex-start;
    }

    .event__support {
        flex-direction: row;
        gap: 24px;
        padding: 32px 36px 32px 36px;
        align-items: center;
        border-radius: 28px;
        justify-content: space-between;
    }

    .event__support-title {
        font-size: 28px;
    }

    .event__support-text {
        font-size: 18px;
    }

    .event__support-btn {
        width: auto;
        padding: 13px 18px 13px 18px;
        gap: 8px;
        border-radius: 12px;
        text-wrap: nowrap;
        font-size: 18px;
    }
}