/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #b9b8b8;
  background: url("https://www.bing.com/th/id/OGC.f2d798eae53328bc591c097533b7ad83?o=7&pid=1.7&rm=3&rurl=http%3a%2f%2fpa1.narvii.com%2f5616%2f14b451498f71833ae1574fee217e508531b1d0af_hq.gif&ehk=%2biB%2bDIsSnJIqNq%2besA3SAQhXl8TM3jpbB86yS4jX96I%3d") 
              no-repeat center center fixed !important;
  background-size: cover !important;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

#matrix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* biar di belakang konten */
  background: black; /* fallback kalau animasi belum jalan */
}



/* Header */
.header {
  background: #1e293b;
  color: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header h1 {
  font-size: 1.5rem;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav a:hover,
.nav a.active {
  color: #f43f5e;
}

/* Hero */
.hero {
  text-align: center;
  margin: 3rem 0;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  background: #f43f5e;
  color: #ffecec;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #d1132a;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  color: #64748b;
}
/* Card */
.card {
  background: #00000031;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  text-align: center;
  margin-top: 2rem;
}
/* About */
.about {
  text-align: center;
  margin: 3rem 0;
  font-size: 1.1rem;
}

/* Vision & Mission */
.vision-mission {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Team Section */
.team {
  margin: 3rem 0;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  background: #17143473;
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-member h3 {
  margin-bottom: 0.5rem;
}
/* Features */
.features {
  margin: 3rem 0;
  text-align: center;
}

.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

/* Benefits */
.benefits {
  margin: 3rem 0;
}

.benefits ul {
  list-style: disc;
  padding-left: 2rem;
  line-height: 1.8;
}

/* CTA */
.cta {
  text-align: center;
  margin: 4rem 0;
  padding: 2rem;
  background: #1e293b;
  color: #fff;
  border-radius: 12px;
}

.cta h2 {
  margin-bottom: 1rem;
}
/* Login Page */
.login-container {
  max-width: 400px;
  margin: 4rem auto;
  padding: 2rem;
  background: #12101f29;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
}

.login-container h2 {
  margin-bottom: 1.5rem;
}

.login-form .form-group {
  margin-bottom: 1rem;
  text-align: left;
}

.login-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.login-form input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
}

.login-form input:focus {
  border-color: #f43f5e;
  outline: none;
  box-shadow: 0 0 0 2px rgba(244,63,94,0.3);
}

.login-links {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.login-links a {
  color: #f43f5e;
  text-decoration: none;
}

.login-links a:hover {
  text-decoration: underline;
}
/* OSINT Deskripsi */
.osint-desc {
  background: #1e293b;
  color: #fff;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 12px;
  text-align: center;
}

.osint-desc h2 {
  color: #f43f5e;
  margin-bottom: 1rem;
}

.osint-desc .desc-box {
  text-align: left;
  max-width: 900px;
  margin: 1rem auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 10px;
  white-space: pre-wrap;
  font-size: 0.95rem;
}
