/* Modern Dark Theme - LuaObf Pro */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #e0e0e0;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.global-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #00ff88, #00ccff);
  color: #000;
  padding: 12px 20px;
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,255,136,0.4);
  font-size: 16px;
}

.global-banner button {
  background: rgba(0,0,0,0.2);
  border: none;
  color: #000;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 0 20px 0; /* Space for banner */
}

.logo {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(45deg, #00ff88, #00ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links a {
  color: #b0b0b0;
  text-decoration: none;
  margin-left: 30px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00ff88;
}

/* Buttons */
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(45deg, #00ff88, #00ccff);
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.6);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
}

.btn-danger {
  background: linear-gradient(45deg, #ff4757, #ff3838);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4);
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 0;
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #00ff88, #00ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 24px;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Sections */
.section {
  padding: 160px 0 200px 0; /* Hero/features huge spacing below cards */
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 100px;
}

.feature-card {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

/* Obfuscator UI */
.tool-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.textarea {
  width: 100%;
  height: 400px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 15px;
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  color: #00ff88;
  resize: vertical;
}

.textarea:focus {
  outline: none;
  border-color: #00ff88;
  box-shadow: 0 0 20px rgba(0,255,136,0.3);
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 20px 0;
}

#dropZone {
  border: 2px dashed rgba(0,255,136,0.5);
  padding: 40px;
  text-align: center;
  border-radius: 15px;
  transition: all 0.3s;
  cursor: pointer;
}

#dropZone.dragover {
  background: rgba(0,255,136,0.1);
  border-color: #00ff88;
}

/* Community */
.community {
  text-align: center;
  padding: 80px 0;
  background: rgba(0,0,0,0.3);
}

.partners {
  background: rgba(255,255,255,0.03);
}

.partners h2 {
  color: #00ccff;
  margin-bottom: 20px;
}

.partners-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.logo-placeholder {
  width: 100px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 12px;
}

.solo-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #00ff88, #00ccff);
  text-align: center;
}

.solo-btn {
  font-size: 24px !important;
  padding: 20px 60px !important;
  box-shadow: 0 20px 50px rgba(0,255,136,0.5) !important;
}

.discord-btn {
  font-size: 18px;
  padding: 15px 40px;
}

/* Admin */
.login-form {
  max-width: 400px;
  margin: 100px auto;
  padding: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #b0b0b0;
}

.form-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 16px;
}

.admin-dashboard {
  max-width: 800px;
  margin: 50px auto;
  padding: 40px;
  display: grid;
  gap: 30px;
}

.toggle-container {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  background: #ccc;
  border-radius: 15px;
  cursor: pointer;
  margin: 20px auto;
  transition: background 0.3s;
}

.toggle-switch.active {
  background: #00ff88;
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}

.toggle-switch.active .toggle-slider {
  transform: translateX(30px);
}

.notif-container {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 15px;
}

.notif-input {
  width: 100%;
  height: 100px;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  resize: vertical;
}

/* Status Overlay & Toast */
.overlay-down {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  flex-direction: column;
}

.overlay-down.show {
  display: flex;
}

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #00ff88, #00ccff);
  color: #000;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,255,136,0.4);
  transform: translateX(400px);
  transition: transform 0.3s;
  z-index: 1001;
  max-width: 300px;
}

.toast.show {
  transform: translateX(0);
}

.toast button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  float: right;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .tool-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .btn-group {
    flex-direction: column;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

/* Hide textarea scroll */
.textarea::-webkit-scrollbar {
  width: 8px;
}

.textarea::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.3);
}

.textarea::-webkit-scrollbar-thumb {
  background: #00ff88;
  border-radius: 4px;
}

