<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --white: #ffffff;
    --grey: #D9D9D9;
    --dark-blue: #0D2232;
    --blue: #37BDE2;
}


.blue {color: var(--blue);}
.white {color: var(--white);}
.dark-blue {color: var(--dark-blue);}

.fs-sm {
    font-size: 0.8rem;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 300;
    background-color: var(--dark-blue);
    background-image: url(/img/bg.jpeg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.ff-header{max-width: 1600px; margin: auto;}
.caps{text-transform: uppercase;}

.btn-connect {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    color: var(--white);
    background-color: var(--blue);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 2rem;
    transition: background-color 0.3s ease;
}

.btn-connect:hover {
    background-color: var(--dark-blue);
}

.logo-wrap {
    width: 100%;
    height: auto;
    max-width: 200px;
}

.tile-bg {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.balance-text {
    text-wrap: balance;
}

.social-icon {
    width: 3rem;
    height: 3rem;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-tile {
    height: calc(100% - 1.5rem);
    background-color: var(--grey);
    border: 2px solid transparent;
    border-radius: 0.5rem;
    color: var(--dark-blue);
}

.tile {
    background-color: var(--grey);
    border: 2px solid transparent;
    border-radius: 0.5rem;
    color: var(--dark-blue);
}

.tile-icons {
    margin-top: -3rem;
}

.tile-icon {
    background-color: var(--white);
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 100rem;
    margin: 0 -0.2rem;
}

.tile-icon.top {
    z-index: 1;
}

.js-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 0.5rem;
    border-radius: 100rem;
    background: #ffffff;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
    margin: 1rem 0;
}
  
.js-slider:hover {
    opacity: 1;
}
  
.js-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 100%;
    border: 1px solid white;
    background: var(--blue);
    cursor: pointer;
}
  
.js-slider::-moz-range-thumb {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 100%;
    background: var(--blue);
    cursor: pointer;
}


.js-slider-wrap {
    position: relative;
    display: flex;
    background: black;
    width: 100%;
    padding: 0;
}

.js-slider-percent {
    display: flex;
    justify-content: space-between;
}

.js-slider-percent span {
    display: flex;
    justify-content: center;
    width: 2rem;
    font-size: 75%;
    font-weight: 300;
}

.js-slider-percent span:first-of-type {
    justify-content: flex-start;
}

.js-slider-percent span:last-of-type {
    justify-content: flex-end;
}

.min-h {
    min-height: 3rem;
}

.bg-blend-screen {
    background-blend-mode: screen;
}

.battle-burns-logo {
    max-width: 620px;
}

.battle-burns-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.battle-bg {
    background-color: #8eacde;
}</pre></body></html>