@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700&family=Barlow:wght@300;400;500;600;700&family=Noto+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&family=Smooch+Sans:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'UnfairStyle';
  src: url('../fonts/Unfair Style2Rough.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'CaudexRegular';
  src: url('../fonts/Caudex-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'CrimsonItalic';
  src: url('../fonts/CrimsonText-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: 'HeadlinerNo45';
  src: url('../fonts/HeadlinerNo45.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'BFHeadline';
  src: url('../fonts/bf_headline.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: 'BFMono';
  src: url('../fonts/bf_mono.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}


:root{
  --game-primary:#a31621;
  --game-accent:#ff2a3a;
  --game-text:#fff;

  --accent: var(--game-accent);
  --bg-offset-y: 0px;

  --slogan-font: 'Space Grotesk', 'IBM Plex Sans', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
}


* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
html, body { background-color:#070707; }

body{
  font-family:'Jost', sans-serif;
  color:#fff;
  overflow-x:hidden;
  line-height:1.6;
  position:relative;

  background-image: none;
  background-repeat: no-repeat;
  background-position: 50% top;
  background-size: cover;
}


body.game-hunt,
body.game-arc,
body.game-pubg,
body.game-bf6{
  background-repeat: no-repeat, no-repeat;
  background-position:
    50% calc(var(--bg-offset-y) * 1),
    50% calc(var(--bg-offset-y) * 1);
  background-size: cover, cover;
}

body.game-hunt{
  background-image:
    linear-gradient(135deg, rgba(10,10,10,0.42) 0%, rgba(26,26,26,0.42) 100%),
    url('../images/backgrounds/bg_hunt.jpg');
}
body.game-arc{
  background-image:
    linear-gradient(135deg, rgba(10,10,10,0.42) 0%, rgba(26,26,26,0.42) 100%),
    url('../images/backgrounds/bg_arc.jpg');
}
body.game-pubg{
  background-image:
    linear-gradient(135deg, rgba(10,10,10,0.42) 0%, rgba(26,26,26,0.42) 100%),
    url('../images/backgrounds/bg_pubg.jpg');
}
/* BF6 background */
body.game-bf6{
  background-image:
    linear-gradient(135deg, rgba(10,10,10,0.42) 0%, rgba(26,26,26,0.42) 100%),
    url('../images/backgrounds/bg_bf6.jpg');
}

@media (max-width: 768px){
  body.game-hunt,
  body.game-arc,
  body.game-pubg,
  body.game-bf6{
    background-size: 165% auto, 165% auto;
    background-position:
      50% calc(var(--bg-offset-y) * 1),
      50% calc(var(--bg-offset-y) * 1);
  }
}


::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: color-mix(in srgb, var(--accent) 85%, white); }


.nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  background:rgba(10,10,10,0.8);
  border-bottom:1px solid rgba(255,255,255,.1);
  transition:all .3s ease;
}

.nav-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 2rem;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position: relative;
}

.nav-left{ display:flex; align-items:center; gap:.5rem; }
.nav-logo{ height:30px; width:auto; }

.logo{
  font-family:'UnfairStyle', sans-serif;
  font-size:1.2rem; color:#fff; text-decoration:none; transition:color .2s ease;
}
.logo:hover{ color:var(--accent) !important; }

.nav-links{ display:flex; gap:2rem; list-style:none; }
.nav-links a{
  font-family:'UnfairStyle', sans-serif;
  font-size:1.2rem; color:#fff; text-decoration:none; transition:color .2s ease; position:relative;
}
.nav-links a:hover{ color:var(--accent) !important; }
.nav-links a::after{
  content:''; position:absolute; bottom:-5px; left:0; width:0; height:2px; background:#fff; transition:width .3s ease;
}
.nav-links a:hover::after{ width:100%; }

.nav-center{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-shortcut{
  text-decoration: none;
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  opacity: 0.92;
  letter-spacing: 0.04em;
  transition: color .18s ease, opacity .18s ease, transform .18s ease;
}

.nav-shortcut:hover{
  color: #fff;
  opacity: 1;
  transform: translateY(-1px);
}
.nav-shortcut.is-active{
  color: #fff;
  opacity: 1;
}

.nav-shortcut-hunt{ font-family:'UnfairStyle', sans-serif; }
.nav-shortcut-arc{ font-family:'Urbanist', sans-serif; font-weight: 700; }
.nav-shortcut-pubg{ font-family:'HeadlinerNo45', sans-serif; }
.nav-shortcut-bf6{ font-family:'BFHeadline', sans-serif; }

@media (max-width: 900px){
  .nav-container{
    height: auto;
    padding: 10px 1rem;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-center{
    position: static;
    transform: none;
    order: 2;
    width: 100%;
    justify-content: center;
  }

  .nav-links{
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .nav-left{
    order: 1;
    width: 100%;
    justify-content: center;
  }
}


.hero{ min-height:100vh; display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.hero-content{ text-align:center; max-width:800px; padding:0 2rem; z-index:10; position:relative; }

.hero-title{
  font-family:'UnfairStyle', sans-serif;
  font-size:clamp(3.9rem, 10.4vw, 7.8rem);
  margin-bottom:1rem; color:#fff; font-weight:normal;
  animation:slideInUp 1s ease-out;
}
.hero-subtitle{
  font-family:'CaudexRegular', serif;
  font-size:clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom:3rem; color:#fff; font-weight:300;
  animation:slideInUp 1s ease-out .2s both;
}

.hero-buttons{ display:flex; gap:1.5rem; justify-content:center; flex-wrap:wrap; animation:slideInUp 1s ease-out .4s both; }

.btn{
  padding:1rem 2rem; border:1px solid #f5f5f5; border-radius:0;
  font-size:1rem; font-weight:500; text-decoration:none; transition:all .25s ease;
  cursor:pointer; position:relative; overflow:hidden; backdrop-filter:blur(10px);
  display:inline-flex; align-items:center; justify-content:center; min-width:180px; white-space:nowrap;
}
.btn-primary{
  font-family:'CaudexRegular', serif;
  background: color-mix(in srgb, var(--accent) 85%, black);
  color:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.3);
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 15px 40px rgba(0,0,0,.4); }

.joe-blue-btn{
  font-family:'CaudexRegular', serif;
  background:rgba(245,245,245,.85); color:#000;
  box-shadow:0 10px 30px rgba(0,0,0,.3);
  animation:slideInUp 1s ease-out .6s both;
}
.joe-blue-btn:hover{ transform:translateY(-3px); box-shadow:0 15px 40px rgba(0,0,0,.4); }
#joe-blue-btn.playing{ border-color:#fff !important; border-width:2px; box-shadow:none; transform:scale(1.02); }
.joe-blue-btn:active{ transform:translateY(-1px); }


.products-section{ padding:4rem 2rem; max-width:1400px; margin:0 auto; }
.section-header{ text-align:center; margin-bottom:3rem; }

.section-title{
  font-family:'UnfairStyle', sans-serif;
  font-size:clamp(2.5rem, 6vw, 4rem);
  margin-bottom:1rem; color:#fff; font-weight:normal;
}

.products-grid{ display:grid; grid-template-columns:repeat(auto-fit, minmax(350px, 1fr)); gap:2rem; }

.product-card{
  background:rgba(0, 0, 0, 0.7);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px; overflow:hidden;
  transition:all .4s cubic-bezier(.4,0,.2,1); cursor:pointer; position:relative;
}
.product-card:hover{ transform:translateY(-8px); box-shadow:0 25px 50px rgba(0,0,0,.35); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }

.product-image{ position:relative; height:250px; overflow:hidden; }
.product-image img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.product-card:hover .product-image img{ transform:scale(1.1); }

.product-price{
  position:absolute; top:1rem; right:1rem;
  background: color-mix(in srgb, var(--accent) 85%, black);
  color:#fff;
  padding:.5rem 1rem; border-radius:0;
  border:1px solid #f5f5f5; font-weight:600; font-size:.9rem;
  backdrop-filter:blur(10px);
}

.product-content{ padding:2rem; position:relative; z-index:10; }

.product-title{
  font-family:'CaudexRegular', serif;
  font-size:1.4rem; font-weight:600; margin-bottom:.5rem; color:#fff; transition:color .2s ease;
}
.product-card:hover .product-title,
.product-title:hover{ color:var(--accent) !important; }

.product-description{
  font-family:'CrimsonItalic', serif;
  color:#cccccc; font-size:.95rem; margin-bottom:1.5rem; line-height:1.5;
}

.product-features{ list-style:none; margin-bottom:1.5rem; font-family:'CrimsonItalic', serif; }
.product-features li{ color:#aaaaaa; font-size:.9rem; margin-bottom:.3rem; position:relative; padding-left:1rem; }
.product-features li::before{ content:'✓'; position:absolute; left:0; color: color-mix(in srgb, var(--accent) 65%, white); font-weight:bold; }

.product-buttons{ display:flex; gap:1rem; flex-wrap:wrap; }
.product-btn{
  padding:.8rem 1.5rem; border:1px solid #f5f5f5; border-radius:0; font-size:.9rem; font-weight:500;
  text-decoration:none; transition:all .3s ease; cursor:pointer; position:relative; overflow:hidden; flex:1; text-align:center; min-width:150px;
  display:inline-flex; align-items:center; justify-content:center; white-space:nowrap;
}

.product-btn-primary{
  font-family:'CaudexRegular', serif;
  background: color-mix(in srgb, var(--accent) 85%, black);
  color:#fff;
  box-shadow:0 8px 25px rgba(0,0,0,.3);
}
.product-btn-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 35px rgba(0,0,0,.4); }

.product-btn-secondary{ font-family:'CaudexRegular', serif; background:rgba(245,245,245,.85); color:#000; }
.product-btn-secondary:hover{ background:rgba(245,245,245,.95); transform:translateY(-2px); }


body.game-arc .hero-title{ font-family:'Urbanist', sans-serif; font-weight:700; letter-spacing:0.01em; }
body.game-arc .hero-subtitle{ font-family:'Barlow', sans-serif; font-weight:400; font-style:normal; }
body.game-arc .btn-primary,
body.game-arc .joe-blue-btn,
body.game-arc .product-btn-primary,
body.game-arc .product-btn-secondary{ font-family:'Urbanist', sans-serif; font-weight:600; letter-spacing:0.01em; }
body.game-arc .section-title{ font-family:'Urbanist', sans-serif; font-weight:700; letter-spacing:0.01em; }
body.game-arc .product-title{ font-family:'Urbanist', sans-serif; font-weight:700; letter-spacing:0.01em; }
body.game-arc .product-description,
body.game-arc .product-features{ font-family:'Barlow', sans-serif; font-style:normal; }


body.game-pubg .hero-title{ font-family:'HeadlinerNo45', sans-serif; font-weight:400; letter-spacing:0.01em; }
body.game-pubg .hero-subtitle{ font-family:'Noto Sans', sans-serif; font-weight:400; font-style:normal; }
body.game-pubg .btn-primary,
body.game-pubg .joe-blue-btn,
body.game-pubg .product-btn-primary,
body.game-pubg .product-btn-secondary{ font-family:'Noto Sans', sans-serif; font-weight:600; }
body.game-pubg .section-title{ font-family:'HeadlinerNo45', sans-serif; font-weight:400; letter-spacing:0.01em; }
body.game-pubg .product-title{ font-family:'HeadlinerNo45', sans-serif; font-weight:400; letter-spacing:0.01em; }
body.game-pubg .product-description,
body.game-pubg .product-features{ font-family:'Noto Sans', sans-serif; font-style:normal; }


body.game-bf6 .hero-title{
  font-family:'BFHeadline', sans-serif;
  font-weight:400;
  letter-spacing:0.02em;
}
body.game-bf6 .hero-subtitle{
  font-family:'BFMono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight:400;
  font-style:normal;
}
body.game-bf6 .btn-primary,
body.game-bf6 .product-btn-primary,
body.game-bf6 .product-btn-secondary{
  font-family:'BFMono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight:600;
  letter-spacing:0.01em;
}
body.game-bf6 .section-title{
  font-family:'BFHeadline', sans-serif;
  font-weight:400;
  letter-spacing:0.02em;
}
body.game-bf6 .product-title{
  font-family:'BFHeadline', sans-serif;
  font-weight:400;
  letter-spacing:0.02em;
}
body.game-bf6 .product-description,
body.game-bf6 .product-features{
  font-family:'BFMono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-style:normal;
}
body.game-bf6 .product-price{
  font-family:'BFMono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight:600;
}
body.game-bf6 .scroll-text{
  font-family:'BFMono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-style:normal;
}


body.game-bf6 .hero-title{
  font-size: clamp(3rem, 6.5vw, 5.2rem);
  white-space: nowrap;
}

body.game-bf6 .hero-subtitle{
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  white-space: nowrap;
  max-width: 100%;
}


body.game-bf6 .glitch{
  position: relative;
  display: inline-block;
  will-change: clip-path, transform, filter;
}

body.game-bf6 .glitch::before,
body.game-bf6 .glitch::after{
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  pointer-events: none;
  user-select: none;
  opacity: 0;
}

body.game-bf6 .glitch::before{
  transform: translateX(-1.5px);
  filter: drop-shadow(1px 0 0 rgba(0, 255, 255, 0.85));
}

body.game-bf6 .glitch::after{
  transform: translateX(1.5px);
  filter: drop-shadow(-1px 0 0 rgba(255, 60, 160, 0.75));
}


body.game-bf6 .glitch{ animation: bf6-glitch-main 7s infinite; }
body.game-bf6 .glitch::before{ animation: bf6-glitch-slice-a 7s infinite; }
body.game-bf6 .glitch::after{ animation: bf6-glitch-slice-b 7s infinite; }

@keyframes bf6-glitch-main{
  0%, 86%, 100%{ text-shadow:none; filter:none; }
  88%{ filter: contrast(1.15) saturate(1.1); }
  89%{ filter:none; }
  92%{ filter: contrast(1.2); }
  93%{ filter:none; }
}

@keyframes bf6-glitch-slice-a{
  0%, 86%, 100%{ opacity:0; clip-path: inset(0 0 100% 0); }
  87%{ opacity:.85; clip-path: inset(12% 0 74% 0); }
  88%{ opacity:.75; clip-path: inset(42% 0 44% 0); }
  89%{ opacity:0; clip-path: inset(0 0 100% 0); }
  92%{ opacity:.7; clip-path: inset(8% 0 82% 0); }
  93%{ opacity:0; clip-path: inset(0 0 100% 0); }
}

@keyframes bf6-glitch-slice-b{
  0%, 86%, 100%{ opacity:0; clip-path: inset(0 0 100% 0); transform: translateX(1.5px); }
  87%{ opacity:.8; clip-path: inset(70% 0 16% 0); transform: translateX(2.5px); }
  88%{ opacity:.65; clip-path: inset(55% 0 30% 0); transform: translateX(.5px); }
  89%{ opacity:0; clip-path: inset(0 0 100% 0); transform: translateX(1.5px); }
  92%{ opacity:.65; clip-path: inset(62% 0 22% 0); transform: translateX(3px); }
  93%{ opacity:0; clip-path: inset(0 0 100% 0); transform: translateX(1.5px); }
}

@media (prefers-reduced-motion: reduce){
  body.game-bf6 .glitch,
  body.game-bf6 .glitch::before,
  body.game-bf6 .glitch::after{
    animation: none !important;
    opacity: 0 !important;
    filter: none !important;
    transform: none !important;
    clip-path: none !important;
  }
}


.scroll-indicator{ position:absolute; bottom:30px; left:50%; transform:translateX(-50%); color:#ccc; animation:bounce 2s infinite; text-align:center; z-index:10; }
.scroll-arrow{ display:block; margin:0 auto .5rem; width:24px; height:24px; opacity:.8; }
.scroll-text{ font-family:'CrimsonItalic', serif; font-size:.8rem; margin-top:.5rem; }
@keyframes bounce{
  0%,20%,50%,80%,100%{ transform:translateX(-50%) translateY(0); }
  40%{ transform:translateX(-50%) translateY(-10px); }
  60%{ transform:translateX(-50%) translateY(-5px); }
}


.footer{
  font-family: var(--slogan-font);
  padding:3rem 2rem; text-align:center;
  background:rgba(0,0,0,0.9);
  backdrop-filter:blur(10px);
  border-top:1px solid rgba(255,255,255,.12);
}
.footer a{ color: color-mix(in srgb, var(--accent) 70%, white); text-decoration:none; transition:color .2s ease; }
.footer a:hover{ color:var(--accent) !important; }

.footer-meta{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  letter-spacing: 0.08em;

  flex-wrap: wrap;
  row-gap: 0.6rem;
}

.footer-meta #visitors30{
  flex: 0 0 100%;
  width: 100%; 
  text-align: center;
  order: 99;
}

.footer-meta .status-online{
  color: #00ff73 !important;
}



@keyframes slideInUp{ from{opacity:0; transform:translateY(50px);} to{opacity:1; transform:translateY(0);} }


@media (max-width:768px){
  .hero-content{ padding:0 1rem; }
  .hero-buttons{ flex-direction:column; align-items:center; }
  .btn{ width:100%; max-width:300px; }
  .products-section{ padding:2rem 1rem; }
  .products-grid{ grid-template-columns:1fr; gap:1.5rem; }
  .product-buttons{ flex-direction:column; }
  .product-btn{ flex:none; }
}


#grain-video{
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  object-fit:cover;
  z-index:6;
  pointer-events:none;
  mix-blend-mode:overlay;
  opacity:1;
}

#lightleaks-video{
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  object-fit:cover;
  z-index:6;
  pointer-events:none;
  mix-blend-mode:screen;
  opacity:1;
}

#scanlines-video{
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  object-fit:cover;
  z-index:6;
  pointer-events:none;
  mix-blend-mode:overlay;
  opacity:1;
}

#lensflares-video{
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  object-fit:cover;
  z-index:6;
  pointer-events:none;
  mix-blend-mode:screen;
  opacity:1;
}



.hero,
.products-section,
.footer{
  position: relative;
  z-index: 5;
}


.video-modal{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;

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

  background: rgba(0,0,0,0.9);
  z-index: 20000;
}

.video-modal.active{
  display: flex;
}

.video-container{
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#modal-video{
  max-width: 100%;
  max-height: 100%;
}


.logo:hover,
.nav-links a:hover,
.product-title:hover,
.footer a:hover {
  color: var(--accent) !important;
  mix-blend-mode: normal !important;
}


body.landing{
  background-image: none !important;
  background-color: #070707 !important;

  min-height: 100vh;
  overflow-x: hidden;

  font-family: var(--slogan-font);

  display: flex;
  flex-direction: column;

  position: relative;
  isolation: isolate;
}

body.landing #matrix-canvas{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;

  opacity: 1;
  filter: contrast(1.18) brightness(1.12);
}

body.landing #grain-video{
  display: none !important;
}

:root{
  --landing-tile-w: clamp(170px, 12vw, 220px);
  --landing-gap: clamp(22px, 3.5vw, 90px);
  --landing-hero-gap: clamp(42px, 4.8vw, 82px);
}

body.landing .landing-main{
  flex: 1;
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  padding: 120px 24px 56px;
  width: min(1050px, 100%);
  margin: 0 auto;
}

body.landing .landing-hero{
  margin-bottom: var(--landing-hero-gap);
}

body.landing .landing-title{
  margin: 0;
  text-transform: none;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

body.landing .landing-games{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--landing-tile-w), 1fr));
  gap: var(--landing-gap);
  justify-content: center;
  align-items: center;
  max-width: calc((var(--landing-tile-w) * 4) + (var(--landing-gap) * 3));
  margin: 0 auto;
}

body.landing .landing-game{
  width: var(--landing-tile-w);
  aspect-ratio: 2 / 3;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  text-decoration: none;
  color: white;
  transform: translateZ(0);

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 18px 40px rgba(0,0,0,0.40);

  transition: transform 220ms ease, box-shadow 220ms ease;
}

body.landing .landing-game-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(0.98) contrast(1.05);
  transform: scale(1.01);
  transition: transform 450ms ease;
}

body.landing .landing-game::after{
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;

  background: linear-gradient(
    132deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.00) 22%,
    rgba(255,255,255,0.20) 26%,
    rgba(255,255,255,0.08) 31%,
    rgba(255,255,255,0.00) 38%,
    rgba(255,255,255,0.00) 100%
  );

  opacity: 0.65;
  transform: translateX(-4%) translateY(-3%);
  transition: transform 650ms ease, opacity 650ms ease;
}

body.landing .landing-game::before{
  content: none !important;
}

body.landing .landing-game:hover{
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10),
    0 26px 60px rgba(0,0,0,0.50);
}

body.landing .landing-game:hover .landing-game-bg{
  transform: scale(1.05);
}

body.landing .landing-game:hover::after,
body.landing .landing-game.is-active::after,
body.landing .landing-game:focus-visible::after{
  opacity: 0.78;
  transform: translateX(1%) translateY(-2%);
}

@media (max-width: 900px){
  body.landing .landing-main{
    width: 100%;
    padding: 110px 18px 48px;
  }

  body.landing .landing-games{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.landing .landing-game{
    width: min(260px, 78vw);
  }
}


#landing-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;

background: radial-gradient(
  ellipse at center,
  rgba(0,0,0,0.95) 0%,
  rgba(0,0,0,0.85) 50%,
  rgba(0,0,0,0.00) 75%
);
}


@media (max-width: 520px){
  html, body{ width:100%; overflow-x:hidden; }
}


@media (max-width: 480px){
  .nav-container{
    padding: 10px 12px;
    gap: 8px;
  }
  .nav-logo{ height: 26px; }
  .logo{ font-size: 1.05rem; }
  .nav-links a{ font-size: 1.05rem; }
  .nav-center{
    padding: 6px 10px;
    gap: 12px;
  }
  .nav-shortcut{ font-size: 0.9rem; }

  .hero-content{ padding: 0 12px; max-width: 100%; }
  .hero-title{
    white-space: normal !important;
    word-break: normal;
    overflow-wrap: anywhere;
    font-size: clamp(2.15rem, 9.2vw, 3.2rem) !important;
    line-height: 1.05;
  }
  .hero-subtitle{
    white-space: normal !important;
    overflow-wrap: anywhere;
    font-size: clamp(0.98rem, 4.2vw, 1.15rem) !important;
    margin-bottom: 2rem;
  }

  .hero-buttons{ gap: 12px; }
  .btn{
    max-width: 100%;
    min-width: 0;
    padding: 0.95rem 1.2rem;
  }

  .scroll-indicator{ bottom: 18px; }

  .products-section{ padding: 2rem 12px; }
  .products-grid{ gap: 14px; }
  .product-card{ border-radius: 18px; }
  .product-image{ height: 210px; }
  .product-content{ padding: 1.25rem; }
  .product-title{ font-size: 1.2rem; }
  .product-description{ font-size: 0.92rem; }
  .product-features li{ font-size: 0.9rem; }

  .product-btn{
    width: 100%;
    min-width: 0;
    padding: 0.85rem 1rem;
  }

  .video-modal{
    height: 100vh;
    height: 100dvh;
  }
  .video-container{ max-width: 94%; max-height: 82vh; max-height: 82dvh; }

  body.landing .landing-main{
    padding: 96px 14px 44px;
  }
  body.landing .landing-title{
    font-size: clamp(22px, 6.2vw, 32px);
    line-height: 1.15;
  }
  body.landing .landing-game{
    width: min(300px, 86vw);
    border-radius: 16px;
  }

  .footer{ padding: 2.2rem 14px; }
}

@media (max-width: 360px){
  .nav-shortcut{ font-size: 0.86rem; }
  .hero-title{ font-size: clamp(2rem, 9.6vw, 2.9rem) !important; }
  .product-image{ height: 190px; }
}

body.landing .landing-more{
  margin-top: clamp(22px, 3vw, 36px);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  opacity: 0.55;

  font-family: var(--slogan-font);
  text-align: center;
}

.nav-links li {
  margin-left: 24px;
}

.win11-crash{
  position: fixed;
  inset: 0;
  z-index: 40000;

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

  background: #ffffff;
  opacity: 0;
  pointer-events: none;

  transition: opacity 700ms ease;
}

.win11-crash.active{
  opacity: 0.95;
  pointer-events: auto;
  cursor: default;
}

/* dialog */
.win11-dialog{
  width: min(720px, 92vw);
  border-radius: 10px;
  background: #ffffff;
  color: #111;

  box-shadow:
    0 20px 60px rgba(0,0,0,0.25),
    0 0 0 1px rgba(0,0,0,0.10);

  overflow: hidden;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
}


.win11-titlebar{
  height: 44px;
  background: #0b0b0b;
  color: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px 0 10px;
  user-select: none;
}

.win11-titlebar-left{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.win11-winicon{
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background:
    linear-gradient(135deg, #2b8cff, #0068ff);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18) inset;
}

.win11-titlebar-right{
  display: flex;
  align-items: center;
  gap: 6px;
}

.win11-close{
  width: 34px;
  height: 28px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
}

.win11-close::before{
  content: "×";
  font-size: 20px;
  line-height: 1;
}


.win11-body{
  padding: 18px 22px 20px;
}

.win11-heading{
  font-size: 30px;
  line-height: 1.15;
  font-weight: 500;
  color: #1b62ff;
  margin: 6px 0 14px;
}

.win11-sub{
  font-size: 16px;
  color: rgba(0,0,0,0.78);
  margin-bottom: 16px;
}

.win11-actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.win11-action{
  font-size: 22px;
  color: #1b62ff;
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;

  padding: 10px 0;
}


.win11-action .arrow{
  font-size: 22px;
  width: 26px;
  display: inline-block;
}

.win11-crash.active{ cursor: wait; }
.win11-crash.can-close{ cursor: pointer; }


body.game-hunt .freeze-overlay{
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(1px) grayscale(0.35) contrast(0.92);
  -webkit-backdrop-filter: blur(1px) grayscale(0.35) contrast(0.92);
}

body.game-arc .freeze-overlay{
  backdrop-filter: blur(2px) saturate(0.85) contrast(0.9);
  -webkit-backdrop-filter: blur(2px) saturate(0.85) contrast(0.9);
}


body.game-pubg .freeze-overlay::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity: 0.18;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,0.06) 0px,
    rgba(255,255,255,0.06) 1px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0) 4px
  );
}


body.game-bf6 .freeze-overlay.is-active{
  animation: bf6-freeze-flash 420ms ease-out 1;
}
@keyframes bf6-freeze-flash{
  0%{ filter: brightness(1.6); }
  100%{ filter: brightness(1); }
}

@media (prefers-reduced-motion: reduce){
  .freeze-spinner{ animation: none !important; }
  body.game-bf6 .freeze-overlay.is-active{ animation: none !important; }
}

.mobile-permission{
  position: fixed;
  inset: 0;
  z-index: 45000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
}

.mobile-permission.active{
  display: flex;
}

.permission-card{
  width: min(92vw, 380px);
  background: #1f1f1f;
  color: #e8e8e8;
  border-radius: 12px;
  padding: 18px 16px 14px;
  font-family: Roboto, system-ui;
  box-shadow: 0 18px 40px rgba(0,0,0,0.6);
}

.permission-app{
  font-size: 13px;
  opacity: .7;
  margin-bottom: 6px;
}

.permission-title{
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 10px;
}

.permission-text{
  font-size: 14px;
  opacity: .75;
  margin-bottom: 14px;
}

.permission-list{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.permission-list li{
  display: flex;
  gap: 10px;
  font-size: 14px;
  padding: 6px 0;
}

.permission-dot{
  width: 8px;
  height: 8px;
  background: #4da3ff;
  border-radius: 50%;
}

.permission-actions{
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.permission-btn{
  background: none;
  border: none;
  color: #4da3ff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
