/* ===================================
   SCAMERA.CSS - early 2000s chaos
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Impact&family=Comic+Neue:wght@400;700&family=VT323&family=Courier+Prime:wght@400;700&display=swap');

:root {
  --red: #ff0000;
  --yellow: #ff6600; 
  --blue: #000000;  
  --green: #ff6600;   
  --orange: #ff6600;
  --black: #000000;
  --white: #ffffff;
  --gray: #cccccc;
  --bg: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  font-family: 'Comic Neue', cursive;
  color: var(--black);
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='8' fill='none' stroke='%23ff6600' stroke-width='2'/%3E%3Ccircle cx='10' cy='10' r='2' fill='%23ff6600'/%3E%3C/svg%3E") 10 10, crosshair;
}

/* CURSOR TRAIL */
#trailCanvas {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  width: 100%;
  height: 100%;
}

/* MARQUEE BARS */
.marquee-bar {
  width: 100%;
  padding: 6px 0;
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 1px;
  z-index: 100;
}

.top-bar {
  position: sticky;
  top: 0;
  background: var(--black);
  color: var(--yellow);
  border-bottom: 3px solid var(--orange);
  z-index: 200;
}

.bottom-bar {
  background: var(--black);
  color: var(--yellow);
  border-top: 3px solid var(--orange);
  margin-top: 0;
}

/* POPUP WINDOWS */
.popup {
  position: fixed;
  width: 200px;
  background: #d4d0c8;
  border: 2px solid #808080;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  box-shadow: 3px 3px 0 #000000;
  z-index: 500;
  font-size: 11px;
  font-family: 'Courier Prime', monospace;
  animation: popup-appear 0.3s ease;
}

@keyframes popup-appear {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #000000, #ff6600);
  color: white;
  padding: 3px 5px;
  font-size: 11px;
  font-weight: bold;
}

.popup-titlebar button {
  background: #d4d0c8;
  border: 1px solid #808080;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  cursor: pointer;
  font-size: 10px;
  width: 16px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  line-height: 1;
}

.popup-titlebar button:active {
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.popup-body {
  padding: 10px;
  text-align: center;
  background: #d4d0c8;
}

.popup-body p {
  margin: 4px 0;
  font-size: 11px;
}

.popup-btn {
  margin-top: 8px;
  background: #d4d0c8;
  border: 2px solid #808080;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  padding: 3px 12px;
  cursor: pointer;
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  font-weight: bold;
}

.popup-btn:active {
  border-top: 2px solid #808080;
  border-left: 2px solid #808080;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

/* MAIN WRAPPER */
.main-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
}

/* HEADER */
.site-header {
  text-align: center;
  padding: 24px 0 16px;
  border-bottom: 4px dashed var(--black);
  position: relative;
}

.blink-stars {
  font-size: 18px;
  color: var(--orange);
  animation: blink 0.8s step-start infinite;
  letter-spacing: 4px;
}

@keyframes blink {
  50% { opacity: 0; }
}

.logo-title {
  font-family: 'Impact', sans-serif;
  font-size: clamp(64px, 16vw, 140px);
  letter-spacing: -4px;
  line-height: 0.9;
  margin: 12px 0;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.logo-title span {
  display: inline-block;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.15);
}


.logo-title .s,
.logo-title .c,
.logo-title .a,
.logo-title .m,
.logo-title .e,
.logo-title .r,
.logo-title .aa {
  color: #000000;
  animation: none;
}

@keyframes rainbow-letter {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-4px) rotate(-2deg); }
  75% { transform: translateY(2px) rotate(2deg); }
}

.tagline-zone {
  margin: 8px 0;
}

.tagline-main {
  font-family: 'VT323', monospace;
  font-size: clamp(14px, 3vw, 22px);
  color: var(--black);
  text-transform: lowercase;
  letter-spacing: 1px;
}

.tagline-sub {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: #555;
  letter-spacing: 1px;
}

/* CAMERA ZONE */
.camera-zone {
  position: relative;
  padding: 32px 0 24px;
  text-align: center;
  border-bottom: 4px dashed var(--black);
}

.camera-label-top {
  font-family: 'Impact', sans-serif;
  font-size: clamp(13px, 3vw, 20px);
  background: var(--orange);
  border: 3px solid var(--black);
  display: inline-block;
  padding: 4px 16px;
  margin-bottom: 20px;
  transform: rotate(-1deg);
  box-shadow: 3px 3px 0 var(--black);
  letter-spacing: 1px;
  color: var(--black);
}

.camera-display {
  display: inline-block;
  max-width: 600px; 
  width: 100%;
}

.camera-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.cam-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.cam-img.active {
  opacity: 1;
}

.camera-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.cam-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 6px 16px;
  font-size: 18px;
  cursor: pointer;
  font-family: 'Impact', sans-serif;
  transition: background 0.1s;
}

.cam-btn:hover {
  background: var(--orange);
}

.cam-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  background: var(--gray);
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background 0.2s;
}

.dot.active {
  background: var(--orange);
}

.camera-specs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.spec-item {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  border: 2px solid var(--black);
  padding: 3px 10px;
  background: var(--white);
  box-shadow: 2px 2px 0 var(--black);
}

/* SIDE BADGES */
.side-badge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.left-badge {
  left: 0;
}

.right-badge {
  right: 0;
}

.badge-inner {
  width: 80px;
  height: 80px;
  background: var(--orange);
  border: 3px solid var(--black);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: spin-slow 8s linear infinite;
  box-shadow: 3px 3px 0 var(--black);
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.badge-text {
  font-family: 'Impact', sans-serif;
  font-size: 9px;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1.1;
}

.badge-highlight {
  font-family: 'Impact', sans-serif;
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.badge-sub {
  font-family: 'Comic Neue', cursive;
  font-size: 8px;
  color: var(--black);
}

/* AD STRIP */
.ad-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 0;
  background: var(--black);
  color: var(--orange);
  font-family: 'Impact', sans-serif;
  font-size: clamp(14px, 3vw, 20px);
  letter-spacing: 2px;
  overflow: hidden;
}

.ad-item {
  flex-shrink: 0;
}

.blink-fast {
  animation: blink 0.6s step-start infinite;
}

/* CONTRACT SECTION */
.contract-section {
  padding: 40px 0 32px;
  text-align: center;
  border-bottom: 4px dashed var(--black);
}

.contract-header {
  margin-bottom: 24px;
}

.contract-title {
  font-family: 'VT323', monospace;
  font-size: clamp(28px, 6vw, 52px);
  letter-spacing: 2px;
  text-transform: lowercase;
}

.contract-sub {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.contract-box {
  display: flex;
  justify-content: center;
}

.contract-inner {
  background: var(--black);
  padding: 20px 24px;
  box-shadow: 6px 6px 0 var(--orange);
  max-width: 600px;
  width: 100%;
}

.contract-label {
  font-family: 'Courier Prime', monospace;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-align: left;
}

.contract-address-wrap {
  display: flex;
  gap: 0;
}

.contract-input {
  flex: 1;
  background: #111;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-right: none;
  padding: 12px 14px;
  font-family: 'Courier Prime', monospace;
  font-size: clamp(10px, 2vw, 14px);
  letter-spacing: 1px;
  outline: none;
  cursor: default;
  min-width: 0;
}

.copy-btn {
  background: var(--orange);
  color: var(--black);
  border: 2px solid var(--orange);
  padding: 12px 20px;
  cursor: pointer;
  font-family: 'Impact', sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.1s, color 0.1s;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--orange);
}

.copy-btn:active {
  transform: translateY(2px);
}

.copy-confirm {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  color: var(--orange);
  margin-top: 10px;
  text-align: left;
  opacity: 0;
  transition: opacity 0.3s;
  height: 20px;
}

.copy-confirm.show {
  opacity: 1;
}

.contract-disclaimer {
  margin-top: 20px;
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: #888;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* WHY SECTION */
.why-section {
  padding: 40px 0 32px;
  border-bottom: 4px dashed var(--black);
}

.why-title {
  font-family: 'VT323', monospace;
  font-size: clamp(28px, 6vw, 52px);
  letter-spacing: 2px;
  text-transform: lowercase;
  margin-bottom: 24px;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.why-card {
  border: 3px solid var(--black);
  padding: 16px;
  box-shadow: 4px 4px 0 var(--black);
  background: var(--white);
  transition: transform 0.15s, box-shadow 0.15s;
}

.why-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black);
}

.why-card:nth-child(1) { border-color: var(--orange); box-shadow: 4px 4px 0 var(--orange); }
.why-card:nth-child(2) { border-color: var(--black); box-shadow: 4px 4px 0 var(--black); }
.why-card:nth-child(3) { border-color: var(--orange); box-shadow: 4px 4px 0 var(--orange); }
.why-card:nth-child(4) { border-color: var(--black); box-shadow: 4px 4px 0 var(--black); }

.why-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.why-text {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 40px 0 32px;
  border-bottom: 4px dashed var(--black);
}

.test-title {
  font-family: 'VT323', monospace;
  font-size: clamp(24px, 5vw, 44px);
  text-transform: lowercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 24px;
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.test-card {
  border: 3px solid var(--black);
  padding: 16px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--black);
  position: relative;
}

.test-card::before {
  content: '"';
  font-family: 'Impact', sans-serif;
  font-size: 60px;
  color: var(--orange);
  position: absolute;
  top: -8px;
  left: 10px;
  line-height: 1;
  z-index: 0;
}

.test-avatar {
  font-size: 28px;
  margin-bottom: 6px;
}

.test-name {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: var(--orange);
  text-decoration: underline;
  margin-bottom: 8px;
  word-break: break-all;
}

.test-text {
  font-family: 'Comic Neue', cursive;
  font-size: 13px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.test-stars {
  margin-top: 8px;
  font-size: 12px;
}

/* CTA SECTION */
.cta-section {
  padding: 40px 0;
  text-align: center;
  border-bottom: 4px dashed var(--black);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-big {
  font-family: 'Impact', sans-serif;
  font-size: clamp(32px, 8vw, 72px);
  text-transform: uppercase;
  display: block;
  animation: shake 0.5s infinite;
}

@keyframes shake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-1deg); }
  75% { transform: rotate(1deg); }
}

.cta-small {
  font-family: 'Courier Prime', monospace;
  font-size: clamp(12px, 2.5vw, 16px);
  color: #666;
}

.cta-btn {
  background: var(--orange);
  color: var(--black);
  border: 4px solid var(--black);
  padding: 16px 48px;
  font-family: 'Impact', sans-serif;
  font-size: clamp(18px, 4vw, 28px);
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--black);
  transition: transform 0.1s, box-shadow 0.1s;
  animation: pulse-btn 1.5s ease-in-out infinite;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 6px 6px 0 var(--black); }
  50% { box-shadow: 8px 8px 0 var(--orange), 8px 8px 0 var(--black); }
}

.cta-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--black);
}

.cta-btn:active {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--black);
}

/* FOOTER */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 24px 0;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.footer-logo {
  font-family: 'Impact', sans-serif;
  font-size: 36px;
  color: var(--orange);
  letter-spacing: 4px;
  margin-bottom: 12px;
}

.footer-text {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: #888;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.f-badge {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  border: 1px solid #444;
  padding: 3px 10px;
  color: #aaa;
  letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .side-badge {
    display: none;
  }

  .popup {
    display: none;
  }

  .ad-strip {
    gap: 10px;
    font-size: 13px;
  }

  .why-grid, .test-grid {
    grid-template-columns: 1fr;
  }

  .contract-inner {
    padding: 14px;
  }
}

/* SCANLINE OVERLAY */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.015) 2px,
    rgba(0,0,0,0.015) 4px
  );
  pointer-events: none;
  z-index: 9998;
}
