body {
  margin: 0;
  background: #0b0b0f;
  color: #e5e7eb;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 24px auto;
  padding: 24px;
  background: #111827;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
}

.title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
}

.title-icon {
  width: 36px;
  height: 36px;
  image-rendering: pixelated;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 12px;
  font-size: 18px;
  font-weight: 700;
}

.section-icon {
  width: 26px;
  height: 26px;
  image-rendering: pixelated;
}


.row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

label {
  font-size: 13px;
  color: #9ca3af;
}

input, select {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border-radius: 10px;
  background: #020617;
  color: #e5e7eb;
  border: 1px solid #1f2933;
  outline: none;
}

input:focus, select:focus {
  border-color: #3b82f6;
}


.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #020617;
  padding: 16px;
  border-radius: 14px;
}

.stat-icon {
  width: 34px;
  height: 34px;
  image-rendering: pixelated;
}

.stat-title {
  font-size: 13px;
  color: #9ca3af;
}

.stat-value {
  font-size: 22px;
  font-weight: 800;
}


.tools {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.card {
  background: #020617;
  border: 1px solid #1f2933;
  border-radius: 14px;
  padding: 14px;
  transition: .2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: #3b82f6;
}

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

.tool-header img {
  width: 28px;
  height: 28px;
  image-rendering: pixelated;
}

.small {
  font-size: 13px;
  color: #9ca3af;
}

label.small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  cursor: pointer;
}


@media (max-width: 900px) {
  .row {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .tools {
    grid-template-columns: 1fr;
  }
}


.watermark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #fbbf24;
    pointer-events: none;
    z-index: 50;
    letter-spacing: 1.5px;
    padding: 10px 16px;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.2) 0%, rgba(217, 119, 6, 0.1) 100%);
    border: 1px solid rgba(217, 119, 6, 0.4);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(217, 119, 6, 0.2);
    animation: watermarkGlow 3s ease-in-out infinite;
}
