.modal-overlay {
    align-items: center;
    animation: fadeIn .3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: #00000080;
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000
}

.modal-content {
    animation: slideUp .3s ease;
    background: #fff;
    border-radius: 15px;
    color: #333;
    max-width: 500px;
    padding: 2rem;
    position: relative;
    text-align: center;
    width: 90%
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.modal-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 2rem;
    position: absolute;
    right: 1rem;
    top: 1rem
}

.task-image-container {
    margin-bottom: 1.5rem;
    width: 100%
}

.task-image {
    object-fit: cover
}

.task-image,
.task-image-placeholder {
    border-radius: 10px;
    height: 300px;
    width: 100%
}

.task-image-placeholder {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0)
}

.modal-content h2 {
    color: #ff5000;
    font-weight: 400;
    margin: 1rem 0 .5rem
}

.task-description {
    color: #000;
    font-weight: 100;
    line-height: 1.6;
    margin-bottom: 2rem
}

.modal-actions {
    gap: 1rem;
    justify-content: center
}

.btn-complete {
    background: #ff5000;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    flex: 1 1;
    font-weight: 700;
    padding: 1rem;
    transition: transform .3s ease, background .3s ease
}

.btn-complete:hover {
    background: #e64600;
    transform: scale(1.02)
}

.btn-complete.btn-moderation {
    cursor: not-allowed;
    opacity: .5
}

.btn-complete.btn-moderation:hover {
    background: #ff5000;
    transform: none
}

.btn-complete.btn-completed {
    background: #28a745
}

.btn-complete.btn-completed:hover {
    background: #218838
}

.preload-screen {
    align-items: center;
    background: linear-gradient(135deg, #0a0a1a, #1a1a2e 50%, #0a0a1a);
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999
}

.preload-content {
    color: #fff;
    text-align: center
}

.preload-title {
    color: gold;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-shadow: 0 0 20px #ffd70080
}

.preload-progress-container {
    margin: 0 auto;
    width: 300px
}

.preload-progress-bar {
    background: #ffffff1a;
    border-radius: 4px;
    height: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    width: 100%
}

.preload-progress-fill {
    background: linear-gradient(90deg, gold, #fa0);
    border-radius: 4px;
    box-shadow: 0 0 10px #ffd70080;
    height: 100%;
    transition: width .3s ease
}

.preload-progress-text {
    color: #fffc;
    font-size: 1.1rem;
    font-weight: 500
}

.game-page {
    background: #090606;
    height: 100vh;
    overflow: hidden;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    width: 100%
}

.snowflake-area {
    width: 100%;
    z-index: 100
}

.snowflake {
    animation: snowfall linear infinite;
    background: radial-gradient(circle, #fff 0, #fffc 50%, #0000 100%);
    box-shadow: 0 0 3px #ffffff80;
    top: -10px
}

.game-bg-video {
    height: 100%;
    left: 0;
    object-fit: cover;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 0
}

.game-bg-final {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1
}

.game-bg-final.visible {
    opacity: 1
}

.overlay-video {
    height: 730;
    left: 11%;
    object-fit: cover;
    pointer-events: none;
    position: fixed;
    top: 25%;
    width: 1077;
    z-index: 1
}

.game-map-container {
    left: 50%;
    max-width: 1600px;
    position: absolute;
    top: 52%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1
}

.game-map-image {
    display: block;
    height: auto;
    pointer-events: none;
    position: relative;
    width: 100%;
    z-index: 2
}

.map-behind-layer {
    z-index: 1
}

.game-cells-layer,
.map-behind-layer {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%
}

.game-cells-layer {
    z-index: 4
}

.game-cells-layer .game-cell {
    pointer-events: auto
}

.map-animations-layer {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3
}

.location-animation {
    object-fit: contain;
    object-position: left top;
    pointer-events: none;
    position: absolute
}

.location-animation.trans {
    animation: fadeIn 2s ease-out forwards
}

.game-cell {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform .3s ease, filter .3s ease;
    width: 80px
}

.cell-image {
    height: auto;
    transition: transform .3s ease, opacity .3s ease;
    width: 100%
}

.game-cell:hover {
    transform: translate(-50%, -50%) scale(1.1)
}

.game-cell:hover .cell-image {
    filter: brightness(1.1)
}

.game-cell.current {
    animation: pulse-current 1.5s infinite
}

.game-cell.animating {
    animation: pulse .3s ease
}

@keyframes pulse-current {

    0%,
    to {
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        transform: translate(-50%, -50%) scale(1.05)
    }
}

@keyframes pulse {

    0%,
    to {
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15)
    }
}

.cell-number {
    display: none
}

.player-token {
    height: auto;
    pointer-events: none;
    position: absolute;
    transform: translate(-50%, -80%);
    transition: left .4s ease-out, top .4s ease-out;
    width: 75px;
    z-index: 15
}

.player-token.jumping {
    animation: playerJump .4s ease-out
}

.player-image {
    height: auto;
    width: 100%
}

@keyframes playerJump {
    0% {
        transform: translate(-50%, -80%) scale(1)
    }

    50% {
        transform: translate(-50%, -150%) scale(1.1)
    }

    to {
        transform: translate(-50%, -80%) scale(1)
    }
}

.visited-mark {
    display: none
}

.game-ui-panel {
    align-items: center;
    bottom: 20px;
    display: flex;
    justify-content: space-between;
    left: 20px;
    pointer-events: none;
    position: fixed;
    right: 20px;
    z-index: 10
}

.ui-block {
    pointer-events: auto
}

.ui-tasks {
    align-items: center;
    background: url(/static/media/wood-panel.39305832a55afe51a3d0.png) 50%/contain no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
    padding: 20px 40px;
    width: 356px
}

.ui-label {
    color: #fff;
    font-size: .75rem;
    letter-spacing: 0;
    margin-bottom: 0;
    text-transform: uppercase
}

.ui-value {
    color: #fff;
    text-shadow: 2px 2px 4px #00000080
}

.ui-value,
.ui-value span {
    font-size: 2rem;
    font-weight: 400
}

.ui-value span {
    color: #ccc
}

.ui-progress {
    align-items: center;
    background: url(/static/media/wood-main.4877016b3f270820d95f.png) 50%/contain no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 50%;
    min-height: 150px;
    min-width: 400px;
    padding: 15px 30px;
    position: absolute;
    transform: translateX(-50%)
}

.ui-progress-label {
    color: #fff;
    font-size: .85rem;
    letter-spacing: 0;
    margin-bottom: 10px;
    text-align: center;
    text-transform: uppercase
}

.ui-progress-bar {
    position: relative
}

.ui-progress-labels {
    color: #aaa;
    display: flex;
    font-size: .7rem;
    justify-content: space-between;
    margin-bottom: 5px
}

.ui-progress-track {
    background: #0006;
    border-radius: 10px;
    height: 15px;
    overflow: hidden;
    width: 307px
}

.ui-progress-fill {
    background: linear-gradient(90deg, #ff5000, #ff8000);
    border-radius: 8px;
    box-shadow: 0 0 10px #ff500080;
    height: 100%;
    transition: width .5s ease
}

.ui-dice-section {
    align-items: center;
    display: flex;
    position: relative
}

.easter-eggs-counter {
    align-items: center;
    background: url(/static/media/wood-panel.39305832a55afe51a3d0.png) 50%/contain no-repeat;
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-right: -90px;
    min-height: 200px;
    padding-right: 40px;
    width: 280px;
    z-index: 1
}

.easter-label {
    color: #fff;
    font-size: .9rem;
    line-height: 1.2;
    text-align: right;
    text-transform: uppercase
}

.easter-value {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 400
}

.easter-value span {
    color: #ccc;
    font-size: 2.5rem
}

.dice-circle {
    align-items: center;
    background: url(/static/media/dice-bg.7432a99826549401975e.png) 50%/contain no-repeat;
    display: flex;
    justify-content: center;
    min-height: 180px;
    min-width: 200px;
    z-index: 2
}

.dice-circle.dice-pulse {
    animation: dicePulse 2s ease-in-out infinite
}

@keyframes dicePulse {

    0%,
    to {
        filter: brightness(1);
        transform: scale(1)
    }

    50% {
        filter: brightness(1.15);
        transform: scale(1.05)
    }
}

.roll-btn {
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    isolation: isolate;
    justify-content: center;
    position: relative;
    transition: transform .2s ease
}

.roll-btn:hover:not(:disabled) {
    transform: scale(1.05)
}

.roll-btn:disabled {
    cursor: not-allowed
}

.roll-btn:disabled .dice-icon {
    filter: brightness(.4)
}

.dice-icon {
    height: auto;
    width: 120px
}

.dice-counter {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400
}

.loading {
    background: #090606;
    color: #fff;
    font-size: 2rem;
    min-height: 100vh
}

.dice-overlay,
.loading {
    align-items: center;
    display: flex;
    justify-content: center
}

.dice-overlay {
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    background: #00000080;
    flex-direction: column;
    inset: 0;
    opacity: 1;
    position: fixed;
    transition: opacity 1s ease-out;
    z-index: 9999
}

.dice-overlay.fading {
    opacity: 0
}

.dice-scene {
    align-items: center;
    display: flex;
    height: 120px;
    justify-content: center;
    perspective: 800px;
    width: 120px
}

.dice-cube {
    height: 100px;
    position: relative;
    transform-style: preserve-3d;
    width: 100px
}

.dice-cube.spin-to-1 {
    animation: spinTo1 3.2s ease-in-out forwards
}

.dice-cube.spin-to-2 {
    animation: spinTo2 3.2s ease-in-out forwards
}

.dice-cube.spin-to-3 {
    animation: spinTo3 3.2s ease-in-out forwards
}

.dice-cube.spin-to-4 {
    animation: spinTo4 3.2s ease-in-out forwards
}

.dice-cube.spin-to-5 {
    animation: spinTo5 3.2s ease-in-out forwards
}

@keyframes spinTo1 {
    0% {
        transform: rotateX(0deg) rotateY(0deg)
    }

    80% {
        transform: rotateX(2turn) rotateY(3turn)
    }

    to {
        transform: rotateX(0deg) rotateY(0deg)
    }
}

@keyframes spinTo2 {
    0% {
        transform: rotateX(0deg) rotateY(0deg)
    }

    80% {
        transform: rotateX(2turn) rotateY(3turn)
    }

    to {
        transform: rotateY(-90deg)
    }
}

@keyframes spinTo3 {
    0% {
        transform: rotateX(0deg) rotateY(0deg)
    }

    80% {
        transform: rotateX(2turn) rotateY(3turn)
    }

    to {
        transform: rotateY(180deg)
    }
}

@keyframes spinTo4 {
    0% {
        transform: rotateX(0deg) rotateY(0deg)
    }

    80% {
        transform: rotateX(2turn) rotateY(3turn)
    }

    to {
        transform: rotateY(90deg)
    }
}

@keyframes spinTo5 {
    0% {
        transform: rotateX(0deg) rotateY(0deg)
    }

    80% {
        transform: rotateX(2turn) rotateY(3turn)
    }

    to {
        transform: rotateX(-90deg)
    }
}

.face-front {
    transform: translateZ(50px)
}

.face-right {
    transform: rotateY(90deg) translateZ(50px)
}

.face-back {
    transform: rotateY(180deg) translateZ(50px)
}

.face-left {
    transform: rotateY(-90deg) translateZ(50px)
}

.face-top {
    transform: rotateX(90deg) translateZ(50px)
}

.face-bottom {
    transform: rotateX(-90deg) translateZ(50px)
}

.pip {
    background: #222;
    border-radius: 50%;
    box-shadow: inset 0 1px 2px #0000004d;
    height: 16px;
    position: absolute;
    width: 16px
}

.pip.center {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.pip.tl {
    left: 20%;
    top: 20%
}

.pip.tr {
    right: 20%;
    top: 20%
}

.pip.ml {
    left: 20%
}

.pip.ml,
.pip.mr {
    top: 50%;
    transform: translateY(-50%)
}

.pip.mr {
    right: 20%
}

.pip.bl {
    bottom: 20%;
    left: 20%
}

.pip.br {
    bottom: 20%;
    right: 20%
}

.dice-face {
    background: #ded0ad;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 12px;
    box-shadow: 0 6px 12px #00000040;
    height: 100px;
    position: absolute;
    width: 100px
}

.dice-value {
    display:none;
    background: #ffffff26;
    border-radius: 8px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 1rem;
    padding: .6rem 1rem
}

.congrats-overlay {
    background: #0009;
    inset: 0;
    position: fixed;
    z-index: 9999
}

.congrats-content,
.congrats-overlay {
    align-items: center;
    display: flex;
    justify-content: center
}

.congrats-content {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 0;
    color: #fff;
    flex-direction: column;
    max-width: 900px;
    min-height: 500px;
    min-width: 700px;
    padding: 200px 180px 150px;
    text-align: center
}

.congrats-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    max-width: 350px
}

.congrats-text {
    font-size: 1rem;
    font-weight: 100;
    line-height: 1.6;
    max-width: 350px
}

.congrats-btn {
    background: #ff5000;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    margin-top: 1rem;
    padding: .8rem 1.2rem
}

@media (max-width:1279px) {
    .game-page:before {
        align-items: center;
        background: #000000f2;
        bottom: 0;
        color: #fff;
        content: "Пожалуйста, откройте на компьютере";
        display: flex;
        font-size: 1.5rem;
        justify-content: center;
        left: 0;
        padding: 20px;
        position: fixed;
        right: 0;
        text-align: center;
        top: 0;
        z-index: 99999
    }

    .game-map-container,
    .game-ui-panel {
        display: none
    }
}

@media (min-width:2560px) {
    .game-map-container {
        max-width: 2400px
    }

    .game-cell {
        height: 56px;
        width: 100px
    }

    .ui-progress,
    .ui-tasks {
        padding: 20px 35px
    }

    .ui-value {
        font-size: 3rem
    }

    .roll-btn {
        height: 120px;
        width: 120px
    }

    .dice-icon {
        font-size: 4rem
    }
}

@media (min-width:3840px) {
    .game-map-container {
        max-width: 3000px
    }

    .game-cell {
        height: 80px;
        width: 140px
    }

    .ui-progress,
    .ui-tasks {
        padding: 30px 50px
    }

    .ui-label {
        font-size: 1rem
    }

    .ui-value {
        font-size: 4rem
    }

    .ui-progress {
        min-width: 600px
    }

    .roll-btn {
        height: 160px;
        width: 160px
    }

    .dice-icon {
        font-size: 5rem
    }
}

.click-particle {
    animation: particleFly .8s ease-out forwards;
    border-radius: 50%;
    pointer-events: none;
    position: absolute;
    z-index: 100
}

.particle-spark {
    background: radial-gradient(circle, #fc0 0, #f60 50%, #f30 100%);
    box-shadow: 0 0 8px #f60, 0 0 15px #f30
}

.particle-spark-yellow {
    background: radial-gradient(circle, #ff0 0, #fc0 50%, #fa0 100%);
    box-shadow: 0 0 8px #fc0, 0 0 15px #fa0
}

.particle-snow {
    background: radial-gradient(circle, #fff 0, #e0f0ff 60%, #a0d0ff 100%);
    box-shadow: 0 0 6px #fffc
}

.particle-ice {
    background: radial-gradient(circle, #c8f0ffe6 0, #96dcff99 50%, #64c8ff4d 100%);
    border: 1px solid #fff6;
    box-shadow: 0 0 8px #96dcff99
}

@keyframes particleFly {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1)
    }

    to {
        opacity: 0;
        transform: translate(calc(-50% + var(--vx)), calc(-50% + var(--vy))) scale(.3)
    }
}

.gift-button-wrapper {
    left: 83%;
    position: absolute;
    top: 35%;
    z-index: 50
}

.gift-button {
    cursor: pointer;
    height: 46px;
    position: relative;
    transition: transform .2s ease;
    width: 46px
}

.gift-button:hover {
    transform: scale(1.1)
}

.gift-button img {
    display: block;
    height: 100%;
    width: 100%
}

.gift-tooltip {
    animation: tooltipFadeIn .3s ease;
    background: #fff;
    border-radius: 12px;
    bottom: 100%;
    box-shadow: 0 4px 20px #0000004d;
    left: 50%;
    margin-bottom: 10px;
    padding: 30px;
    position: absolute;
    transform: translateX(-50%);
    width: 340px;
    z-index: 60
}

@keyframes tooltipFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }
}

.gift-tooltip-title {
    color: #ff5000;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 12px;
    text-transform: uppercase
}

.gift-tooltip-text,
.gift-tooltip-title {
    font-family: MTSans, sans-serif;
    text-align: center
}

.gift-tooltip-text {
    color: #000;
    font-size: 14px;
    font-weight: 100;
    line-height: 1.5;
    margin: 0
}

.admin-page {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    min-height: 100vh
}

.admin-login {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem
}

.admin-login form {
    background: #fffffff2;
    border-radius: 10px;
    color: #333;
    max-width: 400px;
    padding: 2rem;
    width: 100%
}

.admin-login h1 {
    color: #fff;
    margin-bottom: 2rem
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    color: #333
}

.form-group input {
    border: 1px solid #ddd;
    border-radius: 5px
}

.login-btn {
    border-radius: 5px;
    font-weight: 700;
    margin-top: 1rem
}

.admin-header {
    align-items: center;
    background: #0000004d;
    border-bottom: 2px solid #fff3;
    display: flex;
    justify-content: space-between;
    padding: 2rem
}

.logout-btn {
    background: #fff3;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    padding: .8rem 1.5rem
}

.admin-tabs {
    background: #0000001a;
    display: flex;
    gap: 1rem;
    margin: 0 auto;
    max-width: 1200px;
    padding: 2rem
}

.admin-tabs button {
    background: #ffffff1a;
    border: 2px solid #0000;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    padding: .8rem 1.5rem;
    transition: all .3s ease
}

.admin-tabs button.active {
    background: #ffffff4d;
    border-color: #fff
}

.admin-content {
    margin: 0 auto;
    max-width: 1200px;
    padding: 2rem
}

.admin-section {
    background: #0003;
    border-radius: 10px;
    margin-bottom: 2rem;
    padding: 2rem
}

.admin-section h2 {
    color: #fff;
    margin-bottom: 2rem
}

.form-card {
    background: #0003;
    border-radius: 10px;
    margin-bottom: 2rem;
    padding: 1.5rem
}

.form-card h3 {
    margin-bottom: 1rem
}

.form-card form {
    display: flex;
    gap: 1rem
}

.form-card input {
    background: #ffffffe6;
    border: none;
    border-radius: 5px;
    flex: 1 1;
    padding: .8rem
}

.form-card button {
    background: #4caf50;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    padding: .8rem 1.5rem
}

.streamers-list,
.streamers-list h3 {
    margin-top: 2rem
}

.streamer-item {
    align-items: center;
    background: #0000004d;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 1rem
}

.streamer-info {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.streamer-info span {
    font-size: .9rem;
    opacity: .8
}

.streamer-actions,
.task-actions {
    display: flex;
    gap: .5rem
}

.task-actions {
    margin-top: .5rem
}

.btn-edit {
    background: #fff3;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    padding: .4rem .6rem
}

.btn-edit:hover {
    background: #ffffff4d
}

.btn-delete {
    background: #e74c3c;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    padding: .4rem .6rem
}

.btn-delete:hover {
    background: #c0392b
}

.admin-modal-overlay {
    align-items: center;
    background: #0009;
    display: flex;
    inset: 0;
    justify-content: center;
    position: fixed;
    z-index: 10000
}

.admin-modal-content {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    background: #ffffff26;
    border-radius: 12px;
    color: #fff;
    min-width: 320px;
    padding: 1.5rem
}

.admin-modal-content .form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin: .6rem 0
}

.admin-modal-content input,
.admin-modal-content textarea {
    background: #0000004d;
    border: 1px solid #ffffff4d;
    border-radius: 6px;
    color: #fff;
    padding: .5rem
}

.modal-actions {
    display: flex;
    gap: .6rem;
    margin-top: .8rem
}

.btn-primary {
    background: #4caf50;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    padding: .5rem .8rem
}

.btn-primary:hover {
    background: #43a047
}

.btn-secondary {
    background: #fff3;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    padding: .5rem .8rem
}

.btn-secondary:hover {
    background: #ffffff4d
}

.tasks-grid {
    grid-gap: 1rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr))
}

.task-card {
    background: #0000004d;
    border-left: 4px solid gold;
    border-radius: 5px;
    padding: 1rem
}

.task-card h4 {
    color: gold;
    margin: 0 0 .5rem
}

.task-card p {
    font-weight: 700;
    margin: 0 0 .3rem
}

.task-card small {
    opacity: .8
}

.moderation-list {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.moderation-item {
    align-items: center;
    background: #0000004d;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    padding: 1.5rem
}

.moderation-item h4 {
    margin: 0 0 .5rem
}

.moderation-item p {
    font-size: .9rem;
    margin: .25rem 0
}

.moderation-item>div:last-child {
    display: flex;
    gap: .5rem
}

.btn-action {
    background: #4caf50
}

.btn-action,
.btn-reset {
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    padding: .6rem 1rem
}

.btn-reset {
    background: #ff9800
}

.dice-test-page {
    align-items: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: MTSans, sans-serif;
    justify-content: center;
    min-height: 100vh
}

.dice-test-page h1 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 40px
}

.dice-container {
    margin-bottom: 30px
}

.dice-scene {
    border-radius: 20px;
    height: 400px;
    overflow: hidden;
    width: 400px
}

.roll-button {
    background: #ff5000;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-family: MTSans, sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 40px;
    transition: all .3s ease
}

.roll-button:hover {
    background: #ff6a00;
    transform: scale(1.05)
}

.roll-button:active {
    transform: scale(.95)
}

.dice-result {
    animation: fadeIn .3s ease;
    font-size: 24px;
    font-weight: 500;
    margin-top: 20px
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.login-page {
    align-items: center;
    background-color: #090606;
    background-image: url(/static/media/login-background.f39dd0e161ac8f42dd5e.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh
}

.login-container {
    -webkit-backdrop-filter: blur(6.75px);
    backdrop-filter: blur(6.75px);
    background: linear-gradient(180deg, #18181899, #161616e6);
    border: 1px solid #2e2e2e;
    border-radius: 20px;
    color: #fff;
    max-width: 400px;
    padding: 3rem;
    width: 100%
}

.login-title-video {
    display: block;
    margin: 0 auto .1rem;
    text-align: center;
    width: 320px
}

.login-instruction {
    color: #fff;
    font-size: .9rem;
    font-weight: 100;
    line-height: 1.5;
    margin-bottom: 2rem;
    text-align: center
}

.form-group {
    margin-bottom: 1.5rem
}

.form-group label {
    color: #fff;
    display: block;
    font-weight: 700;
    margin-bottom: .5rem
}

.form-group input {
    background: #0000;
    border: 1px solid #fff;
    border-radius: 10px;
    color: #fff;
    font-family: MTSans, sans-serif;
    font-size: 1rem;
    padding: .8rem;
    transition: border-color .3s ease;
    width: 100%
}

.form-group input::placeholder {
    color: #fff9;
    font-weight: 200
}

.form-group input:focus {
    border-color: #ff5000;
    outline: none
}

.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:active,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:hover {
    -webkit-text-fill-color: #fff;
    background-color: #161616f2;
    caret-color: #fff;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s
}

.login-btn {
    background: #ff5000;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-family: MTSans, sans-serif;
    font-size: 1rem;
    font-weight: 400 !important;
    padding: 1rem;
    transition: transform .3s ease;
    width: 100%
}

.login-btn:hover:not(:disabled) {
    background: #ff5000;
    transform: scale(1.02)
}

.login-btn:disabled {
    background: #ff5000;
    cursor: not-allowed;
    opacity: .6
}

.error-message {
    background: #ec2b2b;
    border-radius: 5px;
    color: #fff;
    margin-bottom: 1.5rem;
    padding: 1rem;
    text-align: center
}

.logo-container {
    margin-top: 2rem;
    text-align: center
}

.login-logo {
    height: auto;
    max-width: 200px
}

@media (max-width:1279px) {

    .login-container,
    .logo-container {
        display: none
    }

    .login-page:after {
        color: #fff;
        content: "Пожалуйста, откройте на компьютере";
        font-size: 2rem;
        left: 50%;
        position: fixed;
        text-align: center;
        top: 50%;
        transform: translate(-50%, -50%)
    }
}

.home-page {
    background-color: #0c0909;
    margin: 0;
    min-height: 100vh;
    padding: 0;
    position: relative
}

.snowflake-area {
    height: 100%;
    left: 0;
    overflow: hidden;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 140%;
    z-index: 9999
}

.snowflake {
    animation: snowfall 10s linear infinite;
    aspect-ratio: 1;
    background-color: snow;
    border-radius: 50%;
    position: absolute;
    top: -20%;
    z-index: 10
}

@keyframes snowfall {
    0% {
        transform: translate(0) rotate(0)
    }

    25% {
        transform: translate(-8vw, 27.5vh) rotate(90deg)
    }

    50% {
        transform: translate(-15vw, 55vh) rotate(180deg)
    }

    75% {
        transform: translate(-23vw, 82.5vh) rotate(270deg)
    }

    to {
        transform: translate(-30vw, 110vh) rotate(1turn)
    }
}

.hero {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    width: 100%
}

.hero-background {
    background-image: url(/static/media/hero-background.6accc3f1165afb5555e4.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 50%;
    position: absolute;
    top: -4%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1
}

.hero-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 1400px;
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    width: 100%;
    z-index: 2
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding-top: 20px;
    width: 200px
}

.logo-image {
    height: auto;
    max-width: 300px;
    object-fit: contain;
    width: 100%
}

.hero-title {
    display: flex;
    justify-content: center;
    padding: 0;
    position: absolute;
    top: 5%;
    width: 100%
}

.title-image,
.title-video {
    height: auto;
    object-fit: contain;
    width: 650px
}

.hero-tagline {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    margin-top: auto;
    max-width: 35%;
    padding-bottom: 20px;
    text-align: center
}

.hero-tagline-highlight {
    color: #ff5000
}

.scroll-arrow {
    animation: bounce 2s infinite;
    display: flex;
    justify-content: center;
    padding-bottom: 30px
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    to {
        transform: translateY(0)
    }

    40% {
        transform: translateY(10px)
    }

    60% {
        transform: translateY(5px)
    }
}

.hero-description {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    padding: 0 20px 60px;
    text-align: center
}

.hero-description-title {
    color: #ff5000;
    font-size: 32px;
    font-weight: 500;
    margin: 0
}

.hero-description-text {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0
}

.hero-timer {
    max-width: 900px;
    padding-bottom: 60px;
    text-align: center;
    width: 100%
}

.timer-label {
    color: #fff;
    font-size: 24px;
    font-weight: 100;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px #00000080
}

.timer-blocks {
    align-items: stretch;
    display: flex;
    gap: 20px;
    justify-content: center
}

.timer-group {
    align-items: center;
    display: flex;
    flex-direction: column
}

.timer-digits {
    display: flex;
    gap: 10px
}

.flip-card {
    display: inline-block;
    height: 110px;
    perspective: 300px;
    position: relative;
    width: 85px
}

.flip-card-inner {
    height: 100%;
    position: relative;
    width: 100%
}

.flip-card-animated-bottom,
.flip-card-animated-top,
.flip-card-bottom,
.flip-card-top {
    align-items: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #fff;
    display: flex;
    height: 50%;
    justify-content: center;
    left: 0;
    overflow: hidden;
    position: absolute;
    width: 100%
}

.flip-card-animated-top,
.flip-card-top {
    background: linear-gradient(180deg, #fff 0, #f0f0f0);
    border-bottom: 1px solid #0000001a;
    border-radius: 12px 12px 0 0;
    top: 0
}

.flip-card-animated-top span,
.flip-card-top span {
    color: #000;
    font-size: 72px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    top: 50%
}

.flip-card-animated-bottom,
.flip-card-bottom {
    background: linear-gradient(180deg, #e8e8e8 0, #fff);
    border-radius: 0 0 12px 12px;
    bottom: 0;
    box-shadow: 0 4px 8px #0003
}

.flip-card-animated-bottom span,
.flip-card-bottom span {
    color: #000;
    font-size: 72px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    top: -50%
}

.flip-card-animated-top {
    animation: flipDown .3s ease-in forwards;
    transform-origin: bottom center;
    z-index: 3
}

.flip-card-animated-bottom {
    animation: flipUp .3s ease-out .3s forwards;
    transform: rotateX(90deg);
    transform-origin: top center;
    z-index: 2
}

@keyframes flipDown {
    0% {
        transform: rotateX(0deg)
    }

    to {
        transform: rotateX(-90deg)
    }
}

@keyframes flipUp {
    0% {
        transform: rotateX(90deg)
    }

    to {
        transform: rotateX(0deg)
    }
}

.timer-unit {
    color: #fff;
    font-size: 18px;
    font-weight: 100;
    margin-top: 10px;
    text-shadow: 2px 2px 6px #00000080
}

.timer-separator {
    color: #ff5000;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.5;
    padding: 0 10px;
    text-shadow: 2px 2px 8px #00000080
}

.wtask-section {
    padding: 60px 20px 150px
}

.about-section,
.wtask-section {
    background-color: #0c0909;
    display: flex;
    justify-content: center;
    width: 100%
}

.about-section {
    margin-top: -40px;
    padding: 0 20px 20px
}

.about-container {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    max-width: 1200px;
    width: 100%
}

.about-content {
    display: flex;
    flex: 0 0 45%;
    flex-direction: column;
    gap: 24px
}

.about-image {
    flex: 1 1;
    margin-left: -5%;
    margin-right: 5%;
    width: 120%
}

.about-image img {
    border-radius: 0;
    height: auto;
    width: 100%
}

.about-title {
    color: #ff5000;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    width: 80%
}

.about-description {
    color: #fff !important;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.6;
    margin: 0 !important;
    max-width: 420px
}

.about-prizes {
    border-left: 3px solid #ff5000;
    margin: 10px 0;
    padding-left: 20px;
    width: 80%
}

.about-prizes-title {
    color: #ff5000;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 15px
}

.about-prizes-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0
}

.about-prizes-list li {
    color: #fff;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.5
}

.about-button {
    background-color: #ff5000;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-family: MTSans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
    font-size: 18px;
    font-weight: 300 !important;
    height: 56px;
    margin-top: 10px;
    transition: opacity .3s ease;
    width: 320px
}

.wtask-container {
    align-items: center;
    display: flex;
    max-width: 1200px;
    width: 100%
}

.wtask-content {
    display: flex;
    flex: 0 0 45%;
    flex-direction: column;
    gap: 24px
}

.wtask-image {
    flex: 1 1;
    width: 100%
}

.wtask-image img {
    border-radius: 0;
    height: auto;
    width: 120%
}

.wtask-title {
    color: #ff5000;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase
}

.wtask-description {
    color: #fff !important;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.6;
    margin: 0 !important;
    max-width: 420px
}

.wtask-prizes {
    border-left: 3px solid #ff5000;
    margin: 10px 0;
    padding-left: 20px
}

.wtask-prizes-title {
    color: #ff5000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 15px
}

.wtask-prizes-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0
}

.wtask-prizes-list li {
    color: #fff;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.5
}

.wtask-button {
    background-color: #ff5000;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-family: MTSans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
    font-size: 18px;
    font-weight: 300 !important;
    height: 56px;
    margin-top: 10px;
    transition: opacity .3s ease;
    width: 320px
}

.wtask-button:hover {
    opacity: .9
}

.promo-section {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: -150px;
    min-height: 700px;
    padding: 80px 20px;
    position: relative;
    width: 100%
}

.promo-background {
    background-image: url(/static/media/promo-background.49d8c39bcc43e6f79ee1.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1
}

.promo-container {
    justify-content: center;
    max-width: 800px;
    position: relative;
    width: 40%;
    z-index: 2
}

.promo-container,
.promo-content {
    align-items: center;
    display: flex;
    flex-direction: column
}

.promo-content {
    gap: 24px;
    text-align: center;
    width: 60%
}

.promo-title {
    color: #ff5000;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase
}

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

.promo-text p {
    color: #fff;
    font-size: 16px;
    font-weight: 100;
    line-height: 1.5;
    margin: 0
}

.promo-button {
    background-color: #ff5000;
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-family: MTSans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
    font-size: 18px;
    font-weight: 200;
    height: 60px;
    transition: opacity .3s ease;
    width: 280px
}

.promo-button:hover {
    opacity: .9
}

.footer {
    align-items: center;
    background-color: #0c0909;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    width: 100%
}

.footer-content {
    align-items: stretch;
    display: flex;
    gap: 20px
}

.footer-text {
    color: #fff;
    font-size: 14px;
    font-weight: 100
}

.footer-logo-link {
    display: inline-block;
    transition: opacity .3s ease, transform .3s ease
}

.footer-logo-link:hover {
    opacity: .8;
    transform: scale(1.05)
}

.footer-logo {
    height: 20px;
    width: auto
}

.slider-section {
    overflow: hidden;
    padding: 80px 20px 60px;
    position: relative;
    width: 100%;
    z-index: 2
}

.slider-background {
    background-image: url(/static/media/slider-background.917167b9325cb7135c3a.jpg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 90%;
    max-width: 1900px;
    opacity: .6;
    top: 45%;
    width: 100%
}

.slider-background,
.slider-title-video {
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 1
}

.slider-title-image,
.slider-title-video {
    height: auto;
    object-fit: contain;
    pointer-events: none;
    top: 15%;
    width: 750px
}

.slider-title-image {
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 1
}

.slider-title {
    color: #ff5000;
    font-size: 42px;
    font-weight: 400;
    margin: 0 0 60px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    z-index: 2
}

.slider-container {
    align-items: center;
    display: flex;
    gap: 20px;
    height: 800px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    width: 100%;
    z-index: 2
}

.slider-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform .3s ease, opacity .3s ease;
    z-index: 10
}

.slider-arrow:hover {
    opacity: .8;
    transform: scale(1.1)
}

.slider-arrow img {
    height: 55px;
    width: 55px
}

.slider-track {
    height: 400px;
    justify-content: center;
    max-width: 1100px;
    perspective: 1000px;
    position: relative;
    width: 100%
}

.slider-slide,
.slider-track {
    align-items: center;
    display: flex;
    transform-style: preserve-3d
}

.slider-slide {
    flex-direction: column;
    position: absolute;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1), filter .6s cubic-bezier(.4, 0, .2, 1), opacity .6s cubic-bezier(.4, 0, .2, 1);
    width: 500px
}

.slider-slide img {
    border-radius: 12px;
    height: auto;
    object-fit: cover;
    width: 100%
}

.slider-text {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    margin-top: 20px;
    text-align: center
}

.video-carousel-section {
    background-color: #0c0909;
    display: none;
    padding: 0 20px 60px;
    width: 100%
}

.video-carousel-title {
    color: #ff5000;
    font-size: 42px;
    font-weight: 400;
    margin: 0 0 60px;
    text-align: center;
    text-transform: uppercase
}

.video-carousel-wrapper {
    align-items: center;
    display: flex;
    gap: 95px;
    justify-content: center;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px
}

.video-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform .3s ease, opacity .3s ease;
    z-index: 10
}

.video-arrow:hover {
    opacity: .8;
    transform: scale(1.1)
}

.video-arrow img {
    height: 55px;
    width: 55px
}

.video-carousel-container {
    max-width: 900px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.video-carousel-track {
    align-items: center;
    display: flex;
    height: 520px;
    justify-content: center;
    position: relative
}

.video-card {
    border-radius: 20px;
    cursor: pointer;
    overflow: hidden;
    position: absolute;
    transition: transform .5s cubic-bezier(.4, 0, .2, 1), filter .5s cubic-bezier(.4, 0, .2, 1), opacity .5s cubic-bezier(.4, 0, .2, 1);
    width: 280px
}

.video-card:hover {
    filter: brightness(1.1)
}

.video-thumbnail {
    background-color: #1a1a1a;
    border-radius: 12px;
    height: 500px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.video-thumbnail img {
    height: 100%;
    object-fit: cover;
    width: 100%
}

.video-play-button {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform .3s ease
}

.video-card:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1)
}

.video-social-links {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px
}

.video-social-text {
    color: #fff;
    font-size: 18px;
    font-weight: 100
}

.video-social-icons {
    display: flex;
    gap: 15px
}

.social-icon {
    display: inline-block;
    transition: transform .3s ease, opacity .3s ease
}

.social-icon:hover {
    opacity: .8;
    transform: scale(1.1)
}

@media (max-width:1500px) and (min-width:1025px) {
    .wtask-container {
        position: relative
    }

    .hero-tagline {
        max-width: 40%
    }

    .wtask-content {
        align-items: flex-start;
        margin-left: 5%;
        position: relative;
        z-index: 2
    }

    .wtask-content,
    .wtask-description,
    .wtask-prizes,
    .wtask-title {
        text-align: left
    }

    .wtask-image {
        margin-left: -100px;
        position: relative;
        z-index: 1
    }

    .wtask-image img {
        width: 100%
    }

    .about-container,
    .about-content {
        position: relative
    }

    .about-content {
        align-items: flex-start;
        z-index: 2
    }

    .about-content,
    .about-description,
    .about-prizes,
    .about-title {
        text-align: left
    }

    .about-image {
        margin-right: -100px;
        position: relative;
        z-index: 1
    }

    .about-image img {
        width: 80%
    }
}

@media (max-width:1200px) {
    .hero-background {
        left: 0;
        transform: none;
        width: 100%
    }

    .hero-tagline {
        max-width: 50%
    }

    .slider-title-image,
    .slider-title-video {
        max-width: 750px;
        width: 60%
    }

    .promo-container {
        width: 80%
    }

    .wtask-image {
        display: flex;
        justify-content: center
    }

    .wtask-image img {
        max-width: 750px;
        width: 100%
    }

    .about-image {
        display: flex;
        justify-content: center
    }

    .about-image img {
        max-width: 750px;
        width: 80%
    }
}

@media (max-width:1024px) {

    .about-content,
    .wtask-content {
        align-items: center;
        text-align: center;
        width: 80%
    }

    .about-section {
        margin-top: 0;
        padding: 60px 20px 20px
    }

    .about-prizes {
        width: 60%
    }

    .hero-content {
        padding: 30px 15px
    }

    .logo-image {
        max-width: 250px
    }

    .title-image {
        max-width: 600px
    }

    .timer-label {
        font-size: 20px
    }

    .flip-card {
        height: 90px;
        width: 70px
    }

    .flip-card-animated-bottom span,
    .flip-card-animated-top span,
    .flip-card-bottom span,
    .flip-card-top span {
        font-size: 56px;
        font-weight: 500
    }

    .timer-unit {
        font-size: 16px
    }

    .timer-separator {
        font-size: 56px
    }

    .wtask-container {
        align-items: center;
        flex-direction: column-reverse;
        gap: 40px
    }

    .wtask-image {
        width: 100%
    }

    .wtask-title {
        font-size: 32px
    }

    .wtask-text p {
        font-size: 15px
    }

    .about-container {
        align-items: center;
        flex-direction: column-reverse;
        gap: 40px
    }

    .about-image {
        margin-left: 0;
        margin-right: 0;
        width: 100%
    }

    .about-title {
        font-size: 32px
    }

    .about-text p {
        font-size: 15px
    }

    .slider-slide {
        width: 350px
    }

    .slider-text {
        font-size: 20px
    }
}

@media (max-width:768px) {
    .slider-arrow {
        display: none
    }

    .about-prizes {
        width: 90%
    }

    .hero-tagline {
        max-width: 70%
    }

    .promo-title {
        font-size: 32px
    }

    .hero {
        min-height: 90vh
    }

    .hero-content {
        padding: 20px 10px
    }

    .hero-background {
        height: 80%;
        top: 10%
    }

    .hero-logo {
        padding-top: 20px
    }

    .logo-image {
        max-width: 180px
    }

    .title-image,
    .title-video {
        max-width: 80%
    }

    .slider-title-image,
    .slider-title-video {
        width: 80%
    }

    .footer-content {
        align-items: center;
        flex-direction: column
    }

    .hero-timer {
        padding-bottom: 40px
    }

    .timer-label {
        font-size: 16px;
        margin-bottom: 20px
    }

    .timer-blocks {
        gap: 10px
    }

    .timer-digits {
        gap: 8px
    }

    .flip-card {
        height: 70px;
        width: 55px
    }

    .flip-card-animated-bottom span,
    .flip-card-animated-top span,
    .flip-card-bottom span,
    .flip-card-top span {
        font-size: 40px
    }

    .timer-unit {
        font-size: 14px;
        margin-top: 8px
    }

    .timer-separator {
        font-size: 40px;
        padding: 0 5px
    }

    .wtask-section {
        padding: 60px 15px
    }

    .wtask-title {
        font-size: 28px
    }

    .wtask-text p {
        font-size: 14px
    }

    .about-section {
        padding: 0 15px
    }

    .about-title {
        font-size: 28px
    }

    .about-text p {
        font-size: 14px
    }

    .slider-section {
        height: 800px;
        padding: 120px 15px
    }

    .slider-background {
        background-position: 50%;
        background-size: contain;
        height: 100%;
        width: 200%
    }

    .slider-slide {
        max-width: 350px;
        width: 100%
    }

    .slider-text {
        font-size: 18px
    }

    .slider-arrow img {
        height: 45px;
        width: 45px
    }

    .promo-content {
        width: 80%
    }
}

@media (max-width:1500px) {
    .promo-content {
        width: 80%
    }
}

@media (max-width:480px) {
    .hero {
        min-height: 600px
    }

    .hero-background {
        height: 60%;
        top: 20%
    }

    .logo-image {
        max-width: 150px
    }

    .title-image,
    .title-video {
        max-width: 450px
    }

    .timer-label {
        font-size: 14px;
        margin-bottom: 15px
    }

    .timer-blocks {
        gap: 8px
    }

    .timer-digits {
        gap: 6px
    }

    .flip-card {
        height: 60px;
        width: 45px
    }

    .flip-card-animated-bottom span,
    .flip-card-animated-top span,
    .flip-card-bottom span,
    .flip-card-top span {
        font-size: 32px
    }

    .timer-unit {
        font-size: 12px
    }

    .timer-separator {
        font-size: 32px
    }

    .wtask-section {
        padding: 40px 10px
    }

    .wtask-title {
        font-size: 24px
    }

    .wtask-text p {
        font-size: 13px
    }

    .about-section {
        padding: 40px 10px
    }

    .about-title {
        font-size: 24px
    }

    .about-text p {
        font-size: 13px
    }

    .slider-section {
        height: 700px;
        margin-top: 50px;
        padding: 0 10px
    }

    .slider-background {
        background-size: contain;
        height: 100%;
        width: 300%
    }

    .slider-slide {
        max-width: 280px
    }

    .slider-text {
        font-size: 16px
    }

    .slider-arrow img {
        height: 40px;
        width: 40px
    }
}

@media (max-width:600px) {
    .title-video {
        margin-top: 20px;
        max-width: 120%
    }

    .about-description,
    .about-prizes-list li,
    .promo-text p,
    .wtask-description,
    .wtask-prizes-list li {
        font-size: 14px
    }

    .hero-tagline {
        font-size: 20px
    }

    .promo-button,
    .wtask-button {
        font-size: 16px;
        width: 98%
    }

    .about-image img {
        max-width: 750px;
        width: 100%
    }

    .promo-content,
    .wtask-image img {
        width: 100%
    }

    .about-section {
        margin-top: -50px
    }
}

@media (max-width:4000px) and (min-width:2025px) {

    .title-image,
    .title-video {
        width: 800px
    }
}

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

@font-face {
    font-family: MTSans;
    font-style: normal;
    font-weight: 100 900;
    src: url(/static/media/MTSansLCTest3VF.2ebdbfd49e61725fa9e7.ttf) format("truetype")
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(135deg, #667eea, #764ba2);
    font-family: MTSans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    min-height: 100vh
}

code {
    font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace
}

#root {
    min-height: 100vh
}

/*# sourceMappingURL=main.b47b857a.css.map*/