body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#unity-container {
    position: fixed;
    width: 100%;
    height: 100%;
}

#unity-canvas {
    width: 100%;
    height: 100%;
    background: #231F20;
}

#unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

#unity-logo 
{ 
    width: 154px; 
    height: 130px; 
    background: url('icons/ico_BADGAMES_white.png') no-repeat center;
    background-size: 100% 100%;
}

#unity-progress-bar-empty {
    margin-left: auto;
    margin-right: auto;
    width: 141px;
    height: 18px;
    margin-top: 10px;
    background: url('progress-bar-empty-dark.png') no-repeat center;
}

#unity-progress-bar-full {
    width: 0%;
    height: 18px;
    margin-top: 10px;
    background: url('progress-bar-full-dark.png') no-repeat center;
}

#unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none;
}

.container {
    background-color: #fff;
    margin: 60px 20px 20px;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.install_title {
    font-size: 1.5em;
    color: #8e8e93;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.app-icon {
    width: 80px;
    height: 80px;
    background-color: #007aff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 auto 20px;
    line-height: 1.2;
    background-image: url("icons/ico_BADGAMES_white.png");
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
}

.share_icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #eee;
    border-radius: 4px;
    vertical-align: middle;
    position: relative;
    margin: 0 3px;
    background-image: url("ico_share.png");
    background-repeat: no-repeat;
    background-size: 30px 30px;
    background-position: center;
    box-shadow: 3px 3px 3px #ccc;
    transform: translate(0, -10%);
}

.result-description {
    font-size: 14px;
    color: #8e8e93;
    line-height: 1.5;
    margin-bottom: 20px;
}

.add_homescreen_btn {
    /* display: inline-block; */
    height: 30px;
    background-color: #eee;
    border-radius: 6px;
    vertical-align: middle;
    position: relative;
    margin: 0 3px;
    padding: 3px 10px;
    box-shadow: 3px 3px 3px #ccc;
    transform: translate(0, -10%);
    color: black;
    text-align: center;
    line-height: 27px;
}

.add-to-home-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    vertical-align: middle;
    position: relative;
    margin: 0 3px;
    text-align: center;
    line-height: 14px;
    font-size: 1.2em;
    transform: translate(0, -10%);
}

.list_instructions {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 20px;
    text-align: left;
}

.list_instructions li {
    list-style: none;
    counter-increment: my-counter;
    position: relative;
    margin: 12px 0 12px 40px;
}

.list_instructions li::before {
    content: counter(my-counter);
    position: absolute;
    left: -40px;
    top: 0;
    width: 30px;
    height: 30px;
    background: #222;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-arrow {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    /* animation: bounce 2s infinite ease-in-out; */
    animation: bounce 1s infinite cubic-bezier(.45, 0, .55, 1);
}

.scroll-arrow img {
    width: 50px;
    opacity: 0.8;
}

@keyframes bounce {
    0% {
        transform: translate(-50%, 0);
    }
    50% {
        transform: translate(-50%, -12px);
    }
    100% {
        transform: translate(-50%, 0);
    }
}
