/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  
}

body {
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d0d0d;
background-image: url('../ObsidixSplash.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  color: #e0e0e0;
  line-height: 1.6;
}

/* Layout container */
main {
  flex: 1;
  
}

/* Header */
header {
  background-color: #111;
  padding: 20px;
background-image: url('../ObsidixSplash.png');

  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #5ce1e6;
}



nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.5rem;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: 0.2s ease;
}

nav a:hover {
  border-bottom: 2px solid #5ce1e6;
  color: #5ce1e6;
}

/* Hero Sections */
.hero,
.heroGames {
  padding: 80px 20px;
  background: linear-gradient(to bottom right, #0a0a0a, #1a1a1a);
  text-align: center;
  border-top: 1px solid #333;
  border-bottom: 1px solid #5ce1e6;
  
}

.hero h1,
.heroGames h1 {
  color: #5ce1e6;
  margin-bottom: 20px;
}

.hero p,
.heroGames p {
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Hero Links */
.heroGames a {
  color: #8c52ff;
  font-weight: bold;
  text-decoration: none;
}

.heroGames a:hover {
  text-decoration: underline;
  color: #5ce1e6;
}

/* Sections */
section:not(.hero):not(.heroGames) {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
}

h2 {
  color: #5ce1e6;
  border-bottom: 2px solid #5ce1e6;
  padding-bottom: 4px;
  
  margin-bottom: 12px;
}

/* Download Button */
.download-button {
  display: inline-block;
  padding: 14px 28px;
  margin-top: 16px;
  background: transparent;
  color: #e0e0e0;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #5ce1e6;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(92, 225, 230, 0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.download-button:hover {
  background: linear-gradient(135deg, #8c52ff, #5ce1e6);
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(92, 225, 230, 0.4);
}

/* Footer */
footer {
  background-color: #111;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #5ce1e6;
  border-top: 2px solid #5ce1e6;
  width: 100%;
}

footer a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: bold;
}

footer a:hover {
  color: #5ce1e6;
  text-decoration: underline;
}

/* Feedback Form */
.feedback-form {
  margin-top: 30px;
  background-color: #111;
  padding: 20px;
  border: 1px solid #444;
  border-radius: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feedback-form h3 {
  margin-bottom: 10px;
  color: #5ce1e6;
}

.feedback-form label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  background-color: #222;
  border: 1px solid #555;
  color: #e0e0e0;
  border-radius: 6px;
}

.feedback-form button {
  margin-top: 15px;
  background-color: #5ce1e6;
  color: #0a0a0a;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.feedback-form button:hover {
  background-color: #8c52ff;
}

/* Familiar Image (optional styling) */
.familiar-wrapper {
  position: relative;
}

.familiar-image {
  position: absolute;
  left: -150px;
  top: -75px;
  width: 160px;
  z-index: -1;
}
.neon-link {
  color: #5ce1e6;
  font-weight: bold;
  text-shadow: 0 0 5px #5ce1e6, 0 0 10px #5ce1e6;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  text-decoration: none;
}

.neon-link:hover {
  color: #8c52ff;
  text-shadow: 0 0 5px #8c52ff, 0 0 12px #8c52ff;
}
.glow-logo img {
  filter: drop-shadow(0 0 12px #5ce1e679)
          drop-shadow(0 0 24px #5ce1e679)
          drop-shadow(0 0 36px #5ce1e679);
  transition: filter 0.3s ease;
}

.glow-logo img:hover {
  filter: drop-shadow(0 0 12px #8c52ff)
          drop-shadow(0 0 24px #8c52ff)
          drop-shadow(0 0 36px #8c52ff);
}
/* Header Logo Glow */
.glow-header img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 0 6px #000000)
          drop-shadow(0 0 12px #5ce1e6);
  transition: filter 0.3s ease;
}

.glow-header img:hover {
  filter: drop-shadow(0 0 6px #000000)
          drop-shadow(0 0 12px #8c52ff);
}

