/* ============================================================
   Mossad Corporation nd Co — ironic 2010-style landing page
   ============================================================ */

:root {
  --neon-red: #ff0000;
  --neon-yellow: #ffff00;
  --neon-green: #00ff00;
  --neon-blue: #00ccff;
  --dark: #0d0d0d;
  --gray: #222;
  --text: #f0f0f0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Comic Sans MS", "Chalkboard SE", "Marker Felt", cursive, sans-serif;
  color: var(--text);
  background: var(--dark) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Crect width='40' height='40' fill='%23111'/%3E%3Ccircle cx='20' cy='20' r='1' fill='%23333'/%3E%3C/svg%3E");
  line-height: 1.5;
  overflow-x: hidden;
  /* By default every interactive element is "dead" except the CTA and popup */
  pointer-events: none;
}

/* Re-enable pointer events for the only clickable thing + popup */
.cta-button,
.fullscreen-popup,
.fullscreen-popup * {
  pointer-events: auto;
}

/* Top marquee bar */
.top-marquee {
  background: linear-gradient(90deg, var(--neon-red), var(--neon-yellow));
  color: #000;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 3px solid #fff;
  pointer-events: none;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 12s linear infinite;
}

.marquee-track span {
  padding: 0 2rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
.site-header {
  text-align: center;
  padding: 1.5rem 1rem;
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
  border-bottom: 4px dashed var(--neon-yellow);
}

.logo {
  max-width: 90%;
  width: 420px;
  height: auto;
  filter: drop-shadow(0 0 12px var(--neon-red));
}

.slogan {
  margin-top: 0.75rem;
  font-size: 1.1rem;
  color: var(--neon-green);
  text-shadow: 0 0 5px var(--neon-green);
  animation: blink 1.2s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0.4; }
}

/* Main content wrapper */
.main-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
}

/* Hero */
.hero {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #220000 0%, #001122 100%);
  border: 6px ridge var(--neon-yellow);
  box-shadow: 0 0 25px rgba(255, 0, 0, 0.4);
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  max-width: 720px;
  border: 4px solid #fff;
  box-shadow: 0 0 15px var(--neon-blue);
}

.hero-title {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2rem, 7vw, 4rem);
  margin: 1rem 0 0.25rem;
  color: var(--neon-yellow);
  text-transform: uppercase;
  text-shadow: 3px 3px 0 var(--neon-red), -1px -1px 0 #fff;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: #ccc;
  margin: 0 0 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ff3333 0%, #990000 100%);
  border: 4px outset #ff6666;
  border-radius: 12px;
  box-shadow: 0 6px 0 #660000, 0 10px 20px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  animation: pulse 1.5s ease-in-out infinite;
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 0 #660000, 0 12px 25px rgba(255, 0, 0, 0.6);
  outline: 3px solid var(--neon-yellow);
}

.cta-button:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 #660000;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.small-print {
  font-size: 0.75rem;
  color: #888;
  margin-top: 1rem;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature-card {
  background: #151515;
  border: 3px groove var(--neon-green);
  padding: 1rem;
  text-align: center;
  box-shadow: inset 0 0 15px rgba(0, 255, 0, 0.15);
}

.feature-card h2 {
  font-family: Impact, "Arial Black", sans-serif;
  color: var(--neon-green);
  font-size: 1.3rem;
  margin: 0.5rem 0;
}

.feature-icon {
  width: 80px;
  height: 80px;
}

/* Testimonials */
.testimonials {
  background: #111;
  border-left: 8px solid var(--neon-red);
  border-right: 8px solid var(--neon-red);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.testimonials h2 {
  text-align: center;
  color: var(--neon-yellow);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.6rem;
  margin-top: 0;
}

blockquote {
  margin: 1rem 0;
  padding: 1rem;
  background: #1a1a1a;
  border: 2px dotted #555;
}

blockquote p {
  margin: 0 0 0.5rem;
  font-style: italic;
}

cite {
  color: #aaa;
  font-size: 0.9rem;
}

/* Guarantee */
.guarantee {
  text-align: center;
  padding: 2rem 1rem;
  background: radial-gradient(circle at center, #330000 0%, #000 70%);
  border: 5px double var(--neon-yellow);
  margin-bottom: 2rem;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--neon-green);
  color: #000;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  box-shadow: 0 0 20px var(--neon-green);
  margin-bottom: 0.5rem;
}

.guarantee h2 {
  color: var(--neon-green);
  font-family: Impact, "Arial Black", sans-serif;
  margin: 0.5rem 0;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #000;
  border-top: 3px solid #444;
  font-size: 0.85rem;
  color: #777;
}

.tiny {
  font-size: 0.7rem;
  color: #555;
}

/* Fullscreen random popup */
.fullscreen-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 1rem;
}

.fullscreen-popup.is-visible {
  display: flex;
}

.popup-image {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  object-fit: contain;
  animation: popupZoom 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popupZoom {
  from {
    transform: scale(0.1);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  font-size: 1.6rem;
  color: #fff;
  background: var(--neon-red);
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
}

.popup-close:hover,
.popup-close:focus {
  background: #cc0000;
  outline: 3px solid var(--neon-yellow);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .site-header {
    padding: 1rem 0.5rem;
  }

  .hero {
    padding: 1rem 0.5rem;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .marquee-track {
    animation-duration: 8s;
  }

  .popup-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}
