/* === Reset & Base === */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  font-family: 'Roboto Condensed', sans-serif;
  background: #0e0e0e;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* === Particles.js Background === */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* === Header === */
.header {
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}
.header__inner {
  display: flex;
  align-items: center;
  height: 60px;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

/* === Hero === */
.hero {
  position: relative;
  z-index: 1;
  padding: 4rem 0 2rem;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hero__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ff3c3c;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1rem;
}
.hero__disclaimer {
  font-size: 0.9rem;
  font-style: italic;
  color: #ccc;
  max-width: 500px;
  line-height: 1.4;
}
.hero__widget iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  border: none;
}

/* === Features === */
.features {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}
.features__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.feature {
  background: rgba(24, 24, 24, 0.8);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.2s, background 0.2s;
}
.feature:hover {
  transform: translateY(-5px);
  background: rgba(24, 24, 24, 1);
}
.feature h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: #ff3c3c;
}
.feature p {
  margin: 0;
  color: #ddd;
}

/* === Footer === */
.footer {
  position: relative;
  z-index: 1;
  background: #111;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}

/* === Responsive === */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__widget iframe {
    height: 300px;
  }
}
