:root { --bg: #06080e; --bg-elevated: #0b0f18; --surface: #101620; --surface-2: #161e2c; --surface-card: #131b28; --border: rgba(148, 163, 184, 0.12); --border-strong: rgba(148, 163, 184, 0.2); --text: #f4f7fb; --muted: #9aa8bc; --muted-dim: #6b7a90; --accent: #2dd4bf; --accent-hover: #5eead4; --accent-soft: #99f6e4; --accent-deep: #8b5cf6; --accent-glow: rgba(45, 212, 191, 0.38); --accent-glow-deep: rgba(139, 92, 246, 0.22); --radius: 12px; --font: "Inter", system-ui, sans-serif; --display: "Outfit", var(--font); --topbar-h: 36px; --header-h: 72px; --shell-top: calc(var(--topbar-h) + var(--header-h)); --gutter: clamp(1.25rem, 4vw, 3.5rem); --content-max: 1560px; } *, *::before, *::after { box-sizing: border-box; } html { scroll-behavior: smooth; } body { margin: 0; font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.5; -webkit-font-smoothing: antialiased; } body.menu-open { overflow: hidden; } body.menu-open::after { content: ""; position: fixed; inset: 0; top: var(--shell-top); background: rgba(0, 0, 0, 0.55); z-index: 150; pointer-events: none; } .container { width: 100%; max-width: var(--content-max); margin-inline: auto; padding-inline: var(--gutter); } .container--wide { max-width: none; padding-inline: var(--gutter); } .top-bar { position: sticky; top: 0; z-index: 210; height: var(--topbar-h); background: #030508; border-bottom: 1px solid var(--border); font-size: 0.72rem; } .top-bar__inner { display: flex; align-items: center; justify-content: space-between; height: var(--topbar-h); gap: 1rem; } .top-bar__promo { color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .top-bar__promo strong { color: var(--accent-soft); font-weight: 600; } .top-bar__links { display: flex; gap: 1.25rem; flex-shrink: 0; } .top-bar__links a { color: var(--muted); text-decoration: none; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; } .top-bar__links a:hover { color: var(--text); } .site-header { position: sticky; top: var(--topbar-h); z-index: 200; height: var(--header-h); border-bottom: 1px solid var(--border); background: rgba(5, 8, 15, 0.94); backdrop-filter: blur(14px); } .site-header__inner { display: flex; align-items: center; gap: 1.5rem 2rem; height: var(--header-h); } .logo { display: flex; align-items: center; text-decoration: none; color: var(--text); flex-shrink: 0; } .logo__badge { display: inline-flex; align-items: center; padding: 0.3rem 0.65rem; background: #fff; border-radius: 10px; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35); } .logo__badge--footer { padding: 0.35rem 0.55rem; } .logo__img { display: block; height: 44px; width: auto; max-width: min(160px, 40vw); object-fit: contain; } .site-footer__logo { display: block; height: 40px; width: auto; max-width: 140px; object-fit: contain; } .logo__text { font-family: var(--display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; } .site-nav { display: flex; align-items: center; justify-content: flex-start; gap: 1.75rem; flex: 1; min-width: 0; } .site-header__end { display: flex; align-items: center; justify-content: flex-end; gap: 0.5rem; flex-shrink: 0; margin-left: auto; } .site-header__auth { display: flex; align-items: center; gap: 0.35rem; } .site-nav > a { color: var(--muted); text-decoration: none; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; } .site-nav > a:visited { color: var(--muted); } .site-nav > a:hover, .site-nav > a.is-active { color: var(--text); } .site-nav__dropdown { position: relative; } .site-nav__dropbtn { background: none; border: none; color: var(--muted); font: inherit; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer; padding: 0; } .site-nav__dropbtn:hover { color: var(--text); } .site-nav__menu { display: none; position: absolute; top: calc(100% + 10px); left: 0; min-width: 260px; padding: 0.4rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45); z-index: 300; } .site-nav__menu[hidden] { display: none !important; } .site-nav__dropdown.is-open .site-nav__menu { display: block; } .games-nav__item { display: flex; align-items: center; gap: 0.65rem; padding: 0.5rem 0.6rem; border-radius: 10px; text-decoration: none; color: var(--text); font-size: 0.88rem; } .games-nav__item:hover { background: var(--surface-2); } .games-nav__icon { width: 32px; height: 32px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: rgba(0, 0, 0, 0.35); overflow: hidden; } .games-nav__icon img { width: 100%; height: 100%; object-fit: contain; } .menu-btn { display: none; flex-direction: column; gap: 5px; padding: 0.45rem; background: transparent; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; } .menu-btn span { display: block; width: 18px; height: 2px; background: var(--text); } .btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.6rem 1.1rem; border-radius: 10px; font-family: inherit; font-weight: 600; font-size: 0.88rem; text-decoration: none; border: none; cursor: pointer; transition: background 0.15s, color 0.15s; } .btn--sm { padding: 0.5rem 0.9rem; font-size: 0.85rem; } .btn--block { width: 100%; } .btn--primary { background: var(--accent); color: #fff; text-transform: uppercase; letter-spacing: 0.04em; box-shadow: 0 4px 20px var(--accent-glow); } .btn--primary:hover { background: var(--accent-hover); box-shadow: 0 6px 28px var(--accent-glow); } .btn--lg { padding: 0.85rem 1.5rem; font-size: 0.82rem; } .btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border); } .btn--ghost:hover { border-color: rgba(255, 255, 255, 0.2); background: var(--surface-2); } .hero--hosting { position: relative; padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(5rem, 10vw, 8rem); overflow: hidden; border-bottom: 1px solid var(--border); } .hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse 85% 65% at 92% 28%, var(--accent-glow-deep), transparent 58%), radial-gradient(ellipse 70% 55% at 100% 45%, var(--accent-glow), transparent 62%), radial-gradient(ellipse 50% 40% at 8% 90%, rgba(45, 212, 191, 0.06), transparent 55%), linear-gradient(180deg, #0c1018 0%, var(--bg) 100%); pointer-events: none; } .hero__grid { position: relative; z-index: 1; display: block; min-height: clamp(420px, 52vh, 580px); width: 100%; } .hero__copy { text-align: left; max-width: min(36rem, 52%); padding-top: clamp(1.5rem, 4vw, 3.5rem); padding-left: clamp(1.25rem, 3.5vw, 2.75rem); position: relative; z-index: 3; } .hero__visual { position: absolute; top: clamp(9rem, 20vw, 12rem); left: clamp(45%, 49vw, 56%); right: auto; width: min(720px, 54vw); max-width: 760px; margin: 0; padding-bottom: 2.5rem; z-index: 2; pointer-events: none; } .hero__visual-stack { position: absolute; inset: 0; z-index: 0; pointer-events: none; } .hero__plate { position: absolute; border-radius: 20px; border: 1px solid rgba(45, 212, 191, 0.2); background: rgba(12, 18, 30, 0.55); } .hero__plate--far { right: 4%; top: 12%; width: 78%; height: 70%; transform: rotate(5deg); opacity: 0.55; } .hero__plate--near { right: 8%; top: 4%; width: 82%; height: 76%; transform: rotate(-3deg); border-color: rgba(139, 92, 246, 0.28); background: rgba(15, 22, 36, 0.75); } .hero__visual-caption { position: absolute; right: 1.5rem; bottom: 0; margin: 0; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-dim); } .hero__rating { margin: 0 0 1rem; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-soft); } .hero--hosting h1 { margin: 0 0 1rem; font-family: var(--display); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; line-height: 1.05; letter-spacing: 0.02em; text-transform: uppercase; } .hero__lead { margin: 0 0 1.75rem; font-size: 1.08rem; color: var(--muted); max-width: 52ch; line-height: 1.65; } .hero__lead strong { color: var(--text); } .hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; } .hero__frame { position: relative; z-index: 2; pointer-events: auto; padding: 3px; border-radius: 20px; background: linear-gradient(135deg, var(--accent-soft), var(--accent) 38%, var(--accent-deep) 88%); box-shadow: 0 0 90px var(--accent-glow), 0 0 120px var(--accent-glow-deep), 0 28px 60px rgba(0, 0, 0, 0.45); transform: rotate(1.25deg); margin-left: 0; } .hero__game-strip { display: flex; flex-wrap: wrap; gap: 1.15rem; justify-content: flex-start; align-content: center; padding: clamp(1.5rem, 3vw, 2.35rem); background: rgba(10, 14, 22, 0.92); border-radius: 17px; min-height: 280px; } .hero__game-chip { display: flex; align-items: center; justify-content: center; flex: 1 1 calc(25% - 1.15rem); min-width: 96px; height: 96px; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--border); transition: transform 0.2s, border-color 0.15s, box-shadow 0.15s; position: relative; } .hero__game-chip:nth-child(1) { transform: translateY(-10px); z-index: 3; } .hero__game-chip:nth-child(2) { transform: translateY(14px); z-index: 1; } .hero__game-chip:nth-child(3) { transform: translateY(-4px); z-index: 2; } .hero__game-chip:nth-child(4) { transform: translateY(18px); } .hero__game-chip:nth-child(5) { transform: translateY(-12px); z-index: 2; } .hero__game-chip:nth-child(6) { transform: translateY(8px); } .hero__game-chip:nth-child(7) { transform: translateY(-6px); z-index: 3; } .hero__game-chip:hover { transform: translateY(-6px) scale(1.04); border-color: var(--accent); box-shadow: 0 12px 28px var(--accent-glow); z-index: 5; } .hero__game-chip img { width: 66px; height: 66px; object-fit: contain; } .hero { padding: 4rem 0 3rem; border-bottom: 1px solid var(--border); } .hero__inner { max-width: 640px; } .eyebrow { margin: 0 0 1rem; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-hover); } .hero h1 { margin: 0 0 1rem; font-family: var(--display); font-size: clamp(2.25rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; } .section { padding: clamp(3.5rem, 6vw, 5.5rem) 0; } .section--alt { background: var(--bg-elevated); border-block: 1px solid var(--border); } .section--bleed { padding-inline: 0; } .section__head { margin-bottom: clamp(1.75rem, 3vw, 2.5rem); max-width: 48rem; } .section__head h2 { margin: 0 0 0.35rem; font-family: var(--display); font-size: 1.75rem; font-weight: 700; } .section__head p { margin: 0; color: var(--muted); } .section__title-caps { text-transform: uppercase; letter-spacing: 0.06em; font-size: clamp(1.35rem, 3vw, 1.75rem); } .section__head--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; } .section--features { background: var(--surface); border-block: 1px solid var(--border); } .features-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); width: 100%; } .feature-card { padding: clamp(1.35rem, 2vw, 1.75rem); background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s; } .feature-card:hover { border-color: rgba(45, 212, 191, 0.45); transform: translateY(-4px) !important; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35); } .features-grid .feature-card:nth-child(1) { transform: translateY(0); } .features-grid .feature-card:nth-child(2) { transform: translateY(14px); } .features-grid .feature-card:nth-child(3) { transform: translateY(-10px); } .features-grid .feature-card:nth-child(4) { transform: translateY(8px); } .features-grid .feature-card:nth-child(5) { transform: translateY(-6px); } .features-grid .feature-card:nth-child(6) { transform: translateY(12px); } .feature-card__icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.85rem; border-radius: 10px; background: linear-gradient(145deg, rgba(45, 212, 191, 0.22), rgba(139, 92, 246, 0.1)); color: var(--accent-soft); font-size: 1.1rem; border: 1px solid rgba(45, 212, 191, 0.22); } .feature-card h3 { margin: 0 0 0.4rem; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; } .feature-card p { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.55; } .game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); gap: clamp(0.85rem, 1.5vw, 1.25rem); width: 100%; } .game-tile { display: flex; align-items: center; gap: 1rem; padding: 1.15rem 1.25rem; background: var(--surface-card); border: 1px solid var(--border); border-left: 3px solid var(--tile-accent, var(--accent)); border-radius: var(--radius); text-decoration: none; color: inherit; transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s; } .game-tile:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35); } .game-tile__icon { width: 52px; height: 52px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(0, 0, 0, 0.35); overflow: hidden; } .game-tile__img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; } .game-tile__body { flex: 1; min-width: 0; } .game-tile__body h3 { margin: 0; font-size: 0.95rem; font-weight: 600; } .game-tile__body p { margin: 0.15rem 0 0; font-size: 0.8rem; color: var(--muted); } .game-tile__price { font-weight: 700; font-size: 0.95rem; color: var(--accent-soft); white-space: nowrap; } .game-tile__price small { font-weight: 500; color: var(--muted); font-size: 0.75rem; } .cycle-toggle { display: inline-flex; padding: 4px; background: var(--bg); border: 1px solid var(--border); border-radius: 999px; } .cycle-toggle button { padding: 0.4rem 0.85rem; border: none; border-radius: 999px; background: transparent; color: var(--muted); font: inherit; font-size: 0.8rem; font-weight: 600; cursor: pointer; } .cycle-toggle button.is-active { background: var(--accent); color: #fff; } .plans-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; } .plan-card { position: relative; display: flex; flex-direction: column; padding: 1.5rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); } .plan-card--featured { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.35), 0 16px 40px var(--accent-glow-deep); } .plan-card__badge { position: absolute; top: 1rem; right: 1rem; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent-hover); } .plan-card__name { margin: 0 0 0.25rem; font-family: var(--display); font-size: 1.25rem; } .plan-card__spec { margin: 0 0 1rem; font-size: 0.85rem; color: var(--muted); } .plan-card__price { margin-bottom: 1rem; } .plan-card__amount { font-size: 2rem; font-weight: 800; font-family: var(--display); } .plan-card__per { color: var(--muted); font-size: 0.9rem; } .plan-card__list { margin: 0 0 1.25rem; padding: 0; list-style: none; flex: 1; } .plan-card__list li { font-size: 0.85rem; color: var(--muted); padding: 0.25rem 0; padding-left: 1rem; position: relative; } .plan-card__list li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); } .plan-cta { margin-top: auto; } .purchases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr)); gap: clamp(0.85rem, 1.5vw, 1.25rem); width: 100%; } .purchase-card { display: flex; align-items: center; gap: 1rem; padding: 1.15rem 1.25rem; background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; color: inherit; transition: border-color 0.15s, transform 0.15s; } .purchase-card:hover { border-color: var(--accent); transform: translateY(-2px); } .purchase-card__icon { width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(0, 0, 0, 0.35); overflow: hidden; } .purchase-card__icon img { width: 100%; height: 100%; object-fit: contain; object-position: center; } .purchase-card__body { flex: 1; min-width: 0; } .purchase-card__tag { display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent-soft); margin-bottom: 0.2rem; } .purchase-card__body h3 { margin: 0; font-size: 0.92rem; font-weight: 600; } .purchase-card__spec { margin: 0.15rem 0 0; font-size: 0.8rem; color: var(--muted); } .purchase-card__note { margin: 0.35rem 0 0; font-size: 0.72rem; color: var(--muted); line-height: 1.35; } .purchase-card__price { text-align: right; flex-shrink: 0; } .purchase-card__amount { display: block; font-family: var(--display); font-size: 1.35rem; font-weight: 800; } .purchase-card__period { font-size: 0.75rem; color: var(--muted); } .plan-card__billing-note { margin: 0 0 1rem; font-size: 0.75rem; color: var(--muted); line-height: 1.4; min-height: 2.5em; } .site-footer { padding: 2.5rem 0; border-top: 1px solid var(--border); } .site-footer__inner { display: grid; grid-template-columns: 1fr auto; gap: 1rem 2rem; align-items: center; } .site-footer__tag { margin: 0.25rem 0 0; font-size: 0.85rem; color: var(--muted); } .site-footer__links { display: flex; gap: 1.25rem; } .site-footer__links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; } .site-footer__links a:hover { color: var(--text); } .site-footer__copy { grid-column: 1 / -1; margin: 0; font-size: 0.8rem; color: var(--muted); } .currency-select { position: relative; } .currency-select__btn { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.45rem 0.7rem; border-radius: 8px; border: 1px solid var(--border); background: var(--surface); color: var(--text); font: inherit; font-size: 0.8rem; font-weight: 600; cursor: pointer; } .currency-select__menu { position: absolute; top: calc(100% + 6px); right: 0; min-width: 110px; margin: 0; padding: 0.35rem; list-style: none; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4); opacity: 0; visibility: hidden; transform: translateY(-4px); transition: 0.15s ease; z-index: 400; } .currency-select.is-open .currency-select__menu { opacity: 1; visibility: visible; transform: translateY(0); } .currency-select__menu button { display: block; width: 100%; text-align: left; padding: 0.45rem 0.6rem; border: none; border-radius: 6px; background: transparent; color: var(--muted); font: inherit; font-size: 0.82rem; cursor: pointer; } .currency-select__menu button:hover, .currency-select__menu button.is-active { background: var(--surface-2); color: var(--text); } .toast { position: fixed; bottom: 1.25rem; left: 50%; transform: translateX(-50%) translateY(120%); padding: 0.75rem 1.2rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; font-size: 0.88rem; z-index: 500; opacity: 0; transition: 0.25s ease; pointer-events: none; } .toast.is-visible { transform: translateX(-50%) translateY(0); opacity: 1; } @media (max-width: 900px) { .plans-grid { grid-template-columns: 1fr; } .features-grid { grid-template-columns: repeat(2, 1fr); } .hero__grid { min-height: 0; } .hero__copy { max-width: none; padding-top: 0; } .hero__visual { position: relative; top: auto; left: auto; right: auto; width: 100%; max-width: none; margin-top: 2rem; } .hero__frame { transform: none; } .hero__plate--far, .hero__plate--near { display: none; } .hero__game-chip, .hero__game-chip:nth-child(n) { transform: none; } .features-grid .feature-card:nth-child(n) { transform: none; } } @media (max-width: 768px) { .top-bar__promo { display: none; } .features-grid { grid-template-columns: 1fr; } .site-nav { display: none; position: fixed; top: var(--shell-top); left: 0; right: 0; bottom: 0; flex-direction: column; align-items: stretch; padding: 1.25rem; background: var(--bg); z-index: 180; overflow-y: auto; } .site-nav.is-open { display: flex; } .site-nav__menu { position: static; box-shadow: none; border: none; padding: 0; margin-top: 0.5rem; } .site-nav__dropdown.is-open .site-nav__menu { display: block; } .menu-btn { display: flex; } .site-footer__inner { grid-template-columns: 1fr; } } .game-hero { position: relative; padding: 3rem 0 2.5rem; overflow: hidden; border-bottom: 1px solid var(--border); } .game-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.2; } .game-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, var(--bg) 95%); } .game-hero__inner { position: relative; z-index: 1; max-width: 560px; } .breadcrumb { margin-bottom: 1.25rem; font-size: 0.8rem; color: var(--muted); } .breadcrumb a { color: var(--muted); text-decoration: none; } .breadcrumb a:hover { color: var(--text); } .game-hero__logo-wrap { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; margin-bottom: 1rem; border-radius: 14px; background: rgba(0, 0, 0, 0.4); border: 1px solid var(--border); } .game-hero__logo { display: block; width: 48px; height: 48px; object-fit: contain; } .game-hero h1 { margin: 0 0 0.5rem; font-family: var(--display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.1; } .game-hero__tagline { margin: 0 0 1.5rem; color: var(--muted); font-size: 1rem; max-width: 42ch; } .game-hero__cta { display: flex; flex-wrap: wrap; gap: 0.65rem; }