* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  text-decoration: none;
  font-family: "Share Tech", sans-serif;
  font-weight: 400;
  font-style: normal;
  outline: none;
}




body {
  background-color: hsl(0, 0%, 4%);
  color: hsl(259, 100%, 96%);
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: hsl(270, 100%, 7%);
  border-bottom: 2px solid hsl(272, 76%, 53%);
  position: sticky;
  top: 0;
  z-index: 1000;
  
}

.Top {
  
 display: inline-block;
   margin-top: 13px;
    padding: 0.4rem 2rem;
    background-color: hsl(271, 96%, 19%);
    border-radius: 4rem;
    color:  hsl(276, 100%, 50%);
    letter-spacing: 0.3rem;
    font-weight: 600;
    border: 2px solid  hsl(281, 97%, 43%);
    transition: 0.3s ease;
    cursor: pointer;

}

.Top:hover {
transform: scale(1.08);
    background-color:  hsl(281, 98%, 47%);
    color: hsl(0, 0%, 0%);
    box-shadow: 0 0 25px  hsl(278, 100%, 60%); 

}

.logo {
  color: hsl(283, 100%, 49%);
  font-size: 1.8rem;
  font-weight: bold;
  
}


.logo img {
    position:relative;
    width: 3vw;
    border-radius: 50%;
    box-shadow: 0 0  25px hsl(271, 100%, 50%);
    cursor: pointer;
    transition: 0.2s linear;
    transform: scale(1 , 1);
}

.logo img:hover {
    font-size: 0.1rem ;
    font-weight: 500;
    transform: scale(1.5);
    transition: transform 0.3s ease;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: hsl(276, 59%, 58%);
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover,
nav a:focus {
  color: hsl(276, 100%, 86%);
}

section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
}


h1 {
  color: hsl(268, 100%, 69%);
}

.highlight {
   color: hsl(0, 0%, 100%);
}

.highlight:hover {
   transform: scale(1.3) translateY(-5px);
    background-color: hsl(272, 76%, 53%);
    box-shadow: 0 0 25px  hsl(272, 86%, 67%);
    border-radius: 10px;
   transition: 0.3 ease;
   cursor: pointer;
}



@keyframes pop {
  0%, 10%, 20%, 30%, 40%, 50% {
    transform: scale(1.1);
  }
   5%, 15%, 25%, 35%, 45%, 55% {
    transform: scale(1);
  }
  56%, 100% {
    transform: scale(1); 
  }
}



.btn  {
   display: inline-block;
   margin-top: 25px;
    animation: pop 8s ease-in-out 3s infinite;
    padding: 0.1rem 1rem;
    background-color: hsl(271, 96%, 19%);
    border-radius: 4rem;
    color:  hsl(276, 100%, 50%);
    letter-spacing: 0.4rem;
    font-weight: 600;
    border: 2px solid  hsl(281, 97%, 43%);
    transition: 0.3s ease;
    cursor: pointer;
    transform: scale(1);
  }


  
.btn:hover {
   transform: scale(1.08);
    background-color:  hsl(281, 98%, 47%);
    color: hsl(0, 0%, 0%);
    box-shadow: 0 0 25px  hsl(278, 100%, 60%); 
}



h2, h3 {
  color: hsl(264, 92%, 61%);
  margin-bottom: 1rem;
  box-shadow: hsl(266, 86%, 59%);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(135deg, hsl(266, 100%, 24%), #6d03aa);
  border-radius: 10px;
  padding: 5rem;
  box-shadow: 0 0 30px rgb(173, 73, 255);
}

.hero img {
  width: 300px;
  border-radius: 20px;
}

.hero-text {
  max-width: 600px;
}



.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #1b0036;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  
}

.gallery img {
  max-width: 300px;
  border-radius: 10px;
  transition: transform 0.3s ease;

}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgb(180, 111, 245);
}


.Gallery {
justify-content: center;
 display: flex;
  flex-wrap: wrap;
  transition: 0.3 ease;
  cursor: pointer;
}

.Gallery img{
border-radius: 25px;
margin-bottom: 33px;
box-shadow: 0 0 110px rgba(152, 0, 253, 0.678);
opacity: 0;
transform: translateY(20px);
animation: fadein 1.5s ease-out forwards;
animation-delay: 0.1s;

}

.Gallery img:hover{
transform: scale(1.08);
box-shadow: 0 0 120px rgb(170, 79, 255);

}

.video-gallery-section {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
}

.video-gallery {
  display: inline-flex;
  gap: 25px;
}

.video-gallery iframe{
  border: 2px solid rgb(139, 33, 238);
  border-radius: 8px;
  box-shadow: 0 0 25px rgb(181, 108, 250);
}

.video-gallery video{
  border: 2px solid rgb(139, 33, 238);
  border-radius: 8px;
  box-shadow: 0 0 25px rgb(181, 108, 250);
}

.video-gallery-section::-webkit-scrollbar {
  height: 10px;
  
}


.video-gallery-section::-webkit-scrollbar-thumb {
  background-color: rgb(142, 22, 255);
  border-radius: 4px;
}

.Review {
 justify-content: left;
 cursor: pointer;
 transition: 0.3 ease;
 margin-left: 15px;
 margin-bottom: 20px;
 display: flex;

}

.Review img{
  border-radius: 25px;
  box-shadow: 0 0 20px rgb(212, 152, 255);
  opacity: 0;
  animation: fadein 1.5s ease-out forwards;
  animation-delay: 0.1s;
  transform: translateY(10px);
  
  
}

.Review img:hover {
 transform: scale(1.08);
 box-shadow: 0 0 40px rgb(242, 224, 255) ;
}

.Review_2 {
  justify-content: center;
  cursor: pointer;
  margin-left: 25px;
  margin-bottom: 20px;
  transition: 0.3 ease ;
  display: flex;
}

.Review_2 img{
  border-radius: 25px;
  box-shadow: 0 0 20px rgb(212, 152, 255) ;
  opacity: 0;
  animation: fadein 1.5s ease forwards;
  transform: translateY(10px);
}

.Review_2 img:hover{
  transform: scale(1.08);
  box-shadow: 0 0 40px rgb(242, 224, 255);
}

.descript {
  opacity: 0;
  transform: translateY(20px);
  animation: fadein 1.5s ease-out forwards;
  animation-delay: 0.1s;
}

.descript_2 {
 font-size: 1rem;
 line-height: 1.6;
 max-width: 200px;
 margin-left: 18px;
 text-align: center;
}


.Game_gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: flex-start;
  
  
}


.game-ent {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
  color: white;
  opacity: 0;
  animation: fadein 1.5s ease-out forwards;
  animation-duration: 0.1s ;
  
}



.Game {
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  cursor: pointer;
  border-radius: 12px;
  z-index: 0;
  
  
  
}


.Game img {
  border-radius: 25px;
  width: 150px;
  
  
  
}

.Asset-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 20px;
}

.Asset-item {
  background-color: #202020;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(171, 69, 255, 0.4);
  color: white;
  
}

.asset-title {
  border-bottom: 3px solid blueviolet;
  margin-bottom: 20px;
  text-align: center;
}

.asset-images {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.asset-images img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

.asset-showcase p {
  margin: 6px 0;
}

.Web {
  width: 400px;
  margin-left: 23px;
  
}

.Web img {
  border-radius: 23px;
  box-shadow: 0 0 45px rgb(205, 152, 255);
  margin-top: 25px;
   transition: transform 0.3s ease;
}

.Web img:hover{
  transform: translateY(-16px);
  box-shadow: 0 0 50px rgb(216, 180, 250);
}


.Web1 {
  width: 400px;
  margin-left: 23px;
  
}

.Web1 img {
  border-radius: 16px;
  box-shadow: 0 0 45px rgb(157, 54, 253);
  margin-top: 25px;
}

.Web1 img:hover{
  transform: translateY(-13px);
  box-shadow: 0 0 50px rgb(177, 100, 250);
  transition: transform 0.5s ease ;
}

.more img {
  box-shadow: 0 0 35px rgb(167, 73, 255);
  transition: transform 0.2s ease;
}


.more img:hover {
  box-shadow: 0 0 40px rgb(201, 149, 250);

}



@media (max-width: 768px) {
  .asset-images {
    gap: 20px;
  }

  .asset-title {
    font-size: 18px;
  }

  .asset-images img {
    width: 160px;
  }
}


.Game img:hover {
 transform: scale(1.08);
 box-shadow: 0 0 35px rgb(168, 88, 243);
 transition: transform 0.3s ease;
}

.asset-showcase {
  text-align: left;
  
}

@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}


.Game::before,
.Game::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  translate: -50% -50%;
  border-radius: 20px;
  background: conic-gradient(from var(--angle), transparent, rgb(140, 0, 255));
  z-index: -1;
  animation: rotateBorder 3s linear infinite;
}

.Game::before {
  filter: blur(35px);
  opacity: 1;
}

.Game_2::before,
.Game_2::after {
  content: '';
  position: absolute;
  top: 12%;
  left: 50%;
  width: 70%;
  height: 33%;
  translate: -50% -50%;
  border-radius: 20px;
  background: conic-gradient(from var(--angle), transparent, rgb(81, 255, 0));
  z-index: -1;
  animation: rotateBorder 3s linear infinite;
}

.Game_2::before {
  filter: blur(35px);
  opacity: 1;
}


.Game_3::before,
.Game_3::after {
  content: '';
  position: absolute;
  top: 12%;
  left: 50%;
  width: 70%;
  height: 33%;
  translate: -50% -50%;
  border-radius: 20px;
  background: conic-gradient(from var(--angle), transparent, rgb(255, 0, 0));
  z-index: -1;
  animation: rotateBorder 3s linear infinite;
}

.Game_3::before {
  filter: blur(35px);
  opacity: 1;
}

.Game_2 img:hover {
 transform: scale(1.08);
 box-shadow: 0 0 55px rgb(176, 253, 157);
 transition: transform 0.3s ease;
}

.Game_3 img:hover {
 transform: scale(1.08);
 box-shadow: 0 0 55px rgb(247, 60, 60);
 transition: transform 0.3s ease;
}


.Game_2 ,.Game_3 {
  display: inline-block;
  z-index: 0;
  cursor: pointer;
 margin-bottom: 20px;
}

.Web {
  display: inline-block;
  margin-left:2px ;
  align-items: center;
}

.sketchfab-embed-wrapper {
  box-shadow: 0 0 35px rgb(173, 30, 255);
}


.Game_second img{
  box-shadow: 0 0 30px 5px rgb(143, 28, 250);
  margin-bottom: 20px;
}

@keyframes rotateBorder {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}


@keyframes fadein {
to {
  opacity: 1;
  transform: translateY(0);
}
}

input, textarea {
  padding: 0.8rem;
  border: none;
  border-radius: 10px;
  background: #2e004f;
  color: #fff;
}

input:focus, textarea:focus {
  outline: 2px solid #e100ff;
}


footer {
  text-align: center;
  padding: 2rem;
  background: #0a001a;
  border-top: 2px solid #8e2de2;
  margin-top: 4rem;
  color: #ccc;
}

.socio a:link{

  text-align: center;
  color: hsl(54, 98%, 49%);
  padding-top: 2rem;

}

.socio  a:visited {

  color: hsl(54, 98%, 49%);
}


.person a:link{
   text-align: center;
  color: hsl(264, 92%, 61%);


}

.person a:visited{
  color: hsl(264, 92%, 61%);
}

.socio a:hover {
  
  transform: scale(1.3);
   
}


.social-media a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid hsl(272, 76%, 53%) ;
    font-size: 1.5rem;
    border-radius: 50%;
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.3s ease;
    color: hsl(270, 67%, 92%);

}

.social-media a:hover {
    color: hsl(0, 0%, 0%);
    transform: scale(1.3) translateY(-5px);
    background-color: hsl(272, 76%, 53%);
    box-shadow: 0 0 25px  hsl(272, 86%, 67%);
}

@media (max-width: 600px) {
  section {
    padding: 10px;
  }
}