/* ---------- self-hosted fonts ---------- */
/* latin-ext */
@font-face {
    font-family: 'Luckiest Guy';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(fonts/luckiest-guy-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Luckiest Guy';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(fonts/luckiest-guy-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(fonts/nunito-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url(fonts/nunito-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(fonts/nunito-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(fonts/nunito-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- reset ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #54c2ff;
    font-family: 'Nunito', sans-serif;
    user-select: none;
    touch-action: none
}

#game {
    position: fixed;
    inset: 0
}

canvas {
    display: block
}

/* ---------- generic screens ---------- */
.screen {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 50;
    text-align: center;
    transition: opacity .4s
}

.hidden {
    opacity: 0;
    pointer-events: none
}

.bigtitle {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(64px, 15vw, 150px);
    color: #fff;
    line-height: .86;
    letter-spacing: 2px;
    text-shadow: 0 5px 0 #f7a325, 0 10px 0 #d96c00, 0 20px 26px rgba(0, 0, 0, .38);
    animation: bounceIn .8s cubic-bezier(.2, 1.6, .4, 1) both
}

.bigtitle .big {
    display: block;
    font-size: .42em;
    letter-spacing: 9px;
    margin-top: 2px;
    color: #ffd23e;
    text-shadow: 0 3px 0 #c96a00, 0 6px 0 rgba(0, 0, 0, .3)
}

@keyframes bounceIn {
    0% {
        transform: scale(.2) rotate(-8deg);
        opacity: 0
    }

    100% {
        transform: scale(1) rotate(-3deg);
        opacity: 1
    }
}

.sub {
    font-weight: 900;
    color: #fff;
    font-size: clamp(15px, 2.4vw, 21px);
    margin: 14px auto 0;
    max-width: 32ch;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .3)
}

/* ---------- start screen ---------- */
#startScreen {
    overflow: hidden;
    background: linear-gradient(180deg, #2a86cf 0%, #58aade 40%, #a9dcc6 68%, #a9dcc6 100%)
}

#startScreen>*:not(.ball-float) {
    position: relative;
    z-index: 2
}

#startScreen::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(58% 36% at 50% 4%, rgba(255, 228, 158, .9), rgba(255, 198, 110, .28) 46%, transparent 72%)
}

#startScreen::after {
    content: "";
    position: absolute;
    left: -25%;
    right: -25%;
    bottom: -4%;
    height: 42%;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(90deg, #36a948 0 6.5%, #2f9d40 6.5% 13%);
    border-top: 5px solid rgba(255, 255, 255, .55);
    transform: perspective(440px) rotateX(60deg);
    transform-origin: bottom center
}

.ball-float {
    position: absolute;
    z-index: 2;
    font-size: 44px;
    animation: floaty 5s ease-in-out infinite;
    filter: drop-shadow(0 6px 4px rgba(0, 0, 0, .25))
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0) rotate(-12deg)
    }

    50% {
        transform: translateY(-26px) rotate(10deg)
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(8, 30, 60, .45);
    border: 2px solid rgba(255, 255, 255, .4);
    color: #fff;
    font-weight: 900;
    font-size: clamp(11px, 2vw, 14px);
    letter-spacing: .5px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .35);
    backdrop-filter: blur(3px)
}

.badge b {
    color: #ffd23e;
    font-family: 'Luckiest Guy', cursive;
    letter-spacing: 1px
}

.cards {
    display: flex;
    gap: 12px;
    margin: 22px auto 4px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 540px
}

.card {
    background: rgba(255, 255, 255, .96);
    border-radius: 16px;
    border-top: 4px solid #ffb12e;
    padding: 13px 16px 12px;
    width: 156px;
    box-shadow: 0 6px 0 rgba(10, 40, 80, .22), 0 12px 18px rgba(0, 0, 0, .18);
    font-weight: 800;
    color: #14457f;
    font-size: 13.5px;
    line-height: 1.25;
    transform: rotate(-1.5deg)
}

.card:nth-child(2) {
    transform: rotate(1.2deg);
    border-top-color: #4dc1ff
}

.card:nth-child(3) {
    transform: rotate(-.6deg);
    border-top-color: #ff7a59
}

.card .ico {
    font-size: 27px;
    display: block;
    margin-bottom: 6px
}

.card b {
    color: #0c3566
}

.card small {
    display: block;
    opacity: .65;
    font-weight: 800;
    font-size: 11px;
    margin-top: 3px
}

.bestpill {
    margin-top: 16px;
    font-weight: 900;
    color: #fff;
    font-size: 14px;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .3)
}

.bestpill b {
    color: #ffe066;
    font-family: 'Luckiest Guy', cursive;
    letter-spacing: 1px
}

.tip {
    margin-top: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, .82);
    font-size: 12.5px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .3)
}

.bigbtn {
    margin-top: 22px;
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(26px, 4vw, 40px);
    color: #fff;
    letter-spacing: 2px;
    background: linear-gradient(#ffd23e, #ff9d00);
    border: none;
    border-radius: 999px;
    padding: 18px 64px;
    cursor: pointer;
    box-shadow: 0 8px 0 #c96a00, 0 14px 18px rgba(0, 0, 0, .3);
    text-shadow: 0 3px 0 rgba(0, 0, 0, .25);
    transition: transform .12s, box-shadow .12s;
    animation: pulse 1.6s ease-in-out infinite
}

.bigbtn:hover {
    transform: scale(1.06) rotate(-1deg)
}

.bigbtn:active {
    transform: translateY(6px);
    box-shadow: 0 2px 0 #c96a00
}

@keyframes pulse {

    0%,
    100% {
        filter: brightness(1)
    }

    50% {
        filter: brightness(1.12)
    }
}

/* ---------- end screen ---------- */
#endScreen {
    display: none;
    background:
        radial-gradient(82% 52% at 50% -4%, rgba(255, 210, 90, .38), transparent 58%),
        linear-gradient(180deg, #12244f 0%, #1c2f60 52%, #0c1734 100%)
}

#endScreen.show {
    display: flex
}

.resultcard {
    position: relative;
    width: min(91vw, 460px);
    padding: 24px 22px 26px;
    border-radius: 28px;
    border: 3px solid rgba(255, 210, 90, .55);
    background: linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04));
    box-shadow: 0 18px 50px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .16);
    backdrop-filter: blur(6px);
    animation: bounceIn .6s cubic-bezier(.2, 1.5, .4, 1) both
}

.endtrophy {
    font-size: 52px;
    line-height: 1;
    display: inline-block;
    animation: floaty 3s ease-in-out infinite
}

#endTitle {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(28px, 6.4vw, 50px);
    color: #ffd23e;
    letter-spacing: 1px;
    margin-top: 2px;
    text-shadow: 0 3px 0 #b3471d, 0 7px 0 rgba(0, 0, 0, .3)
}

.heroyds {
    margin: 8px 0 0
}

.heroyds .n {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(58px, 15vw, 96px);
    color: #fff;
    line-height: .88;
    text-shadow: 0 4px 0 #c96a00, 0 10px 16px rgba(0, 0, 0, .45)
}

.heroyds .u {
    font-weight: 900;
    color: rgba(255, 255, 255, .82);
    letter-spacing: 4px;
    font-size: 13px;
    margin-top: 3px
}

.endnext {
    margin-top: 12px;
    font-weight: 900;
    color: #9fe7b0;
    font-size: 13px;
    min-height: 16px
}

/* ---- Hall of Fame link + claim block ---- */
.hoflink {
    display: inline-block;
    margin-top: 16px;
    font-weight: 900;
    font-size: 15px;
    letter-spacing: .5px;
    color: #ffe066;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 224, 102, .5);
    padding-bottom: 1px;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .3)
}

.hoflink:active {
    opacity: .7
}

.hofblock {
    margin-top: 16px;
    padding: 14px 14px 12px;
    border-radius: 18px;
    background: rgba(255, 210, 90, .12);
    border: 2px solid rgba(255, 210, 90, .5)
}

.hofyes {
    font-family: 'Luckiest Guy', cursive;
    color: #ffe066;
    font-size: clamp(16px, 3.6vw, 22px);
    letter-spacing: .5px;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .35)
}

.hofyes b {
    color: #fff
}

.hofmiss {
    font-weight: 900;
    color: #ffd9a6;
    font-size: 14px
}

.hofmiss b {
    color: #fff;
    font-family: 'Luckiest Guy', cursive;
    letter-spacing: .5px
}

.hofentry {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px
}

.hofentry input {
    width: 56%;
    max-width: 210px;
    border: 2px solid rgba(255, 255, 255, .55);
    border-radius: 999px;
    background: rgba(8, 20, 44, .7);
    color: #fff;
    font-family: 'Luckiest Guy', cursive;
    font-size: 20px;
    letter-spacing: 1px;
    text-align: center;
    padding: 8px 14px;
    outline: none;
    text-transform: uppercase
}

.hofentry input::placeholder {
    color: rgba(255, 255, 255, .45);
    letter-spacing: 1px
}

.bigbtn.small {
    margin-top: 0;
    font-size: 20px;
    padding: 10px 22px;
    box-shadow: 0 5px 0 #c96a00, 0 8px 12px rgba(0, 0, 0, .3);
    animation: none
}

.hofnote {
    margin-top: 9px;
    font-weight: 900;
    font-size: 12.5px;
    color: rgba(255, 255, 255, .85);
    min-height: 14px
}

.statrow {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    justify-content: center
}

.stat {
    flex: 1;
    background: rgba(255, 255, 255, .08);
    border: 2px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    padding: 11px 6px;
    color: #fff
}

.stat .v {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(20px, 5vw, 28px);
    color: #ffe98a
}

.stat .l {
    font-weight: 900;
    font-size: 10px;
    letter-spacing: .5px;
    opacity: .8;
    margin-top: 2px
}

/* ---------- HUD ---------- */
#hud {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 30;
    display: none
}

#hud.show {
    display: block
}

.pill {
    position: absolute;
    background: rgba(15, 40, 80, .55);
    backdrop-filter: blur(4px);
    border: 3px solid rgba(255, 255, 255, .5);
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    padding: 8px 20px;
    font-size: clamp(16px, 2.6vw, 24px);
    text-shadow: 0 2px 0 rgba(0, 0, 0, .4)
}

#yardPill {
    top: 16px;
    left: 16px
}

#yardPill b {
    font-family: 'Luckiest Guy', cursive;
    color: #ffe066;
    font-size: 1.3em;
    letter-spacing: 1px
}

#coinPill {
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 10px
}

#coinPill.revive {
    border-color: #7dff8e;
    box-shadow: 0 0 16px rgba(125, 255, 142, .55)
}

.pips {
    display: flex;
    gap: 4px
}

.pip {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    border: 2px solid rgba(255, 255, 255, .5)
}

.pip.on {
    background: #ffd23e;
    box-shadow: 0 0 8px #ffd23e
}

#jumpReady {
    position: absolute;
    top: 104px;
    right: 16px;
    font-family: 'Luckiest Guy', cursive;
    color: #7dff8e;
    font-size: 18px;
    text-shadow: 0 2px 0 rgba(0, 0, 0, .5);
    opacity: 0;
    transition: opacity .3s;
    animation: pulse 1s infinite
}

#jumpReady.show {
    opacity: 1
}

#popups {
    position: fixed;
    left: 50%;
    top: 34%;
    z-index: 35;
    pointer-events: none;
    transform: translateX(-50%)
}

.pop {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: 'Luckiest Guy', cursive;
    animation: popAnim 1.1s ease-out forwards;
    text-shadow: 0 3px 0 rgba(0, 0, 0, .35)
}

@keyframes popAnim {
    0% {
        transform: translate(-50%, 0) scale(.3);
        opacity: 0
    }

    18% {
        transform: translate(-50%, -10px) scale(1.25);
        opacity: 1
    }

    70% {
        transform: translate(-50%, -46px) scale(1);
        opacity: 1
    }

    100% {
        transform: translate(-50%, -80px) scale(.9);
        opacity: 0
    }
}

#flash {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 40;
    opacity: 0;
    background: #ff2b2b
}

#speedlines {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 25;
    opacity: 0;
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .5) 0 2px, transparent 2px 90px);
    -webkit-mask: radial-gradient(circle at 50% 50%, transparent 0 55%, #000 92%);
    mask: radial-gradient(circle at 50% 50%, transparent 0 55%, #000 92%);
    animation: zoomLines .25s linear infinite
}

@keyframes zoomLines {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.25)
    }
}

#vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 24;
    background: radial-gradient(circle at 50% 50%, transparent 60%, rgba(10, 20, 60, .35))
}

/* ---------- touch controls: handled by full-screen gestures (no on-screen buttons) ---------- */

#loading {
    background: linear-gradient(#2aa7ff, #bdf0ff);
    z-index: 60
}

.spin {
    font-size: 64px;
    animation: spinB 1s linear infinite
}

@keyframes spinB {
    to {
        transform: rotate(360deg)
    }
}

/* ---------- record chase: target + milestones ---------- */
#targetPill {
    top: 60px;
    left: 16px;
    font-size: clamp(12px, 2vw, 16px);
    padding: 6px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    max-width: 70vw
}

#targetPill .tgt {
    font-family: 'Luckiest Guy', cursive;
    color: #ffe066;
    letter-spacing: .5px
}

#recordBar {
    position: absolute;
    top: 96px;
    left: 18px;
    width: 200px;
    max-width: 62vw;
    height: 10px;
    border-radius: 999px;
    background: rgba(6, 20, 44, .82);
    border: 2px solid rgba(255, 255, 255, .55);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .35);
    overflow: hidden;
    z-index: 30
}

#recordFill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffe066, #ff9d00);
    box-shadow: 0 0 10px rgba(255, 210, 62, .8);
    transition: width .25s ease-out, background .3s
}

#recordFill.qualified {
    background: linear-gradient(90deg, #8dff9e, #28c44e);
    box-shadow: 0 0 12px rgba(125, 255, 142, .85)
}

#ctrlHint {
    position: fixed;
    left: 50%;
    bottom: 46px;
    transform: translateX(-50%) translateY(10px);
    z-index: 32;
    pointer-events: none;
    background: rgba(15, 25, 50, .62);
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    padding: 9px 22px;
    color: #fff;
    font-weight: 900;
    font-size: clamp(13px, 2.3vw, 17px);
    text-shadow: 0 2px 0 rgba(0, 0, 0, .4);
    opacity: 0;
    transition: opacity .4s, transform .4s
}

#ctrlHint.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

#targetPill.held .tgt {
    color: #7dff8e
}

#milestones {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 38;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.miles {
    background: rgba(15, 25, 50, .82);
    border: 3px solid #ffd23e;
    border-radius: 16px;
    padding: 9px 22px;
    color: #fff;
    text-align: center;
    box-shadow: 0 6px 0 rgba(0, 0, 0, .25), 0 0 22px rgba(255, 210, 62, .35);
    animation: milesIn .35s cubic-bezier(.2, 1.5, .4, 1) both, milesOut .5s ease-in 2.3s forwards
}

.miles.win {
    border-color: #7dff8e;
    box-shadow: 0 6px 0 rgba(0, 0, 0, .3), 0 0 34px rgba(125, 255, 142, .6)
}

.miles .top {
    font-family: 'Luckiest Guy', cursive;
    font-size: 17px;
    letter-spacing: 1px;
    color: #ffe066
}

.miles.win .top {
    color: #7dff8e
}

.miles .who {
    font-weight: 900;
    font-size: 13px;
    opacity: .92;
    margin-top: 1px
}

@keyframes milesIn {
    0% {
        transform: translateY(-26px) scale(.7);
        opacity: 0
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1
    }
}

@keyframes milesOut {
    to {
        transform: translateY(-14px);
        opacity: 0
    }
}

/* ---------- invincibility ---------- */
#invPill {
    top: 60px;
    right: 16px;
    color: #ffe066;
    border-color: #ffd23e;
    box-shadow: 0 0 18px rgba(255, 210, 62, .55);
    display: none;
    align-items: center;
    gap: 6px
}

#invPill.show {
    display: flex
}

#shield {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 26;
    opacity: 0;
    transition: opacity .25s;
    background: radial-gradient(circle at 50% 52%, transparent 52%, rgba(255, 200, 60, .28) 88%, rgba(255, 170, 0, .42));
    mix-blend-mode: screen
}

#shield.show {
    opacity: 1;
    animation: shieldPulse .8s ease-in-out infinite
}

@keyframes shieldPulse {

    0%,
    100% {
        filter: brightness(1)
    }

    50% {
        filter: brightness(1.5)
    }
}

/* ---------- revive overlay ---------- */
#reviveScreen {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 50% 40%, rgba(20, 10, 40, .35), rgba(8, 4, 20, .82))
}

#reviveScreen.show {
    display: flex
}

#reviveScreen .rtitle {
    font-family: 'Luckiest Guy', cursive;
    font-size: clamp(30px, 6vw, 56px);
    color: #7dff8e;
    text-shadow: 0 4px 0 #1c6b2e, 0 9px 0 rgba(0, 0, 0, .3);
    transform: rotate(-2deg)
}

#reviveScreen .rsub {
    font-weight: 900;
    color: #fff;
    margin-top: 8px;
    font-size: clamp(14px, 2.4vw, 20px);
    text-shadow: 0 2px 0 rgba(0, 0, 0, .35)
}

.ring {
    position: relative;
    width: 132px;
    height: 132px;
    margin: 18px 0
}

.ring svg {
    transform: rotate(-90deg)
}

.ring .num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Luckiest Guy', cursive;
    font-size: 56px;
    color: #fff;
    text-shadow: 0 3px 0 rgba(0, 0, 0, .4)
}

#reviveBtn {
    background: linear-gradient(#7dff8e, #28c44e);
    box-shadow: 0 8px 0 #1c7a32, 0 14px 18px rgba(0, 0, 0, .3);
    color: #06351a
}

#reviveBtn:active {
    box-shadow: 0 2px 0 #1c7a32
}

#giveUpBtn {
    margin-top: 14px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .7);
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: underline;
    animation: none
}
