:root {
  --main-bg: #0d0d0d;
  --main-purple: #8e44ad;
  --text-light: #eaeaea;
  --text-muted: #a1a1a1;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: var(--main-bg);
  color: var(--text-light);
  overflow-x: hidden;
}


.background-anim::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: moveLines 3s linear infinite;
  z-index: 0;
}

@keyframes moveLines {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

header {
  background-color: #1a1a1a;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

header h1 {
  color: var(--main-purple);
  font-size: 26px;
  margin: 0;
}

nav a {
  color: var(--text-light);
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  transition: color 0.3s, transform 0.3s;
}

nav a:hover {
  color: var(--main-purple);
  transform: scale(1.1);
}

.section {
  display: none;
  padding: 40px 30px;
  animation: fadeIn 0.5s ease;
  position: relative;
  z-index: 1;
}

.section.active {
  display: block;
}

h2 {
  color: var(--main-purple);
  margin-bottom: 15px;
}

ul {
  list-style-type: none;
  padding-left: 0;
}



.hero {
  margin-top: 30px;
  background: #1a1a1a;
  padding: 20px;
  border-left: 5px solid var(--main-purple);
  border-radius: 10px;
}

.cheat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.cheat-box {
  background: #1a1a1a;
  border: 1px solid #333;
  border-left: 5px solid var(--main-purple);
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
}

.cheat-box:hover {
  transform: translateY(-5px);
  border-color: #9b59b6;
}

.cheat-box img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.status-online {
  color: limegreen;
}

.status-maintenance {
  color: orange;
}

.status-offline {
  color: red;
}

a.button {
  display: inline-block;
  background: var(--main-purple);
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: background 0.3s;
}

a.button:hover {
  background: #732d91;
}

footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: var(--text-muted);
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


.home-hero {
  background: linear-gradient(to right, #1a1a1a, #2c003e);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 20px #8e44ad55;
}

.home-hero h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.highlight {
  color: var(--main-purple);
}

.home-buttons {
  margin-top: 20px;
}

.home-buttons .button.secondary {
  background: #444;
  margin-left: 10px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.feature-box {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 250px;
  border-left: 4px solid var(--main-purple);
}

.cheat-detail-card {
  background: #1a1a1a;
  border-left: 6px solid var(--main-purple);
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 0 15px #000;
  animation: fadeIn 0.5s ease;
}

.cheat-detail-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}
