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

#components-reconnect-modal {
    display: none !important;
}

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

h1 {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}
.section-title {
    font-family: "Riffic", cursive;
    font-size: 28px;
    letter-spacing: 0.5px;
    color: #fff;
}

.store-badge:focus {
    outline: none;
    box-shadow: none;
}

.site-header.white {
    background: #fff;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 68px;
}

.header-spacer {
    /* empty on purpose to center logo */
}

.brand.center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.brand-logo {
    display: block;
    height: 50px;
    width: auto;
}

.main-nav.right {
    display: inline-flex;
    justify-self: end;
    align-items: center;
    gap: 14px;
    font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

.nav-link {
    color: #6C2569;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

    .nav-link:hover {
        color: #541d53;
    }

.nav-sep {
    color: #6C2569;
    opacity: 0.65;
    user-select: none;
}

.site-main {
    min-height: calc(100vh - 68px);
    background: #fff;
}

.dash-wrap {
    padding: 48px 0 64px;
    min-height: calc(100vh - 68px); /* minus header height */
}

.dash-center {
    display: grid;
    justify-items: center;
    text-align: center;
}

.admin-title {
    font-family: "Riffic", cursive;
    color: #ffffff;
    font-size: 40px;
    margin: 0 0 18px;
}

.dash-cards {
    display: grid;
    grid-auto-flow: column;
    gap: 18px;
}

.dash-card {
    display: grid;
    place-items: center;
    width: 220px;
    height: 120px;
    background: #ffffff;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
    transition: transform .08s ease, box-shadow .15s ease, border-color .15s ease;
}

    .dash-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 26px 56px rgba(0,0,0,0.24);
        border-color: rgba(108,37,105,0.35);
    }

    .dash-card.active {
        outline: 0;
        box-shadow: 0 28px 62px rgba(108,37,105,0.35);
        border-color: rgba(108,37,105,0.45);
    }

.dash-card-title {
    font-family: "Riffic", cursive;
    color: #2b1f2e;
    font-size: 20px;
    letter-spacing: .4px;
}

strong {
    font-family: "Riffic", cursive;
}

.muted {
    color: #e5d9ee;
}

.modal-card,
.modal-card *,
.modal-card button,
.modal-card input,
.modal-card textarea,
.modal-card select,
.modal-card label,
.cat-badge,
.cat-sub,
.qt-sub,
.qt-meta,
.hero-lead,
.qt-order,
.modal-card small,
.modal-card .hint {
    font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* modal (shared) */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 90
}

.modal-card {
    position: fixed;
    z-index: 91;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 24px 64px rgba(0,0,0,.35);
    padding: 16px;
    outline: 0;
    display: flex;
    flex-direction: column;
    max-height: 88vh;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px
}

.modal-body {
    margin-top: 6px;
    overflow-y: scroll;
}

.btn.icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: #f6f0f8;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 10px
}

/* forms */
.form-grid.two-col {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
    overflow-y: scroll;
}

.form-field {
    display: grid;
    gap: 6px
}

    .form-field.full {
        grid-column: 1 / -1
    }

label {
    font-weight: 700;
    color: #2b1f2e
}

.input, .checkbox {
    font-size: 15px
}

.input {
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0 12px
}

textarea.input {
    height: auto;
    padding: 10px 12px
}

.hint {
    color: #6a5a70;
    font-weight: 600
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 12px
}

.footer-grid {
    color: black;
    font-family: "Riffic", cursive;
    height: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0 14px;
    padding: 10px;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 16px
}

@media (max-width:1000px) {
    .cat-grid {
        grid-template-columns: repeat(2,minmax(0,1fr))
    }
}

@media (max-width:640px) {
    .cat-grid {
        grid-template-columns: 1fr
    }

    .header-inner {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }
}

.cat-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 14px 36px rgba(0,0,0,0.2);
    transition: transform .08s,box-shadow .15s,border-color .15s
}

    .cat-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 48px rgba(0,0,0,0.28);
        border-color: rgba(108,37,105,0.35)
    }

.cat-card-bg {
    position: absolute;
    inset: 0;
    background-size: 512px 512px;
    background-repeat: repeat;
    pointer-events: none
}

.cat-card-top {
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding: 10px 10px 0 10px;
    z-index: 1
}

.cat-badge {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid #ffffff88;
    backdrop-filter: blur(4px)
}

    .cat-badge.ok {
        background: #30d15822;
        color: #1f8f42;
        border-color: #30d15855
    }

    .cat-badge.off {
        background: #ff4d4f22;
        color: #b92b2e;
        border-color: #ff4d4f55
    }

.cat-card-body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 14px 12px
}

.cat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #ffffffd9;
    border: 1px solid rgba(108,37,105,0.18)
}

    .cat-icon img {
        max-width: 36px;
        max-height: 36px
    }

.cat-icon-fallback {
    font-size: 24px
}

.cat-info .cat-name {
    font-family: "Riffic",cursive;
    font-size: 20px;
    color: #2b1f2e
}

.cat-info .cat-sub {
    color: black;
    font-weight: 700
}

.cat-card-actions {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 0 12px 12px
}

/* buttons (from earlier) */
.btn {
    font-family: "Roboto",sans-serif;
    border: 0;
    cursor: pointer;
    border-radius: 12px;
    height: 40px;
    padding: 0 14px
}

    .btn.primary {
        background: linear-gradient(135deg,var(--primary),var(--primary-600));
        color: #fff;
        font-weight: 800;
        box-shadow: 0 10px 20px rgba(108,37,105,0.35)
    }

    .btn.ghost {
        background: #fff;
        border: 1px solid rgba(108,37,105,0.25);
        color: #6C2569;
        font-weight: 800
    }

    .btn.danger {
        background: #b4232a;
        color: #fff;
        font-weight: 800
    }

.qt-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 1000px) {
    .qt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .qt-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
}

.question-type-admin-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--qt-bg, #6C2569);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 14px 36px rgba(0,0,0,0.20);
    transition: transform .08s ease, box-shadow .15s ease, border-color .15s ease;
    color: #1f1222;
    padding: 10px;
}

    .question-type-admin-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 48px rgba(0,0,0,0.28);
        border-color: rgba(108,37,105,0.35);
    }

.question-type-admin-card-bg {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    pointer-events: none;
}

.question-type-admin-card-body {
    position: relative;
    z-index: 1;
    padding: 14px 16px 12px;
    display: grid;
    gap: 6px;
}

.qt-name {
    font-family: "Riffic", cursive;
    font-size: 25px;
    color: white;
}

.qt-sub {
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.qt-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 4px;
}

.qt-badge {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    border: 1px solid #ffffff88;
    backdrop-filter: blur(4px);
    background: #ffffffaa;
    color: #2b1f2e;
}

    .qt-badge.ok {
        background: #e9ffef;
        color: #1f8f42;
        border-color: #30d15855;
    }

    .qt-badge.off {
        background: #ffe9ea;
        color: #b92b2e;
        border-color: #ff4d4f55;
    }

.qt-order {
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.qt-card-actions {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 0 12px 12px;
}

.qt-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.qt-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    color: #2b1f2e;
    background: #fff;
    border: 2px solid var(--chip, #6C2569);
}

.qt-chip-x {
    border: 0;
    background: transparent;
    color: #6a5a70;
    cursor: pointer;
    font-weight: 900;
    padding: 0 2px;
}

.qt-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

@media (max-width: 640px) {
    .qt-list {
        grid-template-columns: 1fr;
    }
}

.confirm-modal-text {
    color: black !important;
}

.qt-item {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.1);
    background: #fff;
    padding: 0 12px;
    color: #2b1f2e;
    cursor: pointer;
}

    .qt-item:hover {
        border-color: rgba(0,0,0,.22);
    }

    .qt-item.sel {
        border-color: var(--qt, #6C2569);
        box-shadow: 0 0 0 2px #6C2569, transparent;
    }

    .qt-item .dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: var(--qt, #6C2569);
        border: 2px solid #fff;
        box-shadow: 0 0 0 2px var(--qt, #6C2569);
    }

    .qt-item .name {
        font-weight: 800;
    }

    .qt-item .mark {
        margin-left: auto;
        font-weight: 900;
        color: var(--qt, #6C2569);
    }

.riff-title {
    font-family: "Riffic", cursive;
}

.home-title {
    font-size: clamp(28px, 3.6vw, 46px);
    text-align: center;
    margin: 30px 0 30px;
    color: #5a2f67
}

.example-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-bottom: 8px;
}

.example-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.example-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    background: #f7f3f9;
    border: 1px solid #e8e0ef;
    border-radius: 10px;
    padding: 8px 10px;
}

.ex-text {
    color: #2b1f2e;
    font-weight: 700;
}

.btn.small {
    height: 32px;
    padding: 0 10px;
    border-radius: 8px;
}

.ex-block {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 10px 12px;
    margin-top: 10px;
    background: #fff
}

.ex-head {
    margin-bottom: 6px
}

.ex-qt-name {
    font-size: 18px;
    color: #5a2f67
}

.example-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-bottom: 8px
}

.example-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px
}

.example-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    background: #f7f3f9;
    border: 1px solid #e8e0ef;
    border-radius: 10px;
    padding: 8px 10px
}

.ex-text {
    font-weight: 700;
    color: #2b1f2e
}

.btn.small {
    height: 32px;
    padding: 0 10px;
    border-radius: 8px
}

.home-cats {
    padding: 0 0 26px;
    padding-bottom: 150px;
    background: #fff;
    color: #2b1f2e
}

.cat-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 900px) {
    .cat-tiles {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .cat-tile {
        min-height: 280px !important;
    }

    .cat-tile-inner {
        position: relative;
        z-index: 1;
        height: 100%;
        display: flex;
        place-items: center;
        flex-direction: column;
        justify-content: center;
        place-items: center;
        gap: 13px !important;
    }

    .container{
        margin: 0 !important;
        width: auto !important;
    }
}

.cat-tile {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
    text-decoration: none;
    transition: .5s ease;
    min-height: 320px;
}

    .cat-tile:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 38px rgba(0,0,0,.16);
        border-color: #e5dff0
    }

.cat-tile-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-repeat: repeat;
    background-size: 512px 512px;
    opacity: 1;
    filter: none;
}

.cat-tile-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    place-items: center;
    flex-direction: column;
    justify-content: center;
    place-items: center;
    gap: 20px;
}

.cat-tile-icon {
    max-width: 130px;
    max-height: 130px;
    margin-bottom: -15px;
}

.cat-tile-name {
    margin-top: 10px;
    color: white;
    border: 5px black;
    text-align: center;
    letter-spacing: .4px;
    margin: 0px;
}

    .cat-tile-name h3 {
        margin: 0;
        font-size: 28px;
        text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
    }

.cat-tile-cta {
    margin-top: 8px;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #5f2a68;
    color: #fff;
    display: inline-grid;
    place-items: center;
    box-shadow: 0 8px 18px rgba(95,42,104,.28);    
    font-size: 14px;
}

.cat-tile-cta {
    font-family: "Riffic", cursive !important;
}

.home-cats-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.collage-wrap {
    display: grid;
    place-items: center
}

.collage-img {
    width: min(1100px, 92vw);
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,.25));
    border-radius: 18px;
}

.download-cta {
    padding: 28px 0 36px
}

.dl-wrap {
    display: grid;
    gap: 40px;
    justify-items: center
}

.dl-title {
    font-size: clamp(26px, 3.6vw, 36px);
    margin: 0 0 4px;
    color: #fff;
    text-align: center;
    letter-spacing: .6px;
}

.dl-badges {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    flex-wrap: wrap;
    flex-direction: column;
}

.dl-badge {
    width: clamp(140px, 42vw, 200px);
    height: auto;
}

    .dl-badge img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 8px 18px rgba(0,0,0,.25))
    }

.dl-art {
    position: relative;
    width: min(560px, 92vw);
    height: min(420px, 64vw);
    display: grid;
    place-items: center;
    overflow: clip;
}

.dl-blob {
    position: absolute;
    width: clamp(260px, 42vw, 560px);
    height: clamp(260px, 30vw, 560px);
    background: url("/Images/Download/blob5.svg") no-repeat center;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
    transform: rotate(-4deg);
}

.dl-phone {
    position: relative;
    z-index: 1;
    width: clamp(260px, 40vw, 540px);
    height: auto;
    transform: rotate(2deg);
}

@media (max-width: 900px) {
    .dl-badge {
        width: 180px;
        height: 52px
    }

    .dl-art {
        height: min(380px, 70vw)
    }
}

.game {
    padding: 36px 0;
    padding-bottom: 70px;
}

.game-grid {
    display: grid;
    gap: 28px
}

.game-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 24px;
}

    .game-row.reverse {
        grid-template-columns: 1fr 1.2fr
    }

        .game-row.reverse .game-art {
            order: 2
        }

        .game-row.reverse .game-copy {
            order: 1
        }

.game-copy {
    color: #ffffff;
    max-width: 520px
}

.game-title {
    font-size: clamp(28px, 4.2vw, 48px);
    margin: 0 0 8px;
    letter-spacing: .5px;
    color: #fff;
}

.game-text {
    font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    font-weight: 700;
    color: #f1ecf7;
    margin: 20px;
    font-size: clamp(20px, 2vw, 18px);
    padding: 0 20px;
}

.game-art {
    position: relative;
    display: flex;
    justify-content: center;
}

.blob {
    position: absolute;
    width: clamp(350px, 32vw, 450px);
    height: clamp(350px, 32vw, 450px);
    background: var(--blob) no-repeat center;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
}

.phone {
    position: relative;
    z-index: 1;
    width: clamp(350px, 32vw, 550px);
    height: auto;
    transform: rotate(-10deg);
}

    .phone.flat {
        width: clamp(260px, 34vw, 460px);
        transform: rotate(-4deg);
    }

.last-blob {
    top: -15%;
}

/* Responsive */
@media (max-width: 900px) {
    .game-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

        .game-row,
        .game-row.reverse {
            grid-template-columns: 1fr;
            text-align: center;
        }

            .game-row.reverse .game-art,
            .game-row.reverse .game-copy {
                order: initial;
            }

    .game-text {
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(15px, 2vw, 18px);
    }

    .game-art {
        min-height: 260px
    }

    .last-blob {
        top: -15%;
    }
}

.hero {
    padding: 48px 0 22px;
    padding-bottom: 150px;
    color: #fff;
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

/* Left column */
.hero-title {
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1.04;
    letter-spacing: 0.5px;
    margin: 0 0 14px;
}

.hero-lead {
    font-size: clamp(20px, 2vw, 18px);
    font-weight: 700;
    color: #eee6f4;
    margin: 4px 0 18px;
    max-width: 520px;
}

.store-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.store-badge img {
    display: block;
    height: auto;
    width: 135px;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,.25));
}

.hero-art {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.hero-bubble {
    position: absolute;
    right: 8%;
    top: 14%;
    width: clamp(250px, 30vw, 380px);
    height: clamp(250px, 30vw, 380px);
    background: url("/Images/Hero/blob.svg") no-repeat center;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-phone {
    position: relative;
    z-index: 1;
    width: clamp(300px, 40vw, 520px);
    height: auto;
    transform: rotate(-12deg);
    right: -20px;
    top: 10px;
    filter: drop-shadow(0 26px 50px rgba(0,0,0,.35));
}

.metric-strip {
    font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    margin: 22px auto 6px;
    height: 62px;
    background: #ffffff;
    border-radius: 999px;
    border: 1px solid #e9e2ef;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    justify-content: space-evenly;
}

.metric {
    color: #692268 !important;
    font-weight: 900;
    white-space: nowrap;
}

.metric-sep {
    color: #692268;
}

@media (max-width: 640px) {
    .header-spacer {
        display: none;
    }

    .brand.center {
        justify-self: center;
    }

    .main-nav.right {
        justify-self: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 15px;
        padding: 6px 2px;
    }

    .site-main {
        min-height: calc(100vh - 100px);
    }

    .admin-title {
        font-size: 32px;
    }

    .dash-cards {
        grid-auto-flow: row;
    }

    .dash-card {
        width: 88vw;
        max-width: 380px;
        height: 110px;
    }
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .metric-sep {
        display: none;
    }

    .hero {
        display: flex;
        flex-direction: column;
        gap: 0px !important;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
        padding: 0 10px;
    }

    .store-row {
        justify-content: center;
    }

    .hero-art {
        min-height: 320px;
        margin: 20px 0;
    }

    .hero-bubble {
        left: 50%;
        right: auto;
        top: 12%;
        transform: translateX(-50%);
    }

    .hero-phone {
        left: auto;
        right: 0px;
        top: -6px;
    }

    .metric-strip {
        display: grid;
        grid-auto-flow: row;
        justify-items: center;
        height: auto;
        border-radius: 16px;
        row-gap: 8px;
        width: 90%;
        padding: 10px 0px;
    }
}

.qt-strip {
    padding: 26px 0;
    padding-bottom: 150px;
}

.qt-title {
    font-size: clamp(26px, 3.4vw, 36px);
    text-align: center;
    margin: 0 0 12px;
    color: #fff;
}

.qt-card {
    width: min(650px, 80vw);
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #eee;
    box-shadow: 0 12px 26px rgba(0,0,0,.14);
    padding: 14px 12px;
}

.qt-empty {
    text-align: center;
    font-weight: 700;
    color: #6a5a70;
    padding: 10px 0;
}

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

.qt-pill {
    height: 44px;
    border-radius: 999px;
    background: var(--pill, #6C2569);
    display: grid;
    place-items: center;
    border: 2px solid #ffffffaa;
    box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.qt-name {
    color: #fff;
    font-weight: 900;
    letter-spacing: .2px;
}

.whyplay-cta {
    padding: 28px 0;
    padding-bottom: 150px;
}

.whyplay-title {
    text-align: center;
    font-size: clamp(26px, 3.4vw, 36px);
    margin: 0 0 16px;
    color: #5a2f67;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 18px;
    justify-items: center;
    gap: 50px;
}

@media (max-width: 700px) {
    .why-cards {
        grid-template-columns: 1fr;
    }
}

.why-card {
    width: min(360px, 92vw);
    display: grid;
    justify-items: center;
    position: relative;
}

.why-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: #fff;
    border: 3px solid #6C2569;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 22px rgba(0,0,0,.16);
}

    .why-badge img {
        width: 32px;
        height: 32px;
        display: block
    }

.why-body {
    width: 100%;
    min-height: 120px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #eee;
    box-shadow: 0 12px 26px rgba(0,0,0,.14);
    display: grid;
    place-items: center;
    padding: 16px 12px;
    position: relative;
    overflow: hidden;
}

.why-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #5a2f67;
    font-weight: 900;
    letter-spacing: .4px;
    font-size: clamp(18px, 2.5vw, 24px);
}

.login-wrap {
    height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 16px;
}

.brand-title {
    font-family: "Riffic", cursive;
}

.input, .input-wrap label, .subtitle, .btn.primary span {
    font-family: "Roboto", sans-serif;
}

.login-card {
    max-width: 720px;
    width: min(720px, 94vw);
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.06));
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow);
    padding: 36px 32px;
}

.login-header {
    text-align: center;
    margin-bottom: 18px;
}

.logo-circle {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: radial-gradient(120% 120% at 30% 20%, #8a3390, #5b1d57);
    border: 2px solid #ffffff22;
    display: grid;
    place-items: center;
    margin: 0 auto 12px auto;
    box-shadow: 0 12px 24px rgba(108,37,105,0.35);
}

.logo-emoji {
    font-size: 32px;
}

.brand-title {
    font-size: 32px;
    margin: 4px 0 2px 0;
    color: #fff;
    text-shadow: 0 2px 0 #00000030;
}

.subtitle {
    color: var(--muted);
    margin: 0;
    font-size: 14px;
}

.form-grid {
    display: grid;
    gap: 18px;
}

.label-container {
    width: 90%;
}

.input-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .input-wrap label {
        display: block;
        font-size: 15px;
        font-weight: 700;
        color: #f3e8f7;
        margin: 0 0 8px 4px;
    }

    .input-wrap input {
        width: 90%;
        padding: 0 10px;
        height: 56px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: #1b1420;
        color: #fff;
        outline: none;
        transition: border-color .15s, box-shadow .15s;
        box-shadow: inset 0 0 0 9999px rgba(255,255,255,0.02);
    }

.input:focus {
    border-color: #b36db0;
    box-shadow: 0 0 0 4px rgba(108,37,105,0.25);
}

.btn-container {
    display: flex;
    justify-content: center
}

.btn.primary {
    width: 100px;
    height: 52px;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-600));
    color: #fff;
    font-weight: 700;
    letter-spacing: .3px;
    cursor: pointer;
    margin-top: 6px;
    transition: transform .06s ease, box-shadow .15s ease;
    box-shadow: 0 14px 28px rgba(108,37,105,0.35);
}

    .btn.primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 18px 36px rgba(108,37,105,0.42);
    }

    .btn.primary:active {
        transform: translateY(0);
    }

.alert.error {
    border-radius: 12px;
    background: #3a0f16;
    border: 1px solid #ff4d4f55;
    color: #ffb3b4;
    padding: 10px 12px;
    font-size: 13px;
}

.foot-note {
    text-align: center;
    margin-top: 12px;
}

.muted {
    color: var(--muted);
    font-size: 12px;
}

h2 {
    font-family: "Riffic", cursive !important;
}

.category-section{
    display: flex;
    width: 100%;
    justify-content: center;
    height: 100vh;
}

.category-container{
    height: 100%;
    width: 100%;
}

.category-container-left {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;    
}

.category-container-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
    flex-direction: column;
}

.container__text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .container__text h2 {
        font-size: 60px;
        margin: 0;
    }

    .container__text p {
        font-size: 25px;
        font-weight: bold;
        margin-left: 20px;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
        max-width: 100%;
    }

.container-image-blob {
}

.container__blob {
    position: absolute;
    width: clamp(450px, 42vw, 50vw);
    height: clamp(450px, 42vw, 50vw);
    background: var(--blob) no-repeat center;
    filter: drop-shadow(0 18px 40px rgba(0,0,0,.35));
}

.container__image {
    position: relative;
    z-index: 1;
    width: clamp(300px, 30vw, 50vw);
    height: clamp(300px, 30vw, 50vw);
    filter: drop-shadow(0 26px 50px rgba(0,0,0,.35));
    transform: rotate(-10deg);
}

.container__emoji {
    width: clamp(300px, 30vw, 50vw);
    height: clamp(300px, 30vw, 50vw);
    border-radius: 20px;
    background: #ffffffd9;
    display: grid;
    place-items: center;
    font-size: clamp(120px, 10vw, 180px);
    box-shadow: 0 26px 50px rgba(0,0,0,.35);
    transform: rotate(-10deg);
}

.qt-switcher {
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e8e0ef;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 22px rgba(0,0,0,.12);
    cursor: pointer;
}

    .arrow svg {
        width: 26px;
        height: 26px
    }

.qt-card {
    width: clamp(320px, 42vw, 520px);
    min-height: 140px;
    border-radius: 18px;
    background: var(--qt, #6C2569);
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
    color: #fff;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.qt-name-container span {
    font-family: "Riffic", cursive !important;
    font-size: 25px;
    margin: 0;
}

.qt-name-container{
    display: flex;
    justify-content: center;
}

.qt-desc {
    margin: 0;
    font-weight: 800;
    opacity: .95;
    font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

.qt-example {
    font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
}

.container__text p {
    font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
}

.arrows-row {
    display: flex;
    gap: 12px;
    justify-content: center;
}

@media(max-width: 900px){    
    .qt-card {
        width: 100%;
        min-width: 0;
    }

    .category-section{
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .container__text{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

        .container__text p {
            text-align: center;
            margin-left: 0 !important;
            font-size: 18px;
        }

        .container__text h2{
            font-size: 40px;
        }

    .category-container-right {
        padding: 50px 0;
    }

    .category-container-left{
        min-height: 500px;
    }

    .qt-switcher {
        justify-content: center;
        width: 90%;
    }

    .arrow {
        width: 42px;
        height: 42px
    }    

    .qt-desc, .qt-example {
        text-align: center
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 400ms ease, transform 400ms ease;
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal.is-hidden-up {
        opacity: 0;
        transform: translateY(-24px);
    }

body:not(.reveal-ready) .reveal {
    opacity: 1;
    transform: none;
}