* { margin: 0; padding: 0; box-sizing: border-box; }
:root { color-scheme: dark; }
body { 
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: #000; 
  color: #fff;
  line-height: 1.5;
}
.container { max-width: 100%; margin: 0 auto; padding: 20px; }

/* Header */
.header { 
  padding: 20px 0 30px;
  border-bottom: 1px solid #222;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}
.header-top { 
  display: flex; 
  align-items: center; 
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}
.brand-logo { 
  width: 50px; 
  height: 50px; 
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: logoFloat 6s ease-in-out infinite;
}
.brand-logo:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.brand-text { 
  font-size: 48px; 
  font-weight: 900; 
  letter-spacing: -1px;
  margin: 0;
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.brand-text:hover {
  transform: scale(1.02);
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.2);
}
.wurk-link {
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.2) 100%);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 8px;
  color: #22c55e;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}
.wurk-link:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(34, 197, 94, 0.3) 100%);
  border-color: #22c55e;
  transform: translateY(-50%) translateX(3px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
  color: #10b981;
}
.wurk-link svg {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
.challenge-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.alon-pfp {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #333;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
  transition: all 0.3s ease;
  animation: pfpPulse 4s ease-in-out infinite;
}
.alon-pfp:hover {
  transform: scale(1.08);
  border-color: #22c55e;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.4);
}
@keyframes pfpPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 25px rgba(34, 197, 94, 0.3); }
}
.challenge-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.challenge-title { 
  font-size: 42px; 
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 8px;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  position: relative;
  animation: titleFadeIn 1s ease-out;
}
@keyframes titleFadeIn {
  0% { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.counter { 
  font-size: 52px;
  font-weight: 900;
  color: #22c55e;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.counter-sub { 
  font-size: 20px;
  color: #888;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.8;
}
.progress-container {
  width: 85%;
  max-width: 900px;
  margin: 0 auto 10px;
  position: relative;
}
.progress-milestones {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  padding: 0 2px;
}
.milestone {
  position: relative;
  font-size: 10px;
  color: #666;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.milestone.achieved {
  color: #22c55e;
  text-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}
.milestone::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: #333;
  transition: all 0.3s ease;
}
.milestone.achieved::after {
  background: #22c55e;
  box-shadow: 0 0 4px rgba(34, 197, 94, 0.6);
}
.progress-bar {
  width: 100%;
  height: 32px;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 
    inset 0 2px 8px rgba(0, 0, 0, 0.8),
    0 1px 0 rgba(255, 255, 255, 0.05),
    0 -1px 0 rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%);
  z-index: 10;
}
.progress-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 11px
  );
  transform: translateY(-50%);
  z-index: 1;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(135deg, 
    #22c55e 0%, 
    #16a34a 40%, 
    #22c55e 60%, 
    #10b981 100%);
  background-size: 200% 100%;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  animation: 
    gradientShift 8s ease-in-out infinite,
    pulse 2s ease-in-out infinite;
  box-shadow: 
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.progress-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 100%);
  animation: shimmer 3s linear infinite;
  opacity: 0;
  animation-delay: 0.5s;
}
.progress-fill::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 40%;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.2) 0%,
    transparent 100%);
  border-radius: 12px 12px 0 0;
  animation: gloss 4s ease-in-out infinite;
}
.progress-glow {
  position: absolute;
  top: -10px;
  right: -2px;
  bottom: -10px;
  width: 60px;
  background: radial-gradient(
    ellipse at center,
    rgba(34, 197, 94, 0.6) 0%,
    rgba(34, 197, 94, 0.3) 40%,
    transparent 70%
  );
  filter: blur(10px);
  animation: 
    glowPulse 2s ease-in-out infinite,
    glowMove 3s ease-in-out infinite;
  pointer-events: none;
}
.progress-percentage {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 20;
  letter-spacing: 0.5px;
}
.progress-particles {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #22c55e;
  border-radius: 50%;
  animation: particleFloat 3s linear infinite;
  box-shadow: 0 0 4px rgba(34, 197, 94, 0.8);
}
.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-delay: 0.5s; }
.particle:nth-child(3) { left: 50%; animation-delay: 1s; }
.particle:nth-child(4) { left: 70%; animation-delay: 1.5s; }
.particle:nth-child(5) { left: 90%; animation-delay: 2s; }
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes pulse {
  0%, 100% { 
    opacity: 1;
    transform: scaleY(1);
  }
  50% { 
    opacity: 0.95;
    transform: scaleY(0.98);
  }
}
@keyframes shimmer {
  0% { 
    transform: translateX(-100%);
    opacity: 0;
  }
  50% { opacity: 1; }
  100% { 
    transform: translateX(100%);
    opacity: 0;
  }
}
@keyframes gloss {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.3; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}
@keyframes glowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-10px); }
}
@keyframes particleFloat {
  0% {
    transform: translateY(32px) translateX(0);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-32px) translateX(20px);
    opacity: 0;
  }
}

/* Main Layout */
.main-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
  width: 100%;
}

.main-layout > .instructions,
.main-layout > .mentions-section { min-width: 0; }

/* Instructions */
.instructions {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 40px;
  position: sticky;
  top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.instructions h2 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 40px;
  color: #22c55e;
  line-height: 1;
  text-align: center;
}
.instructions h3 {
  font-size: 36px;
  font-weight: 800;
  margin: 40px 0 30px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
  text-align: center;
}
.instructions ul {
  list-style: none;
}
.instructions li {
  margin-bottom: 28px;
  padding-left: 50px;
  position: relative;
  color: #fff;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 500;
}
.instructions li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
  font-size: 32px;
}
.instructions .highlight {
  color: #60a5fa;
  font-weight: 800;
  font-size: 28px;
}
.instructions .note {
  margin-top: 40px;
  padding: 25px;
  background: #111;
  border-radius: 10px;
  font-size: 20px;
  color: #bbb;
  line-height: 1.5;
  text-align: center;
}

/* Mentions */
.mentions-section {
  min-height: 600px;
}
.mentions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.mentions-title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.page-info {
  font-size: 14px;
  color: #888;
}

/* Cards */
.mentions-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mention-card {
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 15px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  transition: border-color 0.2s;
}
.mention-card:hover {
  border-color: #333;
}
.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #111;
}
.mention-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mention-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.user-handle {
  font-weight: 600;
  font-size: 15px;
}
.mention-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.badge-approved {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #1a1a1a;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}
.link-open {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(96, 165, 250, 0.15) 100%);
  color: #60a5fa;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 6px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.link-open svg {
  width: 12px;
  height: 12px;
  opacity: 0.8;
  transition: all 0.2s ease;
}
.link-open:hover {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(96, 165, 250, 0.25) 100%);
  border-color: rgba(96, 165, 250, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.3);
  text-decoration: none;
}
.link-open:hover svg {
  opacity: 1;
  transform: translate(2px, -2px);
}
.time-ago {
  font-size: 12px;
  color: #666;
}
.mention-text {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
}
.ai-review {
  margin-top: 8px;
  padding: 12px;
  background: #111;
  border-radius: 8px;
  border-left: 3px solid #22c55e;
}
.ai-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #22c55e;
  margin-bottom: 5px;
}
.ai-text {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
}

/* Navigation */
.pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.btn {
  padding: 10px 20px;
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.btn:hover:not([aria-disabled="true"]) {
  background: #1a1a1a;
  border-color: #444;
  color: #fff;
}
.btn[aria-disabled="true"] {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 1024px) {
  .main-layout { grid-template-columns: 1fr; }
  .brand-text { font-size: 36px; }
  .challenge-title { font-size: 24px; }
  .counter { font-size: 32px; }
  .progress-container { width: 95%; }
  .progress-bar { height: 28px; }
  .milestone { font-size: 9px; }
  .progress-percentage { font-size: 10px; }
  .wurk-link { right: -28px; width: 24px; height: 24px; }
}