* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Unbounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #000000;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  cursor: none;
  opacity: 0;
  animation: pageLoad 1s ease forwards;
}

@keyframes pageLoad {
  to {
    opacity: 1;
  }
}

.custom-cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: #7EB6FF;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease;
  transform: translate(-50%, -50%);
}

.custom-cursor.hover {
  transform: translate(-50%, -50%) scale(2);
  background: rgba(126, 182, 255, 0.6);
}

a, button, input, textarea, select {
  cursor: none !important;
}

.toast-close, .toast-btn {
  cursor: none !important;
}

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.header {
  padding: 2rem 0;
  opacity: 0;
  animation: slideDown 0.8s ease 0.3s forwards;
  position: relative;
  z-index: 1000;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(to right, #7EB6FF 0%, #0010BD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Unbounded', sans-serif;
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #667eea;
}

.back-link {
  color: #7EB6FF;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.back-link:hover {
  color: #ffffff;
  transform: translateX(-4px);
}

.logout-link {
  color: #ff4757 !important;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: none;
  position: relative;
  z-index: 100;
}

.logout-link:hover {
  color: #ff6b81 !important;
  text-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 2rem 0;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-family: 'Unbounded', sans-serif;
}

.gradient-text {
  display: block;
  background: linear-gradient(to right, #7EB6FF 0%, #0010BD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.subtitle {
  display: block;
  font-size: 3rem;
  color: #ffffff;
  opacity: 0.9;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
}

.hero-description {
  font-size: 1.25rem;
  color: #b0b0b0;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 7rem;
}

.btn {
  padding: 0.5rem 1.5rem;
  font-size: 1.5625rem;
  font-weight: 400;
  border-radius: 1.5rem;
  cursor: none !important;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
  font-family: 'Unbounded', sans-serif;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: #ffffff;
  border: 1px solid rgba(100, 55, 179, 0.11);
}

.btn-primary:hover {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-secondary {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: #ffffff;
  border: 1px solid rgba(100, 55, 179, 0.11);
}

.btn-secondary:hover {
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  transform: translateY(-2px);
}

.btn-secondary:active {
  transform: scale(0.95);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.hero-image {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.paperclip-icon {
  width: 120px;
  height: 180px;
  filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
  animation: float 3s ease-in-out infinite;
}

.paperclip-2 {
  width: 100px;
  height: 150px;
  animation-delay: 0.5s;
  opacity: 0.8;
}

.paperclip-3 {
  width: 140px;
  height: 200px;
  animation-delay: 1s;
  opacity: 0.9;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .subtitle {
    font-size: 2rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    margin-top: 2rem;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

.auth-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 2rem 0;
  animation: fadeIn 0.8s ease forwards;
  position: relative;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.auth-box {
  width: 100%;
  max-width: 450px;
  padding: 3rem;
  animation: fadeInUp 0.6s ease 0.3s backwards;
  position: relative;
  overflow: hidden;
}

.auth-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../368a88f2e03908f94a16c50dc29770ec.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
  border-radius: 1rem;
}

.auth-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  font-family: 'Unbounded', sans-serif;
  text-align: center;
}

.auth-description {
  text-align: center;
  color: #b0b0b0;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
}

.form-input {
  width: 100%;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  font-family: 'Unbounded', sans-serif;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(126, 182, 255, 0.2);
  border-radius: 0.75rem;
  color: #ffffff;
  transition: all 0.3s;
  outline: none;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
  border-color: #7EB6FF;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(126, 182, 255, 0.1);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: none !important;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  cursor: none !important;
  accent-color: #7EB6FF;
}

.form-link {
  color: #7EB6FF;
  text-decoration: none;
  transition: color 0.3s;
}

.form-link:hover {
  color: #0010BD;
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 1rem;
}

.auth-footer {
  margin-top: 2rem;
  text-align: center;
  color: #b0b0b0;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .auth-box {
    padding: 2rem;
  }
  
  .auth-title {
    font-size: 2.5rem;
  }
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 2rem 0;
  animation: fadeIn 0.8s ease forwards;
}

.about-box {
  width: 100%;
  max-width: 600px;
  padding: 3rem;
  animation: fadeInUp 0.6s ease 0.3s backwards;
  position: relative;
}

.about-box::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(126, 182, 255, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.about-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-family: 'Unbounded', sans-serif;
  text-align: center;
}

.developer-gif {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.developer-gif img {
  max-width: 100%;
  width: 600px;
  height: auto;
  border-radius: 12px;
  border: 2px solid rgba(126, 182, 255, 0.3);
  box-shadow: 0 8px 32px rgba(126, 182, 255, 0.2);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.about-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: 'Unbounded', sans-serif;
  color: #7EB6FF;
}

.section-text {
  font-size: 1rem;
  color: #b0b0b0;
  line-height: 1.6;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(126, 182, 255, 0.1);
  border-radius: 0.75rem;
  transition: all 0.3s;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(126, 182, 255, 0.3);
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  min-width: 90px;
}

.contact-value {
  font-size: 1rem;
  color: #b0b0b0;
}

.contact-link {
  font-size: 1rem;
  color: #7EB6FF;
  text-decoration: none;
  transition: color 0.3s;
  cursor: none !important;
}

.contact-link:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .about-box {
    padding: 2rem;
  }
  
  .developer-gif img {
    width: 100%;
    max-width: 400px;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.125rem;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .contact-label {
    min-width: auto;
  }
}


/* Panel Page Styles */
.panel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 2rem 0;
  animation: fadeIn 0.8s ease forwards;
}

.panel-box {
  width: 100%;
  max-width: 900px;
  padding: 3rem;
  opacity: 0;
  transform: translateY(30px);
  animation: panelFadeIn 0.8s ease forwards;
}

@keyframes panelFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 3rem;
  font-family: 'Unbounded', sans-serif;
  text-align: center;
}

.panel-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.welcome-section {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(126, 182, 255, 0.2);
  border-radius: 1rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(126, 182, 255, 0.2);
  border-radius: 1rem;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.stat-card:nth-child(1) {
  animation: fadeInUp 0.5s ease 0.4s forwards;
}

.stat-card:nth-child(2) {
  animation: fadeInUp 0.5s ease 0.5s forwards;
}

.stat-card:nth-child(3) {
  animation: fadeInUp 0.5s ease 0.6s forwards;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(126, 182, 255, 0.4);
  transform: translateY(-2px);
}

.stat-icon-text {
  font-size: 2rem;
  line-height: 1;
  color: #7eb6ff;
  font-weight: 700;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #b0b0b0;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #7EB6FF;
}

.actions-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.8s forwards;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(126, 182, 255, 0.2);
  border-radius: 1rem;
  color: #ffffff;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.875rem;
  cursor: none !important;
  transition: all 0.3s;
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(126, 182, 255, 0.4);
  transform: translateY(-2px);
}

.action-icon {
  font-size: 2rem;
  line-height: 1;
}

.action-text {
  font-weight: 500;
}

@media (max-width: 768px) {
  .panel-box {
    padding: 2rem;
  }
  
  .panel-title {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .actions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  pointer-events: none;
}

.toast {
  min-width: 300px;
  padding: 1rem 1.5rem;
  background: rgba(20, 20, 20, 0.95);
  border-radius: 1rem;
  border: 1px solid rgba(126, 182, 255, 0.3);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideInRight 0.3s ease;
  pointer-events: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.toast.toast-success {
  border-color: rgba(34, 197, 94, 0.5);
}

.toast.toast-error {
  border-color: rgba(239, 68, 68, 0.5);
}

.toast.toast-warning {
  border-color: rgba(251, 191, 36, 0.5);
}

.toast.toast-info {
  border-color: rgba(126, 182, 255, 0.5);
}

.toast-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.toast-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.toast-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}

.toast-message {
  font-size: 0.8125rem;
  color: #b0b0b0;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  color: #b0b0b0;
  font-size: 1.25rem;
  cursor: none !important;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  flex-shrink: 0;
}

.toast-close:hover {
  color: #ffffff;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

.toast.toast-exit {
  animation: slideOutRight 0.3s ease forwards;
}

@media (max-width: 768px) {
  .toast-container {
    top: 1rem;
    right: 1rem;
    left: 1rem;
  }
  
  .toast {
    min-width: auto;
    width: 100%;
  }
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(126, 182, 255, 0.3);
  border-top-color: #7EB6FF;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


/* Toast Action Buttons */
.toast-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.toast-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: none !important;
  transition: all 0.2s;
  font-family: 'Unbounded', sans-serif;
}

.toast-btn-danger {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.toast-btn-danger:hover {
  background: rgba(239, 68, 68, 0.3);
}

.toast-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #b0b0b0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Button loading state */
.btn .spinner {
  display: inline-block;
  margin-right: 0.5rem;
}


/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: none;
}

.modal-overlay.active {
  opacity: 1;
}

.modal-box {
  background: rgba(20, 20, 30, 0.85);
  border: 1px solid rgba(126, 182, 255, 0.3);
  border-radius: 16px;
  padding: 35px 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  cursor: none;
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  cursor: none;
}

.modal-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  line-height: 1.5;
  cursor: none;
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal-actions .btn {
  flex: 1;
  min-width: 120px;
  cursor: none;
  white-space: nowrap;
  padding: 12px 20px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Spinner for loading state */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* Tools Pages Styles (Everything & System Informer) */
.tools-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 2rem 0;
  animation: fadeIn 0.8s ease forwards;
}

.tools-box {
  width: 100%;
  max-width: 1200px;
  padding: 3rem;
  animation: fadeInUp 0.6s ease 0.3s backwards;
}

.tools-title {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 3rem;
  font-family: 'Unbounded', sans-serif;
  text-align: center;
}

.tools-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Search Section */
.search-section {
  width: 100%;
  margin-bottom: 1rem;
}

.search-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-family: 'Unbounded', sans-serif;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(126, 182, 255, 0.2);
  border-radius: 0.75rem;
  color: #ffffff;
  transition: all 0.3s;
  outline: none;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.search-input:focus {
  border-color: #7EB6FF;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(126, 182, 255, 0.1);
}

/* Categories */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.category-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Unbounded', sans-serif;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(126, 182, 255, 0.2);
  border-radius: 0.75rem;
  color: #ffffff;
  cursor: none !important;
  transition: all 0.3s;
}

.category-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(126, 182, 255, 0.4);
}

.category-btn.active {
  background: rgba(126, 182, 255, 0.2);
  border-color: #7EB6FF;
  color: #7EB6FF;
}

/* Table Container */
.table-container {
  width: 100%;
  overflow-x: auto;
  margin-top: 2rem;
}

.everything-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  border: 1px solid rgba(126, 182, 255, 0.15);
  border-radius: 0.5rem;
  overflow: hidden;
  table-layout: fixed;
}

.everything-table thead {
  background: rgba(126, 182, 255, 0.05);
}

.everything-table th {
  padding: 0.75rem;
  text-align: left;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: #7EB6FF;
  border-bottom: 1px solid rgba(126, 182, 255, 0.2);
}

.everything-table th:nth-child(1) {
  width: 20%;
}

.everything-table th:nth-child(2) {
  width: 30%;
}

.everything-table th:nth-child(3) {
  width: 50%;
}

.everything-table td {
  padding: 0.75rem;
  border-bottom: 1px solid rgba(126, 182, 255, 0.08);
  vertical-align: top;
}

.everything-table tbody tr {
  transition: all 0.2s;
}

.everything-table tbody tr:hover {
  background: rgba(126, 182, 255, 0.03);
}

.everything-table tbody tr:last-child td {
  border-bottom: none;
}

.everything-table tbody tr.required-row {
  background: rgba(255, 100, 100, 0.03);
  border-left: 2px solid #ff6464;
}

.everything-table tbody tr.required-row:hover {
  background: rgba(255, 100, 100, 0.06);
}

.everything-table td:nth-child(1) {
  font-weight: 600;
  color: #ffffff;
  word-wrap: break-word;
}

.everything-table td:nth-child(2) {
  color: #b0b0b0;
  line-height: 1.6;
  word-wrap: break-word;
}

.everything-table td:nth-child(3) {
  font-family: 'Courier New', monospace;
  font-size: 0.8125rem;
  color: #7EB6FF;
}

.everything-table td:nth-child(4) {
  text-align: center;
}

.command-preview {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0.5rem;
  padding-right: 2.5rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(126, 182, 255, 0.15);
  border-radius: 0.25rem;
  transition: all 0.2s;
  user-select: text;
  cursor: none !important;
}

.command-preview:hover {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(126, 182, 255, 0.3);
}

.copy-icon {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%237EB6FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='9' y='9' width='13' height='13' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'%3E%3C/path%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.command-preview:hover .copy-icon {
  opacity: 1;
}

.everything-table td:nth-child(4) {
  text-align: center;
  white-space: nowrap;
  min-width: 120px;
}

.everything-table code {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(126, 182, 255, 0.2);
  border-radius: 0.25rem;
  font-size: 0.8125rem;
}

.copy-btn {
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  font-family: 'Unbounded', sans-serif;
  background: transparent;
  border: 1px solid rgba(126, 182, 255, 0.3);
  border-radius: 0.375rem;
  color: #7EB6FF;
  cursor: none !important;
  transition: all 0.2s;
  white-space: nowrap;
}

.copy-btn:hover {
  background: rgba(126, 182, 255, 0.1);
  border-color: #7EB6FF;
}

/* Responsive Table */
@media (max-width: 1200px) {
  .everything-table {
    font-size: 0.875rem;
  }
  
  .everything-table th,
  .everything-table td {
    padding: 0.75rem;
  }
  
  .everything-table td:nth-child(3) {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .table-container {
    overflow-x: scroll;
  }
  
  .everything-table {
    min-width: 900px;
  }
}

/* Cheats Table */
.cheats-table-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.table-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cheats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.cheat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(126, 182, 255, 0.2);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.3s;
}

.cheat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(126, 182, 255, 0.4);
  transform: translateY(-2px);
}

.cheat-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.cheat-size {
  font-size: 1.125rem;
  font-weight: 700;
  color: #7EB6FF;
  margin-bottom: 0.5rem;
  font-family: 'Courier New', monospace;
}

.cheat-note {
  font-size: 0.8125rem;
  color: #b0b0b0;
  line-height: 1.4;
}

/* Notes Section */
.notes-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(126, 182, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 1rem;
}

.notes-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.notes-list li {
  padding-left: 1.5rem;
  position: relative;
  color: #b0b0b0;
  line-height: 1.6;
}

.notes-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #7EB6FF;
  font-weight: bold;
}

.notes-list li strong {
  color: #ffffff;
}

.notes-list li code {
  background: rgba(0, 0, 0, 0.3);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
  color: #7EB6FF;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .tools-box {
    padding: 2rem;
  }
  
  .tools-title {
    font-size: 2.5rem;
  }
  
  .list-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .copy-btn {
    width: 100%;
    text-align: center;
  }
  
  .categories-grid {
    flex-direction: column;
  }
  
  .category-btn {
    width: 100%;
    text-align: center;
  }
  
  .cheats-grid {
    grid-template-columns: 1fr;
  }
}


/* Tools Section in Panel */
.tools-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.7s forwards;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.tool-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(126, 182, 255, 0.2);
  border-radius: 0.75rem;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s;
  cursor: none !important;
}

.tool-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(126, 182, 255, 0.4);
  transform: translateY(-2px);
}

.tool-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.tool-name {
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'Unbounded', sans-serif;
  color: #7EB6FF;
}

.tool-desc {
  font-size: 0.75rem;
  color: #b0b0b0;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}
