.mc-home {
    --mc-ink: #16213e;
    --mc-muted: #5f6f89;
    --mc-site-bg: var(--theme-body-bg, #8abdff);
    --mc-soft: #fff7ed;
    --mc-line: rgba(22, 33, 62, 0.11);
    --mc-pink: #ff4f86;
    --mc-coral: #ff7657;
    --mc-cyan: #16c7d9;
    --mc-yellow: #ffc94a;
    --mc-green: #28c76f;
    --mc-shadow: 0 16px 44px rgba(36, 44, 84, 0.14);
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 18% 4%, rgba(255, 245, 160, 0.42), transparent 28rem),
        radial-gradient(circle at 86% 12%, rgba(255, 79, 134, 0.24), transparent 24rem),
        linear-gradient(180deg, rgba(138, 189, 255, 0.92) 0%, rgba(138, 189, 255, 0.74) 48%, rgba(219, 241, 255, 0.72) 100%),
        var(--mc-site-bg);
    color: var(--mc-ink);
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

.mc-home *,
.mc-home *::before,
.mc-home *::after {
    box-sizing: border-box;
    letter-spacing: 0;
}

.mc-home a {
    color: inherit;
}

.mc-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.mc-skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 2000;
    padding: 10px 14px;
    border-radius: 6px;
    background: #ffffff;
    color: var(--mc-ink);
    font-weight: 700;
    transition: top 0.18s ease;
}

.mc-skip-link:focus {
    top: 10px;
}

.mc-skeleton-screen {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 24px;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(138, 189, 255, 0.96), rgba(219, 241, 255, 0.94)),
        var(--mc-site-bg);
    animation: mcSkeletonAutoHide 0.55s ease 1.05s forwards;
}

.mc-page-ready .mc-skeleton-screen {
    animation: none;
    opacity: 0;
    visibility: hidden;
}

.mc-skeleton-shell {
    width: min(760px, 92vw);
    display: grid;
    gap: 14px;
}

.mc-skeleton-shell span {
    display: block;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36));
    background-size: 220% 100%;
    box-shadow: 0 12px 30px rgba(22, 33, 62, 0.08);
    animation: mcSkeletonShimmer 1.05s ease-in-out infinite;
}

.mc-skeleton-shell span:first-child {
    width: 58%;
    height: 54px;
}

.mc-skeleton-shell span:nth-child(2) {
    width: 100%;
    height: 180px;
    border-radius: 8px;
}

.mc-skeleton-shell span:nth-child(3) {
    width: 74%;
    height: 48px;
}

@keyframes mcSkeletonShimmer {
    0% { background-position: 120% 0; }
    100% { background-position: -120% 0; }
}

@keyframes mcSkeletonAutoHide {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

.mc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(22, 33, 62, 0.08);
    box-shadow: 0 10px 30px rgba(22, 33, 62, 0.08);
    backdrop-filter: blur(14px);
}

.mc-header-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
}

.mc-brand,
.mc-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--mc-ink);
    font-size: 1.05rem;
    font-weight: 800;
    text-decoration: none;
}

.mc-brand:hover,
.mc-footer-brand:hover {
    text-decoration: none;
    color: var(--mc-ink);
}

.mc-brand img {
    border-radius: 8px;
}

.mc-desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.mc-desktop-nav > a,
.mc-nav-dropdown > summary {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border-radius: 999px;
    color: #2b3651;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    list-style: none;
}

.mc-desktop-nav > a:hover,
.mc-nav-dropdown > summary:hover {
    background: rgba(255, 79, 134, 0.1);
    color: #d92f6a;
    text-decoration: none;
}

.mc-nav-dropdown {
    position: relative;
}

.mc-nav-dropdown > summary::-webkit-details-marker,
.mc-lang-dropdown > summary::-webkit-details-marker,
.mc-mobile-details > summary::-webkit-details-marker,
.mc-footer-lang > summary::-webkit-details-marker,
.mc-seo-item > summary::-webkit-details-marker {
    display: none;
}

.mc-nav-dropdown > summary::after,
.mc-lang-dropdown > summary::after,
.mc-mobile-details > summary::after,
.mc-footer-lang > summary::after,
.mc-seo-item > summary::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.16s ease;
}

.mc-nav-dropdown[open] > summary::after,
.mc-lang-dropdown[open] > summary::after,
.mc-mobile-details[open] > summary::after,
.mc-footer-lang[open] > summary::after,
.mc-seo-item[open] > summary::after {
    transform: rotate(225deg) translateY(-2px);
}

.mc-dropdown-menu,
.mc-lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 238px;
    max-height: 70vh;
    overflow: auto;
    padding: 8px;
    border: 1px solid var(--mc-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--mc-shadow);
}

.mc-dropdown-menu a,
.mc-lang-menu a,
.mc-mobile-panel a,
.mc-mobile-details a,
.mc-footer a,
.mc-footer-lang a {
    display: block;
    text-decoration: none;
}

.mc-dropdown-menu a,
.mc-lang-menu a {
    padding: 10px 11px;
    border-radius: 6px;
    color: #2c3854;
    font-size: 0.9rem;
    font-weight: 700;
}

.mc-dropdown-menu a:hover,
.mc-lang-menu a:hover,
.mc-lang-menu a[aria-current="true"] {
    background: #fff0f5;
    color: #d92f6a;
    text-decoration: none;
}

.mc-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mc-lang-dropdown {
    position: relative;
}

.mc-lang-dropdown > summary {
    min-height: 42px;
    max-width: 190px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--mc-line);
    border-radius: 999px;
    background: #ffffff;
    color: #293551;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    white-space: nowrap;
}

.mc-btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 0;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.mc-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.mc-btn-primary {
    background: linear-gradient(135deg, var(--mc-pink), var(--mc-coral));
    color: #ffffff !important;
    box-shadow: 0 12px 26px rgba(255, 79, 134, 0.32);
}

.mc-btn-secondary {
    background: #ffffff;
    color: var(--mc-ink) !important;
    border: 1px solid rgba(22, 33, 62, 0.13);
    box-shadow: 0 10px 26px rgba(22, 33, 62, 0.1);
}

.mc-btn-light {
    background: #ffffff;
    color: #d92f6a !important;
    box-shadow: 0 12px 28px rgba(22, 33, 62, 0.16);
}

.mc-btn-ghost {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.mc-nav-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.mc-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    border: 1px solid var(--mc-line);
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
}

.mc-menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 3px;
    background: var(--mc-ink);
}

.mc-mobile-panel {
    display: none;
}

.mc-hero {
    padding: 58px 0 50px;
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 201, 74, 0.32), transparent 19rem),
        radial-gradient(circle at 94% 10%, rgba(255, 79, 134, 0.22), transparent 22rem),
        linear-gradient(135deg, rgba(138, 189, 255, 0.98) 0%, rgba(226, 246, 255, 0.86) 52%, rgba(255, 240, 245, 0.76) 100%);
    border-bottom: 1px solid rgba(22, 33, 62, 0.06);
}

.mc-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
    align-items: center;
    gap: 44px;
}

.mc-eyebrow {
    margin: 0 0 12px;
    color: #d92f6a;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mc-hero h1,
.mc-section-head h2,
.mc-featured h2 {
    margin: 0;
    color: var(--mc-ink);
    font-weight: 800;
    line-height: 1.04;
}

.mc-hero h1 {
    max-width: 720px;
    font-size: clamp(2.55rem, 6vw, 4.75rem);
}

.mc-hero-text {
    max-width: 650px;
    margin: 18px 0 0;
    color: #40506b;
    font-size: clamp(1rem, 2vw, 1.16rem);
    line-height: 1.7;
}

.mc-hero-actions,
.mc-featured-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.mc-trust-line {
    margin: 17px 0 0;
    color: #50617c;
    font-size: 0.92rem;
    font-weight: 700;
}

.mc-search,
.mc-live-search-form {
    width: min(100%, 650px);
    min-height: 58px;
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    padding: 7px;
    border: 1px solid rgba(22, 33, 62, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(22, 33, 62, 0.12);
}

.mc-live-search {
    position: relative;
    width: min(100%, 650px);
    margin-top: 26px;
}

.mc-live-search-form {
    margin: 0;
}

.mc-search-icon {
    width: 18px;
    height: 18px;
    margin-left: 11px;
    border: 3px solid var(--mc-cyan);
    border-radius: 50%;
    position: relative;
}

.mc-search-icon::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 3px;
    right: -7px;
    bottom: -4px;
    border-radius: 4px;
    background: var(--mc-cyan);
    transform: rotate(45deg);
}

.mc-search input,
.mc-live-search-input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--mc-ink);
    font-size: 0.95rem;
    font-weight: 600;
}

.mc-search button,
.mc-live-search-form button {
    min-height: 44px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: #16213e;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
}

.mc-live-search-nav {
    width: clamp(190px, 18vw, 245px);
    margin-top: 0;
}

.mc-live-search-nav .mc-live-search-form {
    width: 100%;
    min-height: 42px;
    grid-template-columns: 30px 1fr;
    padding: 5px 8px 5px 5px;
    box-shadow: none;
}

.mc-live-search-nav .mc-search-icon {
    margin-left: 8px;
}

.mc-live-search-nav button {
    display: none;
}

.mc-live-search-mobile {
    width: 100%;
    margin: 5px 0 8px;
}

.mc-live-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 1300;
    display: none;
    max-height: min(430px, 72vh);
    overflow: auto;
    padding: 8px;
    border: 1px solid rgba(22, 33, 62, 0.12);
    border-radius: 8px;
    background: #ffffff;
    color: var(--mc-ink);
    box-shadow: 0 20px 46px rgba(22, 33, 62, 0.18);
}

.mc-live-results.is-open {
    display: block;
}

.mc-live-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px;
    border-radius: 8px;
    color: var(--mc-ink);
    text-decoration: none;
}

.mc-live-item:hover,
.mc-live-all:hover {
    background: #eef7ff;
    color: #d92f6a;
    text-decoration: none;
}

.mc-live-thumb {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 8px;
    background: linear-gradient(135deg, #dff5ff, #fff0f5);
    object-fit: cover;
}

.mc-live-text {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.mc-live-title {
    overflow: hidden;
    color: #17213b;
    font-size: 0.91rem;
    font-weight: 800;
    line-height: 1.22;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mc-live-snip {
    display: -webkit-box;
    overflow: hidden;
    color: var(--mc-muted);
    font-size: 0.78rem;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.mc-live-all,
.mc-live-empty {
    display: block;
    margin-top: 4px;
    padding: 11px 10px;
    border-radius: 8px;
    color: #087e8b;
    font-size: 0.86rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.mc-live-empty {
    color: var(--mc-muted);
    font-weight: 700;
}

.mc-live-loading {
    display: grid;
    gap: 8px;
    padding: 6px;
}

.mc-live-loading span {
    height: 42px;
    border-radius: 8px;
    background: linear-gradient(90deg, #eef7ff, #ffffff, #eef7ff);
    background-size: 220% 100%;
    animation: mcSkeletonShimmer 1.05s ease-in-out infinite;
}

.mc-quick-search {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 13px;
}

.mc-quick-search a,
.mc-chip-row a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid rgba(22, 33, 62, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: #31405b;
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.mc-quick-search a:hover,
.mc-chip-row a:hover {
    background: #ffffff;
    color: #d92f6a;
    text-decoration: none;
}

.mc-mobile-game-strip {
    display: none;
}

.mc-hero-visual {
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mc-preview-board {
    width: min(100%, 390px);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 8px;
    background:
        linear-gradient(160deg, rgba(22, 33, 62, 0.96), rgba(37, 58, 101, 0.96));
    box-shadow: 0 26px 70px rgba(22, 33, 62, 0.28);
    color: #ffffff;
}

.mc-preview-top,
.mc-preview-cards {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mc-preview-top span,
.mc-preview-top strong {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
}

.mc-preview-top strong {
    color: #16213e;
    background: var(--mc-yellow);
}

.mc-preview-main {
    margin: 18px 0;
    padding: 24px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--mc-ink);
}

.mc-avatar-stack {
    display: flex;
    margin-bottom: 16px;
}

.mc-avatar-stack span {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: -8px;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mc-cyan), var(--mc-green));
    color: #ffffff;
    font-weight: 800;
}

.mc-avatar-stack span:nth-child(2) {
    background: linear-gradient(135deg, var(--mc-pink), var(--mc-coral));
}

.mc-avatar-stack span:nth-child(3) {
    background: linear-gradient(135deg, var(--mc-yellow), #ff9a4a);
}

.mc-preview-main h2 {
    margin: 0;
    font-size: 1.55rem;
    font-weight: 800;
}

.mc-preview-main p {
    margin: 10px 0 18px;
    color: #52627d;
    line-height: 1.55;
}

.mc-preview-progress {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #edf3f7;
}

.mc-preview-progress span {
    display: block;
    width: 78%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--mc-cyan), var(--mc-green), var(--mc-yellow));
}

.mc-preview-cards > div {
    flex: 1;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
}

.mc-preview-cards span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.77rem;
    font-weight: 700;
}

.mc-preview-cards strong {
    display: block;
    margin-top: 5px;
    font-size: 1.7rem;
}

.mc-section {
    padding: 60px 0;
    background: transparent;
}

.mc-section-head {
    max-width: 680px;
    margin-bottom: 28px;
}

.mc-section-head-row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.mc-section-head h2,
.mc-featured h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.mc-section-head p {
    margin: 10px 0 0;
    color: var(--mc-muted);
    font-size: 1rem;
    line-height: 1.65;
}

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

.mc-game-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(22, 33, 62, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--mc-ink);
    box-shadow: 0 12px 30px rgba(22, 33, 62, 0.08);
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mc-game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--mc-shadow);
    color: var(--mc-ink);
    text-decoration: none;
}

.mc-game-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #dff5ff, #fff0f5);
}

.mc-game-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 8px;
}

.mc-game-media span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    min-width: 40px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 9px;
    border-radius: 999px;
    background: #ffffff;
    color: #d92f6a;
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(22, 33, 62, 0.18);
}

.mc-game-body {
    flex: 1;
    padding: 18px 18px 8px;
}

.mc-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.mc-card-meta span,
.mc-card-meta small {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #fff0f5;
    color: #d92f6a;
    font-size: 0.72rem;
    font-weight: 800;
}

.mc-card-meta small {
    background: #eefcff;
    color: #087e8b;
}

.mc-game-card h3 {
    margin: 0;
    color: var(--mc-ink);
    font-size: 1.13rem;
    font-weight: 800;
    line-height: 1.28;
}

.mc-game-card p {
    margin: 10px 0 0;
    color: var(--mc-muted);
    font-size: 0.9rem;
    line-height: 1.58;
}

.mc-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 50px;
    margin: 10px 18px 18px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #16213e;
    color: #ffffff;
    font-size: 0.9rem;
}

.mc-card-cta::after {
    content: "";
    width: 9px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.theme-love .mc-card-cta,
.theme-confession .mc-card-cta {
    background: linear-gradient(135deg, var(--mc-pink), var(--mc-coral));
}

.theme-school .mc-card-cta,
.theme-mirror .mc-card-cta {
    background: linear-gradient(135deg, var(--mc-cyan), #2489ff);
}

.theme-festival .mc-card-cta {
    background: linear-gradient(135deg, #ff9a4a, var(--mc-yellow));
    color: #4b2b00;
}

.theme-personality .mc-card-cta {
    background: linear-gradient(135deg, #7c5cff, #20c997);
}

.theme-horror .mc-card-cta,
.theme-lie .mc-card-cta {
    background: linear-gradient(135deg, #2a194d, #b5175c);
}

.mc-promo-wrap {
    margin-top: 28px;
}

.mc-promo-wrap:empty {
    display: none;
}

.mc-mood-section {
    padding-top: 28px;
    background: rgba(255, 255, 255, 0.24);
}

.mc-chip-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 3px 0 8px;
    scrollbar-width: thin;
}

.mc-chip-row a {
    flex: 0 0 auto;
    min-height: 44px;
    background: #ffffff;
}

.mc-chip-row span {
    min-width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #16213e;
    color: #ffffff;
    font-size: 0.74rem;
}

.mc-featured-section {
    padding-top: 30px;
}

.mc-featured {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
    gap: 34px;
    align-items: center;
    overflow: hidden;
    padding: 34px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, #ff4f86 0%, #ff7657 48%, #16c7d9 100%);
    color: #ffffff;
    box-shadow: var(--mc-shadow);
}

.mc-featured h2 {
    color: #ffffff;
}

.mc-featured p {
    max-width: 620px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.04rem;
    line-height: 1.68;
}

.mc-featured-badge {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 6px 11px;
    margin-bottom: 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 800;
}

.mc-score-preview {
    display: flex;
    justify-content: center;
}

.mc-score-card {
    width: min(100%, 310px);
    padding: 20px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--mc-ink);
    box-shadow: 0 20px 44px rgba(22, 33, 62, 0.2);
}

.mc-score-card > span {
    color: var(--mc-muted);
    font-size: 0.84rem;
    font-weight: 800;
}

.mc-score-card > strong {
    display: block;
    margin: 4px 0 16px;
    font-size: 3.2rem;
    line-height: 1;
}

.mc-score-list {
    display: grid;
    gap: 9px;
}

.mc-score-list p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding: 10px;
    border-radius: 8px;
    background: #f5f7fb;
    color: #31405b;
    font-size: 0.86rem;
}

.mc-score-list b {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--mc-yellow);
    color: #4b2b00;
}

.mc-score-list span {
    margin-left: auto;
    font-weight: 800;
}

.mc-steps,
.mc-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.mc-step-card,
.mc-trust-grid div {
    min-height: 100%;
    padding: 20px;
    border: 1px solid rgba(22, 33, 62, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 26px rgba(22, 33, 62, 0.07);
}

.mc-step-card span {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mc-cyan), var(--mc-green));
    color: #ffffff;
    font-weight: 800;
}

.mc-step-card:nth-child(2) span {
    background: linear-gradient(135deg, var(--mc-pink), var(--mc-coral));
}

.mc-step-card:nth-child(3) span {
    background: linear-gradient(135deg, var(--mc-yellow), #ff9a4a);
    color: #4b2b00;
}

.mc-step-card:nth-child(4) span {
    background: linear-gradient(135deg, #7c5cff, #20c997);
}

.mc-step-card h3,
.mc-trust-grid strong {
    display: block;
    margin: 0 0 8px;
    color: var(--mc-ink);
    font-size: 1rem;
    font-weight: 800;
}

.mc-step-card p,
.mc-trust-grid span {
    margin: 0;
    color: var(--mc-muted);
    font-size: 0.9rem;
    line-height: 1.58;
}

.mc-trending-section {
    background: linear-gradient(135deg, rgba(111, 203, 255, 0.24), rgba(255, 247, 237, 0.34));
}

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

.mc-home .mc-trend-card {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(22, 33, 62, 0.14);
}

.mc-home .mc-trend-card:hover {
    color: #ffffff;
    transform: translateY(-4px);
    text-decoration: none;
}

.mc-trend-card span {
    width: fit-content;
    min-height: 29px;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.75rem;
    font-weight: 800;
}

.mc-trend-card h3 {
    margin: 18px 0 8px;
    color: inherit;
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.25;
}

.mc-trend-card p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.88rem;
    line-height: 1.55;
}

.mc-trend-card strong {
    margin-top: 18px;
}

.mc-trend-card.theme-horror {
    background: linear-gradient(135deg, #1f1235, #5c1f7a 54%, #b5175c);
}

.mc-trend-card.theme-confession {
    background: linear-gradient(135deg, #ff719b, #ff9f7a);
}

.mc-trend-card.theme-mirror {
    background: linear-gradient(135deg, #0ea5b7, #2563eb);
}

.mc-trend-card.theme-lie {
    background: linear-gradient(135deg, #172033, #e23d59);
}

.mc-trust-section {
    background: rgba(255, 255, 255, 0.26);
}

.mc-seo-section {
    padding-bottom: 70px;
}

.mc-accordion {
    display: grid;
    gap: 12px;
}

.mc-seo-item {
    border: 1px solid rgba(22, 33, 62, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 20px rgba(22, 33, 62, 0.05);
}

.mc-seo-item summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    color: var(--mc-ink);
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.mc-seo-item > div {
    padding: 0 18px 18px;
    color: var(--mc-muted);
    line-height: 1.7;
}

.mc-seo-item p {
    margin: 0;
}

.mc-seo-item a {
    display: inline-flex;
    margin-top: 12px;
    color: #d92f6a;
    font-weight: 800;
    text-decoration: none;
}

.mc-seo-item a:hover {
    text-decoration: underline;
}

.mc-footer {
    padding: 46px 0 24px;
    background: #16213e;
    color: rgba(255, 255, 255, 0.78);
}

.mc-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 28px;
}

.mc-footer-brand {
    color: #ffffff;
}

.mc-footer-brand:hover {
    color: #ffffff;
}

.mc-footer p {
    margin: 12px 0 0;
    line-height: 1.6;
}

.mc-footer h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 800;
}

.mc-footer a {
    width: fit-content;
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
}

.mc-footer a:hover {
    color: #ffffff;
}

.mc-footer-lang {
    position: relative;
}

.mc-footer-lang summary {
    width: fit-content;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.mc-footer-lang div {
    max-height: 260px;
    overflow: auto;
    margin-top: 10px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.mc-footer-lang a[aria-current="true"] {
    color: #ffffff;
    font-weight: 800;
}

.mc-footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mc-footer-bottom p {
    margin: 0;
    font-size: 0.86rem;
}

[dir="rtl"] .mc-desktop-nav,
[dir="rtl"] .mc-header-actions,
[dir="rtl"] .mc-hero-grid,
[dir="rtl"] .mc-featured,
[dir="rtl"] .mc-footer-grid {
    direction: rtl;
}

[dir="rtl"] .mc-dropdown-menu,
[dir="rtl"] .mc-lang-menu {
    left: 0;
    right: auto;
    text-align: right;
}

@media (max-width: 980px) {
    .mc-header-inner {
        min-height: 62px;
    }

    .mc-desktop-nav,
    .mc-header-actions {
        display: none;
    }

    .mc-menu-button {
        display: inline-flex;
    }

    .mc-nav-toggle:checked ~ .mc-mobile-panel {
        display: flex;
    }

    .mc-mobile-panel {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        flex-direction: column;
        gap: 6px;
        padding: 12px;
        border: 1px solid var(--mc-line);
        border-radius: 8px;
        background: #ffffff;
        box-shadow: var(--mc-shadow);
    }

    .mc-mobile-panel a,
    .mc-mobile-details > summary {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 10px 12px;
        border-radius: 6px;
        color: #2b3651;
        font-weight: 800;
        list-style: none;
    }

    .mc-mobile-panel a:hover,
    .mc-mobile-details > summary:hover {
        background: #fff0f5;
        color: #d92f6a;
        text-decoration: none;
    }

    .mc-mobile-details div {
        display: grid;
        gap: 3px;
        padding: 3px 0 8px 12px;
    }

    .mc-mobile-panel .mc-live-results a {
        min-height: auto;
        padding: 10px;
        border-radius: 8px;
    }

    .mc-mobile-panel .mc-live-all {
        display: block;
        padding: 11px 10px;
        text-align: center;
    }

    .mc-hero {
        padding: 40px 0 34px;
    }

    .mc-hero-grid,
    .mc-featured {
        grid-template-columns: 1fr;
    }

    .mc-hero-grid > * {
        min-width: 0;
    }

    .mc-hero-visual {
        min-height: 0;
    }

    .mc-card-grid,
    .mc-steps,
    .mc-trending-grid,
    .mc-trust-grid,
    .mc-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mc-shell {
        width: min(100% - 24px, 1120px);
    }

    .mc-brand span {
        font-size: 0.96rem;
    }

    .mc-hero {
        padding: 28px 0 30px;
    }

    .mc-hero h1 {
        font-size: clamp(2.15rem, 11vw, 2.8rem);
    }

    .mc-hero-text {
        margin-top: 12px;
        line-height: 1.55;
    }

    .mc-hero-actions,
    .mc-featured-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 18px;
    }

    .mc-btn {
        width: 100%;
        min-height: 50px;
    }

    .mc-mobile-game-strip {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin-top: 18px;
        padding: 12px;
        border: 1px solid rgba(22, 33, 62, 0.1);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: 0 12px 28px rgba(22, 33, 62, 0.1);
    }

    .mc-mobile-game-strip-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
    }

    .mc-mobile-game-strip-head span {
        color: var(--mc-ink);
        font-size: 0.84rem;
        font-weight: 800;
    }

    .mc-mobile-game-strip-head a {
        flex: 0 0 auto;
        color: #d92f6a;
        font-size: 0.78rem;
        font-weight: 800;
        text-decoration: none;
    }

    .mc-mobile-game-rail {
        max-width: 100%;
        min-width: 0;
        display: flex;
        gap: 10px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        padding-bottom: 2px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .mc-mobile-game-pill {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-items: center;
        column-gap: 9px;
        flex: 0 0 190px;
        min-height: 70px;
        padding: 9px;
        border: 1px solid rgba(22, 33, 62, 0.1);
        border-radius: 8px;
        background: #ffffff;
        color: var(--mc-ink);
        text-decoration: none;
        scroll-snap-align: start;
    }

    .mc-mobile-game-pill img {
        grid-row: 1 / 3;
        width: 46px;
        height: 46px;
        border-radius: 7px;
        background: #f3f8ff;
        object-fit: contain;
    }

    .mc-mobile-game-pill span {
        overflow: hidden;
        color: var(--mc-ink);
        font-size: 0.86rem;
        font-weight: 800;
        line-height: 1.18;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mc-mobile-game-pill small {
        overflow: hidden;
        color: #d92f6a;
        font-size: 0.72rem;
        font-weight: 800;
        line-height: 1.2;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mc-trust-line {
        margin-top: 12px;
        font-size: 0.86rem;
    }

    .mc-search,
    .mc-live-search-form {
        grid-template-columns: 28px 1fr;
        border-radius: 8px;
    }

    .mc-search input,
    .mc-live-search-input {
        font-size: 0.9rem;
    }

    .mc-search button,
    .mc-live-search-form button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .mc-quick-search {
        display: none;
    }

    .mc-card-grid,
    .mc-steps,
    .mc-trending-grid,
    .mc-trust-grid,
    .mc-footer-grid {
        grid-template-columns: 1fr;
    }

    .mc-section {
        padding: 42px 0;
    }

    .mc-card-grid {
        gap: 16px;
    }

    .mc-game-card {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .mc-game-media {
        min-height: 168px;
        aspect-ratio: 16 / 9;
    }

    .mc-game-media img {
        padding: 10px;
    }

    .mc-game-media span {
        left: 10px;
        bottom: 10px;
        min-width: 38px;
        height: 32px;
        padding: 0 9px;
        font-size: 0.74rem;
    }

    .mc-game-body {
        flex: 1;
        min-width: 0;
        padding: 14px 14px 6px;
    }

    .mc-card-meta {
        gap: 6px;
        margin-bottom: 7px;
    }

    .mc-card-meta span,
    .mc-card-meta small {
        min-height: 24px;
        padding: 4px 7px;
        font-size: 0.66rem;
    }

    .mc-game-card h3 {
        font-size: 1.05rem;
        line-height: 1.24;
    }

    .mc-game-card p {
        display: -webkit-box;
        overflow: hidden;
        margin-top: 8px;
        font-size: 0.84rem;
        line-height: 1.48;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .mc-card-cta {
        min-height: 42px;
        margin: 10px 14px 14px;
        padding: 9px 12px;
        font-size: 0.84rem;
    }

    .mc-section-head-row {
        display: block;
    }

    .mc-featured {
        padding: 24px 18px;
    }

    .mc-preview-board {
        padding: 14px;
    }

    .mc-hero-visual {
        display: none;
    }

    .mc-preview-main {
        padding: 18px;
    }

    .mc-preview-cards {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mc-trend-card {
        min-height: 196px;
    }
}
