.ra-hero {
    outline:5px solid red !important;
}
/* =========================================================
   HERO
========================================================= */

.ra-hero {
    position:relative;

    width:100%;
    height:570px;

    overflow:hidden;

    background:#050607;
}

.ra-hero-slides,
.ra-hero-slide {
    position:absolute;
    inset:0;
}

.ra-hero-slide {
    visibility:hidden;
    opacity:0;

    transition:opacity .55s ease;
}

.ra-hero-slide.is-active {
    visibility:visible;
    opacity:1;
}

.ra-hero-media {
    position:absolute;

    top:0;
    right:0;
    bottom:0;

    width:69%;
}

.ra-hero-media img {
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
    object-position:center;
}

.ra-hero-shade {
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            #030405 0%,
            #030405 18%,
            rgba(3,4,5,.96) 28%,
            rgba(3,4,5,.68) 47%,
            rgba(3,4,5,.14) 72%,
            rgba(3,4,5,.05) 100%
        ),
        linear-gradient(
            0deg,
            #000 0%,
            rgba(0,0,0,.65) 12%,
            transparent 42%
        );
}

.ra-hero-content {
    position:absolute;
    z-index:5;

    left:74px;
    bottom:73px;

    width:min(560px,45vw);
}

.ra-hero-meta {
    display:flex;
    align-items:center;

    gap:20px;

    margin-bottom:18px;

    color:var(--ra-green);

    font-size:13px;
    font-weight:800;
}

.ra-hero-title {
    max-width:650px;

    margin:0 0 17px;

    color:#fff;

    font-size:48px;
    line-height:.98;
    font-weight:900;

    letter-spacing:-2.2px;

    text-transform:uppercase;
}

.ra-hero-description {
    max-width:540px;

    margin:0 0 22px;

    color:#e0e1e3;

    font-size:14px;
    line-height:1.6;
}

.ra-hero-actions {
    display:flex;
    align-items:center;

    gap:14px;
}

.ra-watch-button,
.ra-details-button {
    height:42px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    gap:9px;

    padding:0 20px;

    font-size:12px;
    font-weight:900;

    letter-spacing:1.6px;

    text-decoration:none;
}

.ra-watch-button {
    min-width:164px;

    background:var(--ra-green);

    color:#070807;

    clip-path:polygon(
        0 0,
        100% 0,
        calc(100% - 10px) 100%,
        0 100%
    );
}

.ra-play-small {
    font-size:13px;
}

.ra-details-button {
    min-width:150px;

    border:1px solid #4a4d52;

    background:rgba(10,11,12,.7);

    color:#fff;

    clip-path:polygon(
        10px 0,
        100% 0,
        calc(100% - 10px) 100%,
        0 100%
    );
}

.ra-watch-button:hover {
    filter:brightness(1.08);
}

.ra-details-button:hover {
    border-color:#777b82;
    background:#17191d;
}


/* arrows */

.ra-hero-arrows {
    position:absolute;

    z-index:10;

    top:70px;
    right:22px;

    display:flex;

    gap:7px;
}

.ra-hero-arrows button {
    width:36px;
    height:36px;

    display:grid;
    place-items:center;

    padding:0;

    border:1px solid #24272c;

    background:#101116;

    color:#fff;

    font-size:24px;

    cursor:pointer;

    transition:.18s ease;
}

.ra-hero-arrows button:hover {
    color:var(--ra-green);
    border-color:#464a50;
}


/* dots */

.ra-hero-dots {
    position:absolute;

    z-index:10;

    right:31px;
    bottom:30px;

    display:flex;
    align-items:center;

    gap:7px;
}

.ra-hero-dot {
    width:7px;
    height:7px;

    padding:0;

    border:0;
    border-radius:50%;

    background:#777;

    cursor:pointer;
}

.ra-hero-dot.is-active {
    width:29px;

    border-radius:20px;

    background:var(--ra-green);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width:900px) {

    .ra-hero {
        height:520px;
    }

    .ra-hero-media {
        width:100%;
    }

    .ra-hero-shade {
        background:
            linear-gradient(
                0deg,
                #000 0%,
                rgba(0,0,0,.9) 30%,
                rgba(0,0,0,.22) 100%
            );
    }

    .ra-hero-content {
        left:20px;
        right:20px;
        bottom:45px;

        width:auto;
    }

    .ra-hero-title {
        max-width:600px;

        font-size:38px;
    }

    .ra-hero-description {
        max-width:580px;
    }

    .ra-hero-arrows {
        display:none;
    }

}


@media (max-width:600px) {

    .ra-hero {
        height:470px;
    }

    .ra-hero-media img {
        object-position:center top;
    }

    .ra-hero-content {
        left:15px;
        right:15px;
        bottom:28px;
    }

    .ra-hero-meta {
        gap:12px;

        margin-bottom:10px;

        font-size:11px;
    }

    .ra-hero-title {
        margin-bottom:11px;

        font-size:29px;
        line-height:1.05;

        letter-spacing:-1.3px;
    }

    .ra-hero-description {
        display:-webkit-box;

        overflow:hidden;

        font-size:12px;
        line-height:1.45;

        -webkit-line-clamp:3;
        -webkit-box-orient:vertical;
    }

    .ra-watch-button,
    .ra-details-button {
        height:39px;

        padding:0 15px;

        font-size:10px;
    }

    .ra-watch-button {
        min-width:135px;
    }

    .ra-details-button {
        min-width:115px;
    }

    .ra-hero-dots {
        display:none;
    }

}
/* =========================================================
   HOME WRAPPER
========================================================= */

.ra-home-wrap {
    padding:18px 20px 60px;
}

.ra-home-wrap .ra-layout {
    padding:0;
    margin-top:20px;
}


/* =========================================================
   DOMAIN NOTICE
========================================================= */

.ra-domain-notice {
    position:relative;

    min-height:54px;

    display:flex;
    align-items:center;

    padding:8px 10px;

    border-left:3px solid var(--ra-green);
    border-top:1px solid #263316;
    border-bottom:1px solid #263316;

    background:
        repeating-linear-gradient(
            -45deg,
            rgba(140,255,0,.018) 0,
            rgba(140,255,0,.018) 4px,
            transparent 4px,
            transparent 8px
        ),
        #060806;
}

.ra-domain-notice::before {
    content:"";

    position:absolute;
    top:0;
    left:43px;
    right:115px;

    height:1px;

    background:
        linear-gradient(
            90deg,
            var(--ra-green),
            transparent
        );

    opacity:.45;
}

.ra-domain-icon {
    width:31px;
    height:31px;

    flex:0 0 auto;

    display:grid;
    place-items:center;

    margin-right:11px;

    border:1px solid #405d13;

    background:#111b08;

    color:var(--ra-green);

    font-size:14px;
}

.ra-domain-content {
    min-width:0;
    flex:1;
}

.ra-domain-content strong {
    display:block;

    margin-bottom:4px;

    color:var(--ra-green);

    font-size:9px;
    line-height:1;

    letter-spacing:1.3px;
}

.ra-domain-content p {
    margin:0;

    overflow:hidden;

    color:#e5e6e8;

    font-size:11px;
    line-height:1.35;

    white-space:nowrap;
    text-overflow:ellipsis;
}

.ra-domain-discord {
    height:28px;

    display:flex;
    align-items:center;

    gap:9px;

    padding:0 11px;

    border:1px solid #30343b;

    background:#11141a;

    color:#d8dae0;

    font-size:9px;
    font-weight:700;

    letter-spacing:.7px;

    text-decoration:none;
}

.ra-domain-close {
    width:28px;
    height:28px;

    display:grid;
    place-items:center;

    margin-left:7px;

    border:1px solid #272a30;

    background:#101217;

    color:#747983;

    cursor:pointer;
}
/* =========================================================
   CONTINUE WATCHING
========================================================= */

.ra-continue-section {
    margin-bottom:30px;
}

.ra-continue-list {
    display:grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:13px;
}

.ra-continue-card {
    min-width:0;
}

.ra-continue-thumb {
    position:relative;

    display:block;

    aspect-ratio:16/9;

    overflow:hidden;

    border-radius:5px;

    background:#111319;
}

.ra-continue-thumb img {
    width:100%;
    height:100%;

    display:block;

    object-fit:cover;
}

.ra-continue-thumb::after {
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,.5),
            transparent 55%
        );

    pointer-events:none;
}

.ra-continue-episode {
    position:absolute;
    z-index:3;

    top:7px;
    left:7px;

    padding:4px 7px;

    border-radius:3px;

    background:rgba(21,20,31,.88);

    color:#fff;

    font-size:10px;
    font-weight:700;
}

.ra-continue-time {
    position:absolute;
    z-index:3;

    right:6px;
    bottom:7px;

    padding:3px 5px;

    border-radius:2px;

    background:rgba(0,0,0,.8);

    color:#fff;

    font-size:10px;
}

.ra-continue-progress {
    position:absolute;

    z-index:4;

    left:0;
    right:0;
    bottom:0;

    height:3px;

    background:rgba(255,255,255,.2);
}

.ra-continue-progress span {
    display:block;

    height:100%;

    background:#427dff;
}

.ra-continue-title {
    display:block;

    margin-top:8px;

    overflow:hidden;

    color:#f0f1f3;

    font-size:12px;
    font-weight:600;

    text-decoration:none;

    white-space:nowrap;
    text-overflow:ellipsis;
}

.ra-continue-empty {
    padding:18px;

    border:1px dashed #25282e;
    border-radius:5px;

    color:#71757e;

    font-size:12px;
}
/* =========================================================
   RIGHT SIDEBAR
========================================================= */

.ra-right-sidebar {
    min-width:0;
}

.ra-trending {
    padding:14px;

    border:1px solid #24262c;
    border-radius:10px;

    background:
        linear-gradient(
            145deg,
            #121319,
            #0d0e12
        );
}

.ra-panel-header {
    min-height:43px;

    display:flex;
    align-items:flex-start;
    justify-content:space-between;

    gap:15px;

    margin-bottom:12px;

    border-bottom:1px solid #292c31;
}

.ra-panel-header h2 {
    position:relative;

    margin:0;

    padding-bottom:13px;

    color:#f1f2f3;

    font-size:18px;
    font-weight:700;
}

.ra-panel-header h2::after {
    content:"";

    position:absolute;

    left:0;
    bottom:-1px;

    width:33px;
    height:2px;

    background:var(--ra-green);
}

.ra-trending-tabs {
    display:flex;
    align-items:center;

    gap:17px;
}

.ra-trending-tabs button {
    position:relative;

    padding:5px 0 14px;

    border:0;

    background:transparent;

    color:#6f737d;

    font-size:9px;
    font-weight:800;

    cursor:pointer;
}

.ra-trending-tabs button.is-active {
    color:var(--ra-green);
}

.ra-trending-tabs button.is-active::after {
    content:"";

    position:absolute;

    left:0;
    right:0;
    bottom:-1px;

    height:2px;

    background:var(--ra-green);
}


/* TREND ITEM */

.ra-trending-list {
    display:flex;
    flex-direction:column;

    gap:10px;
}

.ra-trending-item {
    position:relative;

    height:82px;

    display:flex;
    align-items:center;

    overflow:hidden;

    border:1px solid #1c1e23;
    border-radius:7px;

    background:#111216;

    color:#fff;

    text-decoration:none;
}

.ra-trending-bg {
    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:.13;

    filter:grayscale(.6);
}

.ra-trending-item::after {
    content:"";

    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(12,13,16,.98),
            rgba(12,13,16,.72)
        );
}

.ra-trending-rank {
    position:relative;
    z-index:3;

    width:62px;

    flex:0 0 62px;

    text-align:center;

    color:#fff;

    font-size:29px;
    line-height:1;

    font-weight:900;
    font-style:italic;
}

.ra-trending-rank::before {
    content:attr(data-rank);

    position:absolute;
}

.ra-trending-info {
    position:relative;
    z-index:3;

    min-width:0;

    padding-right:12px;
}

.ra-trending-info strong {
    display:block;

    overflow:hidden;

    margin-bottom:9px;

    color:#f2f3f4;

    font-size:12px;
    font-weight:700;

    white-space:nowrap;
    text-overflow:ellipsis;
}

.ra-trending-meta {
    display:flex;
    align-items:center;

    gap:9px;

    color:#777b83;

    font-size:9px;
}

.ra-trending-score {
    color:#ffd600;
    font-weight:700;
}

.ra-trending-item:hover {
    border-color:#33363d;
}

.ra-trending-item:hover
.ra-trending-info strong {
    color:var(--ra-green);
}
@media (max-width:900px) {

    .ra-home-wrap {
        padding:
            12px
            12px
            45px;
    }

    .ra-home-wrap .ra-layout {
        display:block;
        margin-top:18px;
    }

    .ra-right-sidebar {
        margin-top:30px;
    }

    .ra-domain-discord {
        display:none;
    }

    .ra-continue-list {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

}


@media (max-width:520px) {

    .ra-domain-notice {
        min-height:48px;
    }

    .ra-domain-content p {
        max-width:260px;
    }

    .ra-continue-list {
        display:flex;

        overflow-x:auto;

        gap:10px;

        scrollbar-width:none;
    }

    .ra-continue-list::-webkit-scrollbar {
        display:none;
    }

    .ra-continue-card {
        width:220px;
        flex:0 0 220px;
    }

}
.ra-section-tools {
    display:flex;
    align-items:center;
    gap:20px;
}

.ra-filter-tabs {
    display:flex;
    align-items:center;
    gap:17px;
}

.ra-filter-tabs button {
    padding:4px 0;

    border:0;
    background:transparent;

    color:#888c94;

    font-size:11px;
    font-weight:600;

    cursor:pointer;
}

.ra-filter-tabs button:hover,
.ra-filter-tabs button.is-active {
    color:var(--ra-green);
}

.ra-section-arrows {
    display:flex;
    gap:7px;
}

.ra-section-arrows button {
    width:28px;
    height:28px;

    display:grid;
    place-items:center;

    padding:0;

    border:1px solid #25282d;
    border-radius:50%;

    background:#08090b;
    color:#a4a7ae;

    font-size:17px;

    cursor:pointer;
}

.ra-section-arrows button:hover {
    color:var(--ra-green);
    border-color:#44484f;
}

.ra-filter-item {
    min-width:0;
}

.ra-filter-item[hidden] {
    display:none !important;
}
/* =========================================================
   RELEASE SCHEDULE
========================================================= */

.ra-schedule-panel {
    margin-top:20px;

    padding:14px;

    border:1px solid #24262c;
    border-radius:10px;

    background:
        linear-gradient(
            145deg,
            #121319,
            #0c0d11
        );
}

.ra-schedule-days {
    display:grid;

    grid-template-columns:
        32px
        repeat(3, 1fr)
        32px;

    align-items:end;

    gap:8px;
}

.ra-schedule-arrow {
    width:32px;
    height:32px;

    align-self:center;

    border:0;
    border-radius:3px;

    background:#181a20;
    color:#656a73;

    cursor:pointer;
}

.ra-schedule-day {
    min-width:0;

    padding:0;

    border:0;

    background:transparent;

    color:#777b84;

    cursor:pointer;
}

.ra-schedule-day small {
    display:block;

    margin-bottom:8px;

    font-size:8px;
    font-weight:800;
}

.ra-schedule-day strong {
    height:36px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:3px;

    background:#25272c;

    color:#dfe0e3;

    font-size:13px;
}

.ra-schedule-day.is-active small {
    color:var(--ra-green);
}

.ra-schedule-day.is-active strong {
    background:var(--ra-green);
    color:#090b08;
}

.ra-schedule-line {
    height:2px;

    margin:14px 0;

    background:
        linear-gradient(
            90deg,
            var(--ra-green) 0 45px,
            #272a30 45px 100%
        );
}

.ra-schedule-list {
    display:flex;
    flex-direction:column;
}

.ra-schedule-item {
    min-width:0;
    min-height:42px;

    display:grid;

    grid-template-columns:
        55px
        minmax(0,1fr)
        auto
        auto;

    align-items:center;

    gap:8px;

    border-bottom:1px solid #1d1f24;

    color:#dfe0e2;

    text-decoration:none;
}

.ra-schedule-item time {
    color:#747984;

    font-size:9px;
    font-family:monospace;
}

.ra-schedule-item strong {
    overflow:hidden;

    font-size:11px;
    font-weight:500;

    white-space:nowrap;
    text-overflow:ellipsis;
}

.ra-schedule-item > span {
    padding:3px 5px;

    border-radius:3px;

    background:#22252b;

    color:#9b9fa7;

    font-size:7px;
    font-weight:800;

    text-transform:uppercase;
}

.ra-schedule-item em {
    color:#686d76;

    font-size:8px;
    font-style:normal;
}

.ra-schedule-item:hover strong {
    color:var(--ra-green);
}

.ra-schedule-footer {
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-top:12px;

    color:#656a73;

    font-size:8px;
    font-family:monospace;
}

.ra-schedule-footer a {
    color:#b4b7bd;

    font-family:Arial,sans-serif;
    font-size:9px;
    font-weight:700;

    text-decoration:none;
}