
:root{
  --orange:#ff5722;
  --dark:#101014;
  --black:#050506;
  --text:#f5f5f5;
  --muted:#a5a5ad;
  --card:#181820;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#fff;
  color:#111;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.site-header{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px 7vw;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid #eee;
}
.logo img{width:170px}
nav{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
}
nav a:hover{color:var(--orange)}
.hero{
  position:relative;
  min-height:720px;
  padding:95px 7vw 90px;
  overflow:hidden;
  background:linear-gradient(135deg,#fff 0%,#f5f5f5 45%,#ffe2d7 100%);
}
.hero-bg-text{
  position:absolute;
  left:4vw;
  top:80px;
  font-size:12vw;
  line-height:.8;
  font-weight:900;
  color:rgba(255,87,34,.08);
  white-space:nowrap;
  pointer-events:none;
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:60px;
}
.eyebrow{
  color:var(--orange);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:13px;
}
h1,h2,h3,p{margin-top:0}
h1{
  max-width:760px;
  font-size:clamp(54px,8vw,128px);
  line-height:.9;
  letter-spacing:-.08em;
  text-transform:uppercase;
  margin-bottom:28px;
}
h1 span{
  color:#fff;
  background:var(--orange);
  padding:0 .08em;
}
.hero-text{
  max-width:560px;
  font-size:20px;
  line-height:1.6;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 24px;
  margin-top:18px;
  background:var(--orange);
  color:#fff;
  border-radius:999px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.button:hover{transform:translateY(-2px)}
.button.light{background:#fff;color:#111}
.hero-card{
  border:8px solid #fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.18);
  transform:rotate(2deg);
}
.about{
  padding:110px 7vw;
  background:var(--black);
  color:var(--text);
}
.section-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  align-items:center;
  gap:64px;
}
.rounded-img{
  border-radius:28px;
  aspect-ratio:4/3;
  object-fit:cover;
}
.about h2,.projects h2,.career h2,.publishing h2,.contact h2{
  font-size:clamp(42px,6vw,88px);
  line-height:.95;
  letter-spacing:-.06em;
  text-transform:uppercase;
}
.about p{
  color:#d5d5dd;
  font-size:18px;
  line-height:1.8;
}
.orange{color:var(--orange)}
.projects{
  padding:105px 7vw;
  background:linear-gradient(135deg,#ff5722,#d52688);
  color:#fff;
}
.section-title{
  max-width:880px;
  margin-bottom:46px;
}
.section-title p{
  font-size:18px;
  line-height:1.6;
}
.games-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.game-card{
  position:relative;
  overflow:hidden;
  min-height:360px;
  border-radius:26px;
  background:#111;
  box-shadow:0 25px 50px rgba(0,0,0,.25);
}
.game-card img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  transition:.35s;
}
.game-card:hover img{transform:scale(1.08)}
.game-card h3{
  position:absolute;
  left:18px;
  bottom:18px;
  margin:0;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  color:#111;
  font-size:15px;
  text-transform:uppercase;
  font-weight:900;
}
.career{
  padding:105px 7vw;
  background:#f2f2f4;
}
.conditions-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.conditions-grid article{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
}
.conditions-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.conditions-grid h3{
  padding:22px 22px 0;
  font-size:24px;
}
.conditions-grid p{
  padding:0 22px 26px;
  color:#555;
  line-height:1.6;
}
.publishing{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:90px 7vw;
  background:#14141b;
  color:#fff;
}
.publishing p{color:#cfcfd6;font-size:18px}
.contact{
  padding:90px 7vw;
  text-align:center;
  background:#fff;
}
.contact a{
  color:var(--orange);
  font-size:22px;
  font-weight:900;
}
footer{
  padding:34px 7vw;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:#f7f7f7;
  color:#777;
}
footer img{width:150px}
@media(max-width:1000px){
  .hero-inner,.section-grid{grid-template-columns:1fr}
  .games-grid,.conditions-grid{grid-template-columns:repeat(2,1fr)}
  .site-header{align-items:flex-start;flex-direction:column}
}
@media(max-width:640px){
  .hero{min-height:auto;padding-top:60px}
  nav{gap:12px;font-size:11px}
  .logo img{width:140px}
  .games-grid,.conditions-grid{grid-template-columns:1fr}
  .publishing,footer{flex-direction:column;align-items:flex-start}
}


/* Updated project cards for new screenshots */
.game-card img,
.game-card.large img {
  object-position: center;
}

.games-grid .game-card {
  background: #111;
}
