* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0;
  user-select: none;
}

body {
  font-family: 'Montserrat', sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #f5f5f5;
  background: linear-gradient(-45deg,#1a1a1d,#2a2d32,#1a1a1d,#2c2f35);
  background-size: 400% 400%;
  animation: gradientMove 16s ease infinite;
}

@keyframes gradientMove {
  0%   {background-position: 0% 50%;}
  50%  {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

header {
  text-align: center;
  padding-top: 5vh;
}

header img.logo {
  width: 180px;
  margin-bottom: 1.5rem;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.2rem;
  letter-spacing: 2px;
  margin-bottom: .5rem;
  text-transform: uppercase;
}

header p {
  font-size: 1.2rem;
  color: #c0c0c0;
}

.content {
  text-align: center;
  margin: 4vh 1rem;
}

.game-capsule {
  width: 360px;
  max-width: 90%;
  border-radius: 16px;
  margin-bottom: 2rem;
  transition: transform 0.3s;
}

.game-capsule:hover {
  transform: scale(1.02);
}

.steam-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #171a21;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
}

.steam-btn:hover {
  background: #1b2838;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.steam-btn i {
  font-size: 1.4rem;
}

.contact {
  color: #f5f5f5; 
  text-decoration: none;
}

footer {
  background: rgba(0,0,0,0.4);
  text-align: center;
  padding: 2rem 1rem;
}

footer p {
  font-size: .9rem;
  color: #aaa;
}

.socials {
  margin-bottom: 1rem;
}

.socials a {
  display: inline-block;
  margin: 0 0.7rem;
  font-size: 2rem;
  color: #f5f5f5;
  transition: color .3s, transform .2s;
}

.socials a:hover {
  transform: scale(1.15);
}

.socials a.youtube:hover { color: #FF0000; }
.socials a.instagram:hover { color: #C13584; }
.socials a.discord:hover { color: #7289DA; }
.socials a.tiktok:hover { color: #69C9D0; }

.press-kit {
  margin-bottom: 1rem;
}

.presskit-link,
.presskit-link:visited {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  transition: all 0.3s;
}

.presskit-link:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  color: #ffffff;
}