* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #0a0a1a;
  color: #e0eaff;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.hero {
  height: 100vh;
  background: url("images/hero-bg.gif") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-text h1 {
  font-size: 3rem;
  background: linear-gradient(to right, cyan, violet);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text p {
  margin-top: 1rem;
  color: #ccc;
}
.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 2rem;
  background: cyan;
  color: #000;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease ;
}
.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #00ffff;
  text-align: center;
}

.section-intro {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle {
  font-size: 1.5rem;
  color: #00ccff;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.stack-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.stack-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.stack-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00ffff;
  font-weight: bold;
}


.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.section p {
  color: #cdd6f4;
  margin-bottom: 1.5rem;
}
.img-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.card {
  background: #1a1a2f;
  padding: 1rem;
  border-radius: 15px;
  flex: 1;
  min-width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.card h3 {
  color: #00ffff;
  margin-bottom: 0.5rem;
}


.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.video iframe {
  margin-top: 1rem;
  border-radius: 10px;
}
.full-width-img {
  width: 100%;
  margin-top: 2rem;
  border-radius: 10px;
}

footer {
  background: #111;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

body {
  cursor: url('https://cur.cursors-4u.net/mechanics/mec-1/mec5.cur'), auto;
}
