:root {
    --wrap: 1300px;
    --sidebar: 340px;

    --coral: #EE6352;
    --sky: #08B2E3;
    --green: #57A773;
    --grape: #484D6D;
    --slate: #c0c0c0;
    --white: #ffffff;
    --soft-bg: #f8f9fb;
    --soft-pink: #fff3f2;
    --soft-blue: #eef9fd;
    --border-soft: #d9e3ea;

    --bg: #f6f3ef;
    --page: #ffffff;
    --soft: #f4f1ed;
    --border: rgba(72, 77, 109, .18);

    --text: #252525;
    --muted: rgba(72, 77, 109, .78);

    --shadow: 0 14px 30px rgba(0, 0, 0, .10);
    --shadow2: 0 10px 20px rgba(0, 0, 0, .08);
    --r: 16px;

    --header-bg-image: url("https://images.maraholic.org/layout/main/holiclogin.png");
}

/* === BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(1200px 700px at 20% 0%, rgba(8, 178, 227, .14), transparent 60%),
        radial-gradient(900px 600px at 85% 10%, rgba(238, 99, 82, .12), transparent 55%),
        var(--bg);
    color: var(--text);
}

.mh-wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 14px;
}

/* === HEADER === */
.mh-top {
    position: relative;
    overflow: visible;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: linear-gradient(180deg, rgba(72, 77, 109, .10), rgba(72, 77, 109, .02));
}

.mh-top::before {
    content: "";
    position: absolute;
    inset: -40px;
    height: 182px;
    background-image: var(--header-bg-image);
    background-size: cover;
    background-position: center;
    filter: saturate(1.05) contrast(1.05);
    opacity: .12;
    pointer-events: none;
}

.mh-top::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 178, 227, .18), rgba(238, 99, 82, .14)),
        linear-gradient(180deg, rgba(255, 255, 255, .20), transparent 60%);
    pointer-events: none;
}

.mh-masthead {
    position: relative;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0 12px;
}

.mh-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.mh-brand__img {
    display: block;
    height: 62px;
    width: auto;
    max-width: 520px;
    border-radius: 14px;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, .12));
}

.mh-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.mh-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(72, 77, 109, .20);
    margin: 0;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: var(--shadow2);
}

.mh-search input {
    border: 0;
    padding: 10px 12px;
    width: 290px;
    outline: none;
    background: transparent;
    color: var(--text);
}

.mh-search input::placeholder {
    color: rgba(72, 77, 109, .55);
}

.mh-search__btn {
    width: 42px;
    height: 42px;
    border: 0;
    cursor: pointer;
    background: radial-gradient(circle at 50% 50%, rgba(8, 178, 227, .18), rgba(8, 178, 227, .06)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%23484D6D' d='M10 18a8 8 0 1 1 5.29-14.03A8 8 0 0 1 10 18m11 3l-6.2-6.2l1.4-1.4L22.4 19.6z'/%3E%3C/svg%3E") center/18px 18px no-repeat;
}

.mh-account {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(72, 77, 109, .20);
    text-decoration: none;
    color: var(--grape);
    box-shadow: var(--shadow2);
    font-weight: 900;
}

.mh-account__icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(238, 99, 82, .28), rgba(8, 178, 227, .22));
    border: 1px solid rgba(72, 77, 109, .14);
}

.mh-account__chev {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(72, 77, 109, .70);
}

.mh-account--user {
    gap: 10px;
    padding: 8px 10px;
}

.mh-account__avatar {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(72, 77, 109, .18);
    background: rgba(72, 77, 109, .06);
}

.mh-account__meta {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.mh-account__name {
    font-size: 13px;
    font-weight: 1000;
}

.mh-account__link {
    font-size: 12px;
    color: rgba(72, 77, 109, .78);
    text-decoration: none;
    font-weight: 800;
}

.mh-account__logout {
    margin-left: 6px;
    font-size: 12px;
    font-weight: 1000;
    color: var(--coral);
    text-decoration: none;
}

/* === 404 PAGE === */
.mara-404-subtitle {
    font-size: 12px;
    margin-bottom: 18px;
    text-align: center;
    color: #555;
    font-weight: 600;
}

.mara-404-url {
    font-family: monospace;
    font-size: 13px;
    background: #f4f4f4;
    padding: 6px 10px;
    border-radius: 6px;
    display: block;
    width: fit-content;
    margin: 0 auto 18px auto;
    max-width: 100%;
    word-break: break-all;
    margin-bottom: 18px;
}

/* === SINGLE NAV === */
.mh-nav {
    position: relative;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 10px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(180deg, rgba(72, 77, 109, .95), rgba(72, 77, 109, .88));
    box-shadow: 0 12px 24px rgba(0, 0, 0, .10);
}

.mh-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 11px;
}

.mh-nav a:hover {
    background: rgba(255, 255, 255, .14);
}

.mh-nav__right {
    margin-left: auto;
}

/* ===== MAIN BODY ASSETS ===== */
.mh-body {
    display: grid;
    grid-template-columns: var(--sidebar) 1fr;
    gap: 16px;
    padding-top: 12px;
    padding-bottom: 26px;
}

.mh-sidebar,
.mh-main {
    min-width: 0;
}

.mh-breadcrumbs {
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(72, 77, 109, .16);
    border-radius: 999px;
    padding: 10px 14px;
    margin-bottom: 14px;
    font-weight: 900;
    color: rgba(72, 77, 109, .80);
    display: flex;
    gap: 8px;
    align-items: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, .06);
}

.mh-breadcrumbs a {
    color: rgba(72, 77, 109, .80);
    text-decoration: none;
}

.mh-title {
    margin: 0 0 14px;
    font-size: 34px;
    font-weight: 1500;
    text-align: center;
    text-transform: uppercase;
    color: var(--grape);
    letter-spacing: .2px;
}

.mh-panel h2,
.mh-h2 {
    margin: 18px 0 12px;
    padding: 0 0 10px;

    font-size: 22px;
    font-weight: 1000;
    letter-spacing: .2px;

    color: var(--grape);

    border-bottom: 2px solid rgba(72, 77, 109, .16);
    position: relative;
}

.mh-panel h2::after,
.mh-h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 130px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--coral), var(--sky), var(--green));
}

.mh-panel h3,
.mh-h3 {
    margin: 14px 0 10px;
    padding: 0;

    font-size: 16px;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: rgba(72, 77, 109, .90);

    display: flex;
    align-items: center;
    gap: 10px;
}

.mh-panel h3::before,
.mh-h3::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(238, 99, 82, .85), rgba(8, 178, 227, .75));
    box-shadow: 0 0 0 3px rgba(8, 178, 227, .10);
}

.mh-panel {
    background: var(--page);
    border: 1px solid rgba(72, 77, 109, .14);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    padding: 16px;
}

.mh-lastupdated {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;

    margin: 0 0 14px;
    padding: 8px 12px;

    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;

    color: rgba(72, 77, 109, .82);

    background: rgba(8, 178, 227, .10);
    border: 1px solid rgba(72, 77, 109, .14);
    border-radius: 999px;

    box-shadow: 0 8px 16px rgba(0, 0, 0, .06);
}

.mh-lastupdated span {
    color: var(--coral);
}

/* === LISTS === */
.mh-panel ul,
.mh-panel ol {
    margin: 12px 0;
    padding-left: 0;
}

.mh-list {
    list-style: none;
    margin: 12px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mh-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(72, 77, 109, .92);
    line-height: 1.45;
    font-weight: 700;
}

.mh-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(8, 178, 227, .55), rgba(87, 167, 115, .45));
    box-shadow:
        0 0 0 3px rgba(8, 178, 227, .10),
        0 8px 14px rgba(0, 0, 0, .06);
    border: 1px solid rgba(72, 77, 109, .12);
}

.mh-list li b,
.mh-list li strong {
    color: var(--grape);
    font-weight: 1000;
}

.mh-list li a {
    color: var(--coral);
    font-weight: 1000;
    text-decoration: none;
}

.mh-list li a:hover {
    color: rgba(8, 178, 227, .95);
    text-decoration: underline;
}

.mh-list--boxed {
    gap: 10px;
}

.mh-list--boxed li {
    padding: 12px 12px 12px 40px;
    border-radius: 14px;
    background: rgba(8, 178, 227, .07);
    border: 1px solid rgba(72, 77, 109, .12);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .05);
}

.mh-list--boxed li::before {
    left: 14px;
    top: 14px;
}

.mh-list--compact {
    gap: 6px;
}

.mh-list--compact li {
    padding-left: 24px;
    font-size: 14px;
}

.mh-list--compact li::before {
    width: 10px;
    height: 10px;
    top: 6px;
}

.mh-olist {
    margin: 12px 0;
    padding: 0;
    list-style: none;
    counter-reset: mhStep;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mh-olist li {
    counter-increment: mhStep;
    position: relative;
    padding-left: 44px;
    line-height: 1.45;
    color: rgba(72, 77, 109, .92);
    font-weight: 700;
}

.mh-olist li::before {
    content: counter(mhStep);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 1000;
    color: #fff;
    background: linear-gradient(135deg, rgba(238, 99, 82, .95), rgba(72, 77, 109, .90));
    box-shadow: 0 10px 16px rgba(0, 0, 0, .08);
}

.mh-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mh-faq-item {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(72, 77, 109, .14);
    border-radius: 16px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .06);
    overflow: hidden;
}

.mh-faq-q {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    font-weight: 1000;
    color: var(--grape);
    background: linear-gradient(90deg, rgba(8, 178, 227, .10), rgba(87, 167, 115, .08));
    border-bottom: 1px solid rgba(72, 77, 109, .10);
}

.mh-faq-q::before {
    content: "Q";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 12px;
    font-weight: 1000;
    color: #fff;
    background: linear-gradient(135deg, rgba(8, 178, 227, .95), rgba(87, 167, 115, .88));
    box-shadow: 0 10px 16px rgba(0, 0, 0, .08);
}

.mh-faq-a {
    padding: 12px 14px 14px;
    color: rgba(72, 77, 109, .88);
    line-height: 1.55;
}

.mh-faq-a::before {
    content: "A";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 12px;
    font-weight: 1000;
    color: #fff;
    background: linear-gradient(135deg, rgba(238, 99, 82, .92), rgba(72, 77, 109, .90));
    box-shadow: 0 10px 16px rgba(0, 0, 0, .08);
    margin-right: 10px;
    float: left;
}

/* === LINKS === */
.mh-link {
    color: var(--grape);
    font-weight: 1000;
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 2px;
}

.mh-link::after,
.mh-link--external::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 0;
    bottom: -2px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(238, 99, 82, .85), rgba(8, 178, 227, .75));
    opacity: .35;
    transform: scaleX(.25);
    transform-origin: left;
    transition: transform .15s ease, opacity .15s ease;
}

.mh-link:hover {
    color: var(--coral);
}

.mh-link:hover::after {
    opacity: .9;
    transform: scaleX(1);
}

.mh-link--external span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mh-link--external span::after {
    content: "↗";
    font-weight: 1000;
    opacity: .8;
}

/* === SIDEBAR === */
.mh-sidebox {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(72, 77, 109, .14);
    border-radius: var(--r);
    box-shadow: var(--shadow2);
    overflow: hidden;
    margin-bottom: 14px;
}

.mh-sidebox__title {
    padding: 12px 14px;
    font-weight: 1000;
    color: #fff;
    background: linear-gradient(90deg, rgba(8, 178, 227, .95), rgba(87, 167, 115, .88));
}

.mh-sidebox__body {
    padding: 12px 14px;
    color: rgba(72, 77, 109, .88);
    font-size: 14px;
}

.mh-sidebox__body p {
    margin: 0 0 10px;
}

.mh-sidebox__body a {
    font-weight: 900;
}

.mh-sidelinks {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mh-sidelinks li {
    border-top: 1px solid rgba(72, 77, 109, .10);
}

.mh-sidelinks a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    text-decoration: none;
    color: rgba(72, 77, 109, .92);
    font-weight: 900;
}

.mh-sidelinks a:hover {
    background: rgba(8, 178, 227, .08);
}

.mh-badge {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    gap: 6px;
    font-weight: 1000;
    font-size: 11px;
    padding: 5px 8px;
    border-radius: 999px;
    border: 1px solid rgba(72, 77, 109, .14);
    background: rgba(72, 77, 109, .06);
    color: rgba(72, 77, 109, .90);
}

.mh-badge--live {
    background: rgba(87, 167, 115, .16);
    border-color: rgba(87, 167, 115, .28);
}

.mh-badge--info {
    background: rgba(8, 178, 227, .16);
    border-color: rgba(8, 178, 227, .30);
}

.mh-badge--sale {
    background: rgba(238, 99, 82, .16);
    border-color: rgba(238, 99, 82, .30);
}

/* === BUTTONS === */
.mh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(72, 77, 109, .16);
    text-decoration: none;
    font-weight: 1000;
    color: var(--grape);
    background: rgba(255, 255, 255, .88);

    box-shadow: 0 10px 18px rgba(0, 0, 0, .06);
    transition: transform .12s ease, filter .12s ease;
}

.mh-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.mh-btn--primary {
    color: #fff;
    border-color: rgba(72, 77, 109, .12);
    background: linear-gradient(135deg, rgba(72, 77, 109, .92), rgba(8, 178, 227, .78));
}

.mh-btn--outline {
    background: rgba(255, 255, 255, .86);
    border-color: rgba(238, 99, 82, .28);
}

.mh-btn--soft {
    background: rgba(8, 178, 227, .10);
    border-color: rgba(8, 178, 227, .24);
}

.mh-btnstack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.mh-btnrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.mh-usercard {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(72, 77, 109, .14);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 18px rgba(0, 0, 0, .06);
}

.mh-usercard__avatar {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(72, 77, 109, .16);
    background: rgba(72, 77, 109, .06);
}

.mh-usercard__profile {
    margin-top: 6px;
    justify-content: center;
}

.mh-usercard__name {
    font-weight: 1000;
    color: var(--grape);
    font-size: 15px;
    line-height: 1.2;
}

.mh-usercard__meta {
    margin-top: 4px;
    color: rgba(72, 77, 109, .72);
    font-weight: 800;
    font-size: 12px;
}

.mh-usercard__stats {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    color: rgba(72, 77, 109, .82);
    font-weight: 800;
}

.mh-usercard__stats span {
    color: rgba(72, 77, 109, .72);
    font-weight: 800;
}

.mh-usercard__stats b {
    color: var(--coral);
    font-weight: 1000;
}

/* === FOOTER === */
.mh-footer {
    margin-top: 26px;
    background:
        linear-gradient(180deg, rgba(72, 77, 109, .10), rgba(72, 77, 109, .04));
    border-top: 1px solid rgba(72, 77, 109, .12);
}

.mh-footer__inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 22px 14px 16px;
}

.mh-footer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(72, 77, 109, .14);
    border-radius: var(--r);
    box-shadow: var(--shadow2);
}

.mh-footcol__title {
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .10em;
    color: rgba(72, 77, 109, .90);
    margin-bottom: 10px;
}

.mh-footlinks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mh-footlinks a {
    text-decoration: none;
    color: rgba(72, 77, 109, .86);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mh-footlinks a::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(8, 178, 227, .35);
    box-shadow: 0 0 0 2px rgba(8, 178, 227, .10);
}

.mh-footlinks a:hover {
    color: var(--coral);
}

.mh-footlinks a:hover::before {
    background: rgba(238, 99, 82, .45);
    box-shadow: 0 0 0 2px rgba(238, 99, 82, .12);
}

.mh-footactions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}

.mh-footbtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(72, 77, 109, .16);
    text-decoration: none;
    font-weight: 1000;
    letter-spacing: .2px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, .08);
    transition: transform .12s ease, filter .12s ease;
}

.mh-footbtn:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.mh-footbtn--marapets {
    background: linear-gradient(135deg, rgba(87, 167, 115, .95), rgba(8, 178, 227, .88));
    color: #fff;
    border-color: rgba(8, 178, 227, .25);
}

.mh-footbtn--top {
    background: linear-gradient(135deg, rgba(238, 99, 82, .92), rgba(72, 77, 109, .90));
    color: #fff;
    border-color: rgba(238, 99, 82, .24);
}

.mh-footfuture {
    min-height: 58px;
    border-radius: 14px;
    border: 1px dashed rgba(72, 77, 109, .18);
    background: rgba(72, 77, 109, .04);
}

.mh-footbottom {
    margin-top: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .12em;
    color: rgba(72, 77, 109, .78);
    text-transform: uppercase;
}

.mh-sep {
    display: inline-block;
    margin: 0 10px;
    color: rgba(8, 178, 227, .85);
}

/* === SEARCH PAGE === */
.mh-search-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.mh-searchpage {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
}

.mh-searchpage input {
    height: 44px;
    width: 100%;
    line-height: 44px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .12);
    box-sizing: border-box;
}

.mh-searchpage button {
    height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mh-search-result {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, .10);
    background: rgba(255, 255, 255, .92);
    text-decoration: none;
}

.mh-search-thumb {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .10);
    object-fit: cover;
}

.mh-search-top {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.mh-search-title {
    font-weight: 1000;
    color: var(--grape);
}

.mh-search-snippet {
    margin-top: 6px;
    color: rgba(0, 0, 0, .65);
    font-weight: 700;
    font-size: 12px;
}

.mh-pill {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(8, 178, 227, .10);
    border: 1px solid rgba(8, 178, 227, .18);
    font-weight: 1000;
    font-size: 11px;
}

.mh-filters {
    margin-top: 12px;
}

.mh-filters__row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.mh-input,
.mh-select {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(72, 77, 109, .18);
    background: rgba(255, 255, 255, .92);
    font-weight: 800;
}

.mh-card {
    background: rgba(255, 255, 255, .90);
    border: 1px solid rgba(72, 77, 109, .12);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow2);
}

.mh-table-wrap {
    width: 100%;
    overflow: auto;
}

.mh-table {
    width: 100%;
    border-collapse: collapse;
}

.mh-table thead th {
    text-align: left;
    padding: 12px;
    font-weight: 1000;
    color: var(--grape);
    border-bottom: 1px solid rgba(72, 77, 109, .14);
}

.mh-table tbody td {
    padding: 12px;
    border-top: 1px solid rgba(72, 77, 109, .10);
    vertical-align: top;
}

.mh-thumb {
    object-fit: contain;
    border: 1px solid rgba(72, 77, 109, .12);
    background: rgba(255, 255, 255, .70);
}

.mh-table a,
.mh-pager a {
    color: var(--grape);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(8, 178, 227, .45);
    text-underline-offset: 3px;
    transition: transform .08s ease, background .12s ease, text-decoration-color .12s ease, color .12s ease;
}

.mh-table a:hover,
.mh-pager a:hover {
    color: #1f2a4a;
    text-decoration-color: rgba(238, 99, 82, .55);
}

.mh-table thead th:nth-child(2),
.mh-table tbody td:nth-child(2) {
    text-align: center;
}

.mh-table tbody td:nth-child(2) .mh-badge--grape {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 6px auto 0;
}

/* Medicine Table */
.mh-med-searchbar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.mh-med-searchlabel {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--grape);
}

.mh-med-searchwrap {
    position: relative;
    flex: 1 1 280px;
    min-width: 240px;
}

.mh-med-searchinput {
    width: 100%;
    height: 46px;
    padding: 0 44px 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(72, 77, 109, .14);
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,250,252,.96) 100%);
    color: var(--grape);
    font-size: 14px;
    font-weight: 700;
    outline: none;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 4px 10px rgba(72, 77, 109, .05);
    transition: border-color .15s ease, box-shadow .15s ease, transform .08s ease;
}

.mh-med-searchinput::placeholder {
    color: rgba(72, 77, 109, .60);
    font-weight: 600;
}

.mh-med-searchinput:focus {
    border-color: rgba(8, 178, 227, .45);
    box-shadow: 0 0 0 4px rgba(8, 178, 227, .10), inset 0 1px 0 rgba(255,255,255,.75);
}

.mh-med-searchicon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--sky);
    font-size: 16px;
    pointer-events: none;
}

.mh-med-count {
    font-size: 13px;
    font-weight: 800;
    color: var(--grape);
    background: rgba(8, 178, 227, .08);
    border: 1px solid rgba(8, 178, 227, .12);
    border-radius: 999px;
    padding: 9px 12px;
    white-space: nowrap;
}

.mh-med-table-wrap {
    width: 100%;
    overflow: auto;
}

.mh-med-table {
    width: 100%;
    border-collapse: collapse;
}

.mh-med-table thead th {
    text-align: left;
    padding: 12px;
    font-weight: 1000;
    color: var(--grape);
    border-bottom: 1px solid rgba(72, 77, 109, .14);
}

.mh-med-table tbody td {
    padding: 12px;
    border-top: 1px solid rgba(72, 77, 109, .10);
    vertical-align: top;
}

.mh-med-thumb {
    display: block;
    margin: 0 auto 8px;
    object-fit: contain;
    background: rgba(255, 255, 255, .70);
    border-radius: 12px;
    padding: 4px;
}

.mh-med-table a {
    color: var(--grape);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(8, 178, 227, .45);
    text-underline-offset: 3px;
    transition: transform .08s ease, background .12s ease, text-decoration-color .12s ease, color .12s ease;
}

.mh-med-table a:hover {
    color: #1f2a4a;
    text-decoration-color: rgba(238, 99, 82, .55);
}

.mh-med-table thead th:nth-child(1),
.mh-med-table tbody td:nth-child(1),
.mh-med-table thead th:nth-child(2),
.mh-med-table tbody td:nth-child(2) {
    text-align: center;
}

.mh-med-itemname {
    display: inline-block;
    margin-top: 2px;
}

.mh-med-empty {
    display: none;
}

.mh-med-empty td {
    text-align: center !important;
    padding: 18px 12px !important;
    color: rgba(72, 77, 109, .76);
    font-weight: 700;
    font-style: italic;
}

@media (max-width: 640px) {
    .mh-med-searchbar {
        align-items: stretch;
    }

    .mh-med-count {
        width: 100%;
        text-align: center;
    }

    .mh-med-table thead th,
    .mh-med-table tbody td {
        padding: 10px;
    }
}

.mh-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 6px;
    text-transform: uppercase;
}

.mh-badge--coral {
    background: rgba(238, 99, 82, .14);
    border-color: rgba(238, 99, 82, .25);
    color: #7a1f15;
}

.mh-badge--violet {
    background: #CFBDDE;
    border-color: #AE90C7;
    color: #472E5B;
}

.mh-badge--beige {
    background: #EFDFBB;
    border-color: #D2A741;
    color: #4A3911;
}

.mh-badge--sky {
    background: rgba(8, 178, 227, .14);
    border-color: rgba(8, 178, 227, .25);
    color: #084a5c;
}

.mh-badge--green {
    background: rgba(87, 167, 115, .14);
    border-color: rgba(87, 167, 115, .25);
    color: #1f4e34;
}

.mh-badge--grape {
    background: #1f2a4a;
    border-color: rgba(72, 77, 109, .35);
    color: #fff;
}

.mh-badge--soft {
    background: rgba(192, 192, 192, .22);
    border-color: rgba(72, 77, 109, .12);
    color: var(--grape);
}

.mh-pager {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
}

.mh-pager__btn {
    padding: 8px 12px;
    border-radius: 14px;
    border: 1px solid rgba(72, 77, 109, .16);
    background: rgba(255, 255, 255, .75);
    font-weight: 1000;
    text-decoration: none;
}

.mh-pager__btn.is-disabled {
    opacity: .45;
    pointer-events: none;
}

.mh-pager__meta {
    font-weight: 900;
    color: rgba(72, 77, 109, .75);
}

.mh-avatar-hero {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.mh-avatar-hero__img {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    border: 1px solid rgba(72, 77, 109, .12);
    background: rgba(255, 255, 255, .7);
    object-fit: contain;
}

.mh-avatar-hero__meta {
    flex: 1;
}

/* === GUIDES === */
.mh-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    width: 100%;
}

.mh-mini-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(72, 77, 109, .14);
    border-radius: 18px;
    padding: 14px;
    text-decoration: none;
    box-shadow: var(--shadow2);
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mh-mini-card:hover {
    transform: translateY(-2px);
    border-color: rgba(8, 178, 227, .35);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .10);
}

.mh-mini-card__img {
    width: 100%;
    border-radius: 14px;
    background: rgba(192, 192, 192, .20);
    border: 1px solid rgba(72, 77, 109, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mh-mini-card__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.mh-mini-card__title {
    margin-top: 10px;
    font-weight: 1000;
    text-align: center;
    color: rgba(103, 152, 192, .95);
    text-transform: none;
    letter-spacing: .2px;
}

.mh-mini-card:hover .mh-mini-card__title {
    color: var(--grape);
}

/* === ACCOUNT DROPDOWN === */
.mh-topacct {
    position: relative;
    z-index: 3000;
}

.mh-topacct__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .10);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .08);
    cursor: pointer;
    font: inherit;
}

.mh-topacct__avatar {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, .12);
    background: rgba(0, 0, 0, .06);
}

.mh-topacct__text {
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mh-topacct__chev {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid rgba(0, 0, 0, .55);
}

.mh-topacct__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 220px;

    display: none;
    z-index: 999999;

    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 14px;
    box-shadow: 0 18px 30px rgba(0, 0, 0, .18);
    padding: 8px;
}

.mh-topacct__menu a {
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 900;
    color: var(--text);
}

.mh-topacct__menu a:hover {
    background: rgba(8, 178, 227, .10);
}

.mh-topacct__danger {
    color: #8f1d1f !important;
}

.mh-topacct.is-open .mh-topacct__menu {
    display: block;
}

/* === AVATARS === */
.mh-filters__row {
    display: grid;
    gap: 10px;
    width: 100%;
    margin-bottom: 5px;
}

.mh-filters__row--top {
    grid-template-columns: 1fr 260px 140px;
    align-items: center;
}

.mh-filters__row--mid {
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.mh-filters__row--bot {
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.mh-filters .mh-input,
.mh-filters .mh-select {
    width: 100%;
}

.mh-filters .mh-btn {
    width: 100%;
    justify-content: center;
}

.mh-count {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: rgba(72, 77, 109, .75);
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
    :root {
        --sidebar: 320px;
    }
}

@media (max-width: 980px) {
    .mh-body {
        grid-template-columns: 1fr;
    }

    .mh-search input {
        width: 48vw;
    }

    .mh-footer__grid {
        grid-template-columns: 1fr;
    }

    .mh-footactions {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .mh-masthead {
        flex-direction: column;
        align-items: flex-start;
    }

    .mh-tools {
        width: 100%;
        justify-content: flex-start;
    }

    .mh-search {
        width: 100%;
    }

    .mh-search input {
        width: 100%;
    }

    .mh-nav {
        flex-wrap: wrap;
        border-radius: 16px;
    }

    .mh-brand__img {
        height: 54px;
    }
}

@media (max-width: 520px) {
    .mh-footactions {
        grid-template-columns: 1fr;
    }
}

/* Current Events */
.event-pill {
    --circle-size: 80px;
    --gap: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    text-align: center;
}

.event-icon {
    position: relative;
    width: var(--circle-size);
    height: var(--circle-size);
}

.event-icon .circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--circle-bg, #2d3142);
}

.event-icon .overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.event-title {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--title-bg, #ef8354);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
    margin-top: -10px;
}

.event-dates {
    margin-top: 6px;
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 420px) {
    .event-title {
        font-size: 14px;
        padding: 7px 12px;
    }

    .event-dates {
        font-size: 9px;
    }
}

.mh-sidebox__body a {
  text-decoration: none;
}

.mh-sidebox__body a:hover,
.mh-sidebox__body a:focus,
.mh-sidebox__body a:active,
.mh-sidebox__body a:visited {
  color: inherit;
  text-decoration: none;
}

/* Goals - Pets */
.goal-section {
    margin-bottom: 40px;
    padding: 10px 0;
    border-top: 3px solid var(--grape);
}

.goal-section h2 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--grape);
}

/* GRID */
.pet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

/* PET ITEM */
.pet-item {
    text-align: center;
}

.pet-item img {
    width: 100px;
    height: auto;
    margin-bottom: 8px;
}

.pet-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.pet-level {
    font-size: 13px;
    color: var(--slate);
    margin-top: 3px;
}

/* Extra Requirement */
.extra-requirement {
    margin-top: 20px;
    padding: 10px 12px;
    border-left: 3px solid var(--sky);
    font-size: 14px;
    color: #444;
    background: #f8f8f8;
}

.pet-item {
    text-align: center;
}

.pet-image-wrapper {
    position: relative;
    display: inline-block;
}

.pet-item img {
    width: 100px;
    height: auto;
    display: block;
}

.pet-level-badge {
    position: relative;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grape);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 10px;
    letter-spacing: 0.5px;
}

.pet-name {
    margin-top: 10px;
    font-weight: 600;
    font-size: 14px;
}

.event-pill .event-title {
    color: var(--title-color, inherit);
}

/* Blockquote */
.mh-blockquote {
    position: relative;
    margin: 20px 0;
    padding: 28px 24px 22px;
    background: linear-gradient(180deg, #fff7f6 0%, #fff 100%);
    border: 1px solid #f2c7c1;
    border-radius: 18px;
    color: #6b5560;
    font-size: 15px;
    line-height: 1.8;
}

.mh-blockquote::before {
    content: "❝";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);

    width: 42px;
    height: 42px;
    border-radius: 50%;

    background: linear-gradient(135deg, var(--coral), #f59b90);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 40px;
    line-height: 1;
    padding-top: 13px;

    box-shadow: 0 4px 12px rgba(238, 99, 82, 0.25);
}

.mh-blockquote p {
    margin: 0 0 14px;
}

.mh-blockquote p:last-child {
    margin-bottom: 0;
}

.mh-blockquote strong {
    color: var(--grape);
    font-weight: 700;
}

.mh-blockquote em {
    color: var(--coral);
    font-style: italic;
}

.mh-blockquote cite {
    display: block;
    margin-top: 14px;
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--sky);
}

/* PRIZE TABLE */
.mh-prize-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 12px;
    margin: 20px 0;
}

.mh-prize-table td {
    width: 25%;
    min-width: 140px;
    vertical-align: top;
    border: 1px solid #dce8ef;
    border-radius: 18px;
    padding: 14px 10px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mh-prize-table td:hover {
    transform: translateY(-3px);
}

.mh-prize-table img {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    object-fit: contain;
}

.mh-prize-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--grape);
    text-align: center;
}

.mh-prize-name a {
    color: inherit;
    text-decoration: none;
}

.mh-prize-name a:hover {
    color: var(--coral);
}

@media (max-width: 900px) {

    .mh-prize-table,
    .mh-prize-table tbody,
    .mh-prize-table tr {
        display: block;
        width: 100%;
    }

    .mh-prize-table td {
        display: inline-block;
        width: calc(50% - 12px);
        margin: 0 6px 12px;
    }
}

@media (max-width: 520px) {
    .mh-blockquote {
        padding: 24px 18px 18px;
        font-size: 14px;
    }

    .mh-prize-table td {
        display: block;
        width: 100%;
        margin: 0 0 12px;
    }
}

/* Guess the Flag */
.mh-flag-title {
    margin: 0 0 10px;
    text-align: center;
    color: var(--sky);
    font-size: 22px;
    font-weight: 800;
}

.mh-flag-subtext {
    text-align: center;
    margin: 0 0 20px;
    color: #333;
}

.mh-flag-question-box {
    max-width: 620px;
    margin: 0 auto;
    border: 1px solid #484D6D;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    background: #fff;
}

.mh-flag-question-box h3 {
    margin-top: 0;
    margin-bottom: 18px;
    color: var(--grape);
}

.mh-flag-options {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.mh-flag-option {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.mh-flag-option:hover {
    transform: translateY(-3px);
}

.mh-flag-option img {
    object-fit: contain;
    display: block;
}

.mh-flag-feedback {
    min-height: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}

.mh-flag-feedback.is-correct {
    color: #57A773;
}

.mh-flag-feedback.is-wrong {
    color: #EE6352;
}

.mh-flag-btn {
    display: inline-block;
    border: 0;
    border-radius: 10px;
    background: #566684;
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mh-flag-btn:hover {
    background: #475775;
    transform: translateY(-1px);
}

.mh-search-wrap,
.mh-url-hunter-bar {
    max-width: 620px;
    margin: 0 auto 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.mh-search-input {
    flex: 1 1 320px;
    min-width: 220px;
    border: 1px solid #484D6D;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--grape);
    background: #fff;
}

.mh-search-input:focus {
    outline: none;
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(157, 186, 242, 0.15);
}

.mh-flag-count {
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--grape);
}

.mh-url-result-card {
    max-width: 320px;
    margin: 14px auto 0;
    border: 1px solid #dce8ef;
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    background: #fff;
}

.mh-url-result-card img {
    display: block;
    object-fit: contain;
    margin: 0 auto 10px;
}

.mh-url-result-card a {
    color: inherit;
    text-decoration: none;
}

.mh-url-result-card a:hover {
    color: var(--coral);
}

.mh-url-result-error {
    text-align: center;
    font-weight: 700;
    color: #EE6352;
    margin-top: 10px;
}

.mh-no-results {
    text-align: center;
    font-weight: 700;
    color: var(--grape);
    margin-top: 10px;
}

@media (max-width: 520px) {
    .mh-flag-option img {
        width: 78px;
        height: 78px;
    }

    .mh-flag-title {
        font-size: 20px;
    }
}

/* Microwave */
.mh-recipe-book {
    margin: 20px 0 30px;
}

.mh-recipe-book-header {
    text-align: center;
    margin-bottom: 22px;
}

.mh-recipe-book-header h1 {
    margin: 0 0 10px;
    font-size: 38px;
    line-height: 1.1;
    color: #7fa6ec;
    font-weight: 900;
}

.mh-recipe-book-header p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.65;
    color: var(--grape);
}

.mh-recipe-controls {
    display: grid;
    grid-template-columns: minmax(240px, 1.8fr) minmax(180px, 0.9fr) auto;
    gap: 14px;
    align-items: end;
    margin: 0 0 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #dce8ef;
    border-radius: 22px;
    box-shadow: 0 6px 16px rgba(72, 77, 109, 0.05);
}

.mh-recipe-control label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #68848f;
}

.mh-recipe-control input[type="text"],
.mh-recipe-control select {
    width: 100%;
    height: 46px;
    border: 1px solid #dce8ef;
    border-radius: 14px;
    background: #fff;
    padding: 0 14px;
    font-size: 14px;
    color: var(--grape);
    box-sizing: border-box;
}

.mh-recipe-control input[type="text"]:focus,
.mh-recipe-control select:focus {
    outline: none;
    border-color: #91c7d3;
    box-shadow: 0 0 0 3px rgba(145, 199, 211, 0.15);
}

.mh-recipe-control-check {
    display: flex;
    align-items: center;
    min-height: 46px;
}

.mh-recipe-checkbox {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    color: var(--grape) !important;
    cursor: pointer;
}

.mh-recipe-checkbox input {
    margin: 0;
}

.mh-recipe-results {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 700;
    color: #56707a;
}

.mh-recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    gap: 18px;
}

.mh-recipe-card {
    position: relative;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #dce8ef;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 8px 18px rgba(72, 77, 109, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    overflow: hidden;
}

.mh-recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(72, 77, 109, 0.10);
    border-color: #b8d7df;
}

.mh-recipe-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #EE6352, #08B2E3, #57A773, #7077a5);
}

.mh-recipe-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.mh-recipe-thumb {
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f8fbfd);
    border: 1px solid #e4edf2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-sizing: border-box;
}

.mh-recipe-thumb img {
    object-fit: contain;
    display: block;
}

.mh-recipe-main {
    min-width: 0;
    flex: 1;
}

.mh-recipe-name {
    display: inline-block;
    color: var(--grape);
    text-decoration: none;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 8px;
}

.mh-recipe-name:hover {
    color: var(--coral);
}

.mh-recipe-body {
    display: grid;
    gap: 12px;
}

.mh-recipe-box {
    border: 1px solid #edf2f5;
    background: #fcfeff;
    border-radius: 16px;
    padding: 12px 13px;
}

.mh-recipe-box-label {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7d919a;
}

.mh-recipe-box-value {
    color: var(--grape);
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
}

.mh-recipe-avatar {
    margin-top: 2px;
    border-radius: 18px;
    border: 1px solid var(--green);
    background: linear-gradient(180deg, #cfe2d6, #c9e7d3);
    padding: 12px;
    text-align: center;
}

.mh-recipe-avatar-title {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grape);
}

.mh-recipe-avatar img {
    object-fit: contain;
    display: block;
    margin: 0 auto 8px;
}

.mh-recipe-avatar-name {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
    color: var(--grape);
}

.mh-recipe-empty {
    grid-column: 1 / -1;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #dce8ef;
    border-radius: 22px;
    padding: 28px 20px;
    color: var(--grape);
    font-size: 16px;
    font-weight: 700;
}

/* Easter Egg Hunts */
.eeh-search input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.eeh-level {
  margin-top: 20px;
}

.mh-main .eeh-level-title {
  font-size: 22px !important;
  font-weight: 800 !important;
  margin: 10px 0 18px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  position: relative;
  letter-spacing: 0.5px;
}

.mh-main .eeh-level-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #ef4444, #48bdbd);
  border-radius: 2px;
}

.eeh-section {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 10px;
}

.eeh-btn,
.eeh-btn2 {
  background: #48bdbd;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.eeh-btn:hover,
.eeh-btn2:hover {
  background: #2c9c9c;
}

.eeh-btn:active,
.eeh-btn2:active {
  transform: translateY(1px);
}

.hidden {
  display: none;
}

.eeh-prizes {
  display: flex;
  gap: 10px;
}

.eeh-prize {
  position: relative;
}

.eeh-prize img {
  width: 80px;
  height: 80px;
}

.eeh-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
  flex-wrap: wrap;
}

.eeh-page,
.eeh-pagination a {
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(0,0,0,0.05);
  text-decoration: none;
  font-size: 12px;
  color: #444;
  min-width: 32px;
  text-align: center;
}

.eeh-page.active {
  background: #48bdbd;
  color: #fff;
  font-weight: 600;
}

.eeh-pagination a:first-child,
.eeh-pagination a:last-child {
  font-weight: bold;
  font-size: 14px;
  padding: 6px 12px;
}

.eeh-pagination a:hover {
  background: rgba(0,0,0,0.1);
}

.eeh-pagination .disabled {
  opacity: .4;
  pointer-events: none;
}

.dots {
  padding: 0 6px;
  opacity: 0.6;
}

.eeh-prize {
  text-align: center;
  width: 90px;
}

.eeh-prizes {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.eeh-prize-img {
  position: relative;
  width: 80px;
  height: 80px;
}

.eeh-prize-img img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.eeh-prize-img .eeh-shield {
  position: absolute !important;
  top: 2px;
  right: 2px;

  width: 35px !important;
  height: 35px !important;

  max-width: none !important; /* 🔥 overrides theme */
  object-fit: contain;

  z-index: 2;
}

.eeh-shield {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 25px;
}

.eeh-prize-name {
  font-size: 12px;
  margin-top: 5px;
}

.eeh-clue {
  white-space: pre-line;
  line-height: 1.6;
}

.eeh-level-title {
  font-size: 20px;
  font-weight: 800;
  margin: 10px 0 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0,0,0,0.08);
  position: relative;
}

.eeh-level-title span {
  position: relative;
}

.eeh-level-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #ef4444, #48bdbd);
  border-radius: 2px;
}

.eeh-level a {
  color: #48bdbd;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(72,189,189,0.3);
  transition: all 0.15s ease;
}

.eeh-level a:hover {
  color: #2c9c9c;
  border-bottom-color: #2c9c9c;
}

.eeh-container {
  max-width: 720px;
  margin: 0 auto;
}

.eeh-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #666;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.eeh-search {
  position: relative;
}

.eeh-results {
  position: absolute;
  width: 800px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  margin-top: 5px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  z-index: 50;
  display: none;
}

.eeh-result-item {
  padding: 8px 12px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.eeh-result-item:hover {
  background: rgba(0,0,0,0.05);
}

.eeh-result-type {
  font-size: 11px;
  opacity: 0.6;
}

@media (max-width: 860px) {
    .mh-recipe-controls {
        grid-template-columns: 1fr;
    }

    .mh-recipe-control-check {
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .mh-recipe-book-header h1 {
        font-size: 30px;
    }

    .mh-recipe-top {
        flex-direction: column;
        text-align: center;
    }

    .mh-recipe-main {
        width: 100%;
    }

    .mh-recipe-name {
        font-size: 22px;
    }
}

/* NEWS POSTS */
.mh-news-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mh-news-card {
    background: rgba(255,255,255,.95);
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(72, 77, 109, 0.15);
}

/* HEADER */
.mh-news-header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(72, 77, 109, 0.04);
    padding: 10px 12px;
    border-radius: 12px;
}

.mh-news-avatar {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
}

.mh-news-title-wrap {
    flex: 1;
    text-align: center;
}

.mh-news-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--grape);
    text-decoration: none;
}

.mh-news-title:hover {
    text-decoration: underline;
}

.mh-news-meta {
    font-size: 11px;
    margin-top: 4px;
    color: #888;
    letter-spacing: 1px;
}

.mh-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 15px 0;
}

.mh-pagination a {
    padding: 6px 10px;
    border-radius: 8px;
    background: #f1f1f1;
    text-decoration: none;
}

.mh-pagination a.active {
    background: var(--grape);
    color: #fff;
}

/* CONTENT */
.mh-news-content {
    margin-top: 15px;
    line-height: 1.6;
}

/* CONTENT STYLING */
.mh-news-content b { font-weight: 700; }
.mh-news-content i { font-style: italic; }

.mh-news-content a {
    color: var(--grape);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(72,77,109,0.2);
    transition: all 0.2s ease;
}

.mh-news-content a:hover {
    color: #c25425;
    border-bottom: 1px solid #c25425;
}

.mh-news-content blockquote {
    border-left: 4px solid var(--grape);
    padding-left: 12px;
    margin: 12px 0;
    opacity: 0.8;
}

.mh-news-content ul,
.mh-news-content ol {
    margin: 12px 0;
    padding-left: 20px;
}

.mh-news-content li {
    margin-bottom: 6px;
    line-height: 1.5;
}

.mh-news-content ul li::marker {
    color: var(--grape);
}

/* FOOTER */
.mh-news-footer {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mh-news-taxonomy {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.mh-news-category,
.mh-news-tag {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 8px;
    text-decoration: none;
}

.mh-news-category {
    background: #ee6352;
    color: #fff;
}

.mh-news-tag {
    background: #f1f1f1;
    color: #555;
}

/* LIKE BUTTON */
.mh-news-like {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: #999;
    transition: 0.2s;
}

.mh-news-like:hover {
    color: #e63946;
}

.mh-news-like.liked {
    color: #e63946;
}

/* RELATED */
.mh-related-news {
    margin-top: 20px;
}

.mh-related-title {
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--grape);
}

.mh-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.mh-related-card {
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(72,77,109,0.15);
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.mh-related-card:hover {
    background: rgba(72,77,109,0.05);
}

/* BUTTON */
.mh-news-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 12px;
    background: var(--grape);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.mh-news-btn:hover {
    background: #c25425;
}

.mh-news-more {
    text-align: center;
    margin-top: 10px;
}

/* NEWS - AVATARS, EXPERIENCE, ITEMS */
.mh-embed {
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(72,77,109,0.15);
    border-radius: 12px;
    padding: 10px;
    background: rgba(255,255,255,0.9);
    margin: 10px 0;
}

.mh-embed img {
    border-radius: 10px;
    object-fit: cover;
}

.mh-avatar-box img {
    width: 50px;
    height: 50px;
}

.mh-embed-content {
    flex: 1;
}

.mh-embed-title {
    font-weight: 700;
    color: var(--grape);
    text-decoration: none;
}

.mh-embed-title:hover {
    text-decoration: underline;
}

.mh-embed-desc {
    font-size: 13px;
    opacity: 0.8;
}

.mh-exp-box img {
    width: 80px;
    height: 80px;
}

.mh-exp-preview-btn {
    padding: 6px 10px;
    border-radius: 8px;
    background: var(--grape);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 12px;
}

.mh-exp-preview-btn:hover {
    background: #c25425;
}

.mh-item-box {
    width: 80px;
    text-align: center;
    display: inline-block;
    margin: 6px;
}

.mh-item-box img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

.mh-item-name {
    font-size: 12px;
    margin-top: 4px;
    color: #333;
}

.mh-item-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mh-preview-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.mh-preview-inner {
    position: relative;
}

.mh-preview-inner img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 12px;
}

.mh-preview-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    border-radius: 50%;
    padding: 5px 10px;
    cursor: pointer;
}

/* DNA Minipets */
.mh-dna-combiner {
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:center;
  margin-top:10px;
}

.mh-dna-plus {
  font-weight:800;
  font-size:18px;
}

.mh-dna-result {
  text-align:center;
  margin-top:15px;
}

.mh-dna-result-wrap img {
  width:80px;
}

.mh-dna-grid {
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap:12px;
}

.mh-dna-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(72, 77, 109, 0.08);
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  transition: all 0.18s ease;
}

.mh-dna-card::after {
  content: '';
  display: block;
  height: 3px;
  width: 40%;
  margin: 8px auto 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #6bceee, #d9b6fd);
  opacity: 0.4;
}

.mh-dna-img {
  width:80px;
  margin:8px 0;
}

.mh-dna-result-name {
  font-weight:700;
  color:var(--grape);
}

.mh-dna-parents {
  font-size:13px;
  opacity:.8;
}

.mh-dna-toolbar {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  margin-bottom:12px;
  flex-wrap:wrap;
}

.mh-dna-toolbar .mh-input {
  max-width:240px;
}

.mh-dna-count {
  font-weight:700;
  color:var(--grape);
  background:#fff;
  padding:6px 12px;
  border-radius:10px;
  box-shadow: var(--shadow1);
}

/* SELECTS */
.mh-dna-combiner select {
  appearance: none;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.1);
  background: #fff;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow1);
}

.mh-dna-result-wrap {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}

.mh-dna-result-title {
  font-weight:800;
  color:var(--grape);
}

.dna-parent {
  width:40px;
  cursor:pointer;
  transition:.2s;
}

.dna-parent:hover {
  transform:scale(1.1);
  filter:brightness(1.1);
}

/* Marapets News */
.mh-news-switch {
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom:15px;
}

.mh-news-switch a {
  padding:8px 16px;
  border-radius:999px;
  background:#f3f4f6;
  font-weight:700;
  text-decoration:none;
  color:#333;
  border:1px solid rgba(0,0,0,.08);
  transition:.2s;
}

.mh-news-switch a:hover {
  background:#e5e7eb;
}

.mh-news-switch a.active {
  background:#48bdbd;
  color:#fff;
}

/* NEWBIE GUIDE */
.mh-guide {
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* START HERE */
.mh-guide-start {
  background:#f8fdfd;
  border:2px solid #48bdbd;
  border-radius:16px;
  padding:16px;
}

.mh-guide-steps {
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
  gap:10px;
}

.mh-step {
  background:#48bdbd;
  color:#fff;
  border:none;
  padding:8px 14px;
  border-radius:999px;
  font-weight:600;
  cursor:pointer;
  transition:.2s;
}

.mh-step:hover {
  background:#3aa9a9;
}

/* GRID */
.mh-guide-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(120px,1fr));
  gap:15px;
}

.mh-guide-card {
  background:#f6f6f6;
  border:2px solid #48bdbd;
  border-radius:16px;
  text-align:center;
  padding:12px;
  cursor:pointer;
  transition:.2s;
}

.mh-guide-card img {
  width:70px;
  height:70px;
  object-fit:contain;
}

.mh-guide-card span {
  display:block;
  margin-top:6px;
  font-weight:600;
}

.mh-guide-card:hover {
  transform:translateY(-4px);
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* CONTENT */
.mh-guide-content {
  background:#fff;
  border:2px solid #ddd;
  border-radius:16px;
  padding:20px;
  min-height:200px;
}

.mh-guide-placeholder {
  text-align:center;
  color:#888;
}

/* Avatars */
.mh-avatar-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
}

.mh-own-btn{
  border:none;
  border-radius:999px;
  padding:10px 18px;
  font-weight:700;
  cursor:pointer;
  transition:.2s ease;
  background:linear-gradient(135deg,#62c8ff,#6ed8a0);
  color:#fff;
}

.mh-own-btn.is-owned{
  background:linear-gradient(135deg,#777,#55b67a);
}

.mh-avatar-view-wrap{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.mh-avatar-view-hero{
  background: rgba(8, 178, 227, .10);
  border-radius:22px;
  padding:24px;
  display:grid;
  grid-template-columns:120px 1fr;
  gap:24px;
}

.mh-avatar-view-image-area{
  display:flex;
  align-items:center;
  justify-content:center;
}

.mh-avatar-view-image{
  width:50px;
  height:50px;
  image-rendering:auto;
}

.mh-avatar-view-main{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.mh-avatar-view-heading{
  margin:0;
  font-size:38px;
  line-height:1;
  font-weight:800;
  color:#2f3352;
}

.mh-avatar-view-release{
  margin-top:10px;
  display:flex;
  align-items:center;
  gap:8px;
  color:#6f748d;
  font-size:14px;
  font-weight:600;
}

.mh-avatar-view-release i{
  font-size:18px;
  color:#7c6df2;
}

.mh-avatar-view-flags{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.mh-avatar-view-categories{
  background:#fff;
  border-radius:18px;
  padding:18px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.mh-avatar-pill{
  background:#f1ebff;
  color:#6848d3;
  border-radius:999px;
  padding:8px 14px;
  font-size:13px;
  font-weight:700;
}

.mh-avatar-view-solution-box{
  background:#fff;
  border-radius:22px;
  padding:22px;
}

.mh-avatar-view-section-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:26px;
  font-weight:800;
  color:#2f3352;
  margin-bottom:16px;
}

.mh-avatar-view-section-title i{
  color:#7b5df5;
  font-size:28px;
}

.mh-avatar-view-solution-content{
  line-height:1.8;
  font-size:15px;
  color:#444;
}

.mh-avatar-view-solution-content a{
  color:#6b4cff;
  font-weight:700;
  text-decoration:none;
  border-bottom:2px solid rgba(107,76,255,.15);
  transition:.15s ease;
}

.mh-avatar-view-solution-content a:hover{
  color:#4f38d4;
  border-color:#4f38d4;
}

@media (max-width: 700px){

  .mh-avatar-view-hero{
    grid-template-columns:1fr;
    text-align:center;
  }

  .mh-avatar-view-image-area{
    margin-bottom:10px;
  }

}

/* TIP BOX */
.mh-tip {
  background:#e8fbf9;
  border-left:4px solid #48bdbd;
  padding:10px;
  border-radius:8px;
  margin-top:10px;
}