@font-face {
      font-family: 'Orbitron';
      src: url('fonts/Orbitron-Bold.woff2') format('woff2');
      font-weight: bold;
      font-style: normal;
      font-display: swap;
    }
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.hero {
  position: relative;
  background: linear-gradient(to right, #f7931a, #ff9900);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Orbitron', sans-serif;
}

.hero-overlay {
  background: url('dark-mosaic.png') repeat;
  opacity: 0.2;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5em;
  font-weight: 700;
}

.x-link svg {
  transition: transform 0.2s ease;
}

.x-link:hover svg {
  transform: scale(1.1);
}

.hero-text {
  font-size: 1.2em;
  margin-bottom: 1.5em;
}

.cta-button {
  background: rgba(0, 0, 0, 0.4);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: rgba(0, 0, 0, 0.6);
}

.features h2, .faq h2, .contact h2 {
  text-align: center;
  margin-bottom: 40px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature {
  flex: 1 1 250px;
  background: #111;
  padding: 20px;
  border-radius: 8px;
}

.faq-item {
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 1em;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
}

.faq-answer {
  padding: 10px 15px;
  background: #222;
  border-radius: 5px;
  display: none;
  margin-top: 5px;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

.contact input, .contact textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  background: #222;
  color: #fff;
}

.contact button {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: bold;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact button:hover {
  background: rgba(255, 255, 255, 0.3);
}

footer {
  text-align: center;
  padding: 30px 10px;
  font-size: 0.9em;
  color: #666;
}