

.hero--landing {
    min-height: min(100vh, 920px);
    display: flex;
    flex-direction: column;
}

.hero--landing .hero__inner {
    flex: 1;
    align-items: center;
    padding-bottom: clamp(80px, 12vw, 120px);
}

.hero__orbs {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    animation: orb-float 14s ease-in-out infinite;
}

.hero__orb--1 {
    width: min(420px, 55vw);
    height: min(420px, 55vw);
    top: 10%;
    right: -8%;
    background: rgba(0, 217, 255, 0.35);
}

.hero__orb--2 {
    width: min(320px, 45vw);
    height: min(320px, 45vw);
    bottom: 15%;
    left: -5%;
    background: rgba(139, 92, 246, 0.28);
    animation-delay: -4s;
}

.hero__orb--3 {
    width: min(200px, 30vw);
    height: min(200px, 30vw);
    top: 45%;
    left: 40%;
    background: rgba(244, 114, 182, 0.15);
    animation-delay: -7s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(12px, -18px) scale(1.05); }
    66% { transform: translate(-10px, 12px) scale(0.95); }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    border: 1px solid rgba(0, 217, 255, 0.35);
    background: rgba(0, 217, 255, 0.08);
    color: var(--primary-light, #67e8f9);
    font-size: 0.88rem;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.hero__badge svg {
    width: 16px;
    height: 16px;
    color: var(--primary, #22d3ee);
}

.hero__title-accent {
    display: block;
    background: linear-gradient(120deg, var(--primary, #22d3ee) 0%, #a5f3fc 45%, var(--accent, #8b5cf6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero__chip {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted, #94a3b8);
    text-decoration: none;
    border: 1px solid var(--border, rgba(34, 211, 238, 0.14));
    background: rgba(10, 15, 26, 0.6);
    transition: all 0.2s ease;
}

.hero__chip:hover {
    color: var(--primary, #22d3ee);
    border-color: rgba(0, 217, 255, 0.45);
    background: rgba(0, 217, 255, 0.1);
    transform: translateY(-2px);
}

.hero__visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--muted, #94a3b8);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s ease, color 0.2s ease;
    animation: scroll-bounce 2.5s ease-in-out infinite;
}

.hero__scroll-hint:hover {
    opacity: 1;
    color: var(--primary, #22d3ee);
}

.hero__scroll-hint svg {
    width: 22px;
    height: 22px;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

.hero__logo-cloud {
    position: relative;
    width: min(100%, 380px);
    aspect-ratio: 1;
    margin: 0 auto;
}

.hero__logo-cloud-core {
    position: absolute;
    inset: 28%;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(0, 217, 255, 0.35);
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15), rgba(10, 15, 26, 0.9));
    box-shadow: 0 0 60px rgba(0, 217, 255, 0.25);
    animation: hero-glow-pulse 4s ease-in-out infinite;
}

.hero__logo-cloud-core svg {
    width: 48px;
    height: 48px;
    color: var(--primary, #22d3ee);
}

.hero__logo-float {
    position: absolute;
    width: 72px;
    height: 72px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--border, rgba(34, 211, 238, 0.2));
    background: linear-gradient(145deg, rgba(15, 20, 35, 0.95), rgba(8, 12, 22, 0.98));
    box-shadow: var(--shadow, 0 18px 50px rgba(0, 0, 0, 0.55));
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: logo-orbit 20s linear infinite;
}

.hero__logo-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero__logo-float:hover {
    transform: scale(1.12);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.35);
    z-index: 2;
    animation-play-state: paused;
}

.hero__logo-float--1 { top: 0; left: 50%; margin-left: -36px; animation-delay: 0s; }
.hero__logo-float--2 { top: 18%; right: 0; animation-delay: -3s; }
.hero__logo-float--3 { bottom: 18%; right: 4%; animation-delay: -6s; }
.hero__logo-float--4 { bottom: 0; left: 50%; margin-left: -36px; animation-delay: -9s; }
.hero__logo-float--5 { bottom: 18%; left: 0; animation-delay: -12s; }
.hero__logo-float--6 { top: 18%; left: 0; animation-delay: -15s; }

@keyframes logo-orbit {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.landing-section {
    position: relative;
    padding: clamp(70px, 9vw, 110px) 0;
}

.landing-section--alt {
    background: linear-gradient(180deg, transparent, rgba(0, 217, 255, 0.04), transparent);
}

.landing-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 217, 255, 0.08), transparent 65%);
}

.landing-section__head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.landing-section__head--compact {
    margin-bottom: 36px;
}

.landing-section__head h2 {
    margin: 12px 0 14px;
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(100deg, #f0f9ff, var(--primary, #22d3ee), #f0f9ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.landing-section__head p {
    margin: 0;
    color: var(--muted, #94a3b8);
    font-size: 1.05rem;
    line-height: 1.75;
}

.landing-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary, #22d3ee);
    border: 1px solid rgba(0, 217, 255, 0.25);
    background: rgba(0, 217, 255, 0.06);
}

.landing-tag svg {
    width: 14px;
    height: 14px;
}

.landing-section__foot {
    text-align: center;
    margin-top: 40px;
}

.games-bento {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .games-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .games-bento {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .game-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

.game-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: var(--radius-lg, 20px);
    border: 1px solid var(--border, rgba(34, 211, 238, 0.14));
    background: linear-gradient(155deg, rgba(18, 26, 44, 0.92), rgba(8, 12, 22, 0.98));
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s ease, box-shadow 0.3s ease;
    transition-delay: var(--game-delay, 0ms);
}

.game-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.7s ease;
    pointer-events: none;
}

.game-card:hover .game-card__shine {
    transform: translateX(120%);
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 40px rgba(0, 217, 255, 0.12);
}

.game-card--featured {
    padding: 32px;
}

.game-card--featured .game-card__media img {
    width: min(140px, 40%);
}

.game-card__media {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.game-card__media img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 217, 255, 0.2));
    transition: transform 0.35s ease, filter 0.35s ease;
}

.game-card:hover .game-card__media img {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 12px 32px rgba(0, 217, 255, 0.35));
}

.game-card--featured .game-card__media {
    justify-content: flex-start;
}

.game-card--featured .game-card__media img {
    width: 120px;
    height: 120px;
}

.game-card__title {
    margin: 0 0 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text, #f1f5f9);
}

.game-card--featured .game-card__title {
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.game-card__desc {
    margin: 0 0 18px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--muted, #94a3b8);
    flex: 1;
}

.game-card--featured .game-card__desc {
    font-size: 1rem;
    max-width: 42ch;
}

.game-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary, #22d3ee);
}

.game-card__cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.game-card:hover .game-card__cta svg {
    transform: translateX(-4px);
}

.steps-row {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .steps-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.step-card {
    position: relative;
    padding: 28px 24px;
    border-radius: var(--radius, 18px);
    border: 1px solid var(--border, rgba(34, 211, 238, 0.14));
    background: rgba(12, 18, 32, 0.75);
    text-align: center;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.step-card:hover {
    border-color: rgba(0, 217, 255, 0.35);
    transform: translateY(-4px);
}

.step-card__num {
    position: absolute;
    top: 16px;
    inset-inline-start: 16px;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 217, 255, 0.12);
}

.step-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.25);
    color: var(--primary, #22d3ee);
}

.step-card__icon svg {
    width: 26px;
    height: 26px;
}

.step-card h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 800;
}

.step-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted, #94a3b8);
    line-height: 1.7;
}

.features-row {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .features-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.15), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(0, 217, 255, 0.2);
    color: var(--primary, #22d3ee);
}

.feature-card__icon svg {
    width: 28px;
    height: 28px;
}

.stat--landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stat__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    color: var(--primary, #22d3ee);
}

.stat__icon svg {
    width: 24px;
    height: 24px;
}

.stats--landing .stat:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 0 35px rgba(0, 217, 255, 0.1);
}

.home-support {
    padding: clamp(50px, 7vw, 80px) 0 clamp(20px, 4vw, 40px);
}

.home-support__panel {
    display: flex;
    align-items: flex-start;
    gap: clamp(20px, 4vw, 32px);
    padding: clamp(28px, 5vw, 44px);
    border-radius: var(--radius-lg, 20px);
    border: 1px solid rgba(244, 114, 182, 0.25);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(12, 20, 38, 0.95) 45%, rgba(8, 12, 24, 0.98));
}

.home-support__icon {
    flex-shrink: 0;
    width: clamp(56px, 10vw, 72px);
    height: clamp(56px, 10vw, 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(236, 72, 153, 0.14);
    color: #f472b6;
}

.home-support__icon svg {
    width: clamp(28px, 5vw, 36px);
    height: clamp(28px, 5vw, 36px);
}

.home-support__body {
    flex: 1;
    min-width: 0;
}

.home-support__body .landing-tag {
    margin-bottom: 12px;
    color: #f472b6;
    border-color: rgba(244, 114, 182, 0.35);
    background: rgba(236, 72, 153, 0.1);
}

.home-support__body h2 {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.home-support__body p {
    margin: 0 0 20px;
    max-width: 640px;
    line-height: 1.8;
    font-size: 1.02rem;
}

.home-support__body .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-support__body .btn svg {
    width: 20px;
    height: 20px;
}

.landing-cta {
    padding: clamp(50px, 8vw, 90px) 0 clamp(80px, 10vw, 120px);
}

.landing-cta__panel {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: clamp(32px, 5vw, 52px);
    border-radius: var(--radius-lg, 20px);
    border: 1px solid rgba(0, 217, 255, 0.3);
    background: linear-gradient(135deg, rgba(12, 20, 38, 0.95), rgba(8, 12, 24, 0.98));
    overflow: hidden;
}

.landing-cta__glow {
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 180deg at 50% 50%, transparent, rgba(0, 217, 255, 0.08), transparent, rgba(139, 92, 246, 0.06), transparent);
    animation: cta-spin 12s linear infinite;
    pointer-events: none;
}

@keyframes cta-spin {
    to { transform: rotate(360deg); }
}

.landing-cta__content {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.landing-cta__content h2 {
    margin: 0 0 12px;
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-weight: 900;
    color: var(--text, #f1f5f9);
}

.landing-cta__content p {
    margin: 0;
    color: var(--muted, #94a3b8);
    line-height: 1.75;
}

.landing-cta__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (prefers-reduced-motion: reduce) {
    .hero__orb,
    .hero__scroll-hint,
    .hero__logo-float,
    .landing-cta__glow {
        animation: none;
    }
}

@media (max-width: 899px) {
    .hero--landing {
        min-height: auto;
    }

    .hero__scroll-hint {
        display: none;
    }
}

@media (max-width: 740px) {
    .games-bento {
        grid-template-columns: 1fr;
    }

    .game-card--featured {
        grid-column: span 1;
    }

    .home-support__panel {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .home-support__body p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-support__body .btn {
        width: 100%;
        justify-content: center;
    }

    .landing-cta__panel {
        flex-direction: column;
        text-align: center;
    }

    .landing-cta__actions {
        width: 100%;
        flex-direction: column;
    }

    .landing-cta__actions .btn {
        width: 100%;
    }
}
