/* GAMEVO Homepage V3 */

.logo { cursor: pointer; transition: all 0.3s ease; }
.logo:hover { opacity: 0.8; }

.home-shell {
    position: relative;
    isolation: isolate;
    min-height: calc(100vh - 180px);
    padding: 1.35rem 2rem 2.4rem;
    overflow-x: clip;
    background:
        radial-gradient(circle at 10% 0%, rgba(29, 209, 161, .12), transparent 22rem),
        radial-gradient(circle at 90% 10%, rgba(0, 247, 255, .08), transparent 18rem),
        linear-gradient(180deg, #020706 0%, #050b0d 48%, #020706 100%);
}

.home-shell::before,
.home-shell::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.home-shell::before {
    opacity: .2;
    background-image:
        linear-gradient(rgba(29, 209, 161, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 209, 161, .08) 1px, transparent 1px),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, .018) 0 1px, transparent 1px 18px);
    background-size: 42px 42px, 42px 42px, auto;
    mask-image: linear-gradient(180deg, black, rgba(0, 0, 0, .55), transparent 95%);
}

.home-shell::after {
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .035), transparent 18rem),
        linear-gradient(135deg, transparent 0 48%, rgba(29, 209, 161, .028) 49%, transparent 50%);
    background-size: auto, 20px 20px;
    opacity: .48;
}

.home-panel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto 1rem;
    border: 1px solid rgba(29, 209, 161, .16);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .018), transparent 22%),
        linear-gradient(135deg, rgba(29, 209, 161, .035), transparent 36%),
        rgba(4, 11, 12, .86);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), 0 18px 38px rgba(0, 0, 0, .18);
}

.home-hero {
    min-height: 220px;
    padding: 1.25rem 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 40%, rgba(29, 209, 161, .16), transparent 14rem),
        linear-gradient(135deg, rgba(29, 209, 161, .14), rgba(0, 247, 255, .04) 34%, rgba(255, 255, 255, .012)),
        rgba(4, 12, 13, .9);
}

.home-hero::after {
    content: '';
    position: absolute;
    top: -38%;
    right: -8%;
    width: 34%;
    height: 190%;
    background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(29, 209, 161, .08) 18px 19px);
    opacity: .2;
    transform: skewX(-18deg);
}

.home-hero-copy,
.home-hero-meta {
    position: relative;
    z-index: 1;
}

.home-kicker,
.home-section-head span {
    display: inline-block;
    color: var(--primary-color);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 760px;
    margin: .35rem 0 .5rem;
    color: var(--text-light);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.15;
}

.home-hero p,
.faq-intro p {
    max-width: 640px;
    margin: 0;
    color: var(--text-muted);
    font-size: .92rem;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: .95rem;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: .68rem .9rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: .86rem;
    font-weight: 700;
    transition: var(--transition);
}

.home-btn-primary { background: var(--primary-color); color: var(--bg-dark); }
.home-btn-secondary { border: 1px solid rgba(29, 209, 161, .2); background: rgba(0, 0, 0, .2); color: var(--text-light); }
.home-btn:hover { transform: translateY(-2px); }
.home-btn-secondary:hover { border-color: rgba(29, 209, 161, .4); color: var(--primary-color); }

.home-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(86px, 1fr));
    gap: .58rem;
    min-width: 318px;
}

.home-hero-meta div {
    padding: .82rem .86rem;
    border: 1px solid rgba(29, 209, 161, .18);
    border-radius: 10px;
    background: rgba(0, 0, 0, .22);
    text-align: center;
}

.home-hero-meta strong,
.home-hero-meta span {
    display: block;
}

.home-hero-meta strong { color: var(--primary-color); font-size: 1.12rem; }
.home-hero-meta span { color: var(--text-muted); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }

.home-section { padding: 1rem; }

.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .85rem;
}

.home-section-head h2 {
    margin: .15rem 0 0;
    color: var(--text-light);
    font-size: 1.18rem;
}

.home-section-head a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .8rem;
}

.home-section-head a:hover { color: var(--primary-color); }

.home-carousel {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    gap: .75rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    padding: .08rem .05rem .35rem;
    -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar { height: 5px; }
.carousel-track::-webkit-scrollbar-thumb { background: rgba(29, 209, 161, .32); border-radius: 999px; }

.carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(29, 209, 161, .3);
    border-radius: 999px;
    background: rgba(2, 7, 7, .9);
    color: var(--primary-color);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: var(--transition);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .25);
}

.carousel-btn:hover {
    border-color: rgba(0, 247, 255, .55);
    color: #bffff3;
    transform: translateY(-50%) scale(1.04);
}

.carousel-btn:disabled {
    opacity: .28;
    cursor: default;
    transform: translateY(-50%);
}

.carousel-btn-prev { left: -.15rem; }
.carousel-btn-next { right: -.15rem; }

.popular-games-section.is-compact {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.game-carousel {
    isolation: isolate;
}

.game-carousel.is-compact {
    width: fit-content;
    max-width: 100%;
    margin: .25rem auto 0;
}

.game-carousel.is-compact .carousel-btn {
    display: none;
}

.game-carousel.is-compact .game-strip {
    justify-content: center;
    overflow-x: hidden;
    padding-bottom: .08rem;
}

.game-carousel.is-compact .game-card {
    flex-basis: clamp(232px, 19vw, 286px);
}

.game-carousel .carousel-btn:disabled {
    display: none;
}

.game-strip {
    scrollbar-width: thin;
    scrollbar-color: rgba(112, 121, 128, .45) rgba(8, 12, 14, .42);
}

.game-strip::-webkit-scrollbar {
    height: 4px;
}

.game-strip::-webkit-scrollbar-track {
    background: rgba(8, 12, 14, .42);
    border-radius: 999px;
}

.game-strip::-webkit-scrollbar-thumb {
    background: rgba(112, 121, 128, .45);
    border-radius: 999px;
}

.game-strip > * {
    flex: 0 0 clamp(238px, 18vw, 292px);
}

.game-card {
    position: relative;
    min-height: 0;
    aspect-ratio: 3 / 5;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border: 1px solid rgba(0, 247, 255, .24);
    border-radius: 15px;
    background:
        linear-gradient(180deg, rgba(2, 7, 7, .18), rgba(2, 7, 7, .95)),
        #061011;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        inset 0 0 0 1px rgba(29, 209, 161, .08),
        0 18px 34px rgba(0, 0, 0, .26),
        0 0 22px rgba(0, 247, 255, .06);
}

.game-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(2, 7, 7, 0) 0%, rgba(2, 7, 7, .04) 38%, rgba(2, 7, 7, .82) 74%, rgba(2, 7, 7, .98) 100%);
}

.game-card::after {
    content: '';
    position: absolute;
    inset: .48rem;
    z-index: 1;
    pointer-events: none;
    border: 1px solid rgba(191, 255, 243, .18);
    border-radius: 11px;
    background: none;
    opacity: .65;
}

.game-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: saturate(1.08) contrast(1.02);
}

.game-card-glow {
    position: absolute;
    inset: auto 1rem .72rem 1rem;
    z-index: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(29, 209, 161, .9), rgba(0, 247, 255, .72), transparent);
    box-shadow: 0 0 18px rgba(29, 209, 161, .58);
}

.game-card-copy {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1rem .95rem 1.38rem;
    text-align: center;
}

.game-card-copy strong,
.game-card-copy em {
    display: block;
}

.game-card-copy strong {
    color: var(--text-light);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: clamp(1.22rem, 1.7vw, 1.58rem);
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

.game-card-copy em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    width: fit-content;
    margin: .38rem auto 0;
    padding: .5rem .9rem;
    border: 1px solid rgba(0, 247, 255, .36);
    border-radius: 999px;
    background:
        linear-gradient(90deg, rgba(29, 209, 161, .18), rgba(0, 247, 255, .11));
    color: #bffff3;
    font-size: .86rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 0 16px rgba(0, 247, 255, .12);
}

.game-card:hover,
.featured-card:hover,
.type-card:hover {
    border-color: rgba(29, 209, 161, .42);
    transform: translateY(-4px);
}

.game-card:hover {
    border-color: rgba(0, 247, 255, .62);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        inset 0 0 0 1px rgba(29, 209, 161, .2),
        0 18px 34px rgba(0, 0, 0, .28),
        0 0 26px rgba(29, 209, 161, .2);
}

.game-card:hover img,
.featured-card:hover img {
    transform: scale(1.06);
}

.featured-carousel {
    overflow: hidden;
}

.featured-carousel .carousel-track {
    scrollbar-width: thin;
    scrollbar-color: rgba(112, 121, 128, .5) rgba(8, 12, 14, .55);
}

.featured-carousel .carousel-track::-webkit-scrollbar {
    height: 4px;
}

.featured-carousel .carousel-track::-webkit-scrollbar-track {
    background: rgba(8, 12, 14, .55);
    border-radius: 999px;
}

.featured-carousel .carousel-track::-webkit-scrollbar-thumb {
    background: rgba(112, 121, 128, .5);
    border-radius: 999px;
}

.featured-carousel .carousel-track::-webkit-scrollbar-thumb:hover {
    background: rgba(132, 142, 150, .62);
}

.featured-carousel .carousel-track::-webkit-scrollbar-corner {
    background: transparent;
}

.featured-grid > * {
    flex: 0 0 clamp(232px, 24vw, 314px);
}

.featured-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid rgba(29, 209, 161, .14);
    border-radius: 13px;
    background: rgba(6, 14, 15, .94);
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.featured-image-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(0, 0, 0, .22);
}

.featured-badge {
    position: absolute;
    top: .62rem;
    left: .62rem;
    z-index: 1;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(29, 209, 161, .24);
    border-radius: 999px;
    background: rgba(3, 10, 11, .84);
    color: var(--primary-color);
    font-size: .72rem;
}

.featured-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: .82rem;
}

.featured-copy > span {
    color: var(--text-muted);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.featured-copy h3 {
    margin: .28rem 0 .5rem;
    color: var(--text-light);
    font-size: .95rem;
    line-height: 1.28;
}

.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-bottom: .62rem;
}

.featured-tags em {
    padding: .2rem .42rem;
    border-radius: 999px;
    background: rgba(29, 209, 161, .1);
    color: var(--primary-color);
    font-size: .66rem;
    font-style: normal;
    font-weight: 700;
}

.featured-copy strong {
    margin-top: auto;
    color: var(--primary-color);
    font-size: 1.08rem;
}

.home-empty-state {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, .18);
    color: var(--text-muted);
    text-align: center;
}

.type-grid,
.trust-grid {
    display: grid;
    gap: .75rem;
}

.type-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.type-card {
    min-width: 0;
    min-height: 142px;
    padding: 1rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .95rem;
    align-items: center;
    border: 1px solid rgba(29, 209, 161, .14);
    border-radius: 13px;
    background:
        radial-gradient(circle at 18% 12%, rgba(0, 247, 255, .12), transparent 4.5rem),
        linear-gradient(135deg, rgba(29, 209, 161, .08), transparent 46%),
        rgba(0, 0, 0, .18);
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.type-icon {
    position: relative;
    width: 88px;
    height: 88px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(29, 209, 161, .24);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 78%, rgba(29, 209, 161, .24), transparent 2rem),
        linear-gradient(145deg, rgba(29, 209, 161, .2), rgba(0, 247, 255, .08)),
        rgba(4, 17, 17, .96);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        inset 0 -16px 28px rgba(0, 247, 255, .08),
        0 0 28px rgba(29, 209, 161, .18);
}

.type-icon img {
    position: relative;
    z-index: 1;
    width: 78px;
    height: 78px;
    display: block;
    object-fit: contain;
    filter:
        drop-shadow(0 14px 10px rgba(0, 0, 0, .34))
        drop-shadow(0 0 10px rgba(29, 209, 161, .3))
        drop-shadow(0 0 4px rgba(0, 247, 255, .22));
    transition: transform .22s ease, filter .22s ease;
}

.type-copy {
    min-width: 0;
    width: 100%;
}

.type-copy strong {
    color: var(--text-light);
    font-size: 1rem;
}

.type-card em {
    grid-column: 2;
    margin-top: auto;
    color: var(--primary-color);
    font-size: .74rem;
    font-style: normal;
    font-weight: 700;
}

.type-card p {
    margin: .45rem 0 0;
    color: var(--text-muted);
    font-size: .84rem;
    line-height: 1.45;
}

.faq-item p {
    margin: .45rem 0 0;
    color: var(--text-muted);
}

.type-card:hover {
    background:
        radial-gradient(circle at 18% 12%, rgba(0, 247, 255, .16), transparent 4.8rem),
        linear-gradient(135deg, rgba(29, 209, 161, .11), transparent 46%),
        rgba(2, 16, 16, .76);
}

.type-card:hover .type-icon img {
    transform: translateY(-3px) scale(1.035);
    filter:
        drop-shadow(0 16px 18px rgba(0, 0, 0, .32))
        drop-shadow(0 0 12px rgba(29, 209, 161, .12));
}

.trust-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(0, 247, 255, .16), transparent 18rem),
        radial-gradient(circle at 18% 82%, rgba(29, 209, 161, .12), transparent 18rem),
        linear-gradient(90deg, transparent 0 12%, rgba(0, 247, 255, .04) 12% 12.4%, transparent 12.4% 100%),
        linear-gradient(135deg, rgba(29, 209, 161, .07), transparent 42%),
        rgba(4, 11, 12, .9);
}

.trust-section .home-section-head {
    position: relative;
    padding-bottom: .78rem;
}

.trust-section .home-section-head::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: .08rem;
    width: min(360px, 70%);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(29, 209, 161, .92), rgba(0, 247, 255, .62), transparent);
    box-shadow: 0 0 18px rgba(0, 247, 255, .24);
}

.trust-section .home-section-head span {
    color: #bffff3;
    text-shadow: 0 0 16px rgba(0, 247, 255, .2);
}

.trust-section .home-section-head h2 {
    max-width: 720px;
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: clamp(1.38rem, 2.2vw, 2rem);
    font-weight: 900;
    line-height: 1.08;
}

.benefit-showcase {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.45fr);
    gap: .95rem;
    align-items: stretch;
}

.benefit-list {
    min-width: 0;
    display: grid;
    gap: .55rem;
}

.benefit-card {
    position: relative;
    width: 100%;
    min-height: 62px;
    padding: .78rem .9rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .72rem;
    align-items: center;
    border: 1px solid rgba(29, 209, 161, .13);
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(29, 209, 161, .07), transparent 58%),
        rgba(0, 0, 0, .2);
    color: var(--text-light);
    text-align: left;
    cursor: pointer;
    box-shadow: none;
    transform: none;
    transition: border-color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}

.benefit-card:hover,
.benefit-card.active {
    border-color: rgba(29, 209, 161, .44);
    background:
        linear-gradient(90deg, rgba(29, 209, 161, .18), rgba(0, 247, 255, .055) 68%, transparent),
        rgba(2, 16, 16, .9);
    transform: translateX(4px);
    box-shadow: inset 3px 0 0 rgba(29, 209, 161, .9), 0 12px 24px rgba(0, 0, 0, .16);
}

.benefit-card span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 247, 255, .28);
    border-radius: 10px;
    background:
        linear-gradient(135deg, rgba(29, 209, 161, .2), rgba(0, 247, 255, .08));
    color: #bffff3;
    font-size: .73rem;
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(191, 255, 243, .04), 0 0 14px rgba(0, 247, 255, .08);
}

.benefit-card strong {
    min-width: 0;
    color: var(--text-light);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: .95rem;
    font-weight: 900;
    line-height: 1.25;
}

.benefit-feature {
    min-width: 0;
    min-height: 462px;
    overflow: hidden;
    display: grid;
    grid-template-rows: minmax(260px, 1fr) auto;
    border: 1px solid rgba(29, 209, 161, .22);
    border-radius: 15px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 28%),
        rgba(2, 12, 13, .96);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 20px 40px rgba(0, 0, 0, .22);
}

.benefit-feature.is-switching .benefit-feature-copy {
    opacity: .18;
    transform: translateY(10px);
}

.benefit-feature.is-switching .benefit-device {
    opacity: .18;
    transform: translate(-50%, calc(-50% + 10px));
}

.benefit-visual {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    background:
        radial-gradient(circle at 74% 24%, rgba(0, 247, 255, .25), transparent 7.5rem),
        radial-gradient(circle at 24% 70%, rgba(29, 209, 161, .22), transparent 9rem),
        linear-gradient(135deg, #061716, #071015 54%, #020606);
}

.benefit-visual::before,
.benefit-visual::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.benefit-visual::before {
    inset: 0;
    opacity: .38;
    background:
        linear-gradient(115deg, transparent 0 42%, rgba(29, 209, 161, .16) 43%, transparent 44%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .055) 0 1px, transparent 1px 42px);
}

.benefit-visual::after {
    right: 7%;
    bottom: 12%;
    width: 34%;
    height: 36%;
    border: 1px solid rgba(0, 247, 255, .26);
    border-radius: 999px;
    transform: rotate(-16deg);
    box-shadow: 0 0 42px rgba(0, 247, 255, .12);
}

.benefit-visual-grid {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image:
        linear-gradient(rgba(29, 209, 161, .45) 1px, transparent 1px),
        linear-gradient(90deg, rgba(29, 209, 161, .45) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, black, transparent 88%);
}

.benefit-device {
    position: absolute;
    left: 50%;
    top: 52%;
    width: min(340px, 68%);
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(29, 209, 161, .36);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 16%),
        linear-gradient(135deg, rgba(29, 209, 161, .2), rgba(0, 247, 255, .05)),
        rgba(1, 10, 11, .88);
    box-shadow: 0 0 42px rgba(29, 209, 161, .17), inset 0 0 0 8px rgba(0, 0, 0, .22);
    transform: translate(-50%, -50%);
    transition: opacity .18s ease, transform .18s ease;
}

.benefit-device::before,
.benefit-device::after,
.benefit-device span,
.benefit-device i,
.benefit-device i::before,
.benefit-device i::after {
    content: '';
    position: absolute;
    display: block;
}

.benefit-device::before {
    left: 9%;
    top: 14%;
    width: 38%;
    height: 12%;
    border-radius: 999px;
    background: rgba(191, 255, 243, .9);
    box-shadow: 0 34px 0 rgba(29, 209, 161, .35), 0 68px 0 rgba(0, 247, 255, .24);
}

.benefit-device::after {
    right: 12%;
    top: 20%;
    width: 25%;
    aspect-ratio: 1;
    border-radius: 10px;
    background: linear-gradient(135deg, #1dd1a1, #00f7ff);
    transform: rotate(45deg);
    box-shadow: 0 0 24px rgba(29, 209, 161, .48);
}

.benefit-device span {
    left: 16%;
    bottom: 17%;
    width: 52%;
    height: 8px;
    border-radius: 999px;
    background: rgba(29, 209, 161, .75);
}

.benefit-device i {
    right: 14%;
    bottom: 15%;
    width: 70px;
    height: 38px;
    border: 2px solid rgba(191, 255, 243, .85);
    border-radius: 20px;
}

.benefit-device i::before {
    left: 13px;
    top: 16px;
    width: 18px;
    height: 2px;
    background: rgba(191, 255, 243, .9);
    box-shadow: 0 -6px 0 rgba(191, 255, 243, .9);
}

.benefit-device i::after {
    right: 13px;
    top: 13px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #1dd1a1;
    box-shadow: 10px 8px 0 rgba(0, 247, 255, .85);
}

.benefit-feature[data-benefit-visual="info"] .benefit-visual {
    background:
        radial-gradient(circle at 72% 24%, rgba(29, 209, 161, .22), transparent 7rem),
        radial-gradient(circle at 26% 74%, rgba(0, 247, 255, .16), transparent 8rem),
        linear-gradient(135deg, #041211, #071319 55%, #020606);
}

.benefit-feature[data-benefit-visual="info"] .benefit-device {
    width: min(320px, 66%);
    aspect-ratio: 13 / 9;
    border-radius: 15px;
}

.benefit-feature[data-benefit-visual="info"] .benefit-device::before {
    left: 9%;
    top: 14%;
    width: 58%;
    height: 10px;
    border-radius: 999px;
    background: rgba(191, 255, 243, .9);
    box-shadow:
        0 28px 0 rgba(29, 209, 161, .42),
        0 56px 0 rgba(0, 247, 255, .3),
        0 84px 0 rgba(29, 209, 161, .22);
}

.benefit-feature[data-benefit-visual="info"] .benefit-device::after {
    right: 10%;
    top: 17%;
    width: 74px;
    height: 74px;
    border: 4px solid rgba(0, 247, 255, .72);
    border-radius: 999px;
    background: rgba(0, 247, 255, .06);
    transform: none;
    box-shadow: 18px 54px 0 -30px rgba(191, 255, 243, .9);
}

.benefit-feature[data-benefit-visual="info"] .benefit-device span {
    left: 10%;
    bottom: 16%;
    width: 96px;
    height: 42px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, transparent 0 44%, rgba(29, 209, 161, .9) 45% 58%, transparent 59%),
        rgba(29, 209, 161, .12);
    border: 1px solid rgba(29, 209, 161, .34);
}

.benefit-feature[data-benefit-visual="info"] .benefit-device i {
    right: 18%;
    bottom: 20%;
    width: 48px;
    height: 9px;
    border: none;
    border-radius: 999px;
    background: rgba(191, 255, 243, .85);
    transform: rotate(45deg);
}

.benefit-feature[data-benefit-visual="checkout"] .benefit-visual {
    background:
        radial-gradient(circle at 64% 30%, rgba(0, 247, 255, .22), transparent 7.2rem),
        radial-gradient(circle at 30% 68%, rgba(29, 209, 161, .23), transparent 8.5rem),
        linear-gradient(135deg, #03100e, #071718 58%, #020606);
}

.benefit-feature[data-benefit-visual="checkout"] .benefit-device {
    width: min(340px, 70%);
    aspect-ratio: 16 / 9;
    border-radius: 18px;
}

.benefit-feature[data-benefit-visual="checkout"] .benefit-device::before {
    left: 10%;
    top: 22%;
    width: 52%;
    height: 44px;
    border: 3px solid rgba(191, 255, 243, .84);
    border-top: none;
    border-radius: 0 0 12px 12px;
    background: rgba(29, 209, 161, .08);
    box-shadow: 28px 60px 0 -26px rgba(29, 209, 161, .9), 72px 60px 0 -26px rgba(0, 247, 255, .9);
}

.benefit-feature[data-benefit-visual="checkout"] .benefit-device::after {
    right: 13%;
    top: 26%;
    width: 88px;
    height: 88px;
    border-radius: 999px;
    background:
        linear-gradient(135deg, transparent 0 48%, #03100e 49% 58%, transparent 59%),
        #1dd1a1;
    transform: rotate(-8deg);
    box-shadow: 0 0 24px rgba(29, 209, 161, .45);
}

.benefit-feature[data-benefit-visual="checkout"] .benefit-device span {
    left: 13%;
    bottom: 18%;
    width: 54%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1dd1a1, #00f7ff);
}

.benefit-feature[data-benefit-visual="checkout"] .benefit-device i {
    left: 19%;
    top: 18%;
    width: 68%;
    height: 2px;
    border: none;
    border-radius: 999px;
    background: rgba(0, 247, 255, .55);
}

.benefit-feature[data-benefit-visual="checkout"] .benefit-device i::before {
    left: 0;
    top: -7px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #1dd1a1;
    box-shadow: 96px 0 0 #1dd1a1, 192px 0 0 #00f7ff;
}

.benefit-feature[data-benefit-visual="payments"] .benefit-visual {
    background:
        radial-gradient(circle at 72% 72%, rgba(29, 209, 161, .2), transparent 7rem),
        radial-gradient(circle at 28% 22%, rgba(0, 247, 255, .22), transparent 7.5rem),
        linear-gradient(135deg, #041211, #071219 56%, #020606);
}

.benefit-feature[data-benefit-visual="payments"] .benefit-device {
    width: min(338px, 69%);
    aspect-ratio: 16 / 10;
    border-radius: 18px;
}

.benefit-feature[data-benefit-visual="payments"] .benefit-device::before {
    left: 10%;
    top: 18%;
    width: 46%;
    height: 34%;
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(191, 255, 243, .8) 0 34%, transparent 35%),
        linear-gradient(135deg, rgba(29, 209, 161, .65), rgba(0, 247, 255, .12));
    box-shadow: 46px 48px 0 -12px rgba(0, 247, 255, .2), 76px 72px 0 -16px rgba(29, 209, 161, .2);
}

.benefit-feature[data-benefit-visual="payments"] .benefit-device::after {
    right: 13%;
    top: 20%;
    width: 86px;
    height: 86px;
    border-radius: 14px;
    background:
        linear-gradient(90deg, #bffff3 0 18%, transparent 18% 38%, #bffff3 38% 56%, transparent 56% 72%, #bffff3 72%),
        linear-gradient(#bffff3 0 18%, transparent 18% 38%, #bffff3 38% 56%, transparent 56% 72%, #bffff3 72%);
    background-size: 100% 100%, 100% 100%;
    opacity: .8;
    transform: none;
}

.benefit-feature[data-benefit-visual="payments"] .benefit-device span {
    left: 13%;
    bottom: 17%;
    width: 128px;
    height: 44px;
    border: 1px solid rgba(0, 247, 255, .36);
    border-radius: 14px;
    background: rgba(0, 247, 255, .08);
}

.benefit-feature[data-benefit-visual="payments"] .benefit-device i {
    right: 16%;
    bottom: 17%;
    width: 84px;
    height: 46px;
    border: 2px solid rgba(191, 255, 243, .8);
    border-radius: 12px;
}

.benefit-feature[data-benefit-visual="payments"] .benefit-device i::before {
    left: 10px;
    top: 12px;
    width: 54px;
    height: 5px;
    border-radius: 999px;
    background: #1dd1a1;
    box-shadow: 0 14px 0 rgba(0, 247, 255, .72);
}

.benefit-feature[data-benefit-visual="support"] .benefit-visual {
    background:
        radial-gradient(circle at 72% 30%, rgba(29, 209, 161, .22), transparent 7rem),
        radial-gradient(circle at 24% 74%, rgba(0, 247, 255, .2), transparent 8rem),
        linear-gradient(135deg, #03100f, #081419 58%, #020606);
}

.benefit-feature[data-benefit-visual="support"] .benefit-device {
    width: min(330px, 68%);
    aspect-ratio: 16 / 10;
    border-radius: 18px;
}

.benefit-feature[data-benefit-visual="support"] .benefit-device::before {
    left: 16%;
    top: 19%;
    width: 92px;
    height: 92px;
    border: 9px solid rgba(29, 209, 161, .82);
    border-bottom-color: transparent;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
}

.benefit-feature[data-benefit-visual="support"] .benefit-device::after {
    left: 23%;
    top: 45%;
    width: 72px;
    height: 9px;
    border-radius: 999px;
    background: rgba(191, 255, 243, .9);
    transform: rotate(25deg);
    box-shadow: 48px 22px 0 -2px rgba(0, 247, 255, .75);
}

.benefit-feature[data-benefit-visual="support"] .benefit-device span {
    right: 12%;
    top: 20%;
    width: 132px;
    height: 64px;
    border-radius: 16px 16px 16px 5px;
    background: rgba(0, 247, 255, .12);
    border: 1px solid rgba(0, 247, 255, .32);
    box-shadow: 0 78px 0 -18px rgba(29, 209, 161, .16);
}

.benefit-feature[data-benefit-visual="support"] .benefit-device i {
    right: 18%;
    top: 35%;
    width: 74px;
    height: 8px;
    border: none;
    border-radius: 999px;
    background: rgba(191, 255, 243, .86);
    box-shadow: 0 18px 0 rgba(29, 209, 161, .72), 0 36px 0 rgba(0, 247, 255, .55);
}

.benefit-feature[data-benefit-visual="gamers"] .benefit-visual {
    background:
        radial-gradient(circle at 74% 26%, rgba(0, 247, 255, .2), transparent 7.2rem),
        radial-gradient(circle at 26% 70%, rgba(29, 209, 161, .24), transparent 9rem),
        linear-gradient(135deg, #041110, #071019 52%, #020606);
}

.benefit-feature[data-benefit-visual="gamers"] .benefit-device {
    width: min(340px, 70%);
    aspect-ratio: 16 / 9;
    border-radius: 28px;
}

.benefit-feature[data-benefit-visual="gamers"] .benefit-device::before {
    left: 14%;
    top: 31%;
    width: 86px;
    height: 86px;
    border: 2px solid rgba(191, 255, 243, .72);
    border-radius: 999px;
    background: rgba(29, 209, 161, .08);
    box-shadow: 160px 0 0 -12px rgba(0, 247, 255, .12), 160px 0 0 -10px rgba(0, 247, 255, .45);
}

.benefit-feature[data-benefit-visual="gamers"] .benefit-device::after {
    left: 25%;
    top: 48%;
    width: 70px;
    height: 7px;
    border-radius: 999px;
    background: rgba(191, 255, 243, .9);
    transform: none;
    box-shadow: 0 -22px 0 -2px rgba(191, 255, 243, .85);
}

.benefit-feature[data-benefit-visual="gamers"] .benefit-device span {
    left: 16%;
    top: 16%;
    width: 68%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(0, 247, 255, .7), transparent);
    box-shadow: 0 110px 0 rgba(29, 209, 161, .45);
}

.benefit-feature[data-benefit-visual="gamers"] .benefit-device i {
    right: 20%;
    top: 38%;
    width: 78px;
    height: 54px;
    border: none;
    border-radius: 0;
}

.benefit-feature[data-benefit-visual="gamers"] .benefit-device i::before {
    left: 5px;
    top: 20px;
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background: #1dd1a1;
    box-shadow: 26px -14px 0 rgba(0, 247, 255, .9), 52px 2px 0 rgba(191, 255, 243, .9), 34px 24px 0 rgba(29, 209, 161, .75);
}

.benefit-feature[data-benefit-visual="confidence"] .benefit-visual {
    background:
        radial-gradient(circle at 70% 26%, rgba(29, 209, 161, .25), transparent 7.5rem),
        radial-gradient(circle at 28% 76%, rgba(0, 247, 255, .18), transparent 8rem),
        linear-gradient(135deg, #03110f, #061518 58%, #020606);
}

.benefit-feature[data-benefit-visual="confidence"] .benefit-device {
    width: min(330px, 68%);
    aspect-ratio: 16 / 10;
    border-radius: 18px;
}

.benefit-feature[data-benefit-visual="confidence"] .benefit-device::before {
    left: 50%;
    top: 17%;
    width: 112px;
    height: 136px;
    border-radius: 54px 54px 18px 18px;
    background:
        linear-gradient(135deg, transparent 0 45%, rgba(3, 17, 15, .9) 46% 56%, transparent 57%),
        linear-gradient(180deg, rgba(29, 209, 161, .85), rgba(0, 247, 255, .28));
    box-shadow: 0 0 28px rgba(29, 209, 161, .32);
    transform: translateX(-50%);
    clip-path: polygon(50% 0, 92% 18%, 82% 76%, 50% 100%, 18% 76%, 8% 18%);
}

.benefit-feature[data-benefit-visual="confidence"] .benefit-device::after {
    left: 50%;
    top: 42%;
    width: 58px;
    height: 38px;
    border: 4px solid rgba(191, 255, 243, .95);
    border-top: none;
    border-radius: 0 0 10px 10px;
    background: rgba(0, 0, 0, .12);
    transform: translateX(-50%);
}

.benefit-feature[data-benefit-visual="confidence"] .benefit-device span {
    left: 50%;
    top: 31%;
    width: 46px;
    height: 34px;
    border: 4px solid rgba(191, 255, 243, .95);
    border-bottom: none;
    border-radius: 22px 22px 0 0;
    background: transparent;
    transform: translateX(-50%);
}

.benefit-feature[data-benefit-visual="confidence"] .benefit-device i {
    right: 14%;
    bottom: 18%;
    width: 76px;
    height: 76px;
    border: 2px solid rgba(0, 247, 255, .42);
    border-radius: 999px;
    background: rgba(0, 247, 255, .08);
}

.benefit-feature[data-benefit-visual="confidence"] .benefit-device i::before {
    left: 20px;
    top: 35px;
    width: 34px;
    height: 8px;
    border-radius: 999px;
    background: #1dd1a1;
    transform: rotate(-45deg);
    box-shadow: none;
}

.benefit-feature[data-benefit-visual="confidence"] .benefit-device i::after {
    left: 16px;
    top: 38px;
    width: 18px;
    height: 8px;
    border-radius: 999px;
    background: #1dd1a1;
    transform: rotate(45deg);
    box-shadow: none;
}

.benefit-orbit {
    position: absolute;
    border: 1px solid rgba(0, 247, 255, .22);
    border-radius: 999px;
}

.benefit-orbit-one {
    left: 8%;
    top: 16%;
    width: 110px;
    height: 110px;
}

.benefit-orbit-two {
    right: 14%;
    top: 12%;
    width: 58px;
    height: 58px;
    background: rgba(29, 209, 161, .08);
}

.benefit-feature-copy {
    position: relative;
    padding: 1rem 1.1rem 1.12rem;
    border-top: 1px solid rgba(29, 209, 161, .14);
    background:
        linear-gradient(90deg, rgba(29, 209, 161, .12), transparent 72%),
        rgba(4, 13, 14, .94);
    transition: opacity .18s ease, transform .18s ease;
}

.benefit-feature-icon {
    width: 42px;
    height: 42px;
    margin-bottom: .7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 247, 255, .28);
    border-radius: 13px;
    background: rgba(29, 209, 161, .12);
    color: var(--primary-color);
    font-size: .82rem;
    font-weight: 900;
}

.benefit-feature h3 {
    margin: 0;
    color: var(--text-light);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: clamp(1.36rem, 2vw, 1.72rem);
    font-weight: 900;
    line-height: 1.12;
    text-shadow: 0 0 20px rgba(0, 247, 255, .12);
}

.benefit-feature p {
    max-width: 720px;
    margin: .55rem 0 0;
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.52;
}

.faq-section {
    display: grid;
    grid-template-columns: minmax(230px, .62fr) minmax(0, 1.48fr);
    gap: .85rem;
    align-items: start;
    margin-bottom: 1.1rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 18%, rgba(0, 247, 255, .12), transparent 12rem),
        radial-gradient(circle at 96% 76%, rgba(29, 209, 161, .12), transparent 15rem),
        linear-gradient(135deg, rgba(29, 209, 161, .08), transparent 34%),
        rgba(4, 11, 12, .9);
}

.faq-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background:
        linear-gradient(115deg, transparent 0 46%, rgba(0, 247, 255, .18) 46.4%, transparent 47%),
        repeating-linear-gradient(180deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 12px);
}

.faq-intro,
.faq-list {
    position: relative;
    z-index: 1;
}

.faq-intro {
    min-height: 100%;
    padding: .35rem .35rem .25rem 0;
}

.faq-intro h2 {
    margin: .25rem 0 .5rem;
    color: var(--text-light);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    font-weight: 900;
    line-height: 1.08;
}

.faq-intro p {
    max-width: 420px;
    font-size: .98rem;
    line-height: 1.55;
}

.faq-list {
    display: grid;
    gap: .46rem;
}

.faq-item {
    border: 1px solid rgba(29, 209, 161, .16);
    border-radius: 12px;
    background:
        linear-gradient(90deg, rgba(29, 209, 161, .055), transparent 72%),
        rgba(255, 255, 255, .045);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}

.faq-item summary {
    position: relative;
    list-style: none;
    padding: .95rem 2.75rem .95rem 1rem;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.32;
    cursor: pointer;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: .9rem;
    top: 50%;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 247, 255, .22);
    border-radius: 9px;
    background: rgba(0, 247, 255, .06);
    color: var(--primary-color);
    font-size: 1.18rem;
    line-height: 1;
    transform: translateY(-50%);
}

.faq-item[open] {
    border-color: rgba(29, 209, 161, .3);
    background:
        linear-gradient(90deg, rgba(29, 209, 161, .11), rgba(0, 247, 255, .04)),
        rgba(29, 209, 161, .07);
}

.faq-item[open] summary::after { content: '-'; }
.faq-item p {
    padding: 0 1rem 1rem;
    font-size: .94rem;
    line-height: 1.58;
}

@media (max-width: 1024px) {
    .home-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .type-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-showcase { grid-template-columns: 1fr; }
    .benefit-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .benefit-feature { min-height: 420px; }
    .faq-section { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .home-shell { padding: 1rem 1rem 1.8rem; }
    .home-hero { min-height: 0; padding: 1rem; }
    .home-hero::after { display: none; }
    .home-hero-meta { min-width: 0; width: 100%; }
    .carousel-btn { display: none; }
    .popular-games-section.is-compact {
        max-width: 100%;
    }
    .game-carousel.is-compact {
        width: 100%;
        max-width: 100%;
    }
    .game-carousel.is-compact .game-strip {
        justify-content: center;
        overflow-x: auto;
    }
    .game-carousel.is-compact .game-card {
        flex-basis: clamp(214px, 64vw, 252px);
    }
    .game-strip > * { flex-basis: clamp(214px, 64vw, 252px); }
    .featured-grid > * { flex-basis: clamp(242px, 78vw, 100%); }
    .benefit-list { grid-template-columns: 1fr; }
    .benefit-feature { min-height: 0; }
    .benefit-visual { min-height: 230px; }
}

@media (max-width: 560px) {
    .home-section { padding: .85rem; }

    .home-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: .3rem;
    }

    .type-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        min-height: 58px;
        padding: .7rem .78rem;
    }

    .benefit-card:hover,
    .benefit-card.active {
        transform: translateY(-2px);
    }

    .benefit-feature h3 { font-size: 1.22rem; }
    .home-btn { width: 100%; }
}

@media (max-width: 480px) {
    .home-shell,
    .home-panel,
    .home-hero {
        max-width: 100%;
        overflow-x: hidden;
    }

    .home-section {
        max-width: 100%;
        min-width: 0;
    }

    .home-hero-copy,
    .home-hero-meta,
    .featured-card,
    .type-card,
    .benefit-showcase,
    .benefit-list,
    .benefit-card,
    .benefit-feature,
    .faq-section {
        min-width: 0;
    }

    .carousel-track {
        max-width: 100%;
        scrollbar-width: none;
    }

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

    .featured-carousel .carousel-track {
        scrollbar-width: thin;
    }

    .featured-carousel .carousel-track::-webkit-scrollbar {
        display: block;
        height: 4px;
    }

    .game-carousel.is-compact .game-card,
    .game-strip > * {
        flex-basis: clamp(204px, 72vw, 238px);
    }

    .game-card-copy {
        padding: .88rem .8rem 1.24rem;
    }

    .game-card-copy strong {
        font-size: 1.12rem;
    }

    .game-card-copy em {
        min-width: 100px;
        margin-top: .34rem;
        padding: .46rem .78rem;
        font-size: .8rem;
    }

    .faq-item summary {
        padding-right: 2.55rem;
        font-size: .96rem;
    }
}

@media (max-width: 390px) {
    .game-carousel.is-compact .game-card,
    .game-strip > * {
        flex-basis: min(74vw, 226px);
    }

    .home-hero-meta {
        gap: .45rem;
    }

    .home-hero-meta div {
        padding: .76rem .55rem;
    }

    .home-hero-meta strong {
        font-size: 1.04rem;
    }

    .home-hero-meta span {
        font-size: .66rem;
    }

    .type-icon {
        width: 74px;
        height: 74px;
        border-radius: 18px;
    }

    .type-icon img {
        width: 66px;
        height: 66px;
    }
}
