@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Work Sans', sans-serif;
  line-height: 1.6;
  color: white;
  background-color: #0f0f0f;
}

::selection {
  background-color: #ffffff;
  color: #000000;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 0 20px;
  text-align: center;
  margin-top: -50px;
}

.hero-buttons {
  display: flex;
  gap: 9px;
}

.hero h1 {
  font-size: 5rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.hero p {
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 30px;
}

.modern-button {
  display: inline-block;
  width: 220px;
  padding: 12px 0;
  border: none;
  border-radius: 3px;
  background: rgb(18, 18, 18);
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  font-size: 1.0rem;
  margin-right: 10px;
  outline: 1px solid #454545;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.modern-button:hover {
  background-color: rgb(38, 38, 38);
}

.features {
  background: inherit;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.features h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px 19px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  background: #1e1e1e;
  padding: 25px 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
  transition: background-color 0.3s ease;
  cursor: default;
  text-align: left;
}

.feature-item:hover {
  background-color: #2c2c2c;
}

.feature-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.feature-item .icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-right: 2px;
}

.feature-item p {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.4;
  margin: 0;
}

.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #0f0f0f;
  color: #666;
  text-align: left;
  padding: 10px 10px;
  font-size: 0.9rem;
  font-family: inherit;
  user-select: none;
  border-top: 1px solid #333;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.2s;
}
.fade-in-delay-2 {
  animation-delay: 0.4s;
}
.fade-in-delay-3 {
  animation-delay: 0.5s;
}
.fade-in-delay-4 {
  animation-delay: 0.6s;
}