/* Steam themed background */
body {
  margin: 0;
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  background: radial-gradient(circle at center,
      rgba(70,130,180,0.25) 0%,
      rgba(10,25,40,0.9) 70%,
      rgba(2,8,15,1) 100%
  );
  background-attachment: fixed;
}

/* Hero section centering */
.center-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Holy Gaben image */
.gaben {
  width: 330px;
  border-radius: 15px;
  box-shadow: 0 0 40px rgba(120,180,255,0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gaben:hover {
  transform: scale(1.06);
  box-shadow: 0 0 60px rgba(160,210,255,1);
}

/* Steam style text */
.title {
  margin-top: 20px;
  font-size: 48px;
  letter-spacing: 4px;
  font-weight: 800;
  text-shadow:
      0 0 8px rgba(120,160,255,0.8),
      0 0 20px rgba(120,160,255,0.5);
}
.subtitle {
  font-size: 18px;
  opacity: 0.8;
  text-shadow: 0 0 6px rgba(150,180,255,0.6);
}

/* SCROLL SECTION */
.content {
  margin-top: 40px;
  padding: 60px 20px 100px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
}

.content h2 {
  font-size: 32px;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(120,160,255,0.8);
}

.content p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  opacity: 0.9;
}

.insta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 18px;
  background: rgba(120,160,255,0.2);
  border: 1px solid rgba(120,160,255,0.5);
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: 0.2s ease;
}
.insta-link:hover {
  background: rgba(160,210,255,0.4);
  transform: scale(1.05);
}

.note {
  margin-top: 30px;
  opacity: 0.7;
  font-size: 16px;
}
