/* Custom styles for BrutalRoast.ai */

:root {
  --brand-rose: #f43f5e;
  --brand-dark: #0f0b10;
  --brand-card: #18121d;
  --brand-border: #2a1e35;
}

body {
  background-color: var(--brand-dark);
  overflow-x: hidden;
}

/* Subtle background tech grid pattern */
.grid-overlay {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Persona button active highlight state */
.persona-btn.active {
  border-color: rgba(244, 63, 94, 0.8) !important;
  background-color: rgba(244, 63, 94, 0.08) !important;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.25) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0f0b10;
}

::-webkit-scrollbar-thumb {
  background: #2a1e35;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f43f5e;
}

/* Pulse animation on roast button */
#btnRoast {
  transition: all 0.2s ease-in-out;
}

#btnRoast:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(244, 63, 94, 0.5);
}

/* Share card gradient border glow */
#shareCardPreview {
  box-shadow: 0 10px 40px -10px rgba(244, 63, 94, 0.25), 0 0 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

#shareCardPreview:hover {
  transform: scale(1.01);
}
