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

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.5);
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes border-glow {
  0%, 100% {
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), inset 0 0 20px rgba(0, 212, 255, 0.1);
  }
  50% {
    border-color: #00ff88;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6), inset 0 0 30px rgba(0, 255, 136, 0.2);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #0a0e1a;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0a0e1a 0%, #0f1625 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  padding-top: 80px;
  padding-bottom: 40px;
  color: #ffffff;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid #00d4ff;
  border-radius: 24px;
  padding: 40px 30px;
  box-shadow: 
    0 0 40px rgba(0, 212, 255, 0.4),
    0 0 80px rgba(0, 212, 255, 0.2),
    inset 0 0 30px rgba(0, 212, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: border-glow 4s ease-in-out infinite;
  z-index: 1;
}

.container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00d4ff, #00ff88, #00d4ff, #00ff88);
  background-size: 400% 400%;
  border-radius: 24px;
  z-index: -1;
  opacity: 0.2;
  animation: gradient-shift 3s ease infinite;
  filter: blur(8px);
}

.logo-circle {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid #00d4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 30px rgba(0, 212, 255, 0.6),
    0 0 60px rgba(0, 212, 255, 0.3),
    inset 0 0 20px rgba(0, 212, 255, 0.2);
  z-index: 10;
  animation: float 3s ease-in-out infinite, pulse-glow 2s ease-in-out infinite;
}

.logo-circle::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00d4ff, #00ff88, #00d4ff);
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0.6;
  animation: gradient-shift 2s ease infinite;
  filter: blur(6px);
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-king {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
  margin-bottom: 3px;
  line-height: 80%;
}

.logo-cheat {
  font-size: 20px;
  font-weight: 900;
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 50%, #00ff88 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  line-height: 90%;
  animation: gradient-shift 3s ease infinite;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 60px;
  margin-bottom: 10px;
}

.bot-icon {
  font-size: 18px;
}

.panel-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
  letter-spacing: 1px;
}

.main-title {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
  text-shadow: 
    0 0 10px rgba(0, 212, 255, 0.5),
    0 0 20px rgba(0, 212, 255, 0.3);
  letter-spacing: 0.5px;
}

.security-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #00ff88;
  font-size: 14px;
  margin-bottom: 40px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.padlock-icon {
  font-size: 16px;
}

.tip-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 14px;
}

.warning-icon {
  font-size: 16px;
}

.tip-label {
  color: #ffd700;
  font-weight: 600;
}

.tip-message span:last-child {
  color: #ffffff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 40px;
}

.feature-btn {
  padding: 14px 16px;
  background: rgba(0, 212, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid #00d4ff;
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 0 10px rgba(0, 212, 255, 0.2),
    inset 0 0 10px rgba(0, 212, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
  transition: left 0.5s;
}

.feature-btn:hover::before {
  left: 100%;
}

.feature-btn:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: #00ff88;
  box-shadow: 
    0 0 20px rgba(0, 212, 255, 0.5),
    0 0 40px rgba(0, 212, 255, 0.3),
    inset 0 0 15px rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.feature-btn.active {
  background: linear-gradient(135deg, #00d4ff 0%, #00ff88 100%);
  color: #0a0e1a;
  font-weight: 700;
  border-color: #00ff88;
  box-shadow: 
    0 0 25px rgba(0, 212, 255, 0.8),
    0 0 50px rgba(0, 212, 255, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  animation: pulse-glow 2s ease-in-out infinite;
}

.username-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0px;
  margin-bottom: 10px;
}

.username-label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.username-input {
  padding: 14px 16px;
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid #00d4ff;
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  outline: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 0 10px rgba(0, 212, 255, 0.2),
    inset 0 0 10px rgba(0, 212, 255, 0.05);
}

.username-input:focus {
  border-color: #00ff88;
  box-shadow: 
    0 0 25px rgba(0, 212, 255, 0.6),
    0 0 50px rgba(0, 212, 255, 0.3),
    inset 0 0 15px rgba(0, 212, 255, 0.1);
  background: rgba(10, 14, 26, 0.8);
  transform: scale(1.02);
}

.username-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.activate-btn {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(90deg, #00ff88 0%, #00d4ff 50%, #00ff88 100%);
  background-size: 200% 200%;
  border: none;
  border-radius: 12px;
  color: #000;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 0 30px rgba(0, 255, 136, 0.5),
    0 0 60px rgba(0, 255, 136, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  margin-top: 0px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  animation: gradient-shift 3s ease infinite;
}

.activate-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.activate-btn:hover::before {
  left: 100%;
}

.activate-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 0 40px rgba(0, 255, 136, 0.7),
    0 0 80px rgba(0, 255, 136, 0.5),
    inset 0 0 30px rgba(255, 255, 255, 0.3);
  animation: gradient-shift 1.5s ease infinite;
}

.activate-btn:active {
  transform: translateY(-1px) scale(1);
}

.rocket-icon {
  font-size: 20px;
}

.notes-section {
  margin-top: 40px;
}

.notes-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.notes-label {
  color: #ffd700;
  font-weight: 600;
}

.notes-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notes-list li {
  color: #ffffff;
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  line-height: 1.25;
}

.notes-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0;
  color: #00d4ff;
  font-size: 12px;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.main-content {
  position: relative;
  z-index: 1;
}

.activation-screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0e1a;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, #0a0e1a 0%, #0f1625 100%);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

.activation-screen.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.activation-container {
  width: 100%;
  max-width: 800px;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid #00d4ff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 
    0 0 40px rgba(0, 212, 255, 0.4),
    0 0 80px rgba(0, 212, 255, 0.2),
    inset 0 0 30px rgba(0, 212, 255, 0.1);
}

.terminal-header {
  font-family: 'Courier New', monospace;
  color: #a0a0a0;
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.terminal-path {
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.status-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
  border-radius: 8px;
  font-weight: 900;
  font-size: 14px;
  color: #0a0e1a;
  margin-bottom: 20px;
  box-shadow: 
    0 0 20px rgba(0, 255, 136, 0.6),
    0 0 40px rgba(0, 255, 136, 0.4);
  animation: pulse-glow 2s ease-in-out infinite;
}

.activation-title {
  font-size: 28px;
  font-weight: 900;
  color: #00d4ff;
  margin-bottom: 15px;
  text-shadow: 
    0 0 10px rgba(0, 212, 255, 0.6),
    0 0 20px rgba(0, 212, 255, 0.4);
}

.activation-description {
  color: #b0b0b0;
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.session-details {
  font-family: 'Courier New', monospace;
  color: #a0a0a0;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.session-line {
  margin-bottom: 8px;
}

.session-user {
  color: #ffaa00;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
}

.session-mod {
  color: #00d4ff;
  font-weight: 700;
}

.session-id {
  color: #00d4ff;
  font-weight: 700;
}

.progress-text {
  color: #00ff88;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.progress-bar-container {
  width: 100%;
  height: 30px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid #00d4ff;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.2);
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00ff88 0%, #00d4ff 100%);
  border-radius: 15px;
  transition: width 0.3s ease;
  box-shadow: 
    0 0 20px rgba(0, 255, 136, 0.6),
    0 0 40px rgba(0, 255, 136, 0.4);
  animation: gradient-shift 2s ease infinite;
  background-size: 200% 100%;
}

.system-log {
  font-family: 'Courier New', monospace;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
  padding: 15px;
  max-height: 300px;
  overflow: auto;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.8;
  white-space: nowrap;
}

.system-log::-webkit-scrollbar {
  width: 8px;
}

.system-log::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.system-log::-webkit-scrollbar-thumb {
  background: rgba(0, 212, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.system-log::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 212, 255, 0.7);
}

.log-entry {
  color: #b0b0b0;
  opacity: 0;
  animation: fade-in 0.5s ease forwards;
}

.log-entry.highlight {
  color: #00ff88;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.activation-disclaimer {
  color: #808080;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

@media (max-width: 640px) {
  .container {
    padding: 30px 20px;
  }

  .main-title {
    font-size: 20px;
  }

  .feature-grid {
    gap: 10px;
  }

  .feature-btn {
    padding: 12px 14px;
  }

  .activate-btn {
    padding: 16px 20px;
  }

  .activation-container {
    padding: 20px;
  }

  .activation-title {
    font-size: 22px;
  }

  .session-details {
    font-size: 12px;
  }

  .system-log {
    font-size: 12px;
    max-height: 250px;
  }
}
