/* Reset and base styles */
/* Error, Someone have decomplied the code, system is tracking its details and location, hacking this device */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #1a1a1a, #2a2a2a);
  color: #f0f0f0;
  line-height: 1.6;
  padding: 0 20px;
}

/* Header section */
header {
  background: #cc0000;
  padding: 40px 20px;
  text-align: center;
  color: white;
  border-bottom: 5px solid #900000;
}

header img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

header p {
  font-size: 1.2rem;
  color: #fff8f0;
}

/* Main content */
main {
  max-width: 900px;
  margin: 40px auto;
}

section {
  margin-bottom: 60px;
  padding: 30px;
  background: #222;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.15);
}

section h2 {
  font-size: 2rem;
  color: #ff3333;
  margin-bottom: 15px;
  border-bottom: 2px solid #ff3333;
  padding-bottom: 8px;
}

section p {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: #111;
  color: #ccc;
  border-top: 2px solid #660000;
  font-size: 0.9rem;
}

/* Buttons & Links */
button,
a.button {
  padding: 10px 20px;
  background: #ff3333;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

button:hover,
a.button:hover {
  background: #cc0000;
}

.nav-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  section {
    padding: 20px;
  }

  .nav-buttons {
    flex-direction: column;
  }
}
