/* Font & Reset */
*{
  -webkit-user-drag: none;
  user-select: none;
}
html{
  background-color:  rgb(41, 41, 41);
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #008cff;
  color: rgba(255, 255, 255, 0.87);
  margin-left: 10%;
  margin-right: 10%;
  line-height: 1.6;
}

/* Layout Basics */
header {
  text-align: center;
  padding: 60px 20px 30px;
}

header h1 {
  font-size: 64px;
  font-weight: 800;
  margin: 0;
}

nav {
  margin-top: 20px;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 14px;
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

section {
  margin-bottom: 80px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Game Articles */
.game {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  border-width: 2px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.226);
  background-color: #ffffff;
  background: linear-gradient(227deg, rgba(255, 255, 255, 0.11) 15%, rgba(255, 255, 255, 0) 24%);  
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.137), inset 0 0  10px rgba(255, 255, 255, 0.205);
  backdrop-filter: Blur(10px);

  
}
.button:hover{
  cursor: pointer;
    animation: Card 1s ease-in-out infinite alternate;

}
@keyframes Card {
  0% {
    transform: scale(1);
  }
  50% {
    transform:scale(1.1);
  }
  100%
  {
    transform: scale(1);

  }

}

.game img {
  width: 300px;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.137), inset 0 0  10px rgba(255, 255, 255, 0.205);
  border-width: 2px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.226);
  transition: all .5s;
}
.game img:hover{
  cursor: pointer;
  transform:scale(1.1) rotateZ(5deg);

}
.game img:active
{
    transform:scale(.9) rotateZ(0deg);

}

.game-info {
  flex: 1;
  text-align: left;
}

/* Buttons */
.button {
  display: inline-block; 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.137), inset 0 0  10px rgba(255, 255, 255, 0.205);

  background: rgba(255, 255, 255, 0.288);
  color: #ffffffef;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.288);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
}

/* Media */
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
}

/* YouTube Embed */
.youtube-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  font-size: 14px;
  opacity: 0.6;
}
.logo {
  text-align: center;
  margin-bottom: 20px;
}

.logo img {
  width: 220px;
  max-width: 80%;
  height: auto;
}
a{
  color:white;
  
}