* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  text-align: center;
  padding: 80px 0 60px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  text-shadow: 0 0 30px rgba(102, 126, 234, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #b8b8b8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.main-content {
  padding: 40px 0;
}

.filters-section {
  margin-bottom: 30px;
}

.filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #6c5ce7, #5a4fcf);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-toggle:hover {
  background: linear-gradient(135deg, #5a4fcf, #4834d4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.filter-icon {
  width: 16px;
  height: 16px;
}

.filters-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(30, 30, 47, 0.95);
  border-radius: 12px;
  margin-top: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.filters-panel.filters-visible {
  max-height: 600px;
  padding: 25px;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  color: #b8b8b8;
  font-weight: 600;
  font-size: 0.9rem;
}

.filter-group select {
  padding: 10px;
  background: rgba(40, 40, 60, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 0.9rem;
}

.filter-group select:focus {
  outline: none;
  border-color: #6c5ce7;
}

.slider-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slider-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-sliders {
  display: flex;
  gap: 15px;
  align-items: center;
}

.slider-input {
  width: 100px;
}

.slider-input input[type="range"] {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  border-radius: 3px;
  -webkit-appearance: none;
}

.slider-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #6c5ce7;
  cursor: pointer;
  border-radius: 50%;
}

.slider-input input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #6c5ce7;
  cursor: pointer;
  border-radius: 50%;
  border: none;
}

.slider-value {
  font-weight: 600;
  color: #6c5ce7;
  min-width: 50px;
  text-align: center;
  font-size: 0.9rem;
}

.filters-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.filter-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.apply {
  background: linear-gradient(135deg, #00b894, #00a085);
  color: white;
}

.filter-btn.apply:hover {
  background: linear-gradient(135deg, #00a085, #00917a);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 184, 148, 0.3);
}

.filter-btn.clear {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid #e74c3c;
}

.filter-btn.clear:hover {
  background: rgba(231, 76, 60, 0.3);
  transform: translateY(-2px);
}

.exploits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.card {
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(30, 30, 47, 0.8);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.card-icon {
  font-size: 2.5rem;
  margin-right: 15px;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.minecraft-icon {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.roblox-icon {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.card-header h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}

.card-description {
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.card-footer {
  position: relative;
  z-index: 2;
}

.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.minecraft-btn {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
}

.minecraft-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.roblox-btn {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
}

.roblox-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

.btn-arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.view-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.exploit-card {
  background: rgba(30, 30, 47, 0.9);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: fit-content;
}

.exploit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.exploit-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.exploit-header h2 {
  font-size: 1.3rem;
  color: #fff;
  margin: 0;
}

.exploit-description {
  color: #b8b8b8;
  line-height: 1.4;
  font-size: 0.9rem;
}

.exploit-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.exploit-info p {
  margin: 0;
  color: #b8b8b8;
  font-size: 0.85rem;
}

.exploit-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.website-btn {
  background: linear-gradient(135deg, #6c5ce7, #5a4fcf);
  color: white;
}

.website-btn:hover {
  background: linear-gradient(135deg, #5a4fcf, #4834d4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.download-btn {
  background: linear-gradient(135deg, #00b894, #00a085);
  color: white;
}

.download-btn:hover {
  background: linear-gradient(135deg, #00a085, #00917a);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 184, 148, 0.3);
}

.btn-icon {
  width: 14px;
  height: 14px;
}

.price {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.price-free {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  border: 1px solid #2ecc71;
}

.price-paid {
  background: rgba(231, 76, 60, 0.2);
  color: #e74c3c;
  border: 1px solid #e74c3c;
}

.price-keysystem {
  background: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
  border: 1px solid #f1c40f;
}

.price-unknown {
  background: rgba(155, 89, 182, 0.2);
  color: #9b59b6;
  border: 1px solid #9b59b6;
}

.rating {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.8rem;
  margin-left: 5px;
}

.rating-1 { background: linear-gradient(135deg, #e74c3c, #c0392b); color: white; }
.rating-2 { background: linear-gradient(135deg, #f39c12, #e67e22); color: white; }
.rating-3 { background: linear-gradient(135deg, #f1c40f, #f39c12); color: #333; }
.rating-4 { background: linear-gradient(135deg, #2ecc71, #27ae60); color: white; }
.rating-5 { background: linear-gradient(135deg, #1abc9c, #16a085); color: white; }

.status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.status-safe { background: rgba(46, 204, 113, 0.2); color: #2ecc71; border: 1px solid #2ecc71; }
.status-unsafe { background: rgba(231, 76, 60, 0.2); color: #e74c3c; border: 1px solid #e74c3c; }
.status-likely-unsafe { background: rgba(243, 156, 18, 0.2); color: #f39c12; border: 1px solid #f39c12; }
.status-unsure { background: rgba(155, 89, 182, 0.2); color: #9b59b6; border: 1px solid #9b59b6; }
.status-risk { background: rgba(241, 196, 15, 0.2); color: #f1c40f; border: 1px solid #f1c40f; }

.client-type {
  color: #00b894;
  font-weight: 600;
  text-transform: capitalize;
}

.client-method {
  color: #6c5ce7;
  font-weight: 600;
  text-transform: capitalize;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 40px 0;
  padding: 12px 20px;
  background: rgba(108, 92, 231, 0.2);
  color: #6c5ce7;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid #6c5ce7;
  transition: all 0.3s ease;
}

.back-link:hover {
  background: rgba(108, 92, 231, 0.3);
  transform: translateX(-5px);
}

.footer {
  background: rgba(0, 0, 0, 0);
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  backdrop-filter: blur(10px);
}

.footer-content p {
  margin-bottom: 10px;
  color: #b8b8b8;
}

.disclaimer {
  font-size: 0.9rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .card {
    padding: 20px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .exploits-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .filters-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .price-sliders {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  
  .filters-actions {
    flex-direction: column;
  }
  
  .exploit-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .exploit-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.card-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(40, 40, 60, 0.8);
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #6c5ce7;
}