@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-dark: #020617; /* Very dark slate */
  --bg-card: #0f172a;
  --bg-card-hover: #1e293b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --primary: #3b82f6;
  --primary-hover: #2563eb;
  --primary-glow: rgba(59, 130, 246, 0.5);
  --secondary: #10b981;
  --accent: #f59e0b;
  --gradient-main: linear-gradient(135deg, #2563eb, #3b82f6);
  --gradient-card: linear-gradient(to bottom right, #1e293b, #0f172a);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-pill: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  line-height: 1.5;
}

#app-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Base Typography */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.75rem;
  text-align: center;
  background: white; /* fallback */
  background: linear-gradient(to right, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 var(--primary-glow); }
  50% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

@keyframes rotateLoader {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* View Containers */
.step-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  animation: slideInRight 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0; 
}

.step-container.exiting {
  animation: slideOutLeft 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* UI Elements */
.progress-bar-container {
  width: 100%;
  height: 6px;
  background-color: var(--bg-card);
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-main);
  box-shadow: 0 0 10px var(--primary-glow);
  width: 0%;
  transition: width 0.5s ease;
  border-radius: var(--radius-pill);
}

.options-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

/* Specific rule to center a 3rd (odd) option elegantly */
.options-grid > .option-btn:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 0.5rem);
}

.options-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.options-horizontal .option-btn {
  flex: 1;
  padding: 1rem 0;
  text-align: center;
  justify-content: center;
}

.option-btn.has-image {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
}

.opt-img-placeholder {
  width: 100%;
  height: 180px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px dashed rgba(255,255,255,0.1);
  overflow: hidden;
}

.opt-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 480px) {
  .step-container h1 {
    font-size: 1.25rem !important;
    line-height: 1.45;
  }
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .opt-img-placeholder {
    height: 130px;
  }
  .option-btn {
    padding: 1rem 0.75rem;
    font-size: 0.95rem;
  }
}

.option-btn {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.option-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.option-btn:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 0 15px var(--primary-glow);
}

.option-btn:hover::before {
  transform: translateX(100%);
}

.option-btn.selected {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary), 0 0 20px var(--primary-glow);
}

.primary-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: auto;
  box-shadow: 0 4px 14px 0 var(--primary-glow);
  animation: float 3s ease-in-out infinite, pulse 2s infinite;
}

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

.primary-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.primary-btn:active {
  transform: translateY(1px);
}

/* Image Placeholder */
.image-placeholder {
  width: 100%;
  height: 200px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  border: 1px dashed rgba(255,255,255,0.1);
  animation: fadeInUp 0.6s ease;
}

/* Subtle Text */
.subtle-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

.subtle-text a {
  color: var(--text-main);
  text-decoration: underline;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.subtle-text a:hover {
  opacity: 1;
}

/* Loading Screen */
.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 60vh;
}
.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(59, 130, 246, 0.2);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: rotateLoader 1s linear infinite;
  margin-bottom: 2rem;
}
.loader-text {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  animation: pulse 1.5s infinite;
}

/* Final Offer Screen specific */
.offer-box {
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
}

.price-strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
}
.price-final {
  color: var(--secondary);
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 0.5rem;
  display: block;
}

/* Timer */
.scarcity-timer {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444; /* red-500 */
  padding: 0.75rem;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: pulse 2s infinite;
}

/* Metrics */
.metric-row {
  margin-bottom: 1rem;
}
.metric-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.metric-bar-bg {
  width: 100%;
  height: 8px;
  background: var(--bg-dark);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.metric-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: var(--radius-pill);
  width: 0%;
  transition: width 1s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 10px var(--primary-glow);
}
.metric-bar-fill.warning {
  background: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}
.metric-bar-fill.success {
  background: var(--secondary);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Checkmarks list */
.check-list {
  list-style: none;
  margin-bottom: 2rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.check-list li svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* User Refinements CSS */
.logo-box {
  width: 140px;
  height: 50px;
  background: transparent;
  border: none;
  margin: 0 auto 1.5rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.highlight-title {
  font-size: 1.5rem;
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary-glow);
}

.highlight-text {
  color: var(--primary);
  font-weight: 800;
}

.highlight-text-light {
  color: var(--text-main);
  font-weight: 700;
}

.highlight-price {
  font-size: 3rem;
  color: var(--secondary);
  text-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.pulse-super {
  animation: pulse-super 1.5s infinite;
  font-size: 1.25rem;
  padding: 1.25rem 2rem;
  background: var(--secondary);
  box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.5);
}
.pulse-super:hover {
  background: #059669;
}

@keyframes pulse-super {
  0% { transform: translateY(0px) scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  50% { transform: translateY(-3px) scale(1.05); box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
  100% { transform: translateY(0px) scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Testimonials */
.testimonials-container {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
  margin-bottom: 1.5rem;
}

.testimonial-card:last-child {
  margin-bottom: 0;
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: left;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: right;
  margin-bottom: 0;
}

/* Custom Chart CSS */
.chart-wrapper {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  margin: 1.5rem 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.animated-chart {
  width: 100%;
  height: auto;
  overflow: visible;
}

.grid-line {
  stroke: rgba(255,255,255,0.1);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}

.axis-label {
  fill: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
}

.chart-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawLine 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.chart-area {
  opacity: 0;
  animation: fadeInArea 2s 1s ease forwards;
}

.chart-point, .chart-tooltip-group {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.p1 { animation: popIn 0.5s 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }
.chart-tooltip-group {
  animation: popIn 0.5s 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.p3 { animation: popIn 0.5s 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeInArea {
  to { opacity: 1; }
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.5) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Loading Specific CSS */
.circular-progress {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}
.progress-circle {
    transition: stroke-dashoffset 0.1s linear;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}
.progress-value {
    position: absolute;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}
.load-item {
    opacity: 0.2;
    transform: translateY(10px);
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}
.load-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Segmented Metric Sliders Refinement */
.metrics-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.m-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 600px) {
    .m-compare-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
.m-metric {
    display: flex;
    flex-direction: column;
}
.m-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}
.m-status-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}
.m-track-container {
    position: relative;
    padding: 6px 0;
}
.m-track {
    position: relative;
    height: 8px;
    width: 100%;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    overflow: hidden;
}
.m-track-gaps {
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 100%;
    display: flex;
}
.m-gap-part {
    flex: 1;
    border-right: 4px solid var(--bg-card); 
}
.m-gap-part:last-child { 
    border-right: none; 
}
.m-track-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0; height: 100%;
    width: 0%;
    animation: slideTrack 1.5s cubic-bezier(0.1, 0.7, 0.1, 1) forwards;
}
.c-red { background: #ef4444; }
.c-blue { background: #3b82f6; }
.c-orange { background: #f59e0b; }

.m-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #f8fafc;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
    left: 0%;
    animation: slideHandle 1.5s cubic-bezier(0.1, 0.7, 0.1, 1) forwards;
    z-index: 2;
}

@keyframes slideTrack {
    from { width: 0%; }
    to { width: var(--m-target); }
}
@keyframes slideHandle {
    from { left: 0%; }
    to { left: var(--m-target); }
}

/* FAQ Accordion */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}
.faq-item {
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item.active {
    background: rgba(255,255,255,0.05);
    border-color: var(--primary);
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    text-align: left;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
}
.faq-question strong {
    flex: 1;
    padding-right: 1rem;
    font-weight: 600;
}
.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--primary);
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    padding: 0 1.25rem;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.25rem 1.25rem 1.25rem;
    opacity: 1;
}
.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

/* Redesigned Feedback Cards */
.feedback-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: #1f2937;
    margin-bottom: 2rem;
    position: relative;
    text-align: left;
}
.fb-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.fb-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #64748b;
    margin-right: 15px;
    flex-shrink: 0;
}
.fb-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.fb-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: #334155;
    margin-bottom: 2px;
}
.fb-role {
    font-size: 0.9rem;
    color: #94a3b8;
}
.fb-badge {
    width: 36px;
    height: 36px;
    background: #84cc6d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.fb-badge svg {
    width: 20px; height: 20px;
}
.fb-body {
    background: #f4f5f7;
    border-radius: 16px;
    padding: 20px;
    position: relative;
}
.fb-body::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 44px;
    border-width: 0 14px 16px 14px;
    border-style: solid;
    border-color: transparent transparent #f4f5f7 transparent;
}
.fb-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 15px;
}
.fb-stars {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
}
.fb-stars svg {
    width: 24px;
    height: 24px;
    fill: #facc15;
    filter: drop-shadow(0px 2px 2px rgba(250, 204, 21, 0.4));
}

/* Before / After Slider */
.ba-container {
    position: relative;
    width: 100%;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    aspect-ratio: 1 / 1; 
    background: #000;
}
.ba-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.ba-foreground-img {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    z-index: 2;
}
.ba-background-img {
    z-index: 1;
}
.ba-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
    z-index: 5;
    cursor: ew-resize;
}
.ba-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 1000px;
    background: transparent;
    cursor: ew-resize;
}
.ba-slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 3;
    pointer-events: none;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.ba-slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    color: #0F172A;
}
.ba-slider-button svg {
    width: 14px;
    height: 14px;
}
.ba-label {
    position: absolute;
    top: 15px;
    padding: 6px 12px;
    background: rgba(0,0,0,0.6);
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
    border-radius: 6px;
    z-index: 4;
    pointer-events: none;
    backdrop-filter: blur(4px);
}
.ba-label-left { left: 15px; }
.ba-label-right { right: 15px; }

@keyframes pulseTimer {
  0% { box-shadow: 0 0 15px rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.2); }
  50% { box-shadow: 0 0 35px rgba(239,68,68,0.5); border-color: rgba(239,68,68,0.7); }
  100% { box-shadow: 0 0 15px rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.2); }
}
