* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: white;
  overflow-x: hidden;
  background: transparent;
}

/* MATRIX BACKGROUND */

#matrix-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  background: #020617;
}

/* HERO */

.hero {
  text-align: center;
  padding: 60px 20px;
}

.main-logo {
  width: 220px;
  animation:
    logoFloat 6s ease-in-out infinite,
    logoGlow 4s ease-in-out infinite;

  display: block;
  margin: 0 auto 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  color: #94a3b8;
}

/* APP GRID */

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;

  width: 90%;
  margin: auto;
  padding-bottom: 80px;
}

/* PANELS */

.panel {
  background: rgba(15, 23, 42, 0.88);

  border: 1px solid rgba(0,255,180,0.2);

  border-radius: 24px;

  padding: 25px;

  backdrop-filter: blur(12px);

  box-shadow:
    0 0 25px rgba(0,255,180,0.15);

  transition: 0.4s ease;
}

.panel:hover {
  transform: translateY(-5px);

  box-shadow:
    0 0 35px rgba(0,255,180,0.35);
}

.panel h2 {
  margin-bottom: 20px;
  color: #00ff88;
}

/* INPUTS */

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;

  border: none;
  border-radius: 12px;

  background: rgba(255,255,255,0.08);

  color: white;
}

textarea {
  min-height: 100px;
}

/* BUTTONS */

button {
  width: 100%;
  padding: 14px;

  border: none;
  border-radius: 12px;

  background:
    linear-gradient(135deg,#00ff88,#00aaff);

  color: #020617;
  font-weight: bold;

  cursor: pointer;

  transition: 0.3s ease;
}

button:hover {
  transform: scale(1.03);

  box-shadow:
    0 0 25px rgba(0,255,180,0.5);
}

/* RESULT BOX */

#customer-result,
#worker-job-list,
#owner-dashboard {
  margin-top: 20px;
}

.job-card {
  background: rgba(255,255,255,0.06);

  padding: 15px;
  border-radius: 16px;

  margin-bottom: 15px;
}

.hidden {
  display: none;
}

/* LOGO EFFECTS */

@keyframes logoFloat {

  0% { transform: translateY(0px); }

  50% { transform: translateY(-12px); }

  100% { transform: translateY(0px); }
}

@keyframes logoGlow {

  0% {
    filter:
      drop-shadow(0 0 12px rgba(0,170,255,0.5));
  }

  50% {
    filter:
      drop-shadow(0 0 28px rgba(0,255,180,0.8));
  }

  100% {
    filter:
      drop-shadow(0 0 12px rgba(0,170,255,0.5));
  }
}