/* ============================================
   $DNS — DID NOT SELL
   Windows XP / pixelated style
   ============================================ */

:root {
  --xp-blue: #0a3df0;
  --xp-blue-dark: #001a8a;
  --xp-blue-light: #4e7ffd;
  --xp-red: #ff2a2a;
  --xp-white: #f0f0f0;
  --xp-gray: #d4d0c8;
  --xp-shadow: #808080;
  --pixel: 'Press Start 2P', monospace;
  --terminal: 'VT323', monospace;
}

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

html, body {
  height: 100%;
  width: 100%;
  background: var(--xp-white);
  font-family: var(--terminal);
  color: var(--xp-blue);
  overflow-x: hidden;
  image-rendering: pixelated;
  -webkit-font-smoothing: none;
  font-smooth: never;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: linear-gradient(180deg, var(--xp-blue-light) 0%, var(--xp-blue) 50%, var(--xp-blue-dark) 100%);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 2px solid #000;
  flex-shrink: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  image-rendering: pixelated;
  filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.5));
}

.brand-name {
  font-family: var(--pixel);
  color: #fff;
  font-size: 22px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 #000;
}

.buy-btn {
  font-family: var(--pixel);
  background: #fff;
  color: #000;
  text-decoration: none;
  padding: 14px 38px;
  font-size: 14px;
  letter-spacing: 2px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #404040;
  border-bottom: 2px solid #404040;
  box-shadow: 3px 3px 0 #000;
  transition: transform 0.05s linear;
}

.buy-btn:hover {
  background: #ffe;
}

.buy-btn:active {
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #000;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--xp-blue);
  color: #fff;
  height: 38px;
  overflow: hidden;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee.bottom {
  margin-top: auto;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 40s linear infinite;
  gap: 60px;
  padding-left: 60px;
}

.marquee-track span {
  font-family: var(--pixel);
  font-size: 13px;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   CONTENT
   ============================================ */
.content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 60px;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

/* LEFT — pfp */
.left-panel {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pfp-frame {
  width: 100%;
  max-width: 480px;
  background: var(--xp-gray);
  padding: 8px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  border-right: 3px solid #404040;
  border-bottom: 3px solid #404040;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.4);
  overflow: hidden;
  line-height: 0;
}

.pfp-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  image-rendering: pixelated;
  border-top: 2px solid #404040;
  border-left: 2px solid #404040;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

/* RIGHT — info */
.right-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 640px;
}

.title {
  font-family: var(--pixel);
  font-size: 64px;
  letter-spacing: 4px;
  color: var(--xp-blue);
  text-shadow:
    3px 3px 0 var(--xp-red),
    6px 6px 0 #000;
  margin-bottom: 4px;
}

.subtitle {
  font-family: var(--pixel);
  font-size: 14px;
  color: #000;
  letter-spacing: 3px;
  margin-bottom: 4px;
}

/* CA row */
.ca-row {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-top: 3px solid #404040;
  border-left: 3px solid #404040;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  outline: 2px solid var(--xp-blue);
}

.ca-row input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--terminal);
  font-size: 22px;
  color: var(--xp-blue);
  padding: 12px 16px;
  letter-spacing: 1px;
  outline: none;
  font-weight: bold;
}

.copy-btn {
  font-family: var(--pixel);
  background: var(--xp-blue);
  color: #fff;
  border: none;
  padding: 0 28px;
  font-size: 13px;
  letter-spacing: 2px;
  cursor: pointer;
  border-top: 2px solid var(--xp-blue-light);
  border-left: 2px solid var(--xp-blue-light);
  border-right: 2px solid var(--xp-blue-dark);
  border-bottom: 2px solid var(--xp-blue-dark);
  text-shadow: 1px 1px 0 #000;
}

.copy-btn:active {
  border-top: 2px solid var(--xp-blue-dark);
  border-left: 2px solid var(--xp-blue-dark);
  border-right: 2px solid var(--xp-blue-light);
  border-bottom: 2px solid var(--xp-blue-light);
}

/* Socials */
.socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.social {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--xp-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  border-top: 2px solid var(--xp-blue-light);
  border-left: 2px solid var(--xp-blue-light);
  border-right: 2px solid var(--xp-blue-dark);
  border-bottom: 2px solid var(--xp-blue-dark);
  box-shadow: 3px 3px 0 #000;
  transition: transform 0.05s linear;
}

.social svg {
  width: 22px;
  height: 22px;
  display: block;
}

.social:hover { background: var(--xp-blue-light); }
.social:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #000;
  border-top: 2px solid var(--xp-blue-dark);
  border-left: 2px solid var(--xp-blue-dark);
  border-right: 2px solid var(--xp-blue-light);
  border-bottom: 2px solid var(--xp-blue-light);
}

/* Headline */
.headline {
  font-family: var(--terminal);
  font-size: 26px;
  color: var(--xp-red);
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.15);
  border-top: 2px solid var(--xp-blue);
  padding-top: 14px;
  margin-top: 6px;
}

/* Body text */
.body-text {
  font-family: var(--terminal);
  font-size: 22px;
  color: var(--xp-blue);
  line-height: 1.25;
  letter-spacing: 0.5px;
  font-weight: bold;
}

/* Play button — sits inline with X social */
.play-btn {
  display: inline-flex;
  align-items: center;
  height: 52px;
  font-family: var(--pixel);
  background: var(--xp-red);
  color: #fff;
  text-decoration: none;
  padding: 0 20px;
  font-size: 12px;
  letter-spacing: 2px;
  border-top: 2px solid #ff8080;
  border-left: 2px solid #ff8080;
  border-right: 2px solid #800000;
  border-bottom: 2px solid #800000;
  box-shadow: 3px 3px 0 #000;
  text-shadow: 2px 2px 0 #000;
  transition: transform 0.05s linear;
  animation: pulse-red 1.4s ease-in-out infinite;
  white-space: nowrap;
}

.play-btn:hover {
  background: #ff5050;
}

.play-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #000;
  border-top: 2px solid #800000;
  border-left: 2px solid #800000;
  border-right: 2px solid #ff8080;
  border-bottom: 2px solid #ff8080;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 3px 3px 0 #000, 0 0 0 0 rgba(255, 42, 42, 0.6); }
  50% { box-shadow: 3px 3px 0 #000, 0 0 0 10px rgba(255, 42, 42, 0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .content {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
  .title { font-size: 42px; }
  .brand-name { font-size: 16px; }
  .brand-logo { width: 40px; height: 40px; }
  .buy-btn { padding: 10px 22px; font-size: 11px; }
  .body-text { font-size: 18px; }
  .headline { font-size: 20px; }
  .ca-row input { font-size: 16px; }
}
