:root {
    --home-bg: #f2f0ea;
    --home-surface: rgba(255, 255, 255, 0.68);
    --home-surface-strong: rgba(255, 255, 255, 0.88);
    --home-line: rgba(19, 23, 31, 0.1);
    --home-line-strong: rgba(19, 23, 31, 0.16);
    --home-text: #12151c;
    --home-muted: #5e6372;
    --home-muted-soft: #848a96;
    --home-accent: #7db8ff;
    --home-accent-strong: #1d5fff;
    --home-accent-mint: #9ce4d6;
    --home-shadow: 0 18px 60px rgba(16, 22, 35, 0.08);
    --home-shadow-strong: 0 26px 100px rgba(16, 22, 35, 0.16);
    --home-dark: #07090d;
    --home-dark-soft: #11151d;
}

html {
    scroll-behavior: smooth;
}

body.home-body {
    position: relative;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--home-bg);
    color: var(--home-text);
    font-family: 'Noto Sans SC', sans-serif;
}

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

body.home-body img {
    display: block;
}

body.home-body a {
    color: inherit;
    text-decoration: none;
}

[data-float] {
    will-change: transform;
}

.page-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(18, 21, 28, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 21, 28, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, #f6f3ee 0%, #f2f0ea 48%, #f7f4ee 100%);
    background-size: 124px 124px, 124px 124px, 100% 100%;
}

.page-background::before,
.page-background::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    opacity: 0.75;
}

.page-background::before {
    top: -18vh;
    right: -12vw;
    width: 44vw;
    height: 44vw;
    background: radial-gradient(circle, rgba(135, 192, 255, 0.42) 0%, rgba(135, 192, 255, 0.18) 32%, transparent 68%);
}

.page-background::after {
    left: -18vw;
    bottom: 10vh;
    width: 36vw;
    height: 36vw;
    background: radial-gradient(circle, rgba(156, 228, 214, 0.34) 0%, rgba(244, 195, 110, 0.12) 46%, transparent 70%);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    padding-top: 18px;
    pointer-events: none;
    transition: padding 220ms ease;
}

.site-header > * {
    pointer-events: auto;
}

.site-nav-shell,
.site-mobile-panel {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    border: 1px solid var(--home-line);
    background: rgba(246, 243, 238, 0.76);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 8px 30px rgba(16, 22, 35, 0.06);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease,
        width 220ms ease,
        padding 220ms ease;
}

.site-nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.85rem 1.05rem;
    border-radius: 999px;
}

.site-header.is-top {
    padding-top: 24px;
}

.site-header.is-top .site-nav-shell {
    width: min(1280px, calc(100% - 48px));
    padding: 0.45rem 0;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header.is-top .site-nav {
    background: transparent;
    border-color: transparent;
}

.site-header.is-top .site-nav-link,
.site-header.is-top .site-nav-ghost {
    background: transparent;
}

.site-header.is-top .site-nav-ghost {
    border-color: rgba(18, 21, 28, 0.06);
}

.site-header.is-top .site-nav-cta {
    box-shadow: 0 10px 20px rgba(17, 17, 17, 0.16);
}

.site-header.is-scrolled .site-nav-shell {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(16, 22, 35, 0.12);
    background: rgba(250, 248, 244, 0.9);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.site-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(33, 79, 255, 0.15));
}

.site-brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.site-brand-name,
.site-brand-sub,
.site-nav-link,
.site-nav-ghost,
.site-nav-cta,
.site-mobile-link,
.section-kicker,
.contact-card-label,
.about-card-meta,
.carousel-meta,
.activity-live,
.hero-visual-badge {
    letter-spacing: 0.03em;
}

.site-brand-name {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.05;
}

.site-brand-sub {
    margin-top: 0.18rem;
    color: var(--home-muted-soft);
    font-size: 0.68rem;
    font-weight: 600;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(18, 21, 28, 0.06);
}

.site-nav-link,
.site-nav-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--home-muted);
    font-size: 0.93rem;
    font-weight: 600;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav-link {
    min-height: 42px;
    padding: 0 1rem;
}

.site-nav-link:hover,
.site-nav-link.is-active {
    color: var(--home-text);
    background: rgba(18, 21, 28, 0.08);
}

.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-nav-ghost {
    min-height: 42px;
    padding: 0 1rem;
    border: 1px solid rgba(18, 21, 28, 0.08);
    background: rgba(255, 255, 255, 0.45);
}

.site-nav-ghost:hover {
    background: rgba(18, 21, 28, 0.06);
}

.site-nav-cta,
.button-primary,
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0 1.3rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-nav-cta,
.button-primary {
    color: #ffffff;
    background: #111111;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.2);
}

.site-nav-cta,
.button-primary,
.game-card-link {
    color: #ffffff !important;
}

.site-nav-cta *,
.button-primary *,
.game-card-link * {
    color: inherit !important;
}

.site-nav-cta:hover,
.button-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 26px rgba(17, 17, 17, 0.22);
}

.button-primary-light {
    background: #ffffff;
    color: #111111;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.button-primary-light,
.button-primary-light * {
    color: #111111 !important;
}

.button-primary-light:hover {
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
}

.button-secondary {
    color: var(--home-text);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(18, 21, 28, 0.1);
}

.button-secondary:hover {
    transform: translateY(-1px);
    border-color: rgba(18, 21, 28, 0.18);
    background: rgba(255, 255, 255, 0.88);
}

.button-secondary-light {
    color: #f4f6fb;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.button-secondary-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.26);
}

.site-nav-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(18, 21, 28, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    color: var(--home-text);
}

.site-nav-menu-button svg,
.scroll-indicator svg,
.carousel-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-mobile-panel {
    margin-top: 12px;
    padding: 1rem;
    border-radius: 28px;
    box-shadow: 0 20px 48px rgba(16, 22, 35, 0.16);
}

.site-mobile-nav {
    display: grid;
    gap: 0.55rem;
}

.site-mobile-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 1rem;
    border: 1px solid rgba(18, 21, 28, 0.08);
    border-radius: 16px;
    color: var(--home-text);
    background: rgba(255, 255, 255, 0.6);
    font-size: 0.96rem;
    font-weight: 600;
}

.site-mobile-actions {
    display: grid;
    gap: 0.85rem;
    margin-top: 1rem;
}

.site-nav-cta-full {
    width: 100%;
}

.site-main {
    position: relative;
    z-index: 1;
}

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

.hero-section,
.content-section {
    position: relative;
    isolation: isolate;
    scroll-margin-top: 112px;
}

.hero-section {
    padding: 150px 0 78px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(18, 21, 28, 0.08);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(246, 243, 238, 0.94) 0%, rgba(246, 243, 238, 0.9) 68%, rgba(246, 243, 238, 0.98) 100%);
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
    align-items: center;
    gap: 2.4rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--home-muted-soft);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.section-kicker::before {
    content: '';
    width: 48px;
    height: 1px;
    background: rgba(18, 21, 28, 0.22);
}

.section-kicker-dark {
    color: rgba(255, 255, 255, 0.7);
}

.section-kicker-dark::before {
    background: rgba(255, 255, 255, 0.18);
}

.hero-title,
.section-title,
.about-card h3,
.contact-card h3 {
    font-family: 'Sora', sans-serif;
    letter-spacing: -0.06em;
}

.hero-title {
    margin: 1.4rem 0 1.15rem;
    font-size: clamp(3.25rem, 4.9vw, 5.3rem);
    line-height: 0.96;
}

.hero-title span {
    display: block;
}

.hero-subtitle,
.section-description,
.about-card p,
.contact-card p,
.activity-copy,
.site-footer-text,
.site-footer-meta,
.hero-floating,
.hero-visual-copy {
    color: var(--home-muted);
}

.hero-subtitle {
    max-width: 36rem;
    margin: 0;
    font-size: clamp(1.08rem, 1.8vw, 1.28rem);
    line-height: 1.7;
}

.hero-signal-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 40rem;
    margin-top: 1.4rem;
}

.hero-signal-pill {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 999px;
    color: var(--home-text);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(18, 21, 28, 0.08);
    box-shadow: 0 10px 24px rgba(16, 22, 35, 0.06);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.8rem;
}

.hero-metric {
    padding: 1.1rem 1.2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.46);
    border: 1px solid rgba(18, 21, 28, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.hero-metric strong {
    display: block;
    color: var(--home-text);
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-metric span {
    display: block;
    margin-top: 0.3rem;
    color: var(--home-muted);
    font-size: 0.9rem;
}

.hero-visual-card {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid rgba(18, 21, 28, 0.08);
    background:
        radial-gradient(circle at top right, rgba(125, 184, 255, 0.32), transparent 34%),
        radial-gradient(circle at bottom left, rgba(156, 228, 214, 0.26), transparent 30%),
        linear-gradient(140deg, rgba(255, 255, 255, 0.88), rgba(241, 244, 250, 0.9) 48%, rgba(235, 240, 247, 0.92) 100%);
    box-shadow: var(--home-shadow-strong);
}

.hero-visual-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(18, 21, 28, 0.04) 10%, transparent 10%, transparent 48%, rgba(18, 21, 28, 0.025) 48%, rgba(18, 21, 28, 0.025) 58%, transparent 58%, transparent 100%);
    background-size: 32px 32px;
    opacity: 0.26;
    pointer-events: none;
}

.hero-visual-grid,
.hero-visual-orbit,
.hero-visual-halo {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-visual-grid {
    background-image:
        linear-gradient(rgba(18, 21, 28, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 21, 28, 0.06) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.7));
}

.hero-visual-orbit {
    inset: 13% -18% -6% 28%;
    background-image: radial-gradient(circle, rgba(18, 21, 28, 0.12) 0.9px, transparent 0.9px);
    background-size: 18px 18px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.68) 38%, transparent 68%);
    transform: rotate(18deg);
    opacity: 0.7;
}

.hero-visual-halo {
    inset: 14% 10% 18% 18%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 40% 40%, rgba(125, 184, 255, 0.38), transparent 38%),
        radial-gradient(circle at 70% 70%, rgba(156, 228, 214, 0.22), transparent 34%);
    filter: blur(20px);
    opacity: 0.9;
}

.hero-visual-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    z-index: 1;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    color: var(--home-muted);
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(18, 21, 28, 0.08);
}

.hero-ambient-card {
    position: absolute;
    z-index: 1;
    width: min(240px, calc(100% - 2.4rem));
    padding: 1rem 1.05rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(18, 21, 28, 0.08);
    box-shadow: 0 18px 36px rgba(16, 22, 35, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-ambient-card span {
    display: block;
    color: var(--home-muted-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-ambient-card strong {
    display: block;
    margin-top: 0.45rem;
    color: var(--home-text);
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.04em;
}

.hero-ambient-card p {
    margin: 0.6rem 0 0;
    color: var(--home-muted);
    font-size: 0.82rem;
    line-height: 1.65;
}

.hero-ambient-card-top {
    top: 4.8rem;
    right: 1.4rem;
}

.hero-ambient-card-side {
    left: 1.4rem;
    bottom: 7.8rem;
}

.hero-controller {
    position: absolute;
    inset: 24% 16% auto 18%;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.hero-controller img {
    width: min(78%, 360px);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 28px 50px rgba(125, 184, 255, 0.22));
    animation: hero-float 6.8s ease-in-out infinite;
}

.hero-floating {
    position: absolute;
    z-index: 1;
    max-width: 220px;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.55;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 21, 28, 0.08);
    box-shadow: 0 14px 28px rgba(16, 22, 35, 0.08);
}

.hero-floating-left {
    left: 1.6rem;
    bottom: 8rem;
}

.hero-floating-right {
    right: 1.6rem;
    top: 9.2rem;
}

.hero-visual-footer {
    position: absolute;
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1.2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    z-index: 1;
}

.hero-visual-footer span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 1rem;
    border-radius: 16px;
    color: var(--home-muted);
    font-size: 0.88rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(18, 21, 28, 0.08);
}

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 1.7rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    color: var(--home-muted);
    font-size: 0.88rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(18, 21, 28, 0.08);
}

.scroll-indicator svg {
    animation: arrow-bob 1.8s ease-in-out infinite;
}

.content-section {
    padding: 4.6rem 0 3rem;
}

.content-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(246, 243, 238, 0.985) 0%, rgba(246, 243, 238, 0.965) 100%);
}

.content-section + .content-section {
    border-top: 1px solid rgba(18, 21, 28, 0.08);
}

.section-offset {
    padding-top: 5.4rem;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
    align-items: end;
    gap: 2.2rem;
    margin-bottom: 2.3rem;
}

.section-head-center {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.section-title {
    margin: 1rem 0 0;
    font-size: clamp(2.4rem, 4.8vw, 4.2rem);
    line-height: 0.98;
}

.section-title-dark {
    color: #f7f8fb;
}

.section-description {
    max-width: 38rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
}

.section-description.left-aligned {
    max-width: 36rem;
}

.section-description-dark {
    color: rgba(236, 240, 247, 0.72);
}

.motion-ribbon {
    position: relative;
    overflow: hidden;
    padding: 0.15rem 0 1.35rem;
    mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.92) 8%, rgba(0, 0, 0, 0.92) 92%, transparent);
}

.motion-ribbon-track {
    display: flex;
    gap: 0.9rem;
    width: max-content;
    will-change: transform;
    animation: ribbon-scroll-right 28s linear infinite;
}

.motion-ribbon-card {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 1rem;
    border-radius: 18px;
    color: var(--home-text);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(18, 21, 28, 0.08);
    box-shadow: 0 12px 24px rgba(16, 22, 35, 0.06);
    white-space: nowrap;
}

.carousel-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.carousel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    color: var(--home-muted-soft);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.carousel-actions {
    display: flex;
    gap: 0.7rem;
}

.carousel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(18, 21, 28, 0.08);
    background: rgba(255, 255, 255, 0.74);
    color: var(--home-text);
    box-shadow: 0 10px 18px rgba(16, 22, 35, 0.06);
}

.games-carousel {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding: 0.35rem 0 1rem;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.96) 4%, rgba(0, 0, 0, 0.96) 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.96) 4%, rgba(0, 0, 0, 0.96) 96%, transparent);
    will-change: scroll-position;
}

.games-carousel::-webkit-scrollbar {
    display: none;
}

.game-card {
    flex: 0 0 clamp(320px, 34vw, 440px);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 510px;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(18, 21, 28, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 244, 239, 0.96));
    box-shadow: var(--home-shadow);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 14%, rgba(var(--card-accent-rgb), 0.26), transparent 32%),
        radial-gradient(circle at 88% 78%, rgba(var(--card-glow-rgb), 0.24), transparent 30%);
    opacity: 0.95;
    pointer-events: none;
}

.game-card::after {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 28px;
    border: 1px solid rgba(18, 21, 28, 0.06);
    pointer-events: none;
}

.game-card-media,
.game-card-body {
    position: relative;
    z-index: 1;
}

.game-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    padding: 2.2rem 2rem 1.2rem;
}

.game-card-surface {
    position: absolute;
    inset: 1.25rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(var(--card-accent-rgb), 0.2), transparent 36%),
        radial-gradient(circle at bottom left, rgba(var(--card-glow-rgb), 0.2), transparent 32%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.22));
    border: 1px solid rgba(18, 21, 28, 0.06);
}

.game-card-media::before {
    content: '';
    position: absolute;
    inset: 2rem;
    border-radius: 28px;
    background:
        linear-gradient(rgba(18, 21, 28, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 21, 28, 0.05) 1px, transparent 1px),
        linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.25));
    background-size: 68px 68px, 68px 68px, 100% 100%;
    border: 1px solid rgba(18, 21, 28, 0.06);
}

.game-card-media img {
    position: relative;
    width: min(100%, 230px);
    aspect-ratio: 1 / 1;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(16, 22, 35, 0.16));
}

.game-card-chip,
.game-card-panel {
    position: absolute;
    z-index: 2;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.game-card-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 0.85rem;
    border-radius: 999px;
    color: var(--home-text);
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 21, 28, 0.08);
    white-space: nowrap;
}

.game-card-chip-top {
    top: 1rem;
    left: 1rem;
}

.game-card-chip-bottom {
    right: 1rem;
    bottom: 1rem;
}

.game-card-panel {
    right: 1rem;
    top: 1rem;
    max-width: 170px;
    padding: 0.8rem 0.9rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(18, 21, 28, 0.08);
    box-shadow: 0 12px 24px rgba(16, 22, 35, 0.08);
}

.game-card-panel span {
    display: block;
    color: var(--home-muted-soft);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.game-card-panel strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--home-text);
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    line-height: 1.3;
}

.game-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.5rem 1.6rem;
}

.game-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.game-card-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.8rem;
    border-radius: 999px;
    color: var(--home-text);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(18, 21, 28, 0.08);
}

.game-card-order {
    color: var(--home-muted-soft);
    font-size: 0.78rem;
    font-weight: 700;
}

.game-card h3 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.game-card p {
    margin: 0;
    color: var(--home-muted);
    font-size: 0.98rem;
    line-height: 1.8;
    flex: 1;
}

.game-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.game-card-status {
    color: var(--home-muted-soft);
    font-size: 0.88rem;
    font-weight: 600;
}

.game-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 1.1rem;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
}

.section-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: stretch;
}

.section-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activity-cards {
    display: grid;
    gap: 1rem;
    margin-top: 1.8rem;
}

.activity-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.4rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 21, 28, 0.08);
    box-shadow: 0 14px 30px rgba(16, 22, 35, 0.08);
}

.activity-label {
    color: var(--home-muted-soft);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.activity-card h3 {
    margin: 0;
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.activity-copy {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.8;
}

.activity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    color: var(--home-muted-soft);
    font-size: 0.85rem;
    font-weight: 600;
}

.activity-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1rem;
    border-radius: 999px;
    color: var(--home-text);
    background: rgba(18, 21, 28, 0.05);
    border: 1px solid rgba(18, 21, 28, 0.08);
    font-size: 0.9rem;
    font-weight: 700;
}

.activity-visual {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 38px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top left, rgba(40, 123, 255, 0.28), transparent 32%),
        radial-gradient(circle at 80% 82%, rgba(135, 220, 245, 0.26), transparent 26%),
        linear-gradient(160deg, #061221 0%, #071a31 48%, #0b2554 100%);
    box-shadow: 0 32px 80px rgba(5, 12, 24, 0.22);
}

.activity-visual::before,
.activity-visual::after {
    content: '';
    position: absolute;
    inset: 0;
}

.activity-visual::before {
    background-image: radial-gradient(circle, rgba(125, 184, 255, 0.6) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.84) 48%, transparent 78%);
    opacity: 0.7;
}

.activity-visual::after {
    background:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 96px 96px;
    opacity: 0.28;
}

.activity-visual-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1.5rem;
}

.activity-live {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    align-self: flex-start;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #6cffc7;
    box-shadow: 0 0 0 8px rgba(108, 255, 199, 0.12);
}

.activity-visual-panels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.activity-visual-panel {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.activity-visual-panel span {
    display: block;
    color: rgba(232, 239, 249, 0.58);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.activity-visual-panel strong {
    display: block;
    margin-top: 0.42rem;
    color: #f7f9ff;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
}

.activity-visual-title {
    margin-top: auto;
    color: #f7f9ff;
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.hero-visual-copy,
.activity-visual-copy {
    max-width: 28rem;
    margin-top: 1rem;
    color: rgba(232, 239, 249, 0.72);
    font-size: 1rem;
    line-height: 1.8;
}

.activity-visual-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 2rem;
}

.activity-visual-stats article {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.activity-visual-stats strong {
    display: block;
    color: #f7f9ff;
    font-family: 'Sora', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.activity-visual-stats span {
    display: block;
    margin-top: 0.25rem;
    color: rgba(232, 239, 249, 0.6);
    font-size: 0.82rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.3rem;
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 112px;
    padding: 1rem 1.15rem;
    border-radius: 26px;
    border: 1px solid rgba(18, 21, 28, 0.08);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 14px 30px rgba(16, 22, 35, 0.08);
}

.about-stat strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    color: var(--home-text);
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: rgba(18, 21, 28, 0.05);
}

.about-stat span {
    color: var(--home-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-card,
.contact-card {
    border: 1px solid rgba(18, 21, 28, 0.08);
}

.about-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.3rem;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 244, 239, 0.96));
    box-shadow: var(--home-shadow);
}

.about-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 260px;
    border-radius: 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(125, 184, 255, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(156, 228, 214, 0.18), transparent 30%),
        linear-gradient(145deg, #f5f7fb, #eef2f6);
    border: 1px solid rgba(18, 21, 28, 0.06);
}

.about-card-media img {
    width: min(72%, 220px);
    height: auto;
    object-fit: contain;
}

.about-card-meta,
.contact-card-label {
    color: var(--home-muted-soft);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.about-card h3,
.contact-card h3 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.1;
}

.about-card p,
.contact-card p {
    margin: 0;
    font-size: 0.96rem;
    line-height: 1.8;
}

.about-card-link {
    margin-top: auto;
    display: inline-flex;
    align-self: flex-start;
    color: var(--home-text);
    font-size: 0.88rem;
    font-weight: 700;
}

.section-dark {
    padding-top: 5.2rem;
    padding-bottom: 5.6rem;
}

.contact-shell {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top left, rgba(125, 184, 255, 0.16), transparent 28%),
        linear-gradient(150deg, #050608 0%, #0b1017 45%, #121927 100%);
    box-shadow: 0 42px 88px rgba(5, 8, 14, 0.3);
}

.contact-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 96px 96px;
    opacity: 0.35;
    pointer-events: none;
}

.contact-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 10%, transparent 10%, transparent 50%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.02) 60%, transparent 60%, transparent 100%);
    background-size: 28px 28px;
    opacity: 0.06;
    pointer-events: none;
}

.contact-copy,
.contact-grid {
    position: relative;
    z-index: 1;
}

.contact-copy {
    padding: 1.6rem 1.6rem 0;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.contact-status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.contact-status-card {
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-status-card span {
    display: block;
    color: rgba(232, 239, 249, 0.58);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-status-card strong {
    display: block;
    margin-top: 0.45rem;
    color: #f7f8fb;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: -0.03em;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.6rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    min-height: 220px;
    padding: 1.25rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
}

.contact-card h3 {
    color: #f7f8fb;
    font-size: 1.35rem;
}

.contact-card p {
    color: rgba(232, 239, 249, 0.68);
}

.contact-socials {
    display: flex;
    gap: 0.85rem;
}

.contact-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-social img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contact-social-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    min-height: 24px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: inherit;
}

.site-footer {
    position: relative;
    z-index: 1;
    padding: 0 0 2.4rem;
}

.site-footer-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(18, 21, 28, 0.1);
}

.site-footer-title {
    margin: 0;
    color: var(--home-text);
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.site-footer-text {
    margin: 0.45rem 0 0;
    font-size: 0.94rem;
}

.site-footer-meta {
    text-align: right;
    font-size: 0.88rem;
    line-height: 1.7;
}

.site-footer-meta p {
    margin: 0;
}

.site-footer-records {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 0.55rem;
}

.site-footer-records a {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
}

.site-footer-records img {
    width: 16px;
    height: 16px;
}

#authSlot > div,
#authSlotMobile > div {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

#authSlot .text-sm,
#authSlotMobile .text-sm {
    color: var(--home-text) !important;
}

#authSlot [data-auth-email-open],
#authSlotMobile [data-auth-email-open],
#authSlot [data-auth-logout],
#authSlotMobile [data-auth-logout] {
    min-height: 44px !important;
    padding: 0 1rem !important;
    border-radius: 999px !important;
    border: 1px solid rgba(18, 21, 28, 0.08) !important;
    background: rgba(255, 255, 255, 0.72) !important;
    color: var(--home-text) !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

#authSlotMobile [data-auth-email-open],
#authSlotMobile [data-auth-logout] {
    width: 100% !important;
    justify-content: center !important;
}

#authSlot .w-8.h-8.rounded-full,
#authSlotMobile .w-8.h-8.rounded-full {
    background: rgba(18, 21, 28, 0.08) !important;
    border: 1px solid rgba(18, 21, 28, 0.08);
}

@keyframes hero-float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes arrow-bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

@keyframes ribbon-scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@media (hover: hover) {
    .carousel-button:hover,
    .site-nav-menu-button:hover,
    .site-mobile-link:hover,
    .activity-link:hover,
    .game-card-link:hover,
    .contact-social:hover,
    .about-card-link:hover,
    .motion-ribbon-card:hover {
        transform: translateY(-1px);
    }
}

@media (max-width: 1279px) {
    .hero-shell,
    .section-split {
        gap: 1.6rem;
    }

    .hero-visual-card {
        min-height: 580px;
    }

    .game-card {
        flex-basis: clamp(320px, 44vw, 460px);
    }
}

@media (max-width: 1024px) {
    .site-nav-shell {
        width: min(1240px, calc(100% - 24px));
    }

    .site-header.is-top .site-nav-shell {
        width: min(1240px, calc(100% - 24px));
    }

    .site-mobile-panel,
    .section-shell {
        width: min(1240px, calc(100% - 24px));
    }

    .hero-section {
        padding-top: 138px;
        min-height: auto;
    }

    .hero-shell,
    .section-head,
    .section-split,
    .about-stats,
    .about-grid,
    .contact-status-grid,
    .contact-grid,
    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .hero-shell,
    .section-split {
        display: grid;
    }

    .section-head {
        align-items: start;
    }

    .hero-visual-card {
        min-height: 520px;
    }

    .hero-ambient-card-top {
        top: 4.6rem;
        right: 1rem;
    }

    .hero-ambient-card-side {
        left: 1rem;
        bottom: 6.6rem;
    }

    .hero-controller {
        inset: 23% 15% auto 15%;
    }

    .hero-floating-left {
        left: 1rem;
        bottom: 6rem;
    }

    .hero-floating-right {
        right: 1rem;
        top: 5.8rem;
    }

    .games-carousel {
        gap: 1rem;
    }

    .activity-visual,
    .contact-card {
        min-height: 0;
    }

    .activity-visual-panels {
        grid-template-columns: 1fr;
    }

    .contact-copy {
        padding-bottom: 0;
    }

    .site-footer-meta {
        text-align: left;
    }

    .site-footer-records {
        justify-content: flex-start;
    }

    .site-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding-top: 12px;
    }

    .site-header.is-top {
        padding-top: 14px;
    }

    .site-nav-shell {
        padding: 0.7rem 0.85rem;
    }

    .site-header.is-top .site-nav-shell {
        padding: 0.25rem 0;
        width: min(1240px, calc(100% - 24px));
    }

    .site-brand img {
        width: 44px;
        height: 44px;
    }

    .site-brand-name {
        font-size: 0.88rem;
    }

    .site-brand-sub {
        font-size: 0.63rem;
    }

    .hero-section {
        padding-top: 126px;
        padding-bottom: 3.2rem;
    }

    .hero-title {
        margin-top: 1.1rem;
        font-size: clamp(3rem, 15vw, 4.3rem);
    }

    .hero-subtitle,
    .section-description,
    .activity-copy,
    .about-card p,
    .contact-card p {
        font-size: 0.95rem;
    }

    .hero-signal-strip {
        gap: 0.6rem;
    }

    .hero-signal-pill {
        min-height: 38px;
        font-size: 0.72rem;
    }

    .hero-metrics,
    .hero-visual-footer,
    .activity-visual-stats,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual-card {
        min-height: 460px;
        border-radius: 32px;
    }

    .hero-controller {
        inset: 27% 12% auto 12%;
    }

    .hero-floating {
        max-width: 180px;
        font-size: 0.8rem;
    }

    .hero-ambient-card {
        width: min(220px, calc(100% - 1.6rem));
        padding: 0.85rem 0.9rem;
    }

    .hero-floating-left {
        left: 0.8rem;
        bottom: 5.6rem;
    }

    .hero-floating-right {
        top: 4.8rem;
        right: 0.8rem;
    }

    .carousel-toolbar,
    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .motion-ribbon {
        padding-bottom: 1rem;
    }

    .carousel-actions {
        justify-content: flex-end;
    }

    .game-card {
        flex-basis: min(84vw, 360px);
        min-height: 460px;
        border-radius: 28px;
    }

    .game-card h3 {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .activity-card,
    .about-card,
    .contact-card {
        border-radius: 24px;
    }

    .about-stat {
        border-radius: 22px;
    }

    .activity-visual,
    .contact-shell {
        border-radius: 30px;
    }

    .scroll-indicator {
        position: static;
        transform: none;
        margin: 1.2rem auto 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-controller img,
    .scroll-indicator svg,
    .motion-ribbon-track {
        animation: none;
    }

    .site-nav-shell,
    .site-nav-link,
    .site-nav-ghost,
    .site-nav-cta,
    .button-primary,
    .button-secondary,
    .carousel-button {
        transition: none;
    }
}
