* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-height: 100vh;
    background: #050505;
    color: #fff;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -3;
    background:
        radial-gradient(
            circle at 50% -15%,
            rgba(255,255,255,.07),
            transparent 38%
        ),
        radial-gradient(
            circle at 0% 50%,
            rgba(255,255,255,.025),
            transparent 28%
        ),
        radial-gradient(
            circle at 100% 75%,
            rgba(255,255,255,.02),
            transparent 30%
        );
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: .32;
    background-image:
        radial-gradient(
            rgba(255,255,255,.12) .6px,
            transparent .6px
        );
    background-size: 28px 28px;
    mask-image: linear-gradient(
        to bottom,
        black,
        transparent 80%
    );
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

button {
    border: 0;
}

main {
    position: relative;
    z-index: 2;
}

#BgCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.MouseGlow {
    position: fixed;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    z-index: 0;
    background: radial-gradient(
        circle,
        rgba(255,255,255,.035),
        transparent 68%
    );
    transition: opacity .3s ease;
    filter: blur(8px);
}

.MouseGlow.Visible {
    opacity: 1;
}

.Navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 48px;

    background: rgba(5,5,5,.48);

    border-bottom: 1px solid rgba(255,255,255,.045);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    z-index: 100;

    transition:
        height .25s ease,
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.Navbar.Scrolled {
    height: 64px;
    background: rgba(5,5,5,.78);
    border-color: rgba(255,255,255,.07);
    box-shadow: 0 10px 40px rgba(0,0,0,.16);
}

.Logo {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -.055em;
}

.NavLinks {
    display: flex;
    align-items: center;
    gap: 27px;
}

.NavLinks a {
    position: relative;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color .2s ease;
}

.NavLinks a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 1px;
    transform: scaleX(0);
    transform-origin: center;
    background: #fff;
    transition: transform .2s ease;
}

.NavLinks a:hover {
    color: #fff;
}

.NavLinks a:hover::after {
    transform: scaleX(1);
}

.Reveal {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(5px);
    transition:
        opacity .7s cubic-bezier(.16,1,.3,1),
        transform .7s cubic-bezier(.16,1,.3,1),
        filter .7s cubic-bezier(.16,1,.3,1);

    transition-delay: var(--RevealDelay, 0s);
}

.Reveal.Visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.RevealDelay1 {
    transition-delay: .08s;
}

.RevealDelay2 {
    transition-delay: .15s;
}

.RevealDelay3 {
    transition-delay: .22s;
}

.RevealDelay4 {
    transition-delay: .29s;
}

.RevealDelay5 {
    transition-delay: .36s;
}

.Hero {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 120px 24px 90px;

    position: relative;
}

.Hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: min(700px, 80%);
    height: 1px;

    transform: translateX(-50%);

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.08),
        transparent
    );
}

.HeroContent {
    width: 100%;
    max-width: 850px;
    text-align: center;
}

.HeroStatus {
    width: fit-content;
    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 6px 10px;

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 999px;

    color: #606060;
    background: rgba(255,255,255,.025);

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .16em;
}

.StatusDot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #777;
    box-shadow: 0 0 10px rgba(255,255,255,.35);
}

.HeroTitle {
    font-size: clamp(64px, 10vw, 120px);
    line-height: .88;
    letter-spacing: -.08em;
    font-weight: 800;
}

.Eyebrow {
    margin-top: 30px;

    color: #aaa;

    font-size: 15px;
    font-weight: 500;

    letter-spacing: .22em;
}

.HeroDescription {
    margin-top: 17px;

    color: #777;

    font-size: 17px;
}

.HeroDescription strong {
    color: #fff;
    font-weight: 600;
}

.HeroDescription span {
    color: #666;
}

.ScriptRow {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

.ScriptBox {
    width: min(650px, 100%);
    min-height: 54px;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 7px 8px 7px 18px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.025)
        );

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;

    box-shadow:
        0 15px 50px rgba(0,0,0,.12),
        inset 0 1px 0 rgba(255,255,255,.025);

    transition:
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.ScriptBox:hover {
    border-color: rgba(255,255,255,.13);
    transform: translateY(-2px);
    box-shadow:
        0 20px 60px rgba(0,0,0,.2),
        inset 0 1px 0 rgba(255,255,255,.035);
}

.ScriptText {
    flex: 1;
    min-width: 0;

    color: #888;

    font-family:
        "SFMono-Regular",
        Consolas,
        "Liberation Mono",
        monospace;

    font-size: 11px;

    text-align: left;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.CopyButton {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    color: #777;
    background: rgba(255,255,255,.055);

    cursor: pointer;

    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.CopyButton svg {
    width: 16px;
    height: 16px;
}

.CopyButton:hover {
    color: #fff;
    background: rgba(255,255,255,.09);
}

.CopyButton:active {
    transform: scale(.92);
}

.CopyButton.Copied {
    color: #fff;
    background: rgba(255,255,255,.12);
}

.SocialWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.SocialButton {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #666;
    background: rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.055);
    border-radius: 50%;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.SocialButton:hover {
    color: #fff;
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.11);
    transform: translateY(-2px);
}

.SocialButton svg {
    width: 17px;
    height: 17px;

    fill: currentColor;
}

.GamesSection,
.FeaturesSection,
.ShowcaseSection,
.FAQSection,
.PurchaseSection,
.TOSSection {
    padding: 110px 24px 145px;
}

.GamesContainer,
.FeaturesContainer,
.ShowcaseContainer,
.FAQContainer,
.PurchaseContainer,
.TOSContainer {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.SectionHeader {
    max-width: 680px;
    margin-bottom: 44px;
}

.SectionEyebrow {
    margin-bottom: 12px;

    color: #5c5c5c;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .2em;
}

.SectionTitle {
    color: #eee;

    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.08;

    letter-spacing: -.05em;
    font-weight: 700;
}

.SectionTitle span {
    color: #707070;
}

.SectionDesc {
    max-width: 620px;

    margin-top: 15px;

    color: #646464;

    font-size: 13px;
    line-height: 1.8;
}

.GamesFilters {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-top: 28px;
    margin-bottom: 20px;
}

.SearchBox {
    position: relative;
    flex: 1;
    max-width: 360px;
}

.SearchBox svg {
    position: absolute;
    left: 13px;
    top: 50%;

    width: 14px;
    height: 14px;

    transform: translateY(-50%);

    color: #555;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;

    pointer-events: none;
}

.SearchBox input {
    width: 100%;
    height: 34px;

    padding: 0 13px 0 37px;

    color: #bbb;
    background: rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.065);
    border-radius: 7px;

    outline: none;

    font-size: 10px;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.SearchBox input::placeholder {
    color: #4f4f4f;
}

.SearchBox input:focus {
    border-color: rgba(255,255,255,.13);
    background: rgba(255,255,255,.035);
}

.FilterButtons {
    display: flex;
    align-items: center;
    gap: 5px;
}

.FilterButton {
    height: 34px;

    padding: 0 13px;

    color: #5f5f5f;
    background: rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.055);
    border-radius: 7px;

    cursor: pointer;

    font-size: 10px;
    font-weight: 500;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.FilterButton:hover {
    color: #aaa;
    border-color: rgba(255,255,255,.09);
}

.FilterButton.Active {
    color: #fff;
    background: rgba(255,255,255,.065);
    border-color: rgba(255,255,255,.12);
}

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

.GameCard {
    min-width: 0;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.032),
            rgba(255,255,255,.018)
        );

    border: 1px solid rgba(255,255,255,.065);
    border-radius: 11px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.08),
        inset 0 1px 0 rgba(255,255,255,.015);

    transition:
        border-color .3s ease,
        transform .3s cubic-bezier(.16,1,.3,1),
        background .3s ease;
}

.GameCard:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
}

.GameImageWrap {
    position: relative;

    width: 100%;
    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #0b0b0b;
}

.GameImage {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter: saturate(.75);

    transition:
        transform .55s cubic-bezier(.16,1,.3,1),
        filter .35s ease;
}

.GameImageOverlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0,0,0,.24)
        );

    pointer-events: none;
}

.GameCard:hover .GameImage {
    transform: scale(1.045);
    filter: saturate(.95);
}

.GameInfo {
    padding: 15px;
}

.GameCardTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.GameName {
    min-width: 0;

    color: #e7e7e7;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: -.02em;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.GameMeta {
    display: flex;
    align-items: center;
    gap: 6px;

    margin-top: 10px;
}

.Badge,
.FeatureCount,
.ModalFeatureCount {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .03em;
}

.Badge {
    padding: 4px 7px;
    border: 1px solid;
}

.BadgePaid {
    color: #9566b0;
    background: rgba(168,85,247,.045);
    border-color: rgba(168,85,247,.13);
}

.BadgeFree {
    color: #4e9a67;
    background: rgba(34,197,94,.035);
    border-color: rgba(34,197,94,.11);
}

.FeatureCount {
    padding: 4px 7px;

    color: #5c5c5c;

    background: rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.055);
}

.GameButton {
    width: 100%;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 14px;
    padding: 0 12px;

    color: #777;
    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.055);
    border-radius: 7px;

    cursor: pointer;

    font-size: 10px;
    font-weight: 500;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.GameButton svg {
    width: 13px;
    height: 13px;

    opacity: .65;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.GameButton:hover {
    color: #fff;
    background: rgba(255,255,255,.065);
    border-color: rgba(255,255,255,.1);
}

.GameButton:hover svg {
    opacity: 1;
    transform: translateX(2px);
}

.LoadError {
    grid-column: 1 / -1;

    padding: 40px 0;

    color: #555;

    text-align: center;

    font-size: 11px;
}

.FeaturesGrid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.FeatureCard {
    grid-column: span 2;

    min-height: 190px;

    padding: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.032),
            rgba(255,255,255,.018)
        );

    border: 1px solid rgba(255,255,255,.065);
    border-radius: 11px;

    transition:
        border-color .3s ease,
        background .3s ease,
        transform .3s ease;
}

.FeatureCard:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.038);
}

.FeatureIcon {
    color: #4f4f4f;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .14em;
}

.FeatureCard h3 {
    margin-top: 22px;

    color: #e5e5e5;

    font-size: 14px;
    font-weight: 600;

    letter-spacing: -.02em;
}

.FeatureCard p {
    margin-top: 9px;

    color: #606060;

    font-size: 11px;
    line-height: 1.75;
}

.ShowcaseCard {
    display: grid;

    grid-template-columns:
        minmax(0, 2.15fr)
        minmax(280px, .85fr);

    min-height: 470px;

    overflow: hidden;

    background: rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 13px;

    box-shadow:
        0 25px 80px rgba(0,0,0,.16);
}

.ShowcaseVideo {
    min-width: 0;
    min-height: 470px;

    background: #080808;
}

.ShowcaseVideo iframe {
    width: 100%;
    height: 100%;
    min-height: 470px;

    display: block;

    border: 0;
}

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

    padding: 40px;
}

.ShowcaseMeta {
    color: #555;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .18em;
}

.ShowcaseInfo h3 {
    margin-top: 15px;

    color: #e9e9e9;

    font-size: 20px;
    line-height: 1.35;

    letter-spacing: -.035em;
}

.ShowcaseInfo p {
    margin-top: 12px;

    color: #626262;

    font-size: 11px;
    line-height: 1.75;
}

.ShowcaseButton {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 25px;
    padding: 10px 14px;

    color: #aaa;
    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.065);
    border-radius: 7px;

    text-decoration: none;

    font-size: 9px;
    font-weight: 500;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.ShowcaseButton:hover {
    color: #fff;
    background: rgba(255,255,255,.065);
    border-color: rgba(255,255,255,.11);
    transform: translateY(-2px);
}

.FAQContainer {
    width: min(1180px, 100%);
}

.FAQSection .SectionHeader {
    max-width: 680px;
}

.FAQList {
    width: min(900px, 100%);

    display: flex;
    flex-direction: column;

    border-top: 1px solid rgba(255,255,255,.065);
}

.FAQItem {
    border-bottom: 1px solid rgba(255,255,255,.065);
}

.FAQQuestion {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 21px 4px;

    color: #aaa;
    background: transparent;

    cursor: pointer;

    text-align: left;

    font-size: 12px;
    font-weight: 500;

    transition: color .2s ease;
}

.FAQQuestion:hover {
    color: #fff;
}

.FAQIcon {
    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 18px;

    color: #555;

    font-size: 16px;
    font-weight: 300;

    transition:
        transform .3s ease,
        color .2s ease;
}

.FAQItem.Active .FAQIcon {
    color: #aaa;
    transform: rotate(45deg);
}

.FAQAnswer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows .3s cubic-bezier(.16,1,.3,1);
}

.FAQAnswer p {
    min-height: 0;
    overflow: hidden;

    max-width: 700px;

    color: #5d5d5d;

    font-size: 11px;
    line-height: 1.8;

    transition:
        padding .3s ease;
}

.FAQItem.Active .FAQAnswer {
    grid-template-rows: 1fr;
}

.FAQItem.Active .FAQAnswer p {
    padding-bottom: 21px;
}

.PurchaseContainer {
    width: min(1180px, 100%);
}

.PurchaseGrid {
    width: min(760px, 100%);

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin: 0 auto;
}

.PurchaseCard {
    min-height: 430px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 25px;

    color: inherit;
    text-decoration: none;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.018)
        );

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;

    transition:
        transform .3s cubic-bezier(.16,1,.3,1),
        border-color .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.PurchaseCard:hover {
    transform: translateY(-5px);

    border-color: rgba(255,255,255,.13);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.02)
        );

    box-shadow:
        0 25px 70px rgba(0,0,0,.18);
}

.PurchaseCard.Featured {
    border-color: rgba(255,255,255,.11);
}

.PurchaseBadge {
    display: inline-flex;

    padding: 5px 8px;

    color: #777;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 999px;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: .12em;
}

.PurchaseCard h3 {
    margin-top: 22px;

    color: #eee;

    font-size: 17px;
    font-weight: 600;

    letter-spacing: -.03em;
}

.PurchaseDescription {
    margin-top: 10px;

    color: #606060;

    font-size: 11px;
    line-height: 1.75;
}

.PurchasePrice {
    display: flex;
    align-items: baseline;
    gap: 7px;

    margin-top: 27px;
}

.Price {
    color: #fff;

    font-size: 34px;
    font-weight: 700;

    letter-spacing: -.06em;
}

.PricePeriod {
    color: #555;
    font-size: 10px;
}

.PurchaseFeatures {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-top: 25px;
}

.PurchaseFeatures div {
    position: relative;

    padding-left: 15px;

    color: #666;

    font-size: 10px;
    line-height: 1.5;
}

.PurchaseFeatures div::before {
    content: "✓";

    position: absolute;
    left: 0;
    top: 0;

    color: #777;

    font-size: 9px;
}

.PurchaseButton {
    width: 100%;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 34px;

    color: #aaa;
    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 7px;

    font-size: 10px;
    font-weight: 500;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.PurchaseCard:hover .PurchaseButton {
    color: #fff;
    background: rgba(255,255,255,.075);
    border-color: rgba(255,255,255,.11);
}

.PurchaseSecurity {
    width: fit-content;

    display: flex;
    align-items: center;
    gap: 7px;

    margin: 24px auto 0;

    color: #4d4d4d;

    font-size: 9px;
}

.SecurityIcon {
    color: #666;
}

.MoreWays {
    margin-top: 58px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    color: #4f4f4f;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: .18em;
}

.MoreWays::before,
.MoreWays::after {
    content: "";

    width: 65px;
    height: 1px;

    background: rgba(255,255,255,.055);
}

.PurchasePayment {
    display: flex;
    justify-content: center;

    margin-top: 17px;
}

.PurchasePaymentCard {
    width: 300px;

    padding: 17px;

    text-align: center;

    background: rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.065);
    border-radius: 9px;
}

.RobuxIcon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 9px;

    color: #666;
}

.RobuxIcon svg {
    width: 17px;
    height: 17px;

    stroke-width: 1.6;
}

.PurchasePaymentTitle {
    color: #aaa;

    font-size: 11px;
    font-weight: 600;
}

.PaymentMethodDescription {
    margin-top: 4px;

    color: #505050;

    font-size: 9px;
}

.RobuxOptions {
    display: flex;
    justify-content: center;

    gap: 6px;

    margin-top: 12px;
}

.RobuxButton {
    min-width: 82px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #666;
    background: rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.07);
    border-radius: 6px;

    text-decoration: none;

    font-size: 9px;
    font-weight: 500;

    transition:
        color .2s ease,
        background .2s ease,
        border-color .2s ease;
}

.RobuxButton:hover {
    color: #fff;
    background: rgba(255,255,255,.05);
    border-color: rgba(255,255,255,.12);
}

.TOSContent {
    width: min(900px, 100%);

    display: flex;
    flex-direction: column;

    border-top: 1px solid rgba(255,255,255,.065);
}

.TOSItem {
    padding: 24px 0;

    border-bottom: 1px solid rgba(255,255,255,.065);
}

.TOSItem h3 {
    color: #ddd;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: -.01em;
}

.TOSItem p {
    max-width: 760px;

    margin-top: 10px;

    color: #606060;

    font-size: 11px;
    line-height: 1.85;
}

.TOSItem strong {
    color: #858585;
    font-weight: 600;
}

.Footer {
    position: relative;

    padding: 38px 24px;

    border-top: 1px solid rgba(255,255,255,.055);

    background: rgba(0,0,0,.18);

    z-index: 2;
}

.FooterContainer {
    width: min(1180px, 100%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.FooterLogo {
    color: #ddd;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: -.045em;
}

.FooterCopyright {
    margin-top: 7px;

    color: #414141;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: .04em;
}

.FooterLinks {
    display: flex;
    align-items: center;
    gap: 20px;
}

.FooterLinks a {
    color: #505050;

    text-decoration: none;

    font-size: 9px;

    transition: color .2s ease;
}

.FooterLinks a:hover {
    color: #aaa;
}

.ModalOverlay {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background: rgba(0,0,0,.8);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    z-index: 200;

    opacity: 0;

    transition: opacity .12s ease;
}

.ModalOverlay[hidden] {
    display: none;
}

.ModalOverlay.Open {
    opacity: 1;
}

.Modal {
    width: min(700px, 100%);
    max-height: min(720px, calc(100vh - 48px));

    overflow: hidden;

    background: #090909;

    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;

    box-shadow:
        0 35px 110px rgba(0,0,0,.6);

    transform: translateY(12px) scale(.985);

    transition:
        transform .18s cubic-bezier(.16,1,.3,1);
}

.ModalOverlay.Open .Modal {
    transform: translateY(0) scale(1);
}

.ModalBanner {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #0d0d0d;
}

.ModalBanner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            transparent 35%,
            rgba(9, 9, 9, 0.25) 55%,
            rgba(9, 9, 9, 0.75) 78%,
            #090909 100%
        );
    z-index: 1;
    pointer-events: none;
}

.ModalBanner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            transparent 45%,
            #090909 100%
        );
    z-index: 2;
    pointer-events: none;
}

.ModalBanner img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0.9;
    transform: scale(1.02);
}

.ModalBannerOverlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 25%,
            rgba(9,9,9,.75)
        );
}

.ModalClose {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #888;
    background: rgba(0,0,0,.45);

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;

    cursor: pointer;

    font-size: 19px;
    line-height: 1;

    backdrop-filter: blur(8px);

    transition:
        color .2s ease,
        background .2s ease;
}

.ModalClose:hover {
    color: #fff;
    background: rgba(0,0,0,.7);
}

.ModalContent {
    position: relative;

    padding: 0 24px 24px;

    margin-top: -38px;

    z-index: 2;
}

.ModalTitleRow {
    display: flex;
    align-items: center;
    gap: 9px;
}

.ModalGameName {
    color: #eee;

    font-size: 19px;
    font-weight: 600;

    letter-spacing: -.035em;
}

.ModalFeatureCount {
    margin-top: 8px;

    padding: 4px 7px;

    color: #666;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.06);
}

.ModalSearch {
    width: 100%;
    height: 36px;

    margin-top: 16px;

    padding: 0 12px;

    color: #aaa;
    background: rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.065);
    border-radius: 7px;

    outline: none;

    font-size: 10px;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.ModalSearch::placeholder {
    color: #4e4e4e;
}

.ModalSearch:focus {
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.035);
}

.ModalFeatures {
    max-height: 360px;

    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));

    gap: 8px;

    margin-top: 12px;

    padding-right: 4px;

    overflow-y: auto;
}

.ModalFeatures::-webkit-scrollbar {
    width: 4px;
}

.ModalFeatures::-webkit-scrollbar-track {
    background: transparent;
}

.ModalFeatures::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.08);
    border-radius: 999px;
}

.FeaturePill {
    min-width: 0;

    padding: 10px 12px;

    color: #858585;
    background: rgba(255,255,255,.025);

    border: 1px solid rgba(255,255,255,.055);
    border-radius: 7px;

    font-size: 10px;
    line-height: 1.35;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    opacity: 0;
    transform: translateY(4px);

    animation:
        FeatureAppear .18s ease-out forwards;
}

.FeatureEmpty {
    grid-column: 1 / -1;

    padding: 25px;

    color: #505050;

    text-align: center;

    font-size: 10px;
}

@keyframes FeatureAppear {

    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media (max-width: 1050px) {

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

    .ShowcaseCard {
        grid-template-columns:
            minmax(0, 1.6fr)
            minmax(250px, .8fr);
    }

}


@media (max-width: 800px) {

    .Navbar {
        padding: 0 24px;
    }

    .NavLinks {
        gap: 15px;
    }

    .NavLinks a {
        font-size: 10px;
    }

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

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

    .FeatureCard {
        grid-column: auto;
    }

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

    .ShowcaseVideo,
    .ShowcaseVideo iframe {
        min-height: 390px;
    }

    .ShowcaseInfo {
        padding: 30px;
    }

}


@media (max-width: 650px) {

    html {
        scroll-padding-top: 75px;
    }

    .Navbar {
        height: 62px;
        padding: 0 18px;
    }

    .Navbar.Scrolled {
        height: 58px;
    }

    .Logo {
        font-size: 16px;
    }

    .NavLinks {
        gap: 11px;
    }

    .NavLinks a:nth-child(2),
    .NavLinks a:nth-child(3),
    .NavLinks a:nth-child(4) {
        display: none;
    }

    .Hero {
        padding: 105px 18px 70px;
    }

    .HeroTitle {
        font-size: clamp(58px, 18vw, 86px);
    }

    .Eyebrow {
        font-size: 11px;
        letter-spacing: .16em;
    }

    .HeroDescription {
        font-size: 14px;
    }

    .ScriptBox {
        min-height: 50px;
    }

    .ScriptText {
        font-size: 9px;
    }

    .GamesSection,
    .FeaturesSection,
    .ShowcaseSection,
    .FAQSection,
    .PurchaseSection,
    .TOSSection {
        padding: 80px 18px 100px;
    }

    .SectionHeader {
        margin-bottom: 34px;
    }

    .SectionTitle {
        font-size: 30px;
    }

    .SectionDesc {
        font-size: 12px;
    }

    .GamesFilters {
        align-items: stretch;
        flex-direction: column;
    }

    .SearchBox {
        max-width: none;
    }

    .FilterButtons {
        width: 100%;
    }

    .FilterButton {
        flex: 1;
    }

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

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

    .FeatureCard {
        min-height: auto;
    }

    .ShowcaseVideo,
    .ShowcaseVideo iframe {
        min-height: 240px;
    }

    .ShowcaseInfo {
        padding: 24px;
    }

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

    .PurchaseCard {
        min-height: 390px;
    }

    .FAQList {
        width: 100%;
    }

    .ModalOverlay {
        padding: 12px;
    }

    .ModalBanner {
        height: 150px;
    }

    .ModalFeatures {
        grid-template-columns: 1fr;
        max-height: 330px;
    }

    .FooterContainer {
        align-items: flex-start;
        flex-direction: column;
    }

    .FooterLinks {
        gap: 14px;
    }

}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .Reveal {
        opacity: 1;
        transform: none;
        filter: none;
    }

}