.results-card {
  max-width: 600px;
  width: 100%;
  margin: 2rem auto;
  background: #091c38;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: popIn var(--transition-normal) forwards;
}

/* Diagonal shape highlight mimicking the cards */
.results-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(22, 98, 255, 0.08) 50%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.results-card > * {
  position: relative;
  z-index: 1;
}

.results-icon-container {
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-block;
  animation: bounce 2s infinite;
}

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

.results-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.results-divider {
  border: none;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.results-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.results-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  background: rgba(10, 20, 36, 0.6);
  border: 1px solid rgba(0, 210, 255, 0.15);
  border-radius: var(--border-radius-md);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-fast);
}

.stat-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0, 210, 255, 0.15);
}

.stat-val {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.stat-val.primary { color: white; }
.stat-val.success { color: var(--success); text-shadow: 0 0 10px rgba(0, 230, 118, 0.2); }
.stat-val.danger { color: var(--danger); text-shadow: 0 0 10px rgba(255, 23, 68, 0.2); }
.stat-val.accent { color: var(--accent); text-shadow: 0 0 10px rgba(0, 210, 255, 0.2); }

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.results-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-result {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
}

.btn-result-primary {
  background: #1662ff;
  color: white;
}

.btn-result-primary:hover {
  background: #2b70ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 98, 255, 0.3);
}

.btn-result-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-result-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-result:active {
  transform: translateY(0);
}

@media (max-width: 480px) {
  .results-card {
    padding: 2rem 1.5rem;
  }
  
  .results-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .results-actions {
    flex-direction: column;
  }
}
