*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, Helvetica, sans-serif;
}

body{
  background:black;
  color:white;
}

.container{
  width:100%;
  min-height:100vh;
  padding:30px 80px;            
  position:relative;
  overflow:hidden;

  background:
  radial-gradient(circle at bottom left,#ff0066 0%, transparent 30%),
  linear-gradient(120deg,#120006,#2d0047,#07000f);
}

/* NAVBAR */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo-small img{
  width:90px;
  cursor: pointer;
}
.logo-small img:hover{
  transform: scale(1.2);
  transition: ease-out 0.1s;
}

.nav-links{
  display:flex;
  gap:50px;
  list-style:none;
}

.nav-links li{
  cursor:pointer;
  font-size:18px;
  transition:.3s;
}

.nav-links li:hover{
  color:#ff3b82;
}

.active{
  border-bottom:2px solid #ff3b82;
  padding-bottom:5px;
}

.menu-icon i{
  font-size:32px;
}
.menu-icon{
  z-index: 4;
  cursor: pointer;
}
.menu-icon:hover{
  transform: scale(1.2);
  transition: 0.3s;
}

/* HERO SECTION */

.hero-section{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:50px;
  position:relative;
}

/* LEFT */

.left-content{
  width:40%;
  z-index:2;
}

.big-logo{
  width:350px;
}

.left-content p{
  margin-top:30px;
  color:#d1d1d1;
  line-height:1.8;
  font-size:20px;
}

/* BUTTONS */

.buttons{
  margin-top:40px;
  display:flex;
  gap:25px;
}

button{
  border:none;
  outline:none;
  cursor:pointer;
  padding:18px 35px;
  border-radius:15px;
  font-size:18px;
  display:flex;
  align-items:center;
  gap:12px;
  transition:.3s;
}

.play-btn{
  background:linear-gradient(to right,#ff0077,#ff8c00);
  color:white;
}

.play-btn:hover{
  transform:translateY(-5px);
}

.trailer-btn{
  background:transparent;
  border:2px solid #ff0077;
  color:white;
}

.trailer-btn:hover{
  background:#ff00772d;
}

/* CENTER */

.scroll-text{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  color:#ffffffcc;
}

.scroll-text span{
  writing-mode: vertical-lr;
  transform:rotate(180deg);
  letter-spacing:4px;
  font-size:14px;
}

.line{
  width:2px;
  height:120px;
  background:#ff3b82;
}

/* RIGHT */

.right-content{
  width:45%;
  position:relative;
}

.guard-img{
  width:100%;
  max-width:700px;
}

/* SOCIAL */

.social-icons{
  position:absolute;
  right:-40px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:25px;
}

.social-icons i{
  font-size:24px;
  color:#ff4b91;
  cursor:pointer;
  transition:.3s;
}

.social-icons i:hover{
  transform:scale(1.2);
}

/* BACKGROUND TEXT */

.bg-game{
  position:absolute;
  bottom:250px;
  left:60px;
  font-size:180px;
  opacity:0.05;
  z-index:0;
}

.bg-squid{
  position:absolute;
  right:-250px;
  top:200px;
  font-size:180px;
  opacity:0.05;
  transform:rotate(90deg);
  z-index:0;
}

/* CARDS */

.cards-section{
  margin-top:30px;
  background:#4d00395f;
  padding:25px;
  border-radius:25px;

  display:flex;
  gap:25px;
}

.card{
  flex:1;
  position:relative;
  overflow:hidden;
  border-radius:20px;
  cursor:pointer;
}

.card img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:.4s;
}

.card:hover img{
  transform:scale(1.08);
}

.play-icon{
  position:absolute;
  right:20px;
  bottom:20px;
  width:50px;
  height:50px;
  border-radius:50%;
  background:white;
  color:black;

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