/* Reset & base styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  height: 100%;
  font-family: Arial, sans-serif;
  background: linear-gradient(to right, orange, red);
  color: white;
  cursor: none;
}

/* Custom cursor */
.custom-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 20px; height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  background: black;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* Header */
header {
  padding: 20px;
  background: rgba(0,0,0,0.3);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
header h1 { font-size: 2.5rem; margin-bottom: 5px; }
header p { font-weight: 600; margin-bottom: 15px; }
nav a {
  color: white;
  margin: 0 15px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
}
nav a:hover, nav a.active { background-color: rgba(255,255,255,0.2); }

/* Main Sections */
main { max-width: 900px; margin: 30px auto; padding: 0 20px 60px; }
section { display: none; }
section.active { display: block; }

/* Shop Cards */
.shop {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.cheat-card {
  background: rgba(0,0,0,0.3);
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 260px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 12px rgba(255, 140, 0, 0.7);
  transition: background 0.3s ease;
}
.cheat-card:hover {
  background: rgba(0,0,0,0.5);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.9);
}
.cheat-card h3 { margin-bottom: 10px; color: #fff7e6; }
.cheat-card p { color: #ffd5b3; margin-bottom: 15px; }
.cheat-card button {
  background: orange;
  border: none;
  color: black;
  font-weight: 700;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 5px;
}
.cheat-card button:hover:not(:disabled) {
  background: darkred;
  color: white;
}
.cheat-card button:disabled {
  background: #555;
  color: #aaa;
  cursor: not-allowed;
}

/* Pricing */
.pricing-list { max-width: 500px; margin: 0 auto; }
.price-item {
  background: rgba(1,0,0,0.3);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 140, 0, 0.6);
}
.price-options {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.price-button {
  flex: 1 1 130px;
  background: orange;
  border: none;
  padding: 12px 0;
  border-radius: 8px;
  color: black;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}
.price-button:hover {
  background: yellow;
  color: white;
}
.price-button:disabled {
  background: #ff9100;
  color: #000;
  cursor: not-allowed;
}

/* Cart */
#cart {
  position: fixed;
  right: 20px;
  top: 80px;
  background: rgba(0,0,0,0.6);
  padding: 15px 20px;
  border-radius: 12px;
  width: 280px;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.9);
  font-family: monospace;
  z-index: 10000;
}
#cart ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ffa64d;
  margin-bottom: 8px;
}
#cart ul li button {
  background: transparent;
  border: none;
  color: white;
  font-weight: 700;
  cursor: pointer;
  font-size: 18px;
}
.clear-cart, .purchase-cart-btn {
  width: 100%;
  padding: 10px 0;
  border-radius: 8px;
  font-weight: 700;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  color: white;
}
.clear-cart { background: #ff4d4d; }
.clear-cart:hover { background: #cc0000; }
.purchase-cart-btn { background: #4CAF50; }
.purchase-cart-btn:hover:not(:disabled) { background: #45a049; }
.purchase-cart-btn:disabled {
  background: #666;
  opacity: 0.7;
  cursor: not-allowed;
}

/* Modals */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100000;
}
.modal.hidden { display: none; }
.modal-content {
  background: #222;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 25px orange;
  color: white;
  width: 300px;
}
#duration-buttons button {
  margin-bottom: 10px;
  background: orange;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}
#duration-buttons button:hover {
  background: darkred;
  color: white;
}
.close-btn {
  background: #444;
  padding: 10px 18px;
  border-radius: 8px;
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.close-btn:hover { background: #666; }

/* Discord Button */
.discord-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5865F2;
  border-radius: 10px;
  padding: 10px;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
.discord-button:hover { background: #4752c4; }
.discord-button svg { fill: white; }
