body {
    background: #191919;
    content: "";
}

header {
    display: none;
}

.ajax-container {
    max-width: 100%;
}

#main {
    position: unset;
    min-height: 800px;
}

.page-container {
    max-width: 1100px;
    width: 100%;
    min-height: 300px;
    position: relative;
    z-index: 2;
    background-color: var(--grey-3);
}

.breadcrumb {
    padding: 15px;
    background-color: var(--grey-1);
    margin-bottom: 0;
}

.page-header {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header .page-title {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header .page-title h1 {
    font-size: 3rem;
}

.header-type-1 {
    justify-content: unset;
}

.header-type-1 h1 {
    font-size: 5rem !important;
}

.background_cover {
    width: 100%;
    position: absolute;
    right: 0;
    z-index: -1;
}

@media screen and (max-width: 576px) {
    .background_cover {
        height: 100%;
    }
}

.background_cover img {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    animation: backgroundCover 2s forwards cubic-bezier(.165, .84, .44, 1);
}

.character-profile.background_cover {
    height: 400px;
}

@keyframes backgroundCover {
    0% {
        opacity: 0;
        filter: blur(2px);
    }

    100% {
        opacity: .4;
        background: linear-gradient(
            to top,
            #191919 0,
            rgba(25, 25, 25, .5) 100%,
            rgba(255, 255, 255, 0) 100%
        );
    }
}

.background_cover::before {
    width: 100%;
    height: 101%;
    position: absolute;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    content: "";
    background: linear-gradient(
        to top,
        #191919 0,
        rgba(25, 25, 25, .5) 60%,
        rgba(255, 255, 255, 0) 100%
    );
}

.post_view_desc {
    max-width: 400px;
    max-height: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: .8rem;
    color: #c1c1c1;
    margin: auto;
}

.post_view_date {
    width: 100px;
    margin: auto;
}

.post_item {
    max-width: 252px;
    position: relative;
    border-color: var(--border-color-grey-1);
    transition: all .5s cubic-bezier(.165, .84, .44, 1);
}

.post_item:hover {
    background: linear-gradient(
        to top,
        #070301 0,
        rgba(29, 29, 29, .719) 0,
        rgba(255, 255, 255, 0) 50%
    );

    background-position: -200px 70px;
    box-shadow: 0 22px 24px rgba(20, 20, 20, .863);
}

.post_item .badge {
    min-width: 70px;
    font-size: .8rem;
    text-shadow: 0 3px 4px rgba(25, 25, 25, .5);
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.post_item .post_header_cover {
    max-width: 100%;
    overflow: hidden;
}

.post_item .post_header_cover img {
    width: 350px;
    height: 151px;
    object-fit: cover;
    transition: .5s cubic-bezier(.165, .84, .44, 1);
}

.post_item:hover .post_header_cover img {
    transform: scale(1.1);
}

.post_comments {
    position: relative;
}

.comment_item {
    margin: 20px 0;
}

.comment_item .comment_info {
    display: flex;
    gap: 35px;
}

.comment_item .comment_info .comment_author {
    width: 100%;
    word-break: break-all;
}

.comment_info .comment_author_avatar {
    max-width: 70px;
    display: flex;
    align-items: center;
}

.comment_info .comment_author .comment_text {
    width: 100%;
    min-height: 65%;
    padding: 10px;
    background-color: var(--dark-grey-1);
    position: relative;
}

.comment_info .comment_author .comment_text::before {
    width: 0;
    height: 0;
    border-width: 20px;
    border-style: solid;
    border-color:
        transparent
        var(--dark-grey-1)
        transparent
        transparent;

    position: absolute;
    left: -14px;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
}

.asidebar {
    display: none !important;
}

.profile-character {
    position: relative;
}

.profile-character .profile-mark {
    position: absolute;
    left: -5px;
    bottom: -5px;
}

.profile-character .profile-mark svg {
    border-radius: 50rem;
}


/* ==================================================
   SCARYMU - BOTÕES DAS PÁGINAS INTERNAS
   ================================================== */

.page-container button[type="submit"],
.page-container input[type="submit"],
.page-container .btn-primary,
.page-container .button-primary {
    background: linear-gradient(
        180deg,
        #1d73ff 0%,
        #1255d8 100%
    ) !important;

    color: #ffffff !important;

    border: 1px solid rgba(86, 153, 255, .55) !important;

    opacity: 1 !important;
    visibility: visible !important;

    min-height: 42px;
    padding: 10px 25px;

    font-size: 14px;
    font-weight: 600;

    border-radius: 4px;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(18, 85, 216, .20),
        inset 0 1px 0 rgba(255, 255, 255, .08);

    transition:
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}


/* HOVER */

.page-container button[type="submit"]:hover,
.page-container input[type="submit"]:hover,
.page-container .btn-primary:hover,
.page-container .button-primary:hover {
    background: linear-gradient(
        180deg,
        #3384ff 0%,
        #1764ec 100%
    ) !important;

    color: #ffffff !important;

    border-color: rgba(105, 169, 255, .85) !important;

    box-shadow:
        0 7px 22px rgba(18, 85, 216, .30),
        inset 0 1px 0 rgba(255, 255, 255, .12);

    transform: translateY(-1px);
}


/* QUANDO CLICAR */

.page-container button[type="submit"]:active,
.page-container input[type="submit"]:active,
.page-container .btn-primary:active,
.page-container .button-primary:active {
    transform: translateY(0);

    box-shadow:
        0 3px 10px rgba(18, 85, 216, .20);
}


/* ==================================================
   BOTÃO DESABILITADO
   Continua visível, mas mostra que ainda não pode clicar
   ================================================== */

.page-container button[type="submit"]:disabled,
.page-container input[type="submit"]:disabled,
.page-container .btn-primary:disabled,
.page-container .button-primary:disabled,
.page-container button[disabled],
.page-container input[disabled] {
    background: #252a32 !important;

    color: #7f8998 !important;

    border-color: #343b46 !important;

    opacity: 1 !important;

    cursor: not-allowed !important;

    box-shadow: none !important;

    transform: none !important;
}


/* ==================================================
   MOBILE
   ================================================== */

@media screen and (max-width: 576px) {

    .page-header {
        height: 300px;
    }

    .page-header .page-title h1 {
        font-size: 2.2rem;
    }

    .header-type-1 h1 {
        font-size: 3rem !important;
    }

    .page-container button[type="submit"],
    .page-container input[type="submit"],
    .page-container .btn-primary,
    .page-container .button-primary {
        min-height: 44px;
    }
}

/* ==================================================
   SCARYMU - PROGRAMA DE INDICAÇÃO
   Corrige botão/link apagado
   ================================================== */

.page-container a[href*="/indication/participate"],
.page-container a[href*="indication/participate"] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    min-height: 42px;
    padding: 10px 24px;

    background: linear-gradient(
        180deg,
        #1d73ff 0%,
        #1255d8 100%
    ) !important;

    color: #ffffff !important;

    border: 1px solid rgba(86, 153, 255, .55) !important;
    border-radius: 4px;

    opacity: 1 !important;
    visibility: visible !important;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;

    cursor: pointer;

    box-shadow:
        0 5px 18px rgba(18, 85, 216, .20),
        inset 0 1px 0 rgba(255, 255, 255, .08);

    transition:
        background .2s ease,
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}


/* HOVER */

.page-container a[href*="/indication/participate"]:hover,
.page-container a[href*="indication/participate"]:hover {
    background: linear-gradient(
        180deg,
        #3384ff 0%,
        #1764ec 100%
    ) !important;

    color: #ffffff !important;

    border-color: rgba(105, 169, 255, .85) !important;

    box-shadow:
        0 7px 22px rgba(18, 85, 216, .30),
        inset 0 1px 0 rgba(255, 255, 255, .12);

    transform: translateY(-1px);
}


/* CLIQUE */

.page-container a[href*="/indication/participate"]:active,
.page-container a[href*="indication/participate"]:active {
    transform: translateY(0);

    box-shadow:
        0 3px 10px rgba(18, 85, 216, .20);
}

/* ==================================================
   SCARYMU - GUIAS
   Mantém o espaço do header, remove só o conteúdo duplicado
   ================================================== */

/* Mantém a área de background */
body:has(.breadcrumb a[href*="/guides"]) .page-header {
    display: flex !important;
    height: 300px !important;
    min-height: 300px !important;
}

/* Esconde apenas título/card duplicado dentro do header */
body:has(.breadcrumb a[href*="/guides"]) .page-header > * {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Conteúdo principal */
body:has(.breadcrumb a[href*="/guides"]) .page-container {
    margin-top: 0 !important;
    transform: none !important;
    top: auto !important;
}

/* Mobile */
@media screen and (max-width: 768px) {
    body:has(.breadcrumb a[href*="/guides"]) .page-header {
        height: 180px !important;
        min-height: 180px !important;
    }
}

/* ==================================================
   SCARYMU - STATUS ONLINE MODERNO
   ================================================== */

.comp_online {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Círculo principal */
.comp_online .radial_blur {
    width: 118px !important;
    height: 118px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    position: relative !important;

    border-radius: 50% !important;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(28, 74, 126, .42) 0%,
            rgba(9, 24, 43, .96) 55%,
            #06101d 100%
        ) !important;

    border: 1px solid rgba(66, 151, 255, .42) !important;

    box-shadow:
        0 0 0 5px rgba(12, 41, 72, .28),
        0 10px 30px rgba(0, 0, 0, .50),
        0 0 25px rgba(31, 117, 255, .12),
        inset 0 1px 0 rgba(255, 255, 255, .08) !important;

    overflow: visible !important;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease !important;
}


/* Linha azul sutil em volta */

.comp_online .radial_blur::before {
    content: "" !important;

    position: absolute !important;
    inset: -6px !important;

    border-radius: 50% !important;

    border: 1px solid rgba(42, 128, 255, .18) !important;

    pointer-events: none !important;
}


/* Pequeno ponto ONLINE */

.comp_online .radial_blur::after {
    content: "" !important;

    position: absolute !important;

    width: 8px !important;
    height: 8px !important;

    top: 15px !important;
    right: 16px !important;

    border-radius: 50% !important;

    background: #37e77c !important;

    box-shadow:
        0 0 0 3px rgba(55, 231, 124, .10),
        0 0 10px rgba(55, 231, 124, .65) !important;
}


/* Conteúdo */

.comp_online .comp_info {
    position: relative !important;
    z-index: 3 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 5px !important;
}


/* Ícone */

.comp_online .status-icon {
    color: #4da0ff !important;

    font-size: 24px !important;

    text-shadow:
        0 0 12px rgba(50, 137, 255, .45) !important;
}


/* Texto ONLINE */

.comp_online .online {
    color: #ffffff !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    letter-spacing: 2px !important;

    text-transform: uppercase !important;

    line-height: 1 !important;

    text-shadow: none !important;
}


/* Hover bem discreto */

.comp_online .radial_blur:hover {
    transform: translateY(-2px) !important;

    border-color: rgba(79, 158, 255, .70) !important;

    box-shadow:
        0 0 0 5px rgba(12, 41, 72, .32),
        0 14px 35px rgba(0, 0, 0, .55),
        0 0 30px rgba(31, 117, 255, .18),
        inset 0 1px 0 rgba(255, 255, 255, .10) !important;
}


/* Remove efeitos antigos que possam interferir */

.comp_online #funsion_lights {
    opacity: .25 !important;
}


/* MOBILE */

@media screen and (max-width: 768px) {

    .comp_online .radial_blur {
        width: 100px !important;
        height: 100px !important;
    }

    .comp_online .status-icon {
        font-size: 21px !important;
    }

    .comp_online .online {
        font-size: 11px !important;
        letter-spacing: 1.5px !important;
    }
}