:root {
    --theme-border-width: 1px;
    --fv-thumb-aspect-ratio: 16/9;
}

/* ===== RESET & BASE STYLES ===== */

*,
:after,
:before {
    box-sizing: border-box;
    border: 0 solid var(--theme-border, #222222);
}

:after,
:before {
    --tw-content: "";
}

:host,
html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
    background-color: var(--theme-bg-body, #181818);
}

body {
    margin: 0;
    line-height: inherit;
    background-color: var(--theme-bg-body, #181818);
    color: var(--theme-text-secondary, #cccccc);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif !important;
    font-size: 1rem;
    overflow-x: hidden;
}

hr {
    height: 0;
    color: inherit;
    border-top: 1px solid var(--theme-border, #222222);
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--theme-text-primary, #ffffff);
    font-size: inherit;
    font-weight: inherit;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

a:hover {
    color: var(--theme-color, #f43f5e);
}

b,
strong {
    font-weight: 700;
}

code,
kbd,
pre,
samp {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: initial;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

button,
select {
    text-transform: none;
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: initial;
    background-image: none;
}

:-moz-focusring {
    outline: auto;
}

:-moz-ui-invalid {
    box-shadow: none;
}

progress {
    vertical-align: initial;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

summary {
    display: list-item;
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
    margin: 0;
}

fieldset {
    margin: 0;
}

fieldset,
legend {
    padding: 0;
}

menu,
ol,
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

dialog {
    padding: 0;
}

textarea {
    resize: vertical;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--re-text-muted-2, #9ca3af);
    opacity: 1;
}

input::placeholder,
textarea::placeholder {
    opacity: 1;
    color: var(--re-text-muted-2, #9ca3af);
}

[role=button],
button {
    cursor: pointer;
}

:disabled {
    cursor: default;
}

audio,
canvas,
embed,
iframe,
img,
object,
svg,
video {
    vertical-align: middle;
    display: block;
}

img,
video {
    max-width: 100%;
    height: auto;
}

[hidden] {
    display: none;
}

/* ===== CONTAINER ===== */

.re-frame {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: .625rem;
    padding-right: .625rem;
}

@media (min-width:640px) {
    .re-frame {
        max-width: 640px;
    }
}

@media (min-width:768px) {
    .re-frame {
        max-width: 768px;
    }
}

@media (min-width:1024px) {
    .re-frame {
        max-width: 1024px;
    }
}

@media (min-width:1280px) {
    .re-frame {
        max-width: 1280px;
    }
}

@media (min-width:1536px) {
    .re-frame {
        padding: 0 1.5em;
        max-width: 1600px !important;
    }
}

/* ===== LAYOUT ===== */

.re-layout {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.25rem;
}

@media (min-width:768px) {
    .re-layout {
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }
}

@media (min-width:1024px) {
    .re-layout {
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }
}

.re-layout .re-layout__left {
    grid-column: 1/-1;
}

@media (min-width:768px) {
    .re-layout .re-layout__left {
        grid-column: span 7/span 7;
    }
}

@media (min-width:1024px) {
    .re-layout .re-layout__left {
        grid-column: span 7/span 7;
    }
}

.re-layout .re-layout__right {
    grid-column: 1/-1;
}

@media (min-width:768px) {
    .re-layout .re-layout__right {
        grid-column: span 3/span 3;
    }
}

@media (min-width:1024px) {
    .re-layout .re-layout__right {
        grid-column: span 2/span 2;
    }
}

/* ===== HEADER ===== */

#re-reHeader {
    padding-top: 1rem;
    padding-bottom: 26px;
}

@media (min-width:1024px) {
    #re-reHeader {
        display: flex;
        justify-content: space-between;
        padding-top: 1.5rem;
    }
}

#re-reHeader .re-header-bar__logo {
    justify-content: space-between;
    display: flex;
    align-content: center;
    align-items: center;
}

#re-reHeader .re-header-bar__logo .re-header-bar__logo__text {
    letter-spacing: -0.5px;
    font-weight: 700;
    color: var(--theme-text-primary, #ffffff);
    font-size: 24px;
}

#re-reHeader .re-header-bar__logo .re-header-bar__logo__text span:first-child {
    color: var(--theme-color, #f43f5e);
}

#re-reHeader .re-header-bar__logo .re-header-bar__logo__description {
    margin-top: .5rem;
    font-size: 1em;
    color: var(--theme-text-muted, #999999);
}

@media (min-width:1024px) {
    #re-reHeader .re-header-bar__logo .re-header-bar__logo__description {
        margin-top: .25rem;
    }
}

/* Mobile Menu Toggle */

#re-reHeader .re-header-bar__mobile-bar-toggle {
    display: block;
    position: relative;
}

@media (min-width:1024px) {
    #re-reHeader .re-header-bar__mobile-bar-toggle {
        display: none !important;
    }
}

#re-reHeader .re-header-bar__mobile-bar-toggle button {
    display: block;
    background-color: inherit;
    border: none;
    right: 0;
    top: -10px;
    cursor: pointer;
    height: 50px;
    line-height: 50px;
    width: 48px;
}

#re-reHeader .re-header-bar__mobile-bar-toggle button:before {
    transition: all .3s ease;
    position: absolute;
    top: 16px;
    right: 14px;
    display: block;
    height: 2px;
    width: 20px;
    background: var(--re-text-secondary, #cccccc);
    content: "";
}

#re-reHeader .re-header-bar__mobile-bar-toggle button:after {
    position: absolute;
    top: 23px;
    right: 14px;
    display: block;
    height: 9px;
    width: 20px;
    border-top: 2px solid var(--re-text-secondary, #cccccc);
    border-bottom: 2px solid var(--re-text-secondary, #cccccc);
    content: "";
}

#re-reHeader .re-header-bar__mobile-bar-toggle--opened button:before {
    top: 23px;
    background: var(--theme-text-primary, #ffffff);
    width: 19px;
    transform: rotate(-45deg);
}

#re-reHeader .re-header-bar__mobile-bar-toggle--opened button:after {
    transition: all .3s ease;
    top: 23px;
    border: 0;
    height: 2px;
    width: 19px;
    background: var(--theme-text-primary, #ffffff);
    transform: rotate(45deg);
    position: absolute;
}

/* Search Form (Pill 9999px Radius, 1px Border) */

#re-reHeader .re-header-bar__form {
    margin-top: 1.25rem;
    display: flex;
    width: 100%;
}

@media (min-width:1024px) {
    #re-reHeader .re-header-bar__form {
        margin-top: 0;
        width: 50%;
        justify-content: flex-end;
    }
}

#re-reHeader .re-header-bar__form form {
    align-items: center;
    position: relative;
    width: 100%;
    display: flex;
}

#re-reHeader .re-header-bar__form input {
    width: 100%;
    background-color: var(--theme-bg-surface, #121212);
    border: 1px solid var(--theme-border, #222222);
    border-radius: 9999px;
    color: var(--theme-text-secondary, #cccccc);
    padding: 0 3.2em 0 1.25em;
    height: 42px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: all .2s ease;
}

#re-reHeader .re-header-bar__form input:focus {
    outline: none;
    border-color: var(--theme-color, #f43f5e);
    box-shadow: 0 0 12px var(--theme-glow), inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

@media (min-width:1024px) {
    #re-reHeader .re-header-bar__form input {
        width: 80%;
    }
}

#re-reHeader .re-header-bar__form button {
    box-sizing: border-box;
    height: 34px;
    width: 34px;
    border-radius: 9999px;
    border: none;
    background: var(--theme-gradient, #f43f5e);
    box-shadow: 0 0 10px var(--theme-glow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 5px;
    transition: all .2s ease;
}

@media (min-width:1024px) {
    #re-reHeader .re-header-bar__form button {
        right: calc(20% + 5px);
    }
}

#re-reHeader .re-header-bar__form button:hover {
    filter: brightness(1.15);
    transform: scale(1.05);
}

#re-reHeader .re-header-bar__form button svg path {
    stroke: #ffffff;
}

/* Mobile Aside Menu */

#re-reAsideMenu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
    height: 100vh;
    width: 16rem;
    transform: translateX(-100%);
    transition: transform .15s cubic-bezier(.4, 0, .2, 1);
}

#re-reAsideMenu .re-mobile-panel-side-bar__frame {
    height: 100%;
    overflow-y: auto;
    padding: 1rem .75rem;
    background: var(--theme-bg-navbar, #121212);
    border-right: 1px solid var(--theme-border, #222222);
}

#re-reAsideMenu .re-mobile-panel-side-bar__frame ul {
    font-weight: 600;
}

#re-reAsideMenu .re-mobile-panel-side-bar__frame ul li {
    margin-top: .5rem;
}

#re-reAsideMenu .re-mobile-panel-side-bar__frame ul li a {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: .6rem .8rem;
    font-weight: 600;
    color: var(--theme-text-secondary, #cccccc);
    border: 1px solid var(--theme-border, #222222);
    transition: all .2s ease;
}

#re-reAsideMenu .re-mobile-panel-side-bar__frame ul li a.re-active,
#re-reAsideMenu .re-mobile-panel-side-bar__frame ul li a:hover {
    color: #ffffff !important;
    background: var(--theme-gradient, #f43f5e) !important;
    border-color: transparent !important;
    box-shadow: 0 0 10px var(--theme-glow);
}

.re-mobile-panel-side-bar--active {
    transform: translateX(0) !important;
}

.re-mobile-panel-side-bar-outside {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
}

/* ===== NAVBAR (Center, 600 Font Weight, 0px Gap, 0px Radius, 1px Solid #222222 Border) ===== */

#re-reNavbar {
    display: none;
    background: var(--theme-bg-navbar, #121212);
    border-top: 1px solid var(--theme-border, #222222);
    border-bottom: 1px solid var(--theme-border, #222222);
}

@media (min-width:1024px) {
    #re-reNavbar {
        display: block;
    }
}

#re-reNavbar .re-navbar__bar {
    display: flex;
    justify-content: center;
    gap: 0px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: wrap;
    padding: 6px 0;
}

#re-reNavbar .re-navbar__bar::-webkit-scrollbar {
    display: none;
}

#re-reNavbar .re-navbar__bar .re-navbar__menu__item {
    display: block;
    cursor: pointer;
    align-content: center;
    height: 44px;
    padding: 0 1.4em;
    font-size: .875em;
    font-weight: 600;
    color: var(--theme-text-primary, #ffffff);
    border: 1px solid #222222;
    border-radius: 0px;
    background: transparent;
    margin: 0px;
    line-height: 40px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all .2s ease;
}

#re-reNavbar .re-navbar__bar .re-navbar__menu__item--active,
#re-reNavbar .re-navbar__bar .re-navbar__menu__item:hover {
    background: var(--theme-gradient, #f43f5e) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 0 12px var(--theme-glow);
}

/* ===== BREADCRUMBS ===== */

.re-breadcrumbs-area {
    height: 34px;
    line-height: 32px;
    background-color: var(--theme-bg-surface, #121212) !important;
    border-top: 1px solid var(--theme-border, #222222);
    border-bottom: 1px solid var(--theme-border, #222222);
    border-right: none;
    border-left: none;
    margin-bottom: 1.25rem;
    font-size: .85em !important;
    color: var(--theme-color, #f43f5e);
}

.re-breadcrumbs-area .re-frame {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.re-breadcrumbs-area a {
    color: var(--theme-color, #f43f5e);
}

.re-breadcrumbs-area a:hover {
    text-decoration: underline;
}

.re-breadcrumbs-area .re-current {
    color: var(--theme-text-secondary, #cccccc);
}

.re-breadcrumbs-area svg {
    flex-shrink: 0;
}

/* ===== HEADING (Flex-start, 800 Weight, Transparent BG, 16px Radius, None Left Border, 2px Solid #f43f5e Bottom Border) ===== */

.re-headline {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    color: var(--theme-text-primary, #ffffff);
    padding: .5em 1em;
    font-size: 1.1em;
    font-weight: 800;
    border-radius: 16px 16px 0 0;
    border-left: none;
    border-bottom: 2px solid var(--theme-color, #f43f5e);
    box-shadow: none;
}

.re-headline__headline {
    margin: 0;
    font-size: inherit;
    font-weight: 800;
    letter-spacing: normal;
}

/* ===== VIDEO ITEMS GRID (Transparent Card, 0px Padding, No Border, 16px Radius, 16px Thumb, Hover Shadow 0 0 18px Glow, Scale 1.06, TranslateY -4px, Title Center 600 Weight) ===== */

.re-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
}

@media (min-width:768px) {
    .re-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width:1024px) {
    .re-items {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.re-article {
    margin-bottom: .85rem;
    background: transparent;
    padding: 0px;
    border: none;
    border-radius: 16px;
    box-shadow: none;
    text-align: center;
    color: var(--re-text-secondary, #cccccc);
    font-size: .875em;
    transition: all .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.re-article .re-article__thumbnail {
    position: relative;
    display: block;
    aspect-ratio: var(--fv-thumb-aspect-ratio, 16/9);
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--theme-border, #222222);
    background: #000000;
    transition: all .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.re-article .re-article__thumbnail img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.re-article:hover .re-article__thumbnail {
    border-color: var(--theme-color, #f43f5e);
    box-shadow: 0 0 18px var(--theme-glow);
}

.re-article:hover .re-article__thumbnail img {
    transform: scale(1.06) translateY(-4px);
}

/* Ribbon (Bottom: 0px, Left: 0px, Right: 0px, 9999px Radius, 0deg Skew) */

.re-article .re-article__labels {
    position: absolute;
    top: auto;
    bottom: 0px;
    left: 0px;
    right: 0px;
    display: flex;
    justify-content: center;
    z-index: 2;
    width: 100%;
}

.re-article .re-article__labels span {
    display: inline-block;
    padding: .2rem .65rem;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #ffffff;
    background: var(--theme-gradient, #f43f5e) !important;
    border: none;
    border-radius: 9999px;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 6px;
}

.re-article .re-article__headline {
    margin-top: .5rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    min-height: 2lh;
    text-align: center;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    transition: color .2s ease;
}

.re-article .re-article__headline h4 {
    margin: 0;
    font-size: inherit;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    color: var(--re-text-secondary, #cccccc);
}

.re-article:hover .re-article__headline,
.re-article:hover .re-article__headline h4 {
    color: var(--theme-color, #f43f5e);
}

/* ===== LABELS/TAGS (8px Radius, Flex-start Justify, 1px Border) ===== */

.re-sticker {
    margin-right: .5rem;
    margin-bottom: .5rem;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .45rem .9rem;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 600;
    color: var(--theme-text-primary, #ffffff);
    background: var(--theme-bg-surface, #121212) !important;
    border: 1px solid var(--theme-border, #222222);
    border-radius: 8px;
    transition: all .2s ease;
}

.re-sticker:hover {
    background: var(--theme-gradient, #f43f5e) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px var(--theme-glow);
}

.re-video__tags {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: .35rem;
}

/* ===== PAGINATION (Center Justify, 9999px Radius, 1px Border) ===== */

.re-paginator {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .4rem;
    margin: 1.5rem 0;
}

.re-paginator .re-paginator__article {
    display: inline-block;
    margin-bottom: 0;
}

.re-paginator .re-paginator__article a,
.re-paginator .re-paginator__article span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 .65rem;
    border-radius: 9999px;
    background: var(--theme-bg-surface, #121212) !important;
    border: 1px solid var(--theme-border, #222222);
    color: var(--theme-text-secondary, #cccccc);
    font-size: .875em;
    font-weight: 600;
    transition: all .2s ease;
}

.re-paginator .re-paginator__article a:hover,
.re-paginator .re-paginator__article--active a,
.re-paginator .re-paginator__article--active span {
    background: var(--theme-gradient, #f43f5e) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px var(--theme-glow);
}

/* ===== VIDEO PLAYER & CDN SELECTOR (12px Player Radius, Center Server Justify, 9999px CDN Radius) ===== */

.re-player {
    aspect-ratio: 16/9;
    position: relative;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--theme-border, #222222);
}

.re-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.re-player__image {
    object-fit: cover;
    width: 100%;
    left: 0;
    height: 100%;
    z-index: 1;
    top: 0;
    position: absolute;
}

.re-player__videos {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.re-player__videos .re-player__videos__vid.re-error-404 {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--theme-bg-surface, #121212);
    border-radius: 12px;
    border: 1px solid var(--theme-border, #222222);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.re-player__videos .re-player__videos__video {
    margin: 10px auto;
    padding: 1.25rem;
    border-radius: 12px;
    background-color: var(--theme-bg-surface, #121212) !important;
    border: 1px solid var(--theme-border, #222222);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.re-player__videos .re-player__videos__video .re-cdn-selector-frame {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
}

.re-player__videos .re-player__videos__video .re-cdn-selector-frame .re-player__cdn {
    border-radius: 9999px;
    background-color: var(--theme-bg-body, #181818);
    border: 1px solid var(--theme-border, #222222);
    padding: .35rem .95rem;
    color: var(--theme-text-primary, #ffffff);
    cursor: pointer;
    font-weight: 600;
    font-size: .875em;
    transition: all .2s ease;
}

.re-player__videos .re-player__videos__video .re-cdn-selector-frame .re-player__cdn--active,
.re-player__videos .re-player__videos__video .re-cdn-selector-frame .re-player__cdn:hover {
    background: var(--theme-gradient, #f43f5e) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px var(--theme-glow);
}

.re-player__video-headline-frame {
    margin-bottom: .75rem;
}

/* ===== SIDEBAR ===== */

.re-top-items .re-top-items__frame {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

@media (min-width:768px) {
    .re-top-items .re-top-items__frame {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.re-top-items .re-article {
    gap: .5rem;
    text-align: left;
}

@media (min-width:1024px) {
    .re-top-items .re-article {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        align-items: start;
        text-align: left;
    }

    .re-top-items .re-article .re-article__thumbnail {
        grid-column: span 2/span 2;
    }

    .re-top-items .re-article .re-article__headline {
        grid-column: span 3/span 3;
        text-align: left;
    }
}

.re-panel-side-backlinks {
    margin-top: 1.5rem;
}

.re-panel-side-backlinks ul {
    list-style-type: disc;
    padding-left: 2.5rem;
}

.re-panel-side-backlinks li {
    margin-bottom: .5rem;
}

.re-panel-side-backlinks a {
    color: var(--theme-color, #f43f5e);
}

.re-panel-side-backlinks a.re-sticker {
    color: var(--text-on-theme, #ffffff) !important;
    text-decoration: none !important;
}

.re-panel-side-backlinks a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */

#re-reFooter {
    background: var(--theme-bg-navbar, #121212);
    border-top: 1px solid var(--theme-border, #222222);
    padding: 2.5em 0;
    margin-top: 3.5em;
    clear: both;
    width: 100%;
    font-size: .9em;
    line-height: 1.6;
}

#re-reFooter .re-base-panel__bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem 1.5rem;
    margin-bottom: 1.25rem;
}

#re-reFooter .re-base-panel__bar a {
    color: var(--theme-color, #f43f5e);
    font-size: .95em;
    font-weight: 600;
    transition: color .2s ease;
}

#re-reFooter .re-base-panel__bar a:hover {
    color: #fb7185;
    text-decoration: underline;
}

#re-reFooter .re-base-panel__text {
    text-align: center;
    color: var(--theme-text-muted, #999999);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: .85em;
}

#re-reFooter .re-base-panel__bottom {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--theme-border, #222222);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
}

@media (min-width:768px) {
    #re-reFooter .re-base-panel__bottom {
        justify-content: space-between;
    }
}

#re-reFooter .re-base-panel__copyright {
    color: var(--re-text-gray, #777777);
    font-size: .85em;
    margin: 0;
}

#re-reFooter .re-dmca-sticker {
    display: inline-block;
    opacity: .7;
    transition: opacity .3s ease;
}

#re-reFooter .re-dmca-sticker:hover {
    opacity: 1;
}

#re-reFooter .re-dmca-sticker img {
    width: auto;
    height: 20px;
}

/* ===== BUTTONS (Pill 9999px Radius) ===== */

.re-cta {
    margin-top: .75rem;
    border-radius: 9999px;
    background: var(--theme-gradient, #f43f5e) !important;
    padding: .6rem 1.6rem;
    color: #ffffff;
    cursor: pointer;
    border: none;
    display: inline-block;
    font-weight: 700;
    box-shadow: 0 0 10px var(--theme-glow);
    transition: all .2s ease;
}

.re-cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.15);
}

/* ===== UTILITY CLASSES ===== */

.re-mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.re-mb-2 {
    margin-bottom: .5rem;
}

.re-mb-4 {
    margin-bottom: 1rem;
}

.re-ms-3 {
    margin-inline-start: .75rem;
}

.re-mt-4 {
    margin-top: 1rem;
}

.re-mt-5 {
    margin-top: 1.25rem;
}

.re-region-270 {
    display: block;
}

.re-h-5 {
    height: 1.25rem;
}

.re-w-5 {
    width: 1.25rem;
}

.re-text-center {
    text-align: center;
}

.re-text-sm {
    font-size: .875rem;
    line-height: 1.25rem;
}

.re-text-white {
    color: var(--theme-text-primary, #ffffff);
}

.re-roll-disc {
    list-style-type: disc;
}

.re-pl-10 {
    padding-left: 2.5rem;
}

.re-clearfix::after {
    display: table;
    clear: both;
    content: "";
}

/* Loading spinner */

@keyframes spin {
    to {
        transform: rotate(1turn);
    }
}

.re-animate-spin {
    animation: spin 1s linear infinite;
}

.re-opacity-25 {
    opacity: .25;
}

.re-opacity-75 {
    opacity: .75;
}

/* ===== AUTOCOMPLETE DROPDOWN (16px Bottom Radius, 1px Border) ===== */

.re-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    background: var(--theme-bg-surface, #121212);
    border: 1px solid var(--theme-border, #222222);
    border-top: none;
    border-radius: 0 0 16px 16px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    box-sizing: border-box;
}

.re-autocomplete-dropdown a {
    display: block;
    padding: 8px 14px;
    color: var(--theme-text-secondary, #cccccc);
    text-decoration: none;
    border-bottom: 1px solid var(--theme-border, #222222);
}

.re-autocomplete-dropdown a:hover {
    background: var(--theme-gradient, #f43f5e);
    color: #ffffff;
}

.re-autocomplete-dropdown::-webkit-scrollbar {
    width: 6px;
}

.re-autocomplete-dropdown::-webkit-scrollbar-track {
    background: var(--theme-bg-surface, #121212);
}

.re-autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: var(--theme-color, #f43f5e);
    border-radius: 3px;
}

/* ===== VIDEO PAGE SPECIFIC ===== */

.re-video-description {
    margin-top: 1rem;
    line-height: 1.6;
}

.re-video-categories {
    margin: 1rem 0;
}

.re-video-categories-headline {
    margin-bottom: .5rem;
    color: var(--theme-text-muted, #999999);
    font-size: .9em;
}

.re-video-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--theme-text-muted, #999999);
}

.re-video-info .re-views,
.re-video-info .re-likes {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1.1rem;
    background-color: var(--theme-bg-surface, #121212) !important;
    border: 1px solid var(--theme-border, #222222);
    border-radius: 8px;
    color: var(--theme-text-secondary, #cccccc);
    font-weight: 600;
}

.re-video-info .re-likes {
    cursor: pointer;
    transition: all .2s ease;
}

.re-video-info .re-likes:hover,
.re-video-info .re-likes.re-liked {
    background: var(--theme-gradient, #f43f5e) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px var(--theme-glow);
}

/* ===== TIME FILTER BUTTONS (9999px Radius, 1px Border) ===== */

.re-time-filters {
    display: flex;
    gap: .5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.re-time-filter-cta {
    padding: .5rem 1.2rem;
    background: var(--theme-bg-surface, #121212);
    color: var(--theme-text-secondary, #cccccc);
    border: 1px solid var(--theme-border, #222222);
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: .875em;
    transition: all .2s ease;
}

.re-time-filter-cta:hover,
.re-time-filter-cta.re-active {
    background: var(--theme-gradient, #f43f5e) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px var(--theme-glow);
}

/* ===== 404 PAGE (12px Radius, 1px Border) ===== */

.re-error-404 {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--theme-bg-surface, #121212);
    border-radius: 12px;
    border: 1px solid var(--theme-border, #222222);
    margin-top: 1.25rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.re-error-404 h1 {
    font-size: 6rem;
    font-weight: 800;
    color: var(--theme-color, #f43f5e);
    margin: 0 0 .5rem 0;
    line-height: 1;
    text-shadow: 0 0 20px var(--theme-glow);
}

.re-error-404 p {
    font-size: 1rem;
    margin: 0 0 .5rem 0;
    color: var(--theme-text-muted, #999999);
    line-height: 1.6;
}

.re-error-404 p:last-of-type {
    margin-bottom: 1.5rem;
}

.re-error-404 .re-cta {
    margin-top: 0;
    padding: .75rem 2rem;
    font-size: 1rem;
    border-radius: 9999px;
    background: var(--theme-gradient, #f43f5e) !important;
    color: #ffffff;
    box-shadow: 0 0 12px var(--theme-glow);
}

/* ===== TOUCH DEVICES ===== */

* {
    -webkit-tap-highlight-color: transparent;
}

/* Hide search input x button */

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/* ===== BACK TO TOP BUTTON (Pill 9999px Radius) ===== */

.re-back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-gradient, #f43f5e);
    border: none;
    border-radius: 9999px;
    box-shadow: 0 0 14px var(--theme-glow);
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.re-back-to-top.re-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.re-back-to-top:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 20px var(--theme-glow);
}

.re-back-to-top svg {
    color: #ffffff;
    width: 20px;
    height: 20px;
}

/* Banner Ads */

.fv-header-banner,
.fv-footer-banner,
.fv-square-banner {
    text-align: center;
    margin: 20px auto;
    overflow: hidden;
}

/* ===== AGE GATE MODAL CUSTOMIZATIONS ===== */

.re-age-gate,
.re-age-gate,
.re-age-gate {
    background: var(--re-bg-agegate, rgba(18, 18, 18, 0.95)) !important;
}

.re-age-gate__stage-area,
.re-age-gate__stage-area,
.re-age-gate__stage-area {
    background: var(--theme-bg-surface, #121212) !important;
    border: 1px solid var(--theme-color, #f43f5e) !important;
    border-radius: 16px !important;
    box-shadow: 0 0 24px var(--theme-glow) !important;
}

.re-age-gate__sticker,
.re-age-gate__sticker,
.re-age-gate__sticker {
    text-align: center !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid var(--theme-color, #f43f5e) !important;
    border-radius: 9999px !important;
    color: var(--theme-color, #f43f5e) !important;
    font-weight: 900 !important;
    font-family: monospace, sans-serif !important;
    text-shadow: 0 0 8px var(--theme-glow) !important;
    box-shadow: 0 0 12px var(--theme-glow) !important;
}

.re-age-gate__headline,
.re-age-gate__headline,
.re-age-gate__headline {
    letter-spacing: 1px !important;
    color: var(--theme-text-primary, #ffffff) !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

.re-age-gate__desc,
.re-age-gate__desc,
.re-age-gate__desc {
    color: var(--re-text-dimmed, #888888) !important;
    font-size: 13px !important;
}

.re-age-gate__cta,
.re-age-gate__cta,
.re-age-gate__cta {
    background: var(--theme-gradient, #f43f5e) !important;
    color: #ffffff !important;
    border-radius: 9999px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 0 14px var(--theme-glow) !important;
    transition: all 0.2s ease !important;
}

.re-age-gate__cta:hover,
.re-age-gate__cta:hover,
.re-age-gate__cta:hover {
    filter: brightness(1.15) !important;
    transform: scale(1.02) !important;
    box-shadow: 0 0 20px var(--theme-glow) !important;
}

.re-age-gate__cta:active,
.re-age-gate__cta:active,
.re-age-gate__cta:active {
    transform: scale(1) !important;
}

/* ===== LEGAL / POLICY PAGES ===== */

.re-policy {
    padding-top: 40px;
    padding-bottom: 40px;
}

.re-policy-capsule {
    background: var(--theme-bg-surface, #121212);
    border: 1px solid var(--theme-border, #222222);
    border-radius: 16px;
    padding: 32px;
    line-height: 1.75;
    color: var(--theme-text-secondary, #cccccc);
    max-width: 800px;
    margin: 0 auto;
}

.re-policy-capsule h1 {
    margin-bottom: 24px;
    color: var(--theme-text-primary, #ffffff);
    font-size: 28px;
    font-weight: 800;
}

.re-policy-capsule h2 {
    margin: 28px 0 12px;
    color: var(--theme-text-primary, #ffffff);
    font-size: 20px;
    font-weight: 600;
    border-left: 5px solid var(--theme-color, #f43f5e);
    padding-left: 10px;
}

.re-policy-capsule p {
    margin: 0 0 16px;
}

.re-policy-capsule a {
    color: var(--theme-color, #f43f5e);
    text-decoration: underline;
}

.re-policy-capsule a:hover {
    color: #fb7185;
}

.re-policy-form {
    display: grid;
    gap: 15px;
    max-width: 600px;
    margin: 20px auto 0;
    text-align: left;
}

.re-policy-form label {
    font-weight: 600;
    color: var(--theme-text-secondary, #cccccc);
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.re-policy-form input:not([type=checkbox]),
.re-policy-form select {
    width: 100%;
    padding: 10px 16px;
    background: var(--theme-bg-body, #181818);
    color: var(--theme-text-secondary, #cccccc);
    border: 1px solid var(--theme-border, #222222);
    border-radius: 9999px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.re-policy-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--theme-bg-body, #181818);
    color: var(--theme-text-secondary, #cccccc);
    border: 1px solid var(--theme-border, #222222);
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    min-height: 140px;
    resize: vertical;
}

.re-policy-form input:not([type=checkbox]):focus,
.re-policy-form select:focus,
.re-policy-form textarea:focus {
    border-color: var(--theme-color, #f43f5e);
    box-shadow: 0 0 10px var(--theme-glow);
}

/* Custom select styling for chevron arrow */

.re-policy-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: var(--re-select-arrow);
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 42px;
}

.re-policy-form select option {
    background: var(--theme-bg-body, #181818);
    color: var(--theme-text-secondary, #cccccc);
}

.re-policy-form .re-checkbox-sticker {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
    font-size: 13px;
}

.re-policy-form .re-checkbox-sticker input[type=checkbox] {
    margin-top: 4px;
}

.re-policy-form button {
    width: fit-content;
    padding: 10px 28px;
    background: var(--theme-gradient, #f43f5e);
    color: #ffffff;
    border-radius: 9999px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 0 10px var(--theme-glow);
    transition: all 0.2s;
}

.re-policy-form button:hover {
    filter: brightness(1.15);
}

.re-form-status {
    min-height: 1.5em;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
}

.re-form-status.re-is-success {
    color: #f43f5e;
}

.re-form-status.re-is-error {
    color: #ff4757;
}

.re-policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.re-policy-table caption {
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: var(--re-text-dimmed, #888888);
    margin-bottom: 8px;
}

.re-policy-table th,
.re-policy-table td {
    padding: 12px;
    border: 1px solid var(--theme-border, #222222);
    text-align: left;
}

.re-policy-table th {
    font-weight: 700;
    color: var(--theme-text-primary, #ffffff);
    background: var(--theme-bg-body, #181818);
}

.re-policy-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.re-policy-info span {
    padding: 16px;
    background: var(--theme-bg-body, #181818);
    border: 1px solid var(--theme-border, #222222);
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    color: var(--re-text-dimmed, #888888);
}

.re-policy-info b {
    display: block;
    font-size: 20px;
    color: var(--theme-color, #f43f5e);
    margin-top: 4px;
}

@media (max-width: 600px) {
    .re-policy-capsule {
        padding: 24px 16px;
    }

    .re-policy-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

.re-policy-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin: 18px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid var(--theme-border, #222222);
    font-size: 13px;
}

.re-policy-bar a {
    color: inherit;
    text-decoration: none;
}

.re-policy-bar a:hover {
    color: var(--theme-color, #f43f5e);
}

.re-policy-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-color, #f43f5e);
    margin-bottom: 24px;
    text-align: center;
}

.re-policy-note {
    margin-top: 24px;
    color: var(--re-text-dimmed, #888888);
    font-size: 13px;
}

.re-form-intro {
    margin-bottom: 20px;
    color: var(--re-text-dimmed, #888888);
    font-size: 13px;
}

/* Lucide Icon Base Styling */
.re-lucide, [data-lucide] {
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
}

.re-article .re-article__headline > * {
    margin: 0;
    font-size: inherit;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    color: inherit;
}
.re-article:hover .re-article__headline > * {
    color: var(--theme-color);
}
.re-article .re-article__labels > * {
    font-style: normal;
    font-weight: 700;
}
ul.re-items, ul.re-top-items__frame {
    list-style: none;
    margin: 0;
    padding: 0;
}
main.re-layout__left, section.re-layout__left, aside.re-layout__right, nav.re-layout__right, section.re-layout__right {
    display: block;
}
.re-legal-region {
    margin-bottom: 8px;
}

.re-policy-panel-side {
    margin-top: 20px;
    padding: 12px;
    font-size: 13px;
    color: var(--re-text-muted, #888);
    border-left: 2px solid var(--theme-color, #666);
}
.re-policy-panel-side p { margin: 0; }

.re-copy { display: block; }
