/* =========================
   Navigation CTA Button
   ========================= */
.site-nav .menu-link.cta {
    background: var(--accent-color);
    color: var(--accent-text, #fff);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background .2s ease;
}

.site-nav .menu-link.cta:hover {
    background: var(--accent-hover, #005bbb);
}

/* =========================
   General Fixes
   ========================= */
.wj::before,
.xj::before,
.yj::before,
.zj::before {
    left: 2px;
}

.no-m {
    margin: 0 !important;
}

#button {
    display: none !important;
}

/* =========================
   Ads
   ========================= */
.ads-mobile {
    display: none;
}

.ads-desktop {
    display: block;
}

.addclass {
    margin: auto;
    text-align: center;
    display: block;
    width: 100%;
}

.addclass img {
    width: 90%;
    margin: auto;
}

/* =========================
   Register Button
   ========================= */
.register {
    text-decoration: none;
    font-size: 18px;
    background: #181818;
    padding: 6px;
    border-radius: 10px;
    width: 200px;
    height: 46px;
    color: #fff;
    font-weight: 700 !important;
}

.register:hover {
    color: #fff;
    background: linear-gradient(to bottom, #657cc8, #4e64b0);
}

/* =========================
   Discord Image
   ========================= */
.discorimg {
    width: 200px;
}

/* =========================
   Logo Text
   ========================= */
.logo-text {
    font-weight: 800;
    font-size: 18px;
    line-height: 18px;
    color: #ff8a00;
    letter-spacing: .5px;
    text-transform: uppercase;
    display: inline-block;
}

/* =========================
   Blink Animation
   ========================= */
.blink {
    animation: blink-animation 2s steps(2, start) infinite;
    color: #fff !important;
    font-size: 1.2em;
    text-align: center;
    font-weight: bold;
}

@keyframes blink-animation {
    50% {
        opacity: 0;
    }
}

/* =========================
   Live Streams
   ========================= */
.livstreams {
    display: none;
}

/* =========================
   Responsive Styles
   ========================= */
@media screen and (max-width: 992px) {
    #button {
        display: block !important;
    }
}

@media screen and (max-width: 767px) {
    .disdiv {
        display: none;
    }

    .register {
        padding: 4px;
        font-size: 14px;
    }

    .ads-desktop {
        display: none;
    }

    .ads-mobile {
        display: block;
    }

    .addclass img {
        width: 90%;
        margin: auto;
        max-width: 300px;
    }
}

@media screen and (max-width: 620px) {
    .moblog {
        margin: auto;
        display: none;
    }
}

@media screen and (max-width: 420px) {
    .discorimg {
        width: 150px;
    }
}


