*,:after,:before,::backdrop {
  box-sizing: border-box;
  border: 0 solid;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  line-height: 1.5;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-tap-highlight-color: transparent;
}

body {
  min-height: 100vh;
  background: #fff;
  color: #0a0a0a;
}

.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 20px 40px;
  padding-top: 64px;
  font-family: 'Courier New', monospace;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.title {
  font-size: 28px;
  font-weight: 400;
  color: #000;
  line-height: 1.2;
}

.logo-mark {
  width: 70px;
  height: 70px;
  mix-blend-mode: multiply;
}

.subtitle {
  font-size: 14px;
  line-height: 1.25;
  color: #000;
  margin-bottom: 40px;
}

.section-title {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #000;
  margin-bottom: 16px;
}

.security-box {
  background: #fff;
  padding: 24px;
  margin-top: 18px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.turnstile-wrap.is-hidden {
  display: none;
}

.verified-badge {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

.verified-badge.is-visible {
  display: inline-flex;
}

.verified-badge::before {
  content: '✓';
  font-size: 14px;
}

.search-area {
  margin-bottom: 32px;
}

.search-form {
  display: flex;
  gap: 12px;
}

.search-form input[type='text'] {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font: inherit;
  font-size: 15px;
}

.search-form input[type='text']:focus {
  outline: none;
}

.search-form input[type='submit'] {
  padding: 12px 20px;
  border: none;
  background: #000;
  color: #fff;
  font: inherit;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.15s;
}

.search-form input[type='submit']:hover {
  background: #333;
}

.search-form input[type='submit']:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.status-message {
  margin-top: 16px;
  padding: 16px;
  background: #f5f5f5;
  border-left: 2px solid #000;
  font-size: 14px;
}

.status-message.is-error {
  border-left-color: #8b0000;
}

.result-card {
  margin-top: 24px;
  padding: 20px;
  background: #f5f5f5;
  border-left: 2px solid #000;
}

.result-slug {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-url {
  font-size: 12px;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.5;
  margin-top: 4px;
}

.result-url-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #fff;
  border: 1px solid #000;
}

.result-url-box .link-icon {
  flex-shrink: 0;
  font-size: 14px;
}

.result-url-box .url-text {
  flex-grow: 1;
  font-size: 12px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-meta {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: #000;
  margin-top: 16px;
}

.result-meta p {
  margin: 0;
}

.footer {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid #000;
  font-size: 12px;
  color: #000;
}

@media (max-width: 720px) {
  .container {
    padding-top: 40px;
  }

  .header {
    flex-direction: column;
  }

  .search-form {
    flex-direction: column;
  }
}