/* --- General Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Background --- */
body {
  font-family: 'Poppins', sans-serif;
  color: #f3f3f3;
  background: radial-gradient(circle at 20% 20%, #1e1e2e, #0d0d14);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

#stars {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
  z-index: 0;
}

header, main, footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
}

/* --- Header --- */
.logo {
  width: 120px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.2rem;
  color: #ffd86b;
  letter-spacing: 1px;
}

.tagline {
  font-size: 1.1rem;
  color: #e4c97a;
  margin-top: 0.5rem;
}

/* --- Section Styles --- */
main section {
  margin: 3rem 0;
}

h2 {
  font-size: 1.8rem;
  color: #ffd86b;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  color: #ccc;
}

.game-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.game {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  max-width: 600px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.game:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

/* --- Social Links --- */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-links a {
  color: #ffd86b;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.social-links a:hover {
  border-color: #ffd86b;
}

/* --- Footer --- */
footer {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #888;
}

/* --- Stars Animation --- */
.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}
