/* PlateRover Conversion Hook V1 */
#platerover-conversion-hook-v1 {
  font-family: system-ui, -apple-system, sans-serif;
  background-color: #0f172a;
  color: #f8fafc;
  padding: 4rem 2rem;
  text-align: center;
  box-sizing: border-box;
}

#platerover-conversion-hook-v1 * {
  box-sizing: border-box;
}

.pr-hook-eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #10b981;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pr-hook-heading {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.pr-hook-body {
  font-size: 1.125rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.pr-hook-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .pr-hook-actions {
    flex-direction: row;
  }
}

.pr-hook-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

@media (prefers-reduced-motion: reduce) {
  .pr-hook-btn {
    transition: none;
  }
}

.pr-hook-btn:active {
  transform: scale(0.98);
}

.pr-hook-btn-primary {
  background-color: #10b981;
  color: #022c22;
}

.pr-hook-btn-primary:hover, .pr-hook-btn-primary:focus-visible {
  background-color: #34d399;
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

.pr-hook-btn-secondary {
  background-color: transparent;
  color: #f8fafc;
  border: 2px solid #334155;
}

.pr-hook-btn-secondary:hover, .pr-hook-btn-secondary:focus-visible {
  background-color: #1e293b;
  outline: 2px solid #cbd5e1;
  outline-offset: 2px;
}

.pr-hook-trust {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 3rem;
}

.pr-hook-demo-container {
  background-color: #1e293b;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

.pr-hook-demo-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 2rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #0f172a;
}

.pr-hook-demo-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pr-hook-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pr-scan 2s linear infinite;
  display: none;
}

@keyframes pr-scan {
  0% { top: 0; }
  50% { top: 100%; }
  100% { top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .pr-hook-scan-line {
    animation: none;
    height: 100%;
    background-color: rgba(16, 185, 129, 0.2);
  }
}

.pr-hook-status {
  font-weight: 600;
  margin-bottom: 1rem;
  min-height: 1.5rem;
}

.pr-hook-results {
  display: none;
  text-align: left;
}

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

@media (min-width: 480px) {
  .pr-hook-metrics {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pr-hook-metric {
  background-color: #334155;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}

.pr-hook-metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
}

.pr-hook-metric-label {
  font-size: 0.875rem;
  color: #cbd5e1;
}

.pr-hook-insight {
  background-color: rgba(16, 185, 129, 0.1);
  border-left: 4px solid #10b981;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: #f8fafc;
}

.pr-hook-disclaimer {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 1.5rem;
  line-height: 1.4;
}

.pr-hook-photo-upload {
  margin-top: 1rem;
}

.pr-hook-file-input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.pr-hook-file-label {
  display: inline-block;
  cursor: pointer;
  color: #10b981;
  font-weight: 600;
  text-decoration: underline;
  padding: 0.5rem;
}

.pr-hook-file-label:focus-within {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

.pr-hook-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .pr-hook-features ul {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.pr-hook-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cbd5e1;
  font-weight: 500;
}

.pr-hook-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
}

.pr-hook-result-cta {
  background-color: #334155;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  margin-top: 2rem;
}

.pr-hook-result-cta h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

.pr-hook-result-cta p {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

/* Sticky Mobile CTA */
.pr-hook-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #0f172a;
  border-top: 1px solid #334155;
  padding: 0.75rem;
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 9999;
}

.pr-hook-sticky.is-visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .pr-hook-sticky {
    display: none !important;
  }
}

.pr-hook-sticky-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.pr-hook-sticky-dismiss {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
}

/* PLATEROVER PLAY BUTTON HOVER CONTRAST FIX */
#platerover-conversion-hook-v1 a.pr-hook-btn-primary:hover,
#platerover-conversion-hook-v1 a.pr-hook-btn-primary:focus-visible {
  color: #022c22 !important;
  -webkit-text-fill-color: #022c22 !important;
}

/* PLATEROVER ORIGINAL PLAY BUTTON HOVER FIX */
#root a.btn.btn-primary:hover,
#root a.btn.btn-primary:focus-visible,
#root a.btn-primary:hover,
#root a.btn-primary:focus-visible {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}
