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

body {
  background: #0a0a0a;
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #0f0f1a 100%);
}

.avatar {
  width: clamp(120px, 30vw, 200px);
  height: clamp(120px, 30vw, 200px);
  margin-bottom: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5), 0 0 60px rgba(167, 139, 250, 0.2);
  border: 3px solid #00d9ff;
  animation: glow-pulse 3s ease-in-out infinite;
  object-fit: cover;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(0, 217, 255, 0.5), 0 0 60px rgba(167, 139, 250, 0.2); }
  50% { box-shadow: 0 0 50px rgba(0, 217, 255, 0.8), 0 0 100px rgba(167, 139, 250, 0.4); }
}

h1 {
  font-family: 'Space Mono', monospace;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #00d9ff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: #a78bfa;
  margin-bottom: 2rem;
  font-weight: 500;
}

.discord-logo {
  width: 60px;
  height: 45px;
  margin: 2rem auto;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
  animation: discord-float 3s ease-in-out infinite;
}

.discord-link {
  display: inline-block;
  cursor: pointer;
}

.discord-link:hover .discord-logo {
  filter: drop-shadow(0 0 20px rgba(0, 217, 255, 1)) drop-shadow(0 0 10px rgba(167, 139, 250, 0.6));
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  max-width: 900px;
  width: 100%;
}

.card {
  background: rgba(15, 15, 26, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  animation: fadeIn 0.6s ease forwards;
}

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

.card:hover {
  border-color: #00d9ff;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.4), inset 0 0 20px rgba(0, 217, 255, 0.05);
  transform: translateY(-5px);
}

.card:hover::before { left: 100%; }

.card-title {
  font-family: 'Space Mono', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: #00d9ff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-desc {
  font-size: 0.9rem;
  color: #b0b0b0;
  line-height: 1.5;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: #a78bfa;
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.card:hover .card-link {
  border-bottom-color: #a78bfa;
  color: #00d9ff;
}

.status-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.status-banner:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.6);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.status-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
}

/* ═══════════════════════════════
   HALL OF SHAME
═══════════════════════════════ */

.shame-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.shame-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.shame-title {
  font-family: 'Space Mono', monospace;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: #ff4d6d;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.shame-count {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: #ff4d6d;
  opacity: 0.6;
  border: 1px solid rgba(255, 77, 109, 0.3);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
}

.shame-subtitle {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 2rem;
  font-family: 'Space Mono', monospace;
}

.shame-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff4d6d, transparent);
  margin-bottom: 2rem;
}

.shame-toolbar {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.shame-search {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: #ff4d6d;
}

.shame-search input {
  background: rgba(255, 77, 109, 0.08);
  border: 1px solid rgba(255, 77, 109, 0.25);
  color: #f0f0f0;
  border-radius: 6px;
  padding: 0.7rem 0.8rem;
  min-width: min(280px, 100%);
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
}

.shame-search input:focus {
  outline: none;
  border-color: rgba(255, 77, 109, 0.6);
  box-shadow: 0 0 0 2px rgba(255, 77, 109, 0.15);
}

.shame-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}

.shame-ip {
  background: rgba(255, 77, 109, 0.05);
  border: 1px solid rgba(255, 77, 109, 0.15);
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: #ff4d6d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  opacity: 0;
  animation: fadeIn 0.2s ease forwards;
  text-decoration: none;
}

.shame-ip:hover {
  background: rgba(255, 77, 109, 0.1);
  border-color: rgba(255, 77, 109, 0.4);
}

.shame-ip::before {
  content: '✗';
  font-size: 0.7rem;
  opacity: 0.5;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.shame-empty {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: #333;
  padding: 2rem 0;
}

.shame-loading {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: #333;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

footer {
  text-align: center;
  padding: 3rem 1rem;
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  color: #333;
  font-size: 0.8rem;
  font-family: 'Space Mono', monospace;
}

.shame-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.shame-page-btn {
  border: 1px solid rgba(255, 77, 109, 0.25);
  background: rgba(255, 77, 109, 0.08);
  color: #ff4d6d;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.shame-page-btn:hover:not(:disabled) {
  background: rgba(255, 77, 109, 0.16);
  border-color: rgba(255, 77, 109, 0.45);
}

.shame-page-btn.active {
  background: rgba(255, 77, 109, 0.24);
  border-color: rgba(255, 77, 109, 0.55);
}

.shame-page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.shame-page-ellipsis {
  color: #ff4d6d;
  opacity: 0.7;
  padding: 0.25rem 0.2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .shame-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .shame-toolbar {
    justify-content: stretch;
  }

  .shame-search {
    width: 100%;
  }

  .shame-search input {
    min-width: 0;
    width: 100%;
  }
}

.card:nth-child(1) { animation-delay: 0s; }
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.2s; }
