/* ======================================================
   HABLUXE HOMEPAGE DASHBOARD
   Loaded only by index.blade.php
   ====================================================== */

.habbo-dashboard {
    width: 100%;
    margin-top: 1.25rem;
}

/* Statistics */

.habbo-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
    margin-bottom: 1.25rem;
}

.habbo-stat-card {
    display: flex;
    align-items: center;
    gap: .85rem;
    min-width: 0;
    padding: 1rem 1.1rem;
    border: 1px solid #34485a;
    border-radius: 7px;
    background:
        linear-gradient(145deg, rgba(31, 49, 65, .96), rgba(19, 33, 46, .96));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .05),
        0 3px 0 rgba(0, 0, 0, .12);
}

.habbo-stat-card__icon {
    display: flex;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #0d79b8;
    color: #fff;
    font-size: 1rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .2),
        0 2px 0 rgba(0, 0, 0, .2);
}

.habbo-stat-card:first-child .habbo-stat-card__icon {
    background: #4da83e;
}

.habbo-stat-card div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.habbo-stat-card strong {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
}

.habbo-stat-card div span {
    margin-top: .3rem;
    overflow: hidden;
    color: #8fa2b1;
    font-size: .7rem;
    font-weight: 800;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Featured story */

.habbo-dashboard-feature {
    display: grid;
    grid-template-columns: minmax(340px, 1.15fr) minmax(0, 1fr);
    min-height: 330px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 1px solid #34485a;
    border-radius: 8px;
    background: #142332;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 4px 0 rgba(0, 0, 0, .12);
}

.habbo-dashboard-feature__image {
    position: relative;
    display: block;
    min-height: 330px;
    background-position: center;
    background-size: cover;
}

.habbo-dashboard-feature__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 58%, rgba(20, 35, 50, .8)),
        linear-gradient(0deg, rgba(7, 18, 28, .45), transparent 55%);
}

.habbo-dashboard-feature__image > span {
    position: absolute;
    z-index: 2;
    top: 1rem;
    left: 1rem;
    padding: .42rem .7rem;
    border: 1px solid #34782e;
    border-radius: 4px;
    background: linear-gradient(#68c452, #409836);
    color: #fff;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .25),
        0 2px 0 rgba(0, 0, 0, .24);
}

.habbo-dashboard-feature__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.25rem;
}

.habbo-dashboard-kicker {
    display: block;
    margin-bottom: .45rem;
    color: #55b8ee;
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.habbo-dashboard-feature__content h2 {
    margin: .7rem 0 .85rem;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 900;
    line-height: 1.04;
}

.habbo-dashboard-feature__content h2 a {
    color: inherit;
    text-decoration: none;
}

.habbo-dashboard-feature__content p {
    max-width: 550px;
    margin: 0;
    color: #9eafbc;
    font-size: .9rem;
    line-height: 1.7;
}

.habbo-dashboard-feature__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.habbo-dashboard-text-link {
    color: #77c9f5 !important;
    font-size: .78rem;
    font-weight: 900;
    text-decoration: none;
}

.habbo-dashboard-text-link:hover {
    color: #fff !important;
}

/* Lower dashboard */

.habbo-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .8fr);
    gap: 1.25rem;
    align-items: stretch;
}

.habbo-dashboard-panel {
    overflow: hidden;
    border: 1px solid #34485a;
    border-radius: 8px;
    background: #142332;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .04),
        0 3px 0 rgba(0, 0, 0, .1);
}

.habbo-dashboard-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #314555;
    background: linear-gradient(#1d3040, #172837);
}

.habbo-dashboard-panel__header span {
    display: block;
    color: #4eaee4;
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.habbo-dashboard-panel__header h2 {
    margin: .15rem 0 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
}

.habbo-dashboard-panel__header > a {
    color: #72c7f4;
    font-size: .72rem;
    font-weight: 900;
    text-decoration: none;
}

/* Photos */

.habbo-dashboard-panel--photos {
    grid-row: span 2;
}

.habbo-dashboard-panel--photos .habbo-photo-wall {
    padding: 1rem;
}

/* Guest/member action */

.habbo-dashboard-panel--action {
    display: flex;
    min-height: 255px;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at 100% 0, rgba(255, 255, 255, .1), transparent 35%),
        linear-gradient(145deg, #1685c3, #07557e);
}

.habbo-dashboard-panel--action h2 {
    margin: .35rem 0 .75rem;
    color: #fff;
    font-size: 1.65rem;
    font-weight: 900;
    line-height: 1.1;
}

.habbo-dashboard-panel--action p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: .82rem;
    line-height: 1.65;
}

.habbo-dashboard-action-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.habbo-dashboard-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: .4rem 0 1.2rem;
}

.habbo-dashboard-player > img {
    width: 92px;
    height: 108px;
    flex: 0 0 92px;
    object-fit: contain;
    object-position: center top;
    border-radius: 6px;
    background: rgba(3, 27, 43, .35);
}

/* News list */

.habbo-dashboard-panel--news {
    min-height: 255px;
}

.habbo-dashboard-news-list {
    padding: .75rem;
}

.habbo-dashboard-news-item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: .85rem;
    padding: .6rem;
    border-radius: 6px;
    transition:
        background .15s ease,
        transform .15s ease;
}

.habbo-dashboard-news-item + .habbo-dashboard-news-item {
    margin-top: .35rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.habbo-dashboard-news-item:hover {
    transform: translateX(3px);
    background: rgba(255, 255, 255, .04);
}

.habbo-dashboard-news-item__image {
    display: block;
    min-height: 78px;
    border-radius: 5px;
    background-position: center;
    background-size: cover;
}

.habbo-dashboard-news-item div > span,
.habbo-dashboard-news-item small {
    color: #718797;
    font-size: .65rem;
    font-weight: 800;
    text-transform: uppercase;
}

.habbo-dashboard-news-item h3 {
    margin: .25rem 0;
    font-size: .9rem;
    font-weight: 900;
    line-height: 1.25;
}

.habbo-dashboard-news-item h3 a {
    color: #fff;
    text-decoration: none;
}

.habbo-dashboard-empty {
    padding: 2rem 1.25rem;
    text-align: center;
}

.habbo-dashboard-empty strong {
    color: #fff;
    font-size: 1rem;
}

.habbo-dashboard-empty p {
    max-width: 380px;
    margin: .55rem auto 0;
    color: #8295a4;
    font-size: .78rem;
    line-height: 1.6;
}

/* Community card */

.habbo-dashboard-panel--community {
    position: relative;
    min-height: 200px;
    padding: 1.5rem;
    background:
        radial-gradient(circle at 100% 100%, rgba(255, 255, 255, .1), transparent 35%),
        linear-gradient(145deg, #293b4c, #192b39);
}

.habbo-dashboard-panel--community h2 {
    max-width: 420px;
    margin: .4rem 0 .75rem;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.15;
}

.habbo-dashboard-panel--community p {
    max-width: 500px;
    margin: 0;
    color: #96a8b5;
    font-size: .82rem;
    line-height: 1.65;
}

.habbo-dashboard-panel--community > a {
    display: inline-block;
    margin-top: 1rem;
    color: #72c8f5;
    font-size: .78rem;
    font-weight: 900;
    text-decoration: none;
}

/* Responsive */

@media (max-width: 1024px) {
    .habbo-dashboard-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .habbo-dashboard-feature {
        grid-template-columns: 1fr;
    }

    .habbo-dashboard-feature__image {
        min-height: 280px;
    }

    .habbo-dashboard-feature__image::after {
        background: linear-gradient(0deg, rgba(20, 35, 50, .8), transparent 55%);
    }

    .habbo-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .habbo-dashboard-panel--photos {
        grid-row: auto;
    }
}

@media (max-width: 600px) {
    .habbo-dashboard-stats {
        grid-template-columns: 1fr;
    }

    .habbo-dashboard-feature__content {
        padding: 1.5rem;
    }

    .habbo-dashboard-feature__image {
        min-height: 220px;
    }

    .habbo-dashboard-action-buttons,
    .habbo-dashboard-action-buttons .habbo-button {
        width: 100%;
    }

    .habbo-dashboard-news-item {
        grid-template-columns: 90px minmax(0, 1fr);
    }
}

/* ======================================================
   END HABLUXE HOMEPAGE DASHBOARD
   ====================================================== */

/* Dashboard bottom-row polish */

.habbo-dashboard-panel--community {
    grid-column: 1 / -1;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: min(38%, 420px);
}

@media (max-width: 1024px) {
    .habbo-dashboard-panel--community {
        grid-column: auto;
        padding-right: 1.5rem;
    }
}



/* Logged-in member dashboard */

.habbo-dashboard-member {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 1.15rem;
}

.habbo-dashboard-member__identity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.habbo-dashboard-member__avatar {
    width: 88px;
    height: 102px;
    overflow: hidden;
    flex: 0 0 88px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 7px;
    background: rgba(4, 38, 59, .38);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .1),
        0 3px 0 rgba(0, 0, 0, .12);
}

.habbo-dashboard-member__avatar img {
    width: 100%;
    height: 112px;
    object-fit: contain;
    object-position: center top;
}

.habbo-dashboard-member__identity h2 {
    margin: .15rem 0 .35rem;
}

.habbo-dashboard-wallet {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem;
}

.habbo-dashboard-wallet > div {
    min-width: 0;
    padding: .7rem .75rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 5px;
    background: rgba(3, 35, 54, .32);
}

.habbo-dashboard-wallet span {
    display: block;
    overflow: hidden;
    color: rgba(255, 255, 255, .62);
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.habbo-dashboard-wallet strong {
    display: block;
    margin-top: .25rem;
    overflow: hidden;
    color: #fff;
    font-size: 1rem;
    font-weight: 900;
    text-overflow: ellipsis;
}

.habbo-dashboard-member__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 480px) {
    .habbo-dashboard-member__identity {
        align-items: flex-start;
    }

    .habbo-dashboard-wallet {
        grid-template-columns: 1fr;
    }

    .habbo-dashboard-member__actions,
    .habbo-dashboard-member__actions .habbo-button {
        width: 100%;
    }
}
/* HABLUXE PUBLIC HOMEPAGE V1 */
.habbo-home {
    --hh-panel: rgba(8, 16, 32, .94);
    --hh-panel-soft: rgba(13, 27, 49, .86);
    --hh-border: rgba(127, 158, 205, .22);
    --hh-text: #f5f8ff;
    --hh-muted: #93a3bb;
    --hh-cyan: #67dcff;
    --hh-green: #63e49f;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 0 48px;
    color: var(--hh-text);
}

.habbo-welcome {
    min-height: 405px;
    overflow: hidden;
    border: 1px solid var(--hh-border);
    border-radius: 20px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
}

.habbo-welcome__shade {
    background:
        linear-gradient(90deg, rgba(3, 8, 18, .97), rgba(4, 11, 24, .82) 48%, rgba(4, 11, 24, .2)),
        radial-gradient(circle at 75% 20%, rgba(91, 217, 255, .16), transparent 32%);
}

.habbo-welcome__content {
    min-height: 405px;
    padding: 46px 48px;
}

.habbo-welcome__copy {
    max-width: 610px;
}

.habbo-welcome__label,
.habbo-dashboard-kicker {
    color: var(--hh-cyan);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .15em;
}

.habbo-welcome h1 {
    margin-top: 13px;
    font-size: clamp(50px, 7vw, 82px);
    line-height: .92;
    letter-spacing: -4px;
    text-shadow: 0 14px 40px rgba(0, 0, 0, .45);
}

.habbo-welcome p {
    max-width: 560px;
    margin-top: 22px;
    color: #c7d1e0;
    font-size: 16px;
    line-height: 1.7;
}

.habbo-button {
    min-height: 44px;
    padding: 0 21px;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 12px 25px rgba(0, 0, 0, .2);
}

.habbo-button--green {
    background: linear-gradient(180deg, #69eca7, #2ead69);
}

.habbo-button--blue {
    background: linear-gradient(180deg, #69d8ff, #198fc9);
}

.habbo-user-card,
.habbo-status,
.habbo-stat-card,
.habbo-dashboard-feature,
.habbo-dashboard-panel {
    border-color: var(--hh-border);
    background: var(--hh-panel);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .2);
}

.habbo-user-card {
    border-radius: 16px;
    backdrop-filter: blur(14px);
}

.habbo-status {
    min-height: 62px;
    margin-top: 14px;
    border-radius: 13px;
}

.habbo-status__icon {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: var(--hh-green);
    box-shadow: 0 0 14px rgba(99, 228, 159, .72);
}

.habbo-dashboard {
    margin-top: 14px;
}

.habbo-dashboard-stats {
    gap: 12px;
}

.habbo-stat-card {
    min-height: 82px;
    border-radius: 14px;
}

.habbo-stat-card__icon {
    width: 44px;
    height: 44px;
    border-color: rgba(103, 220, 255, .28);
    border-radius: 12px;
    background: rgba(66, 183, 228, .13);
    color: var(--hh-cyan);
}

.habbo-stat-card:nth-child(1) .habbo-stat-card__icon::before { content: "●"; }
.habbo-stat-card:nth-child(2) .habbo-stat-card__icon::before { content: "◆"; }
.habbo-stat-card:nth-child(3) .habbo-stat-card__icon::before { content: "▤"; }
.habbo-stat-card:nth-child(4) .habbo-stat-card__icon::before { content: "◎"; }

.habbo-dashboard-feature {
    min-height: 330px;
    margin-top: 14px;
    border-radius: 18px;
}

.habbo-dashboard-feature__image {
    min-height: 330px;
}

.habbo-dashboard-feature__content {
    padding: 34px;
}

.habbo-dashboard-feature__content h2 {
    font-size: clamp(27px, 3vw, 40px);
    line-height: 1.06;
}

.habbo-dashboard-feature__content p,
.habbo-dashboard-panel--action p,
.habbo-dashboard-panel--community p {
    color: var(--hh-muted);
}

.habbo-dashboard-grid {
    gap: 14px;
    margin-top: 14px;
}

.habbo-dashboard-panel {
    border-radius: 16px;
    background:
        linear-gradient(180deg, var(--hh-panel-soft), var(--hh-panel));
}

.habbo-dashboard-panel__header {
    border-color: var(--hh-border);
}

.habbo-dashboard-panel__header span,
.habbo-dashboard-panel__header > a,
.habbo-dashboard-text-link,
.habbo-dashboard-panel--community > a {
    color: var(--hh-cyan);
}

.habbo-dashboard-panel--photos {
    grid-row: auto;
    align-self: start;
}

.habbo-dashboard-panel--photos .habbo-photo-wall {
    padding: 14px;
}

.habbo-photo-wall > div {
    gap: 10px !important;
}

.habbo-photo-wall a {
    overflow: hidden;
    border: 1px solid var(--hh-border);
    border-radius: 11px;
    background: #050b17;
}

.habbo-photo-wall img {
    transition: transform .2s ease, filter .2s ease;
}

.habbo-photo-wall a:hover img {
    transform: scale(1.035);
    filter: brightness(1.08);
}

.habbo-dashboard-news-item + .habbo-dashboard-news-item,
.habbo-dashboard-wallet > div + div {
    border-color: var(--hh-border);
}

.habbo-dashboard-panel--community {
    min-height: 180px;
    background:
        linear-gradient(90deg, rgba(5, 12, 25, .97), rgba(5, 12, 25, .45)),
        url("/assets/images/kasja_mepage_header.png") center 58% / cover no-repeat;
}

@media (max-width: 1024px) {
    .habbo-home {
        padding-right: 14px;
        padding-left: 14px;
    }

    .habbo-dashboard-feature {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .habbo-home {
        padding-top: 12px;
        padding-right: 10px;
        padding-left: 10px;
    }

    .habbo-welcome,
    .habbo-welcome__content {
        min-height: 0;
    }

    .habbo-welcome__content {
        padding: 30px 22px;
    }

    .habbo-welcome h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .habbo-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .habbo-home *,
    .habbo-home *::before,
    .habbo-home *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Habluxe homepage lower-grid final layout */

.habbo-dashboard-side {
    display: grid;
    min-width: 0;
    gap: 14px;
    align-content: start;
}

.habbo-dashboard-panel--photos {
    grid-row: auto;
    align-self: stretch;
    display: flex;
    min-height: 0;
    flex-direction: column;
}

.habbo-dashboard-panel--photos .habbo-photo-wall {
    display: flex;
    min-height: 0;
    flex: 1;
}

.habbo-dashboard-panel--photos .habbo-photo-wall > div {
    min-height: 0;
    flex: 1;
}

.habbo-dashboard-panel--photos .habbo-photo-wall a {
    height: 100%;
    min-height: 0;
}

.habbo-dashboard-panel--photos .habbo-photo-wall a > img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.habbo-dashboard-panel--community {
    grid-column: 1 / -1;
}

@media (max-width: 1024px) {
    .habbo-dashboard-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .habbo-dashboard-panel--photos {
        min-height: 340px;
    }
}

@media (max-width: 700px) {
    .habbo-dashboard-side {
        grid-template-columns: 1fr;
    }

    .habbo-dashboard-panel--photos {
        min-height: 0;
    }

    .habbo-dashboard-panel--photos .habbo-photo-wall a {
        min-height: 160px;
    }
}

/* Habluxe homepage snapshot fill fix */

.habbo-dashboard-panel--photos .habbo-photo-wall > div {
    align-items: stretch;
}

.habbo-dashboard-panel--photos .habbo-photo-wall a {
    display: block;
    height: 100%;
}

.habbo-dashboard-panel--photos .habbo-photo-wall a > div {
    height: 100% !important;
    min-height: 280px;
}

@media (max-width: 700px) {
    .habbo-dashboard-panel--photos .habbo-photo-wall a > div {
        min-height: 160px;
    }
}
/* ==========================================================================
   HABLUXE PUBLIC HOMEPAGE HOTEL LOBBY TOP SECTION V2
   ========================================================================== */

.hhome-v2 {
    width: min(1180px, 100%);
    margin-right: auto;
    margin-left: auto;
    color: #f6f8ff;
}

.hhome-v2 *,
.hhome-v2 *::before,
.hhome-v2 *::after {
    box-sizing: border-box;
}

.hhome-v2-hero {
    --hhome-v2-hero-image: none;
    position: relative;
    isolation: isolate;
    min-height: 510px;
    display: grid;
    grid-template-columns: minmax(0, 1.16fr) minmax(350px, .84fr);
    overflow: hidden;
    border: 1px solid rgba(112, 128, 184, .22);
    border-radius: 22px;
    background:
        linear-gradient(90deg, rgba(5, 8, 22, .98), rgba(5, 8, 22, .42)),
        var(--hhome-v2-hero-image) center / cover no-repeat;
    box-shadow:
        0 28px 70px rgba(0, 0, 0, .3),
        inset 0 1px 0 rgba(255, 255, 255, .035);
}

.hhome-v2-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 199, 70, .13), transparent 32%),
        radial-gradient(circle at 82% 65%, rgba(93, 67, 216, .2), transparent 42%);
}

.hhome-v2-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .14;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, .85), transparent 76%);
}

.hhome-v2-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 8, 22, .96) 0%, rgba(5, 8, 22, .7) 46%, rgba(5, 8, 22, .22) 72%, rgba(5, 8, 22, .45) 100%),
        linear-gradient(to top, rgba(5, 8, 22, .82), transparent 58%);
}

.hhome-v2-hero__copy {
    position: relative;
    z-index: 2;
    align-self: end;
    max-width: 700px;
    padding: clamp(32px, 5vw, 58px);
}

.hhome-v2-hero__brand {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.hhome-v2-hero__brand img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border: 1px solid rgba(255, 216, 106, .28);
    border-radius: 16px;
    box-shadow:
        0 13px 30px rgba(0, 0, 0, .28),
        0 0 28px rgba(121, 83, 255, .14);
}

.hhome-v2-hero__brand span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffda70;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.hhome-v2-hero__brand i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5fe699;
    box-shadow: 0 0 13px rgba(95, 230, 153, .8);
}

.hhome-v2-hero h1 {
    max-width: 660px;
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 5.4vw, 72px);
    font-weight: 950;
    letter-spacing: -.052em;
    line-height: .95;
    text-shadow: 0 7px 28px rgba(0, 0, 0, .34);
}

.hhome-v2-hero__copy > p {
    max-width: 620px;
    margin: 18px 0 0;
    color: #bbc5df;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.7;
}

.hhome-v2-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 26px;
}

.hhome-v2-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 11px;
    font-size: 11px;
    font-weight: 950;
    text-decoration: none;
    transition:
        transform .17s ease,
        border-color .17s ease,
        background-color .17s ease,
        box-shadow .17s ease;
}

.hhome-v2-button:hover {
    transform: translateY(-2px);
}

.hhome-v2-button--gold {
    border-color: rgba(255, 226, 133, .72);
    background: linear-gradient(180deg, #ffd96c, #eeb226);
    color: #241703;
    box-shadow:
        0 4px 0 rgba(126, 77, 8, .82),
        0 13px 27px rgba(0, 0, 0, .23),
        inset 0 1px 0 rgba(255, 255, 255, .62);
}

.hhome-v2-button--glass {
    border-color: rgba(164, 146, 255, .27);
    background: rgba(20, 18, 55, .58);
    color: #ece8ff;
    backdrop-filter: blur(12px);
}

.hhome-v2-button--glass:hover {
    border-color: rgba(255, 216, 105, .38);
    background: rgba(40, 30, 87, .68);
}

.hhome-v2-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 23px;
}

.hhome-v2-hero__tags span {
    padding: 7px 10px;
    border: 1px solid rgba(163, 146, 255, .18);
    border-radius: 999px;
    background: rgba(22, 18, 59, .4);
    color: #d2cbf8;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .055em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hhome-v2-live {
    position: relative;
    z-index: 2;
    align-self: center;
    margin: 26px 26px 26px 0;
    padding: 20px;
    border: 1px solid rgba(158, 143, 226, .2);
    border-radius: 17px;
    background:
        radial-gradient(circle at 100% 0, rgba(107, 75, 227, .17), transparent 42%),
        rgba(8, 12, 29, .86);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, .3),
        inset 0 1px 0 rgba(255, 255, 255, .04);
    backdrop-filter: blur(17px);
}

.hhome-v2-live__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(139, 153, 202, .13);
}

.hhome-v2-live__header div > span,
.hhome-v2-live__header div > strong {
    display: block;
}

.hhome-v2-live__header div > span {
    color: #7e8aad;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hhome-v2-live__header div > strong {
    margin-top: 3px;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
}

.hhome-v2-live__signal {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border: 1px solid rgba(91, 226, 151, .18);
    border-radius: 999px;
    background: rgba(38, 147, 92, .1);
    color: #91efb8;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.hhome-v2-live__signal i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #5ee797;
    box-shadow: 0 0 11px rgba(94, 231, 151, .76);
}

.hhome-v2-live__online {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    padding: 17px 0;
}

.hhome-v2-live__online-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(84, 227, 150, .17);
    border-radius: 12px;
    background: rgba(37, 142, 85, .1);
}

.hhome-v2-live__online-icon span {
    width: 11px;
    height: 11px;
    border: 3px solid #5fe69a;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(95, 230, 154, .58);
}

.hhome-v2-live__online strong,
.hhome-v2-live__online span {
    display: block;
}

.hhome-v2-live__online strong {
    color: #fff;
    font-size: 24px;
    font-weight: 950;
    line-height: 1;
}

.hhome-v2-live__online div:nth-child(2) span {
    margin-top: 3px;
    color: #8995b6;
    font-size: 8px;
    font-weight: 800;
}

.hhome-v2-live__online > a {
    color: #c9bfff;
    font-size: 8px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.hhome-v2-live__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.hhome-v2-live__stats article {
    min-width: 0;
    padding: 11px;
    border: 1px solid rgba(129, 144, 194, .13);
    border-radius: 10px;
    background: rgba(18, 25, 49, .7);
}

.hhome-v2-live__stats span,
.hhome-v2-live__stats strong {
    display: block;
}

.hhome-v2-live__stats span {
    overflow: hidden;
    color: #7380a2;
    font-size: 7px;
    font-weight: 900;
    letter-spacing: .05em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.hhome-v2-live__stats strong {
    margin-top: 4px;
    color: #f6f7ff;
    font-size: 16px;
    font-weight: 950;
}

.hhome-v2-live__story {
    display: block;
    margin-top: 12px;
    padding: 13px;
    border: 1px solid rgba(155, 137, 238, .17);
    border-radius: 11px;
    background: rgba(36, 27, 80, .28);
    color: inherit;
    text-decoration: none;
    transition:
        transform .17s ease,
        border-color .17s ease,
        background-color .17s ease;
}

.hhome-v2-live__story:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 214, 102, .28);
    background: rgba(47, 34, 96, .4);
}

.hhome-v2-live__story span,
.hhome-v2-live__story strong,
.hhome-v2-live__story small {
    display: block;
}

.hhome-v2-live__story span {
    color: #ffda70;
    font-size: 7px;
    font-weight: 950;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hhome-v2-live__story strong {
    overflow: hidden;
    margin-top: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 950;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hhome-v2-live__story small {
    margin-top: 5px;
    color: #7f8bae;
    font-size: 7px;
    font-weight: 800;
}

.hhome-v2-live__story small b {
    float: right;
    color: #bcb0f4;
}

.hhome-v2-live__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 12px;
}

.hhome-v2-live__links a {
    padding: 8px 7px;
    border: 1px solid rgba(126, 140, 191, .12);
    border-radius: 8px;
    background: rgba(16, 22, 44, .72);
    color: #9fa9c8;
    font-size: 8px;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    transition:
        border-color .17s ease,
        color .17s ease,
        background-color .17s ease;
}

.hhome-v2-live__links a:hover {
    border-color: rgba(255, 213, 99, .26);
    background: rgba(35, 29, 69, .72);
    color: #ffda70;
}

.hhome-v2-pulse {
    min-height: 58px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    margin-top: 13px;
    padding: 11px 15px;
    border: 1px solid rgba(107, 126, 178, .2);
    border-radius: 13px;
    background:
        linear-gradient(90deg, rgba(18, 31, 49, .96), rgba(14, 22, 42, .96));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}

.hhome-v2-pulse > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hhome-v2-pulse__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #5ee797;
    box-shadow: 0 0 12px rgba(94, 231, 151, .7);
}

.hhome-v2-pulse strong {
    color: #e9edfb;
    font-size: 9px;
    font-weight: 900;
    white-space: nowrap;
}

.hhome-v2-pulse p {
    margin: 0;
    color: #7f8dab;
    font-size: 9px;
    font-weight: 750;
    text-align: center;
}

.hhome-v2-pulse > a {
    color: #69cafb;
    font-size: 9px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.hhome-v2 .habbo-dashboard {
    margin-top: 18px;
}

.hhome-v2 a:focus-visible {
    outline: 2px solid rgba(255, 218, 112, .94);
    outline-offset: 3px;
}

@media (max-width: 980px) {
    .hhome-v2-hero {
        grid-template-columns: 1fr;
    }

    .hhome-v2-hero__copy {
        min-height: 440px;
    }

    .hhome-v2-live {
        margin: 0 24px 24px;
    }
}

@media (max-width: 700px) {
    .hhome-v2-hero {
        min-height: auto;
        border-radius: 16px;
    }

    .hhome-v2-hero__copy {
        min-height: 400px;
        padding: 28px 20px;
    }

    .hhome-v2-hero__brand img {
        width: 58px;
        height: 58px;
        border-radius: 14px;
    }

    .hhome-v2-hero h1 {
        font-size: 42px;
    }

    .hhome-v2-hero__copy > p {
        font-size: 13px;
    }

    .hhome-v2-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hhome-v2-button {
        width: 100%;
    }

    .hhome-v2-live {
        margin: 0 14px 14px;
        padding: 16px;
    }

    .hhome-v2-live__online {
        grid-template-columns: 42px minmax(0, 1fr);
    }

    .hhome-v2-live__online > a {
        grid-column: 1 / -1;
        padding-left: 53px;
    }

    .hhome-v2-live__stats {
        grid-template-columns: 1fr;
    }

    .hhome-v2-pulse {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: left;
    }

    .hhome-v2-pulse p {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hhome-v2 *,
    .hhome-v2 *::before,
    .hhome-v2 *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}