:root {
    --ra-green:#8cff00;
    --ra-bg:#000;
    --ra-panel:#101116;
    --ra-panel-2:#15161b;
    --ra-border:#24262d;
    --ra-text:#f4f4f5;
    --ra-muted:#8b8e97;
    --ra-header:70px;
    --ra-sidebar:64px;
}

html {
    background:#000;
}

body {
    margin:0;
    background:var(--ra-bg);
    color:var(--ra-text);
    font-family:Arial,Helvetica,sans-serif;
}

.ra-layout {
    display:grid;

    grid-template-columns:
        minmax(0, 1fr)
        385px;

    gap:20px;

    width:100%;

    box-sizing:border-box;
}
@media (min-width:901px) {

    .ra-main {
        min-width:0;
    }

    .ra-right-sidebar {
        min-width:0;
    }

}
.ra-main {
    min-width:0;
}

.ra-right-sidebar {
    min-width:0;
}
.ra-anime-grid {
    display:grid;

    grid-template-columns:
        repeat(6, minmax(0,1fr));

    gap:26px 13px;
}

@media (max-width:1500px) {
    .ra-anime-grid {
        grid-template-columns:repeat(5,minmax(0,1fr));
    }
}

@media (max-width:1200px) {
    .ra-layout {
        grid-template-columns:minmax(0,1fr) 320px;
    }

    .ra-anime-grid {
        grid-template-columns:repeat(4,minmax(0,1fr));
    }
}

@media (max-width:900px) {
    .ra-layout {
        display:block;
        padding:14px;
    }

    .ra-right-sidebar {
        margin-top:30px;
    }

    .ra-anime-grid {
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}

@media (max-width:600px) {
    .ra-anime-grid {
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:20px 10px;
    }
}
.ra-section {
    position:relative;
    margin:0 0 34px;
}

.ra-section-head {
    min-height:42px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:14px;
}

.ra-section-head h2 {
    position:relative;
    margin:0;
    padding-left:14px;

    color:#f7f7f8;

    font-size:22px;
    line-height:1.2;
    font-weight:700;
    letter-spacing:-.4px;
}

.ra-section-head h2::before {
    content:"";

    position:absolute;

    top:2px;
    bottom:2px;
    left:0;

    width:3px;

    border-radius:10px;

    background:var(--ra-green);
}

.ra-section-head a {
    display:flex;
    align-items:center;
    gap:5px;

    color:#aeb1b8;

    font-size:12px;
    text-decoration:none;

    transition:.2s ease;
}

.ra-section-head a:hover {
    color:var(--ra-green);
}
.ra-page {
    min-height:100vh;
    padding-top:20px;
}

.ra-pagination {
    margin-top:40px;
}

.ra-pagination .nav-links {
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:7px;
}

.ra-pagination .page-numbers {
    min-width:38px;
    height:38px;
    padding:0 10px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid var(--ra-border);
    border-radius:5px;

    background:#111217;
    color:#aaaeb5;

    font-size:13px;
    font-weight:600;

    text-decoration:none;

    transition:.18s ease;
}

.ra-pagination .page-numbers:hover {
    border-color:var(--ra-green);
    color:var(--ra-green);
}

.ra-pagination .page-numbers.current {
    border-color:var(--ra-green);
    background:var(--ra-green);
    color:#080a08;
}

.ra-empty {
    min-height:400px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
}

.ra-empty h1 {
    margin:0 0 8px;
    color:#fff;
    font-size:28px;
}

.ra-empty p {
    margin:0;
    color:var(--ra-muted);
    font-size:13px;
}
*,
*::before,
*::after {
    box-sizing:border-box;
}

html,
body {
    margin:0;
    padding:0;
}

body.ra-body {
    min-height:100vh;
    background:#000;
    color:#f4f4f5;
    font-family:Arial,Helvetica,sans-serif;
    -webkit-font-smoothing:antialiased;
}

a {
    color:inherit;
}

img {
    max-width:100%;
}

/* ==============================
   HEADER
================================ */

.ra-header {
    position:relative;
    z-index:1000;

    width:100%;
    height:70px;

    background:
        linear-gradient(
            90deg,
            #070908 0%,
            #090a0d 55%,
            #0c1014 100%
        );

    border-bottom:1px solid #181a1f;
}

.ra-header__inner {
    width:100%;
    height:70px;

    display:flex;
    align-items:center;

    gap:14px;

    padding:0 28px;
}

.ra-menu-button {
    width:24px;
    height:34px;

    padding:0;

    display:flex;
    flex-direction:column;
    justify-content:center;

    gap:4px;

    border:0;
    outline:0;

    background:transparent;

    cursor:pointer;
}

.ra-menu-button span {
    display:block;

    width:15px;
    height:1px;

    background:#c6c8cc;
}

.ra-logo {
    display:flex;
    align-items:center;

    color:#fff;

    font-size:23px;
    font-weight:900;
    font-style:italic;

    letter-spacing:-1.5px;

    text-decoration:none;

    white-space:nowrap;
}

.ra-logo strong {
    color:#aaff00;

    font-size:31px;

    letter-spacing:-3px;
}

.ra-logo span {
    margin-left:2px;
}

.ra-logo i {
    margin-left:3px;

    color:#aaff00;

    font-size:15px;

    font-style:normal;
}

.ra-search {
    width:280px;
    height:42px;

    display:flex;
    align-items:center;

    margin-left:8px;

    padding:0 9px 0 14px;

    border:1px solid #34363c;
    border-radius:9px;

    background:#0b0c10;
}

.ra-search__icon {
    margin-right:10px;

    color:#9498a1;

    font-size:22px;
}

.ra-search input {
    min-width:0;
    flex:1;

    border:0;
    outline:0;

    background:transparent;

    color:#fff;

    font-size:14px;
    font-weight:600;
}

.ra-search input::placeholder {
    color:#d2d3d6;
}

.ra-search__key {
    min-width:23px;
    height:24px;

    margin-left:4px;

    display:grid;
    place-items:center;

    border:1px solid #353840;
    border-radius:4px;

    background:#191b20;

    color:#858991;

    font-size:10px;
}

.ra-header__spacer {
    flex:1;
}

.ra-signin {
    min-width:74px;
    height:34px;

    padding:0 16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#8bea00;

    color:#080a07;

    font-size:11px;
    font-weight:900;

    text-decoration:none;

    clip-path:polygon(
        8px 0,
        100% 0,
        100% calc(100% - 8px),
        calc(100% - 8px) 100%,
        0 100%,
        0 8px
    );
}

.ra-page-shell {
    min-height:70vh;
    background:#000;
}

/* FOOTER */

.ra-footer {
    padding:70px 32px 30px;

    border-top:1px solid #1b1d21;

    background:#030303;
}

.ra-footer__inner {
    max-width:1650px;
    margin:auto;
}

.ra-footer-logo {
    display:inline-block;

    margin-bottom:22px;

    color:#fff;

    font-size:27px;
    font-weight:900;
    font-style:italic;

    text-decoration:none;
}

.ra-footer-logo strong {
    color:#aaff00;
}

.ra-footer p {
    max-width:650px;

    margin:0 0 55px;

    color:#9296a1;

    font-size:14px;
    line-height:1.7;
}

.ra-footer__bottom {
    padding-top:22px;

    border-top:1px solid #1b1d21;

    color:#888c95;

    font-size:13px;
}

/* MOBILE */

@media (max-width:700px) {

    .ra-header {
        height:60px;
    }

    .ra-header__inner {
        height:60px;
        padding:0 14px;
        gap:9px;
    }

    .ra-logo {
        font-size:17px;
    }

    .ra-logo strong {
        font-size:23px;
    }

    .ra-search {
        flex:1;
        width:auto;
        height:38px;

        margin-left:3px;
    }

    .ra-search__key {
        display:none;
    }

    .ra-signin {
        display:none;
    }

}
/* =========================================================
   FLOATING SIDE NAVIGATION
========================================================= */

.ra-side-nav {
    position:fixed;
    z-index:900;

    left:14px;
    top:50%;

    width:60px;
    padding:10px 0;

    display:flex;
    flex-direction:column;
    align-items:center;

    transform:translateY(-50%);

    border:1px solid #24262b;
    border-radius:32px;

    background:
        linear-gradient(
            180deg,
            rgba(19,20,22,.98),
            rgba(10,11,12,.98)
        );

    box-shadow:
        0 12px 35px rgba(0,0,0,.45);
}

.ra-side-active {
    position:absolute;

    left:-1px;
    top:21px;

    width:3px;
    height:18px;

    border-radius:0 4px 4px 0;

    background:var(--ra-green);

    box-shadow:0 0 12px rgba(140,255,0,.35);
}

.ra-side-item {
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;

    border:0;
    border-radius:50%;

    background:transparent;

    color:#777b82;

    text-decoration:none;
    cursor:pointer;

    transition:
        background .18s ease,
        color .18s ease,
        transform .18s ease;
}

.ra-side-item:hover {
    color:#fff;
    background:#1c1e21;
}

.ra-side-item.is-active {
    color:#fff;
    background:#292b2e;

    box-shadow:
        inset 0 0 0 1px #3a3c40;
}

.ra-side-icon {
    width:19px;
    height:19px;
}

.ra-side-icon svg {
    width:100%;
    height:100%;

    display:block;

    fill:none;
    stroke:currentColor;

    stroke-width:1.7;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.ra-side-item:first-of-type svg path {
    fill:currentColor;
    stroke:none;
}

.ra-side-separator {
    width:25px;
    height:1px;

    margin:5px 0;

    background:#24262a;
}

.ra-side-collapse {
    margin-top:4px;
}
@media (max-width:900px) {
    .ra-side-nav {
        display:none;
    }
}
@media (max-width:1500px) {

    .ra-anime-grid {
        grid-template-columns:
            repeat(5,minmax(0,1fr));
    }

}

@media (max-width:1200px) {

    .ra-layout {
        grid-template-columns:
            minmax(0,1fr)
            320px;
    }

    .ra-anime-grid {
        grid-template-columns:
            repeat(4,minmax(0,1fr));
    }

}

@media (max-width:900px) {

    .ra-anime-grid {
        grid-template-columns:
            repeat(3,minmax(0,1fr));
    }

}

@media (max-width:600px) {

    .ra-anime-grid {
        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap:20px 10px;
    }

}