.site-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.25rem;
    color: #475569;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.site-nav-link svg {
    width: 1.08rem;
    height: 1.08rem;
    flex-shrink: 0;
}

.site-nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.9rem;
    height: 3px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.site-nav-link:hover {
    color: #0f172a;
}

.site-nav-link.is-active {
    color: #ec4899;
}

.site-nav-link.is-active::after,
.site-nav-link:hover::after {
    transform: scaleX(1);
}

.faq-accordion {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.faq-item[open] {
    border-color: #d8b4fe;
    box-shadow: 0 18px 40px rgba(139, 92, 246, 0.12);
}

.faq-summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 1.45rem;
    font-weight: 700;
    color: #0f172a;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary-text {
    position: relative;
    padding-left: 0.9rem;
    line-height: 1.45;
}

.faq-summary-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.faq-summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    background: #f8fafc;
    color: #64748b;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.faq-item[open] .faq-summary-icon {
    transform: rotate(45deg);
    background: #f5d0fe;
    color: #a21caf;
}

.faq-content {
    padding: 0 1.45rem 1.35rem;
    color: #475569;
    line-height: 1.8;
}

.faq-content p {
    margin: 0;
}

.howto-modal {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.howto-modal.is-open {
    display: flex;
}

.howto-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(6px);
}

.howto-modal-dialog {
    position: relative;
    width: min(100%, 560px);
    border-radius: 2rem;
    background: #ffffff;
    padding: 1.6rem 1.5rem 1.4rem;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
}

.howto-modal-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.howto-modal-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #a855f7;
}

.howto-modal-title {
    margin: 0;
    font-size: 2rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.howto-modal-close {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    color: #475569;
    background: #f8fafc;
}

.howto-modal-copy {
    display: grid;
    gap: 0.85rem;
    margin: 1.2rem 0 1.5rem;
}

.howto-modal-copy-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: start;
}

.howto-modal-copy-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.9rem;
    background: linear-gradient(135deg, #f5d0fe, #ddd6fe);
    color: #7c3aed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.howto-modal-copy-item strong {
    display: block;
    margin-bottom: 0.18rem;
    color: #0f172a;
}

.howto-modal-copy-item p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.howto-modal-actions {
    display: grid;
    gap: 0.75rem;
}

.howto-modal-primary {
    width: 100%;
    border: none;
    border-radius: 9999px;
    background: #020617;
    color: #ffffff;
    font-weight: 700;
    padding: 1rem 1.25rem;
}

.howto-modal-secondary {
    text-align: center;
    color: #94a3b8;
    font-size: 0.95rem;
}

body.modal-open {
    overflow: hidden;
}

.brand-mark-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 auto;
}

.brand-mark-wrap-sm {
    width: 2.55rem;
    height: 2.55rem;
}

.brand-mark-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.game-share-panel {
    text-align: left;
}

.game-share-label {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #64748b;
}

.game-share-label-dark {
    color: rgba(255, 255, 255, 0.74);
}

.game-share-input {
    width: 100%;
    border: 1px solid #dbe3ee;
    border-radius: 9999px;
    background: #ffffff;
    color: #0f172a;
    padding: 0.5rem 0.7rem;
    font-size: 0.95rem;
    line-height: 1.0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.game-share-input:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.12);
}

.game-share-input-dark {
    border-color: rgba(148, 163, 184, 0.28);
    background: rgba(15, 23, 42, 0.34);
    color: #ffffff;
}

.game-share-input-dark::placeholder {
    color: rgba(226, 232, 240, 0.68);
}

.cartoon-strip-section {
    padding: 0 0 2.5rem;
}

.cartoon-strip-shell {
    max-width: 58rem;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.98));
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
    padding: 1.5rem 1.6rem;
}

.cartoon-strip-eyebrow {
    margin: 0 0 0.6rem;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #7c3aed;
    text-align: center;
}

.cartoon-strip-header {
    display: grid;
    justify-items: center;
    gap: 0.9rem;
    margin-bottom: 1.35rem;
    text-align: center;
}

.cartoon-strip-title {
    margin: 0;
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.cartoon-strip-copy {
    margin: 0.45rem 0 0;
    max-width: 36rem;
    color: #64748b;
    line-height: 1.75;
    text-align: center;
}

.cartoon-strip-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    border-radius: 9999px;
    padding: 0.8rem 1.25rem;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
}

.cartoon-strip-marquee {
    position: relative;
    display: flex;
    gap: 1rem;
    overflow: hidden;
    align-items: stretch;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.cartoon-strip-track {
    display: flex;
    gap: 0.95rem;
    min-width: max-content;
    flex: 0 0 auto;
    animation: cartoon-strip-scroll 32s linear infinite;
}

.cartoon-strip-marquee:hover .cartoon-strip-track {
    animation-play-state: paused;
}

.cartoon-strip-card {
    width: 6.5rem;
    flex: 0 0 auto;
    display: grid;
    gap: 0.55rem;
    justify-items: center;
    text-align: center;
    color: #334155;
}

.cartoon-strip-avatar {
    width: 4.35rem;
    height: 4.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 0.16rem;
    background: linear-gradient(135deg, #f59e0b, #ec4899, #8b5cf6);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.cartoon-strip-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    object-fit: cover;
    background: #ffffff;
    border: 3px solid #ffffff;
}

.cartoon-strip-name {
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

@keyframes cartoon-strip-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 1rem));
    }
}

.site-footer {
    position: relative;
}

.site-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 2.2rem;
    padding: 1.35rem 1.45rem;
    border: 1px solid #e2e8f0;
    border-radius: 1.8rem;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.site-footer-kicker {
    margin: 0 0 0.45rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #7c3aed;
}

.site-footer-heading {
    margin: 0;
    max-width: 38rem;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.site-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: flex-end;
}

.site-footer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.9rem;
    padding: 0.8rem 1.1rem;
    border-radius: 9999px;
    background: #0f172a;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
}

.site-footer-pill-muted {
    background: #eef2ff;
    color: #4338ca;
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    margin-top: 2.2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.site-footer-copyright,
.site-footer-note {
    margin: 0;
}

.site-footer-copyright {
    font-size: 0.96rem;
    color: #475569;
}

.site-footer-note {
    margin-top: 0.3rem;
    font-size: 0.88rem;
    color: #94a3b8;
}

.site-footer-mini-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem 1.3rem;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 767px) {
    .faq-summary {
        padding: 1.1rem 1.15rem;
    }

    .faq-content {
        padding: 0 1.15rem 1.1rem;
    }

    .howto-modal-dialog {
        border-radius: 1.7rem;
        padding: 1.35rem 1.1rem 1.1rem;
    }

    .howto-modal-title {
        font-size: 1.7rem;
    }

    .cartoon-strip-section {
        padding-bottom: 2rem;
    }

    .cartoon-strip-shell {
        max-width: 41rem;
        padding: 1.2rem 1rem 1.15rem;
        border-radius: 1.5rem;
    }

    .cartoon-strip-header,
    .site-footer-top,
    .site-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .cartoon-strip-cta,
    .site-footer-actions,
    .site-footer-mini-nav {
        justify-content: flex-start;
    }

    .cartoon-strip-header {
        justify-items: center;
        text-align: center;
        margin-bottom: 1rem;
    }

    .cartoon-strip-eyebrow,
    .cartoon-strip-copy {
        text-align: center;
    }

    .cartoon-strip-cta {
        min-height: 2.55rem;
        padding: 0.66rem 0.95rem;
        font-size: 0.84rem;
    }

    .cartoon-strip-card {
        width: 5.4rem;
    }

    .cartoon-strip-avatar {
        width: 3.6rem;
        height: 3.6rem;
    }

    .site-footer-top {
        margin-bottom: 1.8rem;
        padding: 1.15rem;
        border-radius: 1.45rem;
    }

    .site-footer-bottom {
        margin-top: 1.8rem;
        padding-top: 1.25rem;
    }
}
