/* styles.css */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #181c22;
  color: #f6f6f6;
  height: 100%;
  width: 100%;
}

.hero {
  height: 100vh;
  width: 100vw;
  background: url('ship.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  background: rgba(24, 28, 34, 0.72);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-content {
  text-align: center;
  color: #ffd600;
  background: rgba(24, 28, 34, 0.8);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px #0009;
  max-width: 720px;
}

.fa {
    color:white;
    margin-right:5px;
    opacity: 50%;
}

.fa-steam {
    opacity: 75%;
}

h1 {
    opacity:0.8;
}

.center-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
  color: #ffd600;
  text-shadow: 0 4px 32px #000;
}

.tagline {
  font-size: 1.1rem;
  color: #f6f6f6;
  margin-bottom: 2.2rem;
  line-height: 1.6;
  letter-spacing: 1px;
}

.cta.steam-btn {
  background: #23272b;
  color: #ffd600;
  border: 2px solid #ffd600;
  border-radius: 2em;
  padding: 0.7em 2.1em 0.7em 1.4em;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  transition: background 0.2s, color 0.2s, border 0.2s;
  box-shadow: 0 2px 8px #0003;
}

.cta.steam-btn:hover {
  background: #ffd600;
  color: #23272b;
  border-color: #ffd600;
}

.cta.steam-btn i {
  font-size: 1.3em;
}

footer {
  background: #23272b;
  padding: 2rem 2vw;
  text-align: center;
  color: #888;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-links a {
  color: #ffd600;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: 500;
}

.social-links a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .center-content {
    padding: 2rem 1rem;
    max-width: 98vw;
  }
  .center-content h1 {
    font-size: 1.5rem;
  }
}
