/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== BODY ===== */
body {
  height: 100vh;
  background: #0f0f0f;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #eaeaea;
}

/* ===== CONTAINER ===== */
.container {
  text-align: center;
  padding: 50px;
  background: #161616;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.7);
}

/* ===== GEARS WRAPPER ===== */
.gears {
  position: relative;
  width: 160px;
  height: 120px;
  margin: 0 auto 30px;
}

/* ===== GEAR BASE ===== */
.gear {
  position: absolute;
  border-radius: 50%;
  border: 6px solid #444;
  animation: rotate 12s linear infinite;
}

/* ===== BIG GEAR ===== */
.gear.big {
  width: 90px;
  height: 90px;
  left: 0;
  top: 20px;
  animation-duration: 14s;
}

/* ===== SMALL GEAR ===== */
.gear.small {
  width: 65px;
  height: 65px;
  right: 0;
  top: 0;
  animation-duration: 9s;
  animation-direction: reverse;
}

/* ===== GEAR TEETH EFFECT ===== */
.gear::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 6px dashed #444;
}

/* ===== SMOOTH ROTATION ===== */
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== TEXT ===== */
h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  opacity: 0.9;
}

span {
  font-size: 0.95rem;
  color: #00adb5;
}
