* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

    color: #fff;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(244, 189, 24, .08),
            transparent 35%
        ),
        #050505;
}


.wake-page {
    width: min(420px, calc(100% - 40px));

    text-align: center;
}


.wake-logo {
    width: 76px;
    height: 76px;

    margin:
        0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(244, 189, 24, .35);

    border-radius: 20px;

    color: #f4bd18;

    background:
        linear-gradient(
            145deg,
            #161000,
            #080808
        );

    font-size: 47px;
    font-weight: 900;

    box-shadow:
        0 0 50px
        rgba(244, 189, 24, .08);

    animation:
        logoPulse 1.8s
        ease-in-out infinite;
}


h1 {
    margin: 0;

    color: #fff;

    font-size: 30px;

    letter-spacing: 4px;
}


#wakeStatus {
    min-height: 20px;

    margin:
        15px 0 25px;

    color: #777;

    font-size: 12px;
}


.wake-progress {
    width: 210px;
    height: 3px;

    margin:
        auto;

    overflow: hidden;

    border-radius: 999px;

    background:
        #161616;
}


.wake-progress-bar {
    width: 40%;
    height: 100%;

    border-radius: inherit;

    background:
        #f4bd18;

    animation:
        loadingBar 1.1s
        ease-in-out infinite;
}


.wake-note {
    display: block;

    margin-top: 15px;

    color: #444;

    font-size: 9px;

    letter-spacing: 1.6px;

    text-transform: uppercase;
}


@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .75;
    }

    50% {
        transform: scale(1.06);
        opacity: 1;
    }
}


@keyframes loadingBar {

    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(350%);
    }
}