@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: rgb(10, 10, 10);
  color: rgb(255, 255, 255);
  font-family: Inter, sans-serif;
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  background: url("hero.png") center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.88) 72%, rgba(0, 0, 0, 0.97) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.05em;
  text-shadow: rgba(0, 0, 0, 0.9) 0px 2px 20px;
  line-height: 1;
}

.tagline {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgb(153, 153, 153);
  margin-top: 0.5rem;
}

.apps-grid {
  margin-top: auto;
  padding-bottom: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.app-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  color: rgb(255, 255, 255);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: Inter, sans-serif;
  text-align: left;
}

.app-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.app-name {
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .apps-grid {
    grid-template-columns: 1fr 1fr;
  }
}
