@font-face {
  font-family: 'Inter Fallback';
  font-display: swap;
  src: local('Arial');
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
  size-adjust: 107%;
}

:root{
  --bg:#000116;
  --panel:#0D1220;
  --panel2:#0B1020;
  --text:#EAF0FF;
  --muted:#A9B3D1;
  --stroke:rgba(255,255,255,.10);
  --stroke2:rgba(255,255,255,.14);
  --accent:#2563EB;
  --accent2:#60A5FA;
  --focus:rgba(37,99,235,.45);
  --radius:16px;
  --shadow:0 16px 60px rgba(0,0,0,.45);
  --max:1100px;
}

*{box-sizing:border-box}
[x-cloak]{display:none !important}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,'Inter Fallback',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
  -webkit-tap-highlight-color: transparent;
  padding-top:72px;
}

a{color:inherit; text-decoration:none}
a{transition:opacity .18s ease}
a:hover{opacity:.92}

/* Subtle motion polish (hover/active/focus) */
.btn,
.toggle-btn,
.nav-toggle,
.dropdown-toggle,
.dropdown-menu a,
.nav-links a,
.carousel-btn,
.faq-highlight,
.card,
.game-card{
  transition:
    transform .18s ease,
    background-color .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    color .18s ease,
    opacity .18s ease;
}

.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}

.nav-links a:not(.lang):hover{color:var(--text)}

.carousel-btn:hover{transform:translateY(-1px)}
.carousel-btn:active{transform:translateY(0)}

.game-card:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 70px rgba(0,0,0,.30);
}

.card:hover{
  transform:translateY(-1px);
}

.faq-highlight[href]:hover{transform:translateY(-1px)}

/* Use focus-visible for cleaner keyboard UX */
.btn:focus-visible,
.toggle-btn:focus-visible,
.nav-toggle:focus-visible,
.dropdown-toggle:focus-visible,
.carousel-btn:focus-visible,
.faq-highlight[href]:focus-visible,
.skip-link:focus-visible{
  outline:2px solid var(--focus);
  outline-offset:2px;
}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.skip-link{
  position:absolute;
  left:-999px;
  top:16px;
  background:var(--panel);
  border:1px solid var(--stroke);
  padding:10px 12px;
  border-radius:10px;
  z-index:100;
}
.skip-link:focus,
.skip-link:focus-visible{
  left:16px;
  outline:2px solid var(--focus);
  outline-offset:2px
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  backdrop-filter:saturate(180%) blur(14px);
  background:rgba(7,10,18,.70);
  border-bottom:1px solid var(--stroke);
  z-index:50;
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-copy h1{
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
}
/* Ensure anchor navigation doesn't hide under the fixed header */
.section{scroll-margin-top:88px}
#main{scroll-margin-top:88px}

.header-inner{display:flex; align-items:center; justify-content:space-between; height:72px}

.brand{display:inline-flex; gap:10px; align-items:center; font-weight:700; letter-spacing:.2px}
.brand.small{opacity:.95}
.brand-logo{
  width: 40px;
  height: 40px;
  display:block;
  object-fit:contain;
  aspect-ratio: 1 / 1;
}
.brand-mark{
  width:22px;height:22px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  box-shadow:0 8px 30px rgba(37,99,235,.25); 
}

.nav{display:flex; align-items:center; gap:12px; flex:1; justify-content:flex-end}
.nav-toggle{
  display:none;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.6);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
}
.nav-toggle:focus{outline:2px solid var(--focus); outline-offset:2px}

.nav-links{display:flex; align-items:center; gap:18px; width:100%; position:relative}
.nav-main{display:flex; align-items:center; gap:18px}
.nav-actions{display:flex; align-items:center; gap:10px; margin-left:auto}

/* Language dropdown */
.lang-switch{position:relative; display:inline-flex}
.lang-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--text);
  opacity:.95;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.28);
  cursor:pointer;
  font-weight:700;
}
.lang-btn:hover{background:rgba(255,255,255,.06); border-color:rgba(37,99,235,.45)}
.lang-btn .dropdown-caret{font-size:14px}
.lang-flag{display:inline-flex; width:20px; height:15px; align-items:center; justify-content:center}
.lang-flag-img{display:block; width:20px; height:auto; max-height:15px; border-radius:3px; object-fit:contain; aspect-ratio: 4 / 3;}

.lang-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:220px;
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:10px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.92);
  box-shadow:var(--shadow);
  z-index:70;
  contain:layout;
}

.lang-option{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 10px;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid transparent;
  color:var(--text);
  font-weight:800;
  text-align:left;
  cursor:pointer;
}
.lang-option:hover{background:rgba(255,255,255,.06); border-color:var(--stroke2)}
.lang-option.is-current{opacity:.55; cursor:default}
.lang-option.is-current:hover{background:rgba(255,255,255,.04); border-color:transparent}

@media (max-width: 720px){
  .lang-menu{position:static; min-width:unset; width:100%; box-shadow:none}
  .lang-switch{width:100%}
  .lang-btn{width:100%; justify-content:space-between; border-radius:12px}
}

/* Center main navbar items (desktop) */
.nav-main{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
}

/* Keep navbar labels on one line */
.nav-links{flex-wrap:nowrap}
.nav-main{flex-wrap:nowrap}
.nav-main > a{flex:0 0 auto; white-space:nowrap}
.nav-main > .dropdown{flex:0 0 auto}
.dropdown-toggle{white-space:nowrap}

.nav-links a{color:var(--muted); font-weight:600}
.nav-links a.btn{color:var(--text)}
.nav-main > a{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid transparent;
}
.nav-main > a:hover{
  background:rgba(255,255,255,.04);
  border-color:var(--stroke);
}
.nav-links a.lang{color:var(--text); opacity:.95; padding:8px 10px; border-radius:999px; border:1px solid var(--stroke); background:rgba(13,18,32,.28)}
.nav-links a.lang:hover{background:rgba(255,255,255,.06); border-color:rgba(37,99,235,.45)}

.dropdown{position:relative; display:inline-flex; align-items:center}
.dropdown-toggle{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid transparent;
  background:transparent;
  color:var(--muted);
  font-weight:700;
  cursor:pointer;
}
.dropdown-toggle:hover{background:rgba(255,255,255,.04); border-color:var(--stroke)}
.dropdown-toggle:focus{outline:2px solid var(--focus); outline-offset:2px}
.dropdown.is-open .dropdown-toggle{color:var(--text); border-color:var(--stroke); background:rgba(13,18,32,.38)}
.dropdown-caret{font-size:12px; opacity:.85}

.dropdown-menu{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  min-width:210px;
  display:none;
  flex-direction:column;
  gap:6px;
  padding:10px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.92);
  box-shadow:var(--shadow);
  z-index:60;
  contain:layout;
}
.dropdown.is-open .dropdown-menu{display:flex}
.dropdown-menu a{
  padding:10px 10px;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid transparent;
  color:var(--text);
  font-weight:700;
}
.dropdown-menu a:hover{background:rgba(255,255,255,.06); border-color:var(--stroke2)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.55);
  box-shadow:none;
  font-weight:600;
  white-space:nowrap;
}
.btn:hover{border-color:rgba(37,99,235,.35)}
.btn-primary:hover{border-color:rgba(37,99,235,.55)}
.btn-ghost:hover{border-color:var(--stroke2)}
.btn-primary{
  border-color:rgba(37,99,235,.45);
  background:linear-gradient(135deg, rgba(37,99,235,.95), rgba(96,165,250,.65));
  box-shadow:0 16px 45px rgba(37,99,235,.22);
}
.btn-ghost{background:rgba(13,18,32,.30)}
.btn:focus{outline:2px solid var(--focus); outline-offset:2px}

.hero{position:relative; padding:64px 0 40px; isolation:isolate; min-height:500px;}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/main-banner.webp");
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
}

/* Home page: make hero background an <img> (better LCP discovery), keep overlay gradient */
.page-home .hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  z-index:-2;
}
.page-home .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    );
}

/* Minecraft page hero background */
.page-minecraft .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/minecraft-background.webp");
}

/* CS2 page hero background */
.page-cs2 .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/cs2_background.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* FiveM page hero background */
.page-fivem .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/fivem_background.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* Palworld page hero background */
.page-palworld .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/palworld_background.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* Hytale page hero background */
.page-hytale .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/hytale_background.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* Valheim page hero background */
.page-valheim .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/valheim_background.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* abiotic page hero background */
.page-abioticc .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/abiotic_background.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* the forest hero background */
.page-theforest .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/forest_background.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* the astroneer hero background */
.page-astroneer .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/banners/banner_astroneer.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.page-rust .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/rust_background.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* the servers hero background */
.page-vps .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/servers_background.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.page-affiliate .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/affiliate_background1.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.page-stationeers .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/stationeer_background.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.page-necessee .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/necesse_background.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
/* RedM page hero background */
.page-redm .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/redm_background.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

/* 7 Days to Die page hero background */
.page-seven .hero::before{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,1,22,.78) 0%,
      rgba(0,1,22,.86) 55%,
      rgba(0,1,22,1) 100%
    ),
    url("assets/images/background/7days_background.webp");
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.hero-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:28px; align-items:start; position: relative; z-index: 2; width: 100%; margin-top: 0;}
.hero-copy{padding-top:10px}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.45);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}

h1{font-size: clamp(2.5rem, 4vw, 44px); line-height:1.08; margin:14px 0 10px}
.lead{color:var(--muted); font-size:17px; max-width:56ch}

.hero-cta{display:flex; gap:12px; margin:18px 0 14px; flex-wrap:wrap}

.hero-points{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.hero-points li{
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  border-radius:999px;
  padding:8px 10px;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

.hero-metrics{list-style:none; padding:0; margin:18px 0 0; display:flex; gap:18px; flex-wrap:wrap}
.hero-metrics li{
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  border-radius:14px;
  padding:10px 12px;
  min-width:140px;
}
.hero-metrics strong{display:block; font-size:16px}
.hero-metrics span{color:var(--muted); font-size:13px}

.hero-card{
  min-height: 360px;
  contain: layout paint;
  background: rgba(13, 18, 32, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  padding: 1.5rem;
  margin-top: 2rem;
  box-sizing: border-box;
}

.hero-card.hero-card-media{padding:14px}
.hero-game-frame{
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.35);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 18px 70px rgba(0,0,0,.25);
  aspect-ratio: 16 / 10;
}
.hero-game-img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  aspect-ratio: 16 / 10;
}

.hero-card-media .hero-reviews{margin-top:12px; display:grid; gap:10px}
.hero-card-media .hero-reviews .trustpilot-box{margin-top:0}

.stats{min-height: 180px; display:grid; grid-template-columns:repeat(2, 1fr); gap:12px}
.stat{border:1px solid var(--stroke); background:rgba(13,18,32,.40); border-radius:14px; padding:14px; min-height:80px}
.stat-value{font-size:24px; font-weight:900; letter-spacing:-.02em}
.stat-label{color:var(--muted); font-weight:700; margin-top:4px}

.trustpilot-box{
  margin-top:12px;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.35);
  border-radius:14px;
  padding:12px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  min-height: 72px;
}
.trustpilot-left{display:flex; align-items:center; gap:10px; flex-wrap:wrap}
.trustpilot-title{font-weight:900; letter-spacing:.2px}
.trustpilot-stars{display:flex; gap:4px; color:var(--accent2)}
.trustpilot-stars i{font-size:16px; line-height:1}
.trustpilot-rating{color:var(--muted); font-weight:800}
.trustpilot-rating strong{color:var(--text); font-weight:900}
.trustpilot-outof{opacity:.95}
.trustpilot-link{color:var(--muted); font-weight:800}
.trustpilot-link:hover{color:var(--text)}

/* Game hosting cards */
.game-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px}
.game-carousel{position:relative}
.carousel-controls{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin:0 0 12px;
}
.carousel-btn{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  color:var(--text);
  cursor:pointer;
}
.carousel-btn:hover{background:rgba(255,255,255,.06)}
.carousel-btn:focus{outline:2px solid var(--focus); outline-offset:2px}

/* Carousel behavior for the game grid */
.game-carousel .game-grid{
  display:flex;
  gap:16px;
  overflow-x:auto;
  padding:2px 2px 6px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.game-carousel .game-grid::-webkit-scrollbar{height:10px}
.game-carousel .game-grid::-webkit-scrollbar-thumb{background:rgba(255,255,255,.10); border-radius:999px}
.game-carousel .game-grid::-webkit-scrollbar-track{background:transparent}
.game-carousel .game-card{
  flex:0 0 320px;
  scroll-snap-align:start;
}
@media (max-width: 520px){
  .game-carousel .game-card{flex-basis:85vw}
}
.game-card{
  position:relative;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.46);
  border-radius:var(--radius);
  overflow:hidden;
}
.game-card:hover{border-color:rgba(37,99,235,.40)}
.game-banner{
  height:110px;
  min-height:110px;
  background:linear-gradient(135deg, rgba(37,99,235,.35), rgba(96,165,250,.18));
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}
.game-body{padding:14px}
.game-title-row{display:flex; align-items:center; justify-content:space-between; gap:10px}
.game-title-row .badge{flex:0 0 auto}
.game-title{font-size:16px; font-weight:900; letter-spacing:-.01em}
.game-subtitle{color:var(--muted); font-weight:700; margin-top:2px}
.game-footer{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:12px; flex-wrap:wrap}
.game-price{color:var(--muted); font-weight:700}
.btn-small{padding:9px 12px; border-radius:12px}
.arrow{opacity:.95}

/* Games directory (search + platform filters) */
.games-directory-controls{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  margin:14px 0 14px;
}
.games-empty{margin:14px 0 0; font-weight:700}

.games-more{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.games-more p{margin:0}

.games-search{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  color:var(--text);
  font:inherit;
}
.games-search::placeholder{color:rgba(169,179,209,.85)}
.games-search:focus{outline:2px solid var(--focus); outline-offset:2px}

.game-badge{
  position:absolute;
  top:10px;
  left:10px;
  z-index:2;
  pointer-events:none;
}

.games-reviews{display:grid; grid-template-columns:repeat(2, 1fr); gap:16px}
.games-reviews-actions{margin-top:12px; display:flex; justify-content:flex-end}

@media (max-width: 720px){
  .games-reviews{grid-template-columns:1fr}
  .games-reviews-actions{justify-content:stretch}
  .games-reviews-actions .btn{width:100%}
}

/* Banner images: only load when cards enter viewport (JS), but keep full visuals for no-JS */
.no-js .game-card[data-game="minecraft"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_minecraft.webp");
}
.no-js .game-card[data-game="cs2"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_cs2.webp");
}
.no-js .game-card[data-game="palworld"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_palworld.webp");
}
.no-js .game-card[data-game="hytale"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_hytale.webp");
}
.no-js .game-card[data-game="redm"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_redm.webp");
}
.no-js .game-card[data-game="valheim"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_valheim.webp");
}
.no-js .game-card[data-game="seven"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_7d.webp");
}
.no-js .game-card[data-game="gtav"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_fivem.webp");
}
.no-js .game-card[data-game="abioticc"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_abiotic-factor.webp");
}
.no-js .game-card[data-game="theforest"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_the-forest.webp");
}
.no-js .game-card[data-game="necessee"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_necesse.webp");
}
.no-js .game-card[data-game="astroneer"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_astroneer.webp");
}
.no-js .game-card[data-game="rust"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_rust.webp");
}
.no-js .game-card[data-game="stationeers"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_stationeers.webp");
}

.js .game-card.is-inview[data-game="minecraft"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_minecraft.webp");
}
.js .game-card.is-inview[data-game="cs2"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_cs2.webp");
}
.js .game-card.is-inview[data-game="palworld"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_palworld.webp");
}
.js .game-card.is-inview[data-game="hytale"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_hytale.webp");
}
.js .game-card.is-inview[data-game="redm"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_redm.webp");
}
.js .game-card.is-inview[data-game="valheim"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_valheim.webp");
}
.js .game-card.is-inview[data-game="seven"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_7d.webp");
}
.js .game-card.is-inview[data-game="gtav"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_fivem.webp");
}
.js .game-card.is-inview[data-game="abioticc"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_abiotic-factor.webp");
}
.js .game-card.is-inview[data-game="theforest"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_the-forest.webp");
}
.js .game-card.is-inview[data-game="necessee"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_necesse.webp");
}
.js .game-card.is-inview[data-game="astroneer"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_astroneer.webp");
}
.js .game-card.is-inview[data-game="rust"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_rust.webp");
}
.js .game-card.is-inview[data-game="stationeers"] .game-banner{
  background-image:
    linear-gradient(180deg, rgba(0,1,22,.15), rgba(0,1,22,.70)),
    url("assets/images/banners/banner_stationeers.webp");
}

/* Fallbacks (no matching banner file yet) */
.game-card[data-game="fivem"] .game-banner{background:linear-gradient(135deg, rgba(96,165,250,.35), rgba(37,99,235,.12))}

.game-card[data-game="abiotic"] .game-banner{background:linear-gradient(135deg, rgba(37,99,235,.22), rgba(96,165,250,.10))}
.game-card[data-game="forest"] .game-banner{background:linear-gradient(135deg, rgba(96,165,250,.22), rgba(37,99,235,.10))}
.game-card[data-game="necesse"] .game-banner{background:linear-gradient(135deg, rgba(37,99,235,.20), rgba(96,165,250,.12))}

.terminal{border:1px solid var(--stroke2); border-radius:14px; overflow:hidden; background:rgba(0,0,0,.35)}
.terminal-bar{display:flex; align-items:center; gap:8px; padding:10px 12px; background:rgba(255,255,255,.06); border-bottom:1px solid var(--stroke)}
.dot{width:10px;height:10px;border-radius:99px; display:inline-block}
.dot.red{background:#FF5C5C}
.dot.yellow{background:#FFCE5C}
.dot.green{background:#5CFF9B}
.terminal-title{margin-left:auto; color:var(--muted); font-weight:600; font-size:12px}
.terminal-body{margin:0; padding:14px 14px 16px; color:#DDE6FF; font-size:13px; overflow:auto}

.hero-badges{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.badge{border:1px solid var(--stroke); background:rgba(13,18,32,.45); padding:8px 10px; border-radius:999px; color:var(--muted); font-weight:600; font-size:12px}

.hero-glow{
  display:none;
}

.section{padding:56px 0}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:18px; flex-wrap:wrap}
.section-head h2{margin:0; font-size:28px; line-height:1.2}
.section-head p{margin:0; color:var(--muted); max-width:60ch}

/* Support section */
.support-section{
  background:rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.support-grid{grid-template-columns:repeat(2, 1fr)}
.support-card{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.12);
}

/* Hardware & Locations (specs) */
.hw-filters{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin:18px 0 0;
}

.hw-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.hw-card-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.hw-title{
  display:flex;
  align-items:center;
  gap:10px;
}

.hw-flag{
  border-radius:4px;
  box-shadow:0 10px 28px rgba(0,0,0,.18);
  aspect-ratio: 3 / 2;
}

.hw-specs li{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.hw-specs li i{
  width:18px;
  flex:0 0 18px;
  color:var(--muted);
  margin-top:2px;
}

[dir="rtl"] .hw-card-top{align-items:flex-start}

@media (max-width: 720px){
  .hw-filters{grid-template-columns:1fr}
  .hw-grid{grid-template-columns:1fr}
}


/* Discord CTA */
.discord-cta{
  margin-top:14px;
  border:1px solid rgba(37,99,235,.35);
  border-radius:var(--radius);
  background:
    radial-gradient(900px 220px at 15% 0%, rgba(37,99,235,.20), transparent 65%),
    linear-gradient(180deg, rgba(13,18,32,.72), rgba(11,16,32,.60));
  box-shadow:0 22px 90px rgba(37,99,235,.12);
  overflow:hidden;
}
.discord-cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px;
}
.discord-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(37,99,235,.35);
  background:rgba(37,99,235,.12);
  color:var(--text);
  font-weight:900;
  letter-spacing:.2px;
  width:fit-content;
}
.discord-cta-copy h3{margin:12px 0 6px; font-size:20px}
.discord-cta-copy p{margin:0; max-width:68ch}
.discord-cta-actions{display:flex; align-items:center; justify-content:flex-end}
.discord-cta .btn{min-width:180px}

.discord-cta:hover{border-color:rgba(96,165,250,.55)}

@media (max-width: 720px){
  .discord-cta-inner{flex-direction:column; align-items:stretch}
  .discord-cta-actions{justify-content:stretch}
  .discord-cta .btn{width:100%}
}

.grid{display:grid; gap:16px}
.grid.two-col{grid-template-columns:repeat(2, minmax(0, 1fr))}
.grid.features{grid-template-columns:repeat(3, 1fr)}
.grid.pricing{grid-template-columns:repeat(3, 1fr)}

/* Feature boxes layout */
.grid.features.features-icons{grid-template-columns:repeat(3, 1fr)}

.feature-card p{color:var(--muted); margin:10px 0 0; font-size:16px; line-height:1.65}
.feature-card{
  padding:26px;
  min-height:240px;
  background:linear-gradient(180deg, rgba(13,18,32,.70), rgba(11,16,32,.58));
}
.feature-top{display:flex; flex-direction:column; align-items:flex-start; gap:10px}
.feature-icon{
  width:62px;
  height:62px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  border:1px solid rgba(37,99,235,.45);
  background:rgba(37,99,235,.22);
  box-shadow:0 16px 50px rgba(37,99,235,.18);
  color:var(--text);
  flex:0 0 auto;
}
.feature-icon .icon-img{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  font-size:34px;
  line-height:1;
}
.feature-top h3{margin:0; font-size:20px}

.card{
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.46);
  border-radius:var(--radius);
  padding:16px;
  min-height:100px;
}
.card:hover{border-color:var(--stroke2)}
.card h3{margin:0 0 6px; font-size:18px}
.card p{margin:0}

.mini-list{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.mini-list li{margin:6px 0}

.muted{color:var(--muted)}

.pricing-toggle{
  display:flex;
  align-items:center;
  gap:10px;
  margin:10px 0 16px;
  flex-wrap:wrap;
}
.toggle-btn{
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  color:var(--muted);
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
}
.toggle-btn:hover{border-color:rgba(37,99,235,.35); color:var(--text)}
.toggle-btn.is-active{color:var(--text); border-color:rgba(37,99,235,.55); background:rgba(37,99,235,.12)}
.toggle-btn.active{color:var(--text); border-color:rgba(37,99,235,.55); background:rgba(37,99,235,.12)}
.toggle-btn:focus{outline:2px solid var(--focus); outline-offset:2px}
.toggle-hint{color:var(--muted); font-weight:600; font-size:13px}

/* Blog */
.blog-controls{display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin:12px 0 10px}
.blog-search{flex:1 1 320px}
.blog-categories{display:flex; gap:10px; flex-wrap:wrap; margin:0 0 14px}
.blog-grid{margin-top:0}
.blog-card{display:block}
.blog-meta{display:flex; gap:8px; flex-wrap:wrap; align-items:center; font-weight:800; font-size:13px}
.blog-breadcrumbs{display:flex; gap:8px; align-items:center; flex-wrap:wrap}
.blog-content{color:var(--text)}
.blog-content a{text-decoration:underline}

.price header{margin-bottom:10px}
.price-line{margin:10px 0 6px; display:flex; align-items:baseline; gap:8px}
.amount{font-size:38px; font-weight:800; letter-spacing:-.02em}
.per{color:var(--muted); font-weight:700}

.checklist{list-style:none; padding:0; margin:14px 0 16px}
.checklist li{margin:10px 0; padding-left:26px; position:relative; color:var(--muted); font-weight:600}
.checklist li::before{content:"✓"; position:absolute; left:0; top:0; color:rgba(45,226,230,.95); font-weight:900}

.price.featured{border-color:rgba(37,99,235,.40); box-shadow:0 18px 70px rgba(37,99,235,.20)}
.ribbon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(37,99,235,.14);
  border:1px solid rgba(37,99,235,.35);
  color:var(--text);
  font-weight:800;
  font-size:12px;
  margin-bottom:10px;
}

.fineprint{color:var(--muted); font-size:13px; margin:14px 0 0}

.faq{display:grid; gap:12px}
.faq details{cursor:pointer}
.faq summary{font-weight:800; list-style:none}
.faq summary::-webkit-details-marker{display:none}
.faq details p{margin-top:8px; color:var(--muted)}

/* Legal pages */
.legal-layout{
  display:grid;
  grid-template-columns:320px minmax(0, 1fr);
  gap:16px;
  align-items:start;
}

.legal-sidebar{position:sticky; top:92px}

.legal-card{padding:18px}
.legal-card h3{margin:0 0 10px; font-size:16px}

.legal-nav{display:grid; gap:8px}
.legal-nav a{
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  border-radius:12px;
  padding:10px 12px;
  color:var(--muted);
  font-weight:800;
}
.legal-nav a:hover{border-color:rgba(37,99,235,.35); color:var(--text)}
.legal-nav a.is-active{
  border-color:rgba(37,99,235,.65);
  background:rgba(37,99,235,.12);
  color:var(--text);
}
.legal-nav a.is-active::before{
  content:"";
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:999px;
  background:rgba(37,99,235,.95);
  margin-right:10px;
  vertical-align:middle;
}
.legal-nav a:focus-visible{outline:2px solid var(--focus); outline-offset:2px}

.legal-content{display:grid; gap:14px}

.legal-hero{
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(13,18,32,.70), rgba(11,16,32,.58));
  border-radius:var(--radius);
  padding:22px;
}
.legal-hero h1{margin:10px 0 6px; font-size:38px; line-height:1.15}
.legal-updated{margin:0 0 10px; font-weight:700}

.legal-section{padding:22px}
.legal-section h2{margin:0 0 10px; font-size:22px}
.legal-section h3{margin:14px 0 8px; font-size:16px}
.legal-section p{margin:0 0 10px}

.legal-callout{
  border:1px solid rgba(37,99,235,.35);
  background:rgba(37,99,235,.10);
  border-radius:14px;
  padding:16px;
}
.legal-callout h3{margin:0 0 8px}

/* RTL support for legal pages */
[dir="rtl"] .legal-layout{
  grid-template-columns:minmax(0, 1fr) 320px;
}
[dir="rtl"] .legal-sidebar{grid-column:2}
[dir="rtl"] .legal-content{grid-column:1}
[dir="rtl"] .legal-nav a{text-align:right}
[dir="rtl"] .legal-nav a.is-active::before{margin-right:0; margin-left:10px}

@media (max-width: 980px){
  .legal-layout{grid-template-columns:1fr}
  .legal-sidebar{position:static}
}

@media (max-width: 720px){
  /* Legal pages feel too “pushed down” on phones (header + section padding). */
  .legal-layout{margin-top:-22px}
}

.faq-highlights{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:8px 0 14px;
}
.faq-highlight{
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  border-radius:999px;
  padding:10px 12px;
  color:var(--muted);
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.faq-highlight:hover{border-color:rgba(37,99,235,.35)}
.faq-highlight[href]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.faq-highlight[href]:hover{background:rgba(255,255,255,.06)}
.faq-highlight[href]:focus{outline:2px solid var(--focus); outline-offset:2px}

/* Minecraft configurator */
.mc-config-grid{
  display:grid;
  grid-template-columns:1.35fr .9fr;
  gap:16px;
  align-items:start;
}
.page-minecraft #pricing .section-head h2,
.page-cs2 #pricing .section-head h2,
.page-minecraft .mc-summary h3{
  background:linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.page-cs2 .mc-summary h3{
  background:linear-gradient(90deg, var(--accent2), var(--accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.mc-configurator{padding:18px}
.mc-config-kpis{
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.mc-kpi{
  flex:1 1 0;
  border:1px solid var(--stroke);
  border-radius:14px;
  background:rgba(13,18,32,.40);
  padding:12px 14px;
}
.mc-kpi-label{color:var(--muted); font-weight:800; font-size:13px}
.mc-kpi-value{margin-top:6px; font-size:22px; font-weight:900; letter-spacing:-.02em}
.mc-kpi-suffix{color:var(--muted); font-weight:800; margin-left:6px; font-size:14px}

.mc-fields{display:grid; gap:14px}
.mc-field-label{font-weight:900; margin-bottom:8px}
.mc-help{margin-top:8px; font-size:13px; font-weight:600}

.mc-pill-group{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.mc-pill{
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  color:var(--muted);
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
}
.mc-pill:hover{border-color:rgba(37,99,235,.35); color:var(--text)}
.mc-pill.is-active{color:var(--text); border-color:rgba(37,99,235,.55); background:rgba(37,99,235,.12)}
.mc-pill:focus{outline:2px solid var(--focus); outline-offset:2px}

.mc-select{
  width:100%;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
  font-weight:700;
}
.mc-select:focus{outline:2px solid var(--focus); outline-offset:2px}

/* Partner program form */
.partner-form-title{
  margin:4px 0 2px;
  font-size:18px;
  font-weight:900;
}

.partner-textarea{resize:vertical; min-height:110px; line-height:1.5}

.partner-grid-2{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:14px}
@media (max-width: 720px){
  .partner-grid-2{grid-template-columns:1fr}
}

.partner-radio-row{display:flex; gap:12px; flex-wrap:wrap}
.partner-radio{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  color:var(--muted);
  font-weight:800;
  cursor:pointer;
}
.partner-radio:hover{border-color:rgba(37,99,235,.35); color:var(--text)}
.partner-radio input{accent-color:var(--accent)}

.partner-checks{display:grid; gap:10px}
.partner-check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  color:var(--muted);
  font-weight:800;
}
.partner-check:hover{border-color:rgba(37,99,235,.35); color:var(--text)}
.partner-check input{margin-top:3px; accent-color:var(--accent)}

.partner-actions{display:flex; align-items:center; gap:14px; flex-wrap:wrap}
.partner-status{margin:0}
.partner-status.is-ok{color:var(--accent2)}
.partner-status.is-err{color:#ffb4b4}

.mc-location{position:relative}
.mc-location-btn{
  width:100%;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  cursor:pointer;
}
.mc-location-btn:hover{background:rgba(255,255,255,.06)}
.mc-location-btn:focus{outline:2px solid var(--focus); outline-offset:2px}
.mc-location-selected{flex:1 1 auto; text-align:left}
[dir="rtl"] .mc-location-selected{text-align:right}
.mc-location-caret{color:var(--muted); font-weight:900}

.mc-location-menu{
  position:absolute;
  top:calc(100% + 8px);
  left:0;
  right:0;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.96);
  border-radius:14px;
  padding:8px;
  display:grid;
  gap:6px;
  z-index:20;
  box-shadow:0 24px 80px rgba(0,0,0,.45);
}
.mc-location-menu[hidden]{display:none}
.mc-location-option{
  width:100%;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  color:var(--text);
  padding:10px 10px;
  border-radius:12px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}
.mc-location-option:hover{border-color:rgba(37,99,235,.35); background:rgba(255,255,255,.06)}
.mc-location-option.is-active{border-color:rgba(37,99,235,.55); background:rgba(37,99,235,.12)}

.mc-flag{
  border-radius:4px;
  box-shadow:0 10px 28px rgba(0,0,0,.18);
  flex:0 0 auto;
  aspect-ratio: 3 / 2;
}

.mc-select-native{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.mc-range{
  width:100%;
  accent-color:var(--focus);
}

/* Colored RAM bar (Minecraft page) */
.page-minecraft .mc-range{
  appearance:none;
  -webkit-appearance:none;
  height:10px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  border:1px solid var(--stroke);
}
.page-cs2 .mc-range{
  appearance:none;
  -webkit-appearance:none;
  height:10px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  border:1px solid var(--stroke);
}
.page-minecraft .mc-range::-webkit-slider-runnable-track{
  height:10px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
}
.page-cs2 .mc-range::-webkit-slider-runnable-track{
  height:10px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
}
.page-minecraft .mc-range::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  height:22px;
  width:22px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  border:2px solid rgba(255,255,255,.9);
  box-shadow:0 10px 28px rgba(37,99,235,.25);
  margin-top:-7px;
}
.page-cs2 .mc-range::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  height:22px;
  width:22px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  border:2px solid rgba(255,255,255,.9);
  box-shadow:0 10px 28px rgba(37,99,235,.25);
  margin-top:-7px;
}
.page-minecraft .mc-range::-moz-range-track{
  height:10px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  border:1px solid var(--stroke);
}
.page-cs2 .mc-range::-moz-range-track{
  height:10px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  border:1px solid var(--stroke);
}
.page-minecraft .mc-range::-moz-range-thumb{
  height:22px;
  width:22px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  border:2px solid rgba(255,255,255,.9);
  box-shadow:0 10px 28px rgba(37,99,235,.25);
}
.page-cs2 .mc-range::-moz-range-thumb{
  height:22px;
  width:22px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  border:2px solid rgba(255,255,255,.9);
  box-shadow:0 10px 28px rgba(37,99,235,.25);
}
.mc-range-labels{
  margin-top:10px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  color:var(--muted);
  font-size:12px;
  font-weight:800;
}

.mc-specs{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid var(--stroke);
  display:grid;
  gap:12px;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.mc-spec{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid rgba(37,99,235,.28);
  background:linear-gradient(135deg, rgba(37,99,235,.16), rgba(96,165,250,.08));
  border-radius:14px;
  padding:12px 14px;
  font-weight:800;
  text-align:center;
  min-height:104px;
}
.mc-spec-icon{font-size:22px; line-height:1}
.mc-spec-text{display:grid; gap:2px; justify-items:center}
.mc-spec-value{font-weight:900; font-size:16px; letter-spacing:-.01em}
.mc-spec-title{color:var(--muted); font-weight:800; font-size:12px; letter-spacing:.2px}

.mc-included{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid var(--stroke);
}
.mc-included-title{margin:0 0 12px; font-size:16px; font-weight:900}
.mc-included-grid{display:grid; gap:10px; grid-template-columns:1fr}
.mc-included-item{
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  border-radius:14px;
  padding:12px 14px;
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.mc-included-icon{font-size:22px; line-height:1; margin-top:1px}
.mc-included-text{display:grid; gap:4px}
.mc-included-name{font-weight:900}
.mc-included-desc{color:var(--muted); font-weight:700; font-size:13px}

@media (min-width: 820px){
  .mc-included-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}
}

@media (min-width: 820px){
  .mc-specs{grid-template-columns:repeat(4, minmax(0, 1fr));}
}

.mc-summary{padding:18px}
.mc-summary h3{margin:0 0 12px; font-size:20px}
.mc-save{
  border:1px solid rgba(37,99,235,.35);
  border-radius:14px;
  background:rgba(37,99,235,.12);
  padding:12px 14px;
}
.mc-save-title{font-weight:900; margin-bottom:8px}
.mc-save-rows{display:grid; gap:6px}

.mc-summary-rows{margin-top:14px; display:grid; gap:0}
.mc-row{display:flex; align-items:baseline; justify-content:space-between; gap:10px}
.mc-row span{color:var(--muted); font-weight:700}
.mc-row strong{font-weight:900}

/* Order Summary dividers */
.mc-summary-rows .mc-row{padding:10px 0; border-bottom:1px solid var(--stroke)}
.mc-summary-rows .mc-row:last-child{border-bottom:0}
.mc-summary-rows .mc-note{
  margin:0;
  padding:0 0 10px;
  border-bottom:1px solid var(--stroke);
  color:var(--muted);
  font-weight:700;
}

.mc-deploy{margin-top:14px; width:100%}

/* Order Summary pricing box */
.mc-pricebox{
  margin-top:12px;
  border:1px solid var(--stroke);
  background:rgba(0,0,0,.55);
  border-radius:14px;
  padding:12px 14px;
}
.mc-price-main{display:flex; align-items:baseline; justify-content:space-between; gap:12px}
.mc-price-main > span{color:var(--muted); font-weight:800}
.mc-price-monthly{color:#5CFF9B; font-size:28px; font-weight:900; letter-spacing:-.02em}

.mc-price-sub{margin-top:10px; display:grid; gap:6px}
.mc-price-row{display:flex; align-items:baseline; justify-content:space-between; gap:12px}
.mc-price-row span{color:var(--muted); font-weight:800; font-size:12px}
.mc-price-row strong{color:#FFCE5C; font-weight:900; font-size:12px}

.mc-perks{margin-top:14px; display:grid; gap:8px; color:var(--muted); font-weight:700}
.mc-perk{display:flex; align-items:center; gap:10px}
.mc-perk-btn{width:100%}

@media (max-width: 900px){
  .mc-config-grid{grid-template-columns:1fr}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *, *::before, *::after{
    scroll-behavior:auto !important;
    transition:none !important;
    animation:none !important;
  }
}

@media (max-width: 420px){
  .container{padding:0 16px}
  .section{padding:46px 0}

@media (max-width: 520px){
  .feature-card{padding:18px; min-height:unset}
  .feature-card p{font-size:15px}
  .feature-icon{width:54px; height:54px}
  .feature-icon .icon-img{width:30px; height:30px}
}
  .hero{padding:54px 0 34px}
  h1{font-size:32px}
  .lead{font-size:16px}
}
.faq-highlight strong{color:var(--text)}

.inline-icon,
.chip-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  font-size:18px;
  line-height:1;
  opacity:.92;
}

.with-icon{display:flex; align-items:center; gap:10px}

.cta{display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:18px; flex-wrap:wrap}
.cta-actions{display:flex; gap:10px; flex-wrap:wrap}

.site-footer{border-top:1px solid var(--stroke); padding:26px 0 18px; background:rgba(7,10,18,.55)}

/* Legacy footer layout (kept for compatibility) */
.footer-inner{display:flex; align-items:flex-start; justify-content:space-between; gap:18px; flex-wrap:wrap}
.footer-right{display:flex; gap:14px; flex-wrap:wrap}
.footer-right a{color:var(--muted); font-weight:600}

/* New footer layout */
.footer-grid{
  display:grid;
  grid-template-columns: 1fr 2fr;
  gap:24px;
  align-items:start;
}

.footer-brand{display:flex; flex-direction:column; gap:14px; min-width:240px}

.footer-logo-link{display:inline-flex; align-items:center; width:fit-content}
.footer-logo{display:block; height:60px; width:auto; aspect-ratio: 4 / 1;}
.footer-registered{margin:0; font-weight:600}

.footer-social{display:flex; gap:10px; flex-wrap:wrap}
.social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:rgba(13,18,32,.40);
  color:var(--text);
}
.social-link i{font-size:18px; line-height:1}
.social-link:hover{border-color:rgba(37,99,235,.35)}

.footer-contact{display:flex; flex-direction:column; gap:6px}
.footer-email{color:var(--text); font-weight:700}
.footer-location{color:var(--muted); font-weight:600}

.footer-nav{
  display:grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap:18px 20px;
}

.footer-col{display:flex; flex-direction:column; gap:10px}
.footer-col h3{
  margin:0;
  font-size:14px;
  letter-spacing:.2px;
}
.footer-col a{color:var(--muted); font-weight:600}
.footer-col a:hover{color:var(--text)}

.footer-bottom{margin-top:16px; padding-top:12px; border-top:1px solid var(--stroke); display:flex; flex-direction:column; gap:6px}
.footer-bottom p{margin:0}

@media (max-width: 980px){
  .footer-grid{grid-template-columns: 1fr;}
  .footer-nav{grid-template-columns: repeat(2, minmax(150px, 1fr));}
  .footer-brand{min-width:0}
  .feature-icon .icon-img{width:30px; height:30px; font-size:30px}

@media (max-width: 520px){
  .footer-nav{grid-template-columns: 1fr;}
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-card{margin-top:14px}
  h1{font-size:38px}
  .grid.two-col{grid-template-columns:1fr}
  .grid.features{grid-template-columns:repeat(2,1fr)}
  .grid.pricing{grid-template-columns:1fr}
  .game-grid{grid-template-columns:repeat(2, 1fr)}
  .grid.features.features-icons{grid-template-columns:repeat(2, 1fr)}
  .support-grid{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .nav-toggle{display:inline-flex}
  .nav-links{
    position:fixed;
    top:72px;
    right:0;
    height:calc(100vh - 72px);
    width:min(360px, calc(100vw - 64px));
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:12px;
    border:1px solid var(--stroke);
    border-radius:16px 0 0 16px;
    background:rgba(13,18,32,.92);
    box-shadow:var(--shadow);
    transform:translateX(110%);
    opacity:0;
    pointer-events:none;
    transition:transform .2s ease, opacity .2s ease;
    overflow:auto;
  }
  .nav-links.is-open{
    transform:translateX(0);
    opacity:1;
    pointer-events:auto;
  }

  .nav-main,
  .nav-actions{
    display:flex;
    flex-direction:column;
    gap:10px;
  }

  /* Reset desktop centering behavior inside the mobile menu */
  .nav-main{position:static; left:auto; transform:none}
  .nav-actions{margin-left:0}

  .dropdown{display:flex}
  .dropdown-toggle{justify-content:space-between; width:100%; border-radius:12px; background:rgba(255,255,255,.04); color:var(--text); border:1px solid var(--stroke)}
  .dropdown-menu{position:static; min-width:unset; width:100%; box-shadow:none; background:transparent; border:none; padding:0}
  .dropdown-menu a{background:rgba(255,255,255,.03)}

  .nav-links a{padding:10px 10px; border-radius:12px; background:rgba(255,255,255,.04)}
  .nav-links a.btn{background:rgba(255,255,255,.06)}
  .nav-links a.lang{border-radius:12px; text-align:center}

  .grid.features{grid-template-columns:1fr}
  .game-grid{grid-template-columns:1fr}
}

/* RTL (Arabic) support */
[dir="rtl"] body{direction:rtl}
[dir="rtl"] .header-inner{flex-direction:row-reverse}
[dir="rtl"] .brand{flex-direction:row-reverse}
[dir="rtl"] .brand-name{text-align:right}
[dir="rtl"] .dropdown-toggle{flex-direction:row-reverse}
[dir="rtl"] .lang-btn{flex-direction:row-reverse}
[dir="rtl"] .dropdown-caret{transform:rotate(180deg)}
[dir="rtl"] .game-badge{left:auto; right:10px}
[dir="rtl"] .section-head{flex-direction:row-reverse}
[dir="rtl"] .section-head{justify-content:space-between}
[dir="rtl"] .section-head h2{text-align:right}
[dir="rtl"] .section-head p{text-align:right}
[dir="rtl"] .hero-copy{text-align:right}
[dir="rtl"] .hero-points{justify-content:flex-start}
[dir="rtl"] .stats{text-align:right}
[dir="rtl"] .hero-cta{justify-content:flex-start}
[dir="rtl"] .hero-metrics{justify-content:flex-end}
[dir="rtl"] .mini-list{padding-left:0; padding-right:18px}
[dir="rtl"] .checklist li{padding-left:0; padding-right:26px}
[dir="rtl"] .checklist li::before{left:auto; right:0}
[dir="rtl"] .footer-inner{flex-direction:row-reverse}
[dir="rtl"] .footer-right{justify-content:flex-start}
[dir="rtl"] .footer-grid{direction:rtl}
[dir="rtl"] .footer-social{justify-content:flex-start}
[dir="rtl"] .lang-menu{right:auto; left:0}
[dir="rtl"] .dropdown-menu{right:auto; left:0}
[dir="rtl"] .game-footer{flex-direction:row-reverse}
[dir="rtl"] .trustpilot-box{flex-direction:row-reverse}
[dir="rtl"] .games-more{flex-direction:row-reverse}

[dir="rtl"] .skip-link{left:auto; right:-999px}
[dir="rtl"] .skip-link:focus,
[dir="rtl"] .skip-link:focus-visible{left:auto; right:16px}

@media (max-width: 720px){
  [dir="rtl"] .nav-links{
    right:auto;
    left:0;
    border-radius:0 16px 16px 0;
    transform:translateX(-110%);
  }
  [dir="rtl"] .nav-links.is-open{transform:translateX(0)}
  [dir="rtl"] .nav-links a,
  [dir="rtl"] .dropdown-toggle,
  [dir="rtl"] .lang-btn{ text-align:right }
}

/* Team page */
.grid.team-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}

.team-card{
  position:relative;
  overflow:hidden;
  padding:18px;
  aspect-ratio:1;
  display:flex;
  flex-direction:column;
}

.team-top{display:flex; align-items:center; gap:12px}
.team-avatar{
  width:46px;
  height:46px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  object-fit:cover;
  flex:0 0 auto;
}

.team-meta h3{margin:0; font-size:16px}
.team-role{margin:2px 0 0; color:var(--muted); font-weight:700; font-size:14px}

.team-email{
  margin-top:12px; 
  display:inline-flex; 
  gap:6px; 
  align-items:center; 
  color:var(--muted); 
  font-weight:700;
  font-size:13px;
}
.team-email:hover{color:var(--text)}

.team-hover{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:14px 16px;
  border-top:1px solid var(--stroke);
  background:rgba(13,18,32,.92);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  pointer-events:none;
  z-index:2;
  transition:opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}

.team-card:hover .team-hover,
.team-card:focus .team-hover,
.team-card:focus-within .team-hover,
.team-card:active .team-hover{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
  transition:opacity .18s ease, transform .18s ease, visibility 0s;
}

.team-hover p{margin:0; color:var(--text); font-weight:650; line-height:1.55; font-size:13px}

@media (max-width: 980px){
  .grid.team-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 720px){
  .grid.team-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* Touch devices don't support hover; show descriptions by default */
@media (hover: none){
  .team-card{overflow:visible}
  .team-hover{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    pointer-events:auto;
    background:transparent;
    border-top:1px solid var(--stroke);
    padding:14px 0 0;
    margin-top:14px;
    transition:none;
  }
}
}