[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
}

.app {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-image: url(img/bg.jpg);
    background-position: center center;
    background-size: cover;
    background-attachment: fixed
}

.content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px #0000001a;
    width: 90%;
    max-width: 500px;
    text-align: center
}

h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem
}

.progress-container {
    background: #eee;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4caf50, #45a049);
    transition: width .3s ease
}

.progress-text {
    color: #666;
    font-size: 1rem;
    margin-top: .5rem
}

.expires-text {
    color: #666;
    margin: 1rem 0
}

.download-button {
    display: inline-block;
    background: #4caf50;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform .2s, background-color .2s;
    border: none;
    cursor: pointer;
    margin: 1rem 0
}

.download-button:hover {
    background: #45a049;
    transform: scale(1.05)
}

.warning-text {
    color: #f44;
    margin-top: 1rem
}

.red {
    color: #f44
}

@media (max-width: 480px) {
    .content {
        padding: 1.5rem
    }
    h2 {
        font-size: 1.25rem
    }
    .download-button {
        padding: .8rem 1.6rem;
        font-size: 1rem
    }
    .progress-container {
        height: 16px
    }
}