/* --------------------------------------------------------------------------
   Theme tokens
   -------------------------------------------------------------------------- */
:root {
    --color-body-bg: #000000;
    --color-text: #ffffff;
    --color-section-bg: #000000;
    --color-header-bg: #000000;
    --color-link: #03ff00;
    --color-link-hover: #ffa300;
    --color-range: #03ff00;
    --color-range-text: #ffffff;
    --color-btn-bg: #03ff00;
    --color-btn-text: #0a0909;
    --color-nav: #ffffff;
    --color-footer-bg: #000000;
    --color-footer-text: #ffffff;
    --color-arrow: #03ff00;
    --wrap-width: 1200px;
}

body {
    background: var(--color-body-bg);
    color: var(--color-text);
}

body a {
    color: var(--color-link);
}

body a:hover {
    color: var(--color-link-hover);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.wrap {
    width: var(--wrap-width);
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    box-sizing: border-box;
}

@media (max-width: 1260px) {
    .wrap {
        width: 980px;
        padding: 0 10px;
    }
}

@media (max-width: 1020px) {
    .wrap {
        width: 760px;
        padding: 0 10px;
    }
}

@media (max-width: 759px) {
    .wrap {
        width: 100%;
        min-width: 320px;
    }
}

/* --------------------------------------------------------------------------
   Button
   -------------------------------------------------------------------------- */
.btn {
    position: relative;
    display: block;
    width: 140px;
    box-sizing: border-box;
    padding: 5px 0;
    background: var(--color-btn-bg);
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--color-btn-text) !important;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
    transition: all .3s .02s ease;
}

.btn:hover {
    color: #eded00 !important;
    background: #ffd651;
    letter-spacing: .05em;
    text-decoration: none;
}

@media (max-width: 759px) {
    .btn {
        padding: 7px 0;
        line-height: 20px;
    }
}

/* --------------------------------------------------------------------------
   Site header
   -------------------------------------------------------------------------- */
.site-header {
    background: var(--color-header-bg);
}

.site-header--fixed {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 999;
}

.site-header__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.site-header__menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--color-nav);
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.site-header__menu-toggle svg {
    display: block;
}

.site-header__logo {
    width: 80px;
    transition: all .3s .02s ease;
}

.site-header__logo:hover {
    transform: scale(1.05);
}

.site-header__logo img {
    display: block;
    width: 80px;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

@media (max-width: 1020px) {
    .site-header__logo {
        width: 70px;
    }

    .site-header__logo img {
        width: 70px;
    }
}

@media (max-width: 990px) {
    .site-header__menu-toggle {
        display: block;
    }

    .site-header__logo {
        margin-right: auto;
        margin-left: 10px;
    }

    .wrap {
        padding-top: 30px;
    }
}

/* --------------------------------------------------------------------------
   Monetizing / page content
   -------------------------------------------------------------------------- */
.monetizing {
    padding: 45px 0 0;
}

.monetizing__card {
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    background-color: var(--color-section-bg);
    border-radius: 10px;
    transition: border-radius .2s;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 0 30px;
}

.monetizing__entry {
    text-align: left;
}

.monetizing__entry img {
    height: auto;
    margin: 0 auto;
    display: block;
}

.monetizing__entry table {
    width: 100%;
    margin: 0 0 20px;
    border-collapse: collapse;
}

.monetizing__entry table th,
.monetizing__entry table td {
    border: 1px solid #4c4c50;
    padding: 8px;
}

.monetizing__entry ul,
.monetizing__entry ol {
    margin: 0 0 20px;
    padding: 0 0 0 20px;
    text-align: left;
}

.entry_table {
    width: 100%;
    overflow-x: auto;
}

@media (max-width: 759px) {
    .monetizing__card {
        padding: 10px;
    }
}

@media (max-width: 990px) {
    .monetizing__card {
        margin-bottom: 0;
    }
}

/* --------------------------------------------------------------------------
   Bonus shortcode
   -------------------------------------------------------------------------- */
.bonus {
    padding: 30px 0;
}

.bonus__layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.bonus__params {
    box-sizing: border-box;
    width: 49%;
    margin: 0 0 20px;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    background-color: #000000;
    border-radius: 10px;
    transition: border-radius .2s;
}

.bonus__param {
    width: auto;
    margin: 0 0 10px;
}

.bonus__param-label {
    font-size: 11px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.bonus__param-track {
    height: 15px;
    border-radius: 3px;
    background: #e5e5e5;
}

.bonus__param-bar {
    display: block;
    width: var(--bonus-range, 0%);
    height: 15px;
    line-height: 16px;
    border-radius: 3px;
    background: var(--color-range);
    color: var(--color-range-text);
    font-size: 12px;
    font-weight: 700;
    text-align: right;
    padding: 0 10px 0 0;
    box-sizing: border-box;
}

.bonus__offer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    background-color: #000000;
    border-radius: 10px;
    transition: border-radius .2s;
    padding: 10px;
    box-sizing: border-box;
    width: 49%;
    margin: 0 0 20px;
}

.bonus__offer-image {
    flex: 0 0 80px;
    margin: 0 20px 0 0;
}

.bonus__offer-image img {
    border-radius: 10px;
    max-width: 150px;
    width: 150px;
    height: auto;
}

.bonus__offer-content {
    width: 100%;
    font-size: 24px;
    line-height: 28px;
}

.bonus__offer-title {
    display: block;
    margin: 0 0 3px;
    font-weight: 700;
}

.bonus__offer-action {
    font-size: 18px;
}

@media (max-width: 1020px) {
    .bonus {
        padding: 30px 0 0;
        overflow: hidden;
        position: relative;
    }

    .bonus__layout {
        display: block;
    }

    .bonus__params,
    .bonus__offer {
        width: auto;
    }
}

@media (max-width: 759px) {
    .bonus__offer {
        display: block;
    }

    .bonus__offer-image {
        flex: 0 0 auto;
        margin: 0 0 10px;
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   Site nav (mobile overlay)
   -------------------------------------------------------------------------- */
.site-nav {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding: 15px;
    background: var(--color-section-bg);
    color: var(--color-nav);
}

.site-nav__close {
    display: none;
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    line-height: 0;
    color: inherit;
}

.site-nav__link {
    display: block;
    margin: 5px 10px;
    font-size: 16px;
    font-weight: bold;
    color: var(--color-nav) !important;
}

@media (max-width: 990px) {
    .site-nav__link {
        margin: 10px 0;
        font-size: 18px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav__close {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        cursor: pointer;
        color: var(--color-nav);
    }

    .site-nav {
        opacity: 0;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: fixed;
        z-index: 999;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        box-sizing: border-box;
    }

    .site-nav--active {
        opacity: 1;
        pointer-events: auto;
    }
}

/* --------------------------------------------------------------------------
   Footer / misc
   -------------------------------------------------------------------------- */
.footer {
    padding: 15px 10px;
    background: var(--color-footer-bg);
}

.footer__text {
    margin: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    color: var(--color-footer-text);
}

.up-to {
    position: fixed;
    right: 20px;
    bottom: 70px;
    z-index: 9;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    color: var(--color-arrow);
}

.up-to svg path {
    fill: currentColor;
}

.up-to-active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 990px) {
    .up-to {
        right: 10px;
        bottom: 75px;
    }

    .footer {
        margin-top: -20px;
    }
}
