.prize-wheel[data-v-2b07b453] {
    position: relative;
    width: 100%;
    max-width: 501px;
    font-size: 0
}

.prize-wheel--shadow .prize-wheel__shadow[data-v-2b07b453] {
    box-shadow: 0 20px 40px #00000080
}

.prize-wheel--spinning[data-v-2b07b453] {
    cursor: pointer
}

.prize-wheel--spinning .prize-wheel__spinner-image[data-v-2b07b453] {
    animation: var(--spin-duration) ease 1 forwards spin-2b07b453
}

.prize-wheel--won .prize-wheel__mask[data-v-2b07b453] {
    opacity: .5
}

.prize-wheel--won .prize-wheel__prize-image[data-v-2b07b453] {
    z-index: 11;
    animation: var(--prize-spin-duration) rotateIn-2b07b453 both
}

.prize-wheel__shadow[data-v-2b07b453] {
    position: relative;
    overflow: hidden;
    border-radius: 100%
}

.prize-wheel__mask[data-v-2b07b453] {
    position: relative;
    overflow: hidden;
    border-radius: 100%;
    transition: opacity .3s ease-in;
    mask-image: radial-gradient(#fff, #000)
}

.prize-wheel__spinner-image[data-v-2b07b453] {
    width: 100%;
    transform: rotate(var(--rotate-to))
}

.prize-wheel__image[data-v-2b07b453] {
    width: 100%
}

.prize-wheel__static-image[data-v-2b07b453] {
    position: absolute;
    inset: 0;
    width: 100%
}

.prize-wheel__prize-image[data-v-2b07b453] {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 60%;
    max-width: 200px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    opacity: 0
}

@keyframes spin-2b07b453 {
    0% {
        transform: rotate(var(--rotate-from))
    }
    92% {
        transform: rotate(calc(var(--rotate-to) + 2deg))
    }
    96% {
        transform: rotate(calc(var(--rotate-to) - 2deg))
    }
    to {
        transform: rotate(var(--rotate-to))
    }
}

@keyframes rotateIn-2b07b453 {
    0% {
        transform: translate(-50%, -50%) rotate(-360deg) scale(0);
        transform-origin: center;
        opacity: 0
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
        transform-origin: center;
        opacity: 1
    }
}

.modal[data-v-442b8742] {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    padding: 10px;
    overflow: auto;
    pointer-events: none;
    -webkit-overflow-scrolling: touch
}

.modal--open[data-v-442b8742] {
    pointer-events: auto
}

.modal__backdrop[data-v-442b8742] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000080
}

.modal__content[data-v-442b8742] {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    max-width: 100%;
    margin: auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 50px #00000040
}

.fade-enter-active[data-v-442b8742],
.fade-leave-active[data-v-442b8742] {
    transition: opacity .2s
}

.fade-enter[data-v-442b8742],
.fade-leave-to[data-v-442b8742] {
    opacity: 0
}

.fade-zoom-enter-active[data-v-442b8742],
.fade-zoom-leave-active[data-v-442b8742] {
    transition: all .2s
}

.fade-zoom-enter[data-v-442b8742],
.fade-zoom-leave-to[data-v-442b8742] {
    transform: scale(1.1);
    opacity: 0
}

[v-cloak] {
    display: none !important
}

.download-instructions {
    max-width: 450px;
    margin: 0 auto
}

.download-instructions h1 {
    font-weight: 400;
    font-size: 24px;
    line-height: 24px
}

.download-instructions h2 {
    color: #4285f4;
    font-size: 16px
}

.download-instructions__cta {
    margin-bottom: 10px;
    padding: 6px;
    color: #fff;
    background: #4285f4
}

.download-instructions__list {
    padding: 0;
    list-style: none
}

.download-instructions__buttons {
    margin-top: 10px
}

.download-instructions__countdown {
    margin-top: 10px;
    color: red
}

.download-instructions__footer {
    margin-top: 0;
    color: #999
}

.google-play {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.google-play__button {
    margin: 1rem 0 0;
    display: inline-block;
    max-width: 150px
}

.google-play__subline {
    text-align: center;
    font-size: 11px;
    opacity: .6;
    margin: 0 0 .5rem
}

body,
html {
    margin: 0;
    padding: 0
}

* {
    box-sizing: border-box
}

body {
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif
}

.container {
    min-height: 100vh;
    background: gold;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.banner {
    width: 100%;
    max-width: 800px;
    text-align: center
}

.banner h2 {
    font-family: Cairo, sans-serif;
    font-size: 2.25rem;
    margin: 0;
    line-height: 1.2
}

.white {
    color: #fff
}

.uppercase {
    text-transform: uppercase
}

.banner-image {
    width: 100%;
    height: auto;
    border-radius: 10px
}

.gifts-counter {
    background: #18160f;
    border: 5px solid #bda55c;
    color: #fff;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.2rem;
    margin: 20px 0 0
}

.wheel-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin-top: 20px
}

.spin-button {
    display: block;
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 15px 60px;
    font-size: 1.5rem;
    border-radius: 25px;
    margin: 20px auto;
    cursor: pointer;
    min-width: 200px
}

.spin-button:disabled {
    background: #95a5a6;
    cursor: not-allowed
}

.timer-section {
    text-align: center;
    margin-top: 30px
}

.timer-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px
}

.timer-container {
    display: flex;
    gap: 20px;
    justify-content: center
}

.timer-block {
    text-align: center
}

.time {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px
}

.label {
    font-size: .8rem;
    text-transform: uppercase
}

.prize-wheel {
    margin: 20px auto 0
}

.prize-wheel__wheel {
    width: 100%
}

.prize-wheel__prize {
    position: absolute;
    bottom: 5%;
    left: 50%;
    width: 20%;
    transform: translate(-50%) rotate(180deg)
}

.modal {
    font-size: 16px;
    z-index: 15
}

.modal__image {
    width: 100px
}

.modal__title {
    margin-bottom: 0;
    padding: 13px 16px;
    color: #000000a6;
    font-weight: 600;
    font-size: 27px;
    line-height: normal;
    text-align: center;
    text-transform: none
}

.modal__content {
    text-align: center
}

.modal__button {
    margin: 0;
    padding: 10px 24px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    background: #4caf50;
    border: none;
    border-radius: 5px;
    box-shadow: none;
    cursor: pointer
}

.modal__button:hover {
    background: #3c943f
}

@media (max-width: 480px) {
    .gifts-counter {
        font-size: 1rem;
        padding: 10px 20px
    }
    .timer-container {
        gap: 10px
    }
    .time {
        font-size: 2rem
    }
    .label {
        font-size: .7rem
    }
    .prize-image {
        width: 30px;
        height: 30px
    }
    .prize-name {
        font-size: .7rem
    }
}