@charset "UTF-8";

:root {
  --bg: #f0f2f5;
  --surface: #ffffff;
  --surface2: #e8eaee;
  --text: #0f1923;
  --text-muted: #6b7280;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #dbeafe;
  --accent: #7c3aed;
  --red: #dc2626;
  --pink: #e1306c;
  --green: #16a34a;
  --orange: #ea580c;
  --yellow: #d97706;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 14px;
  --radius-sm: 8px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── HEADER ── */
.header {
  text-align: center;
  padding: 40px 24px 20px;
  position: relative;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.logo-icon {
  width: 400px;
  height: auto;
  object-fit: contain;
}

.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.tagline {
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 6px;
}

.tagline strong { font-weight: 700; }

.sub-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ── CTA BUTTONS ── */
.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 28px 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid #d1d5db;
  box-shadow: var(--shadow);
}

/* ── SOCIAL LINKS GRID ── */
.section {
  padding: 36px 24px 0;
  max-width: 680px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  background: var(--surface);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.82rem;
  box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  text-align: center;
  line-height: 1.3;
}

.social-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.social-card.youtube-hq:hover { border-color: #ff0000; }
.social-card.youtube-tv:hover { border-color: #ff0000; }
.social-card.instagram:hover  { border-color: var(--pink); }
.social-card.facebook:hover   { border-color: #1877f2; }
.social-card.tiktok:hover     { border-color: #000; }
.social-card.ebay:hover       { border-color: var(--blue); }
.social-card.whatnot:hover    { border-color: var(--accent); }
.social-card.discord:hover    { border-color: #5865f2; }

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon svg { width: 22px; height: 22px; }
.social-icon img { width: 22px; height: 22px; object-fit: contain; }

.icon-yt { background: #ff0000; }
.icon-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.icon-fb { background: #1877f2; }
.icon-tt { background: #000; }
.icon-eb { background: #fff; border: 1.5px solid #e5e7eb; }
.icon-wn { background: var(--accent); }
.icon-dc { background: #5865f2; }

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 36px 24px 0;
  max-width: 680px;
  margin: 0 auto;
}

.divider hr { flex: 1; border: none; border-top: 1.5px solid #d1d5db; }

.divider span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.divider strong { color: var(--blue); }

/* ── CARD STRIP ── */
.cards-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 20px 24px 8px;
  max-width: 680px;
  margin: 0 auto;
  scrollbar-width: none;
}

.cards-strip::-webkit-scrollbar { display: none; }

.card-img {
  flex-shrink: 0;
  width: 110px;
  height: 155px;
  border-radius: 10px;
  background: #d1d5db;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  position: relative;
  transition: transform 0.2s;
}

.card-img:hover { transform: translateY(-4px) rotate(-1deg); }

.card-img .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, #e0e7ff, #ddd6fe);
}

/* ── START COLLECTING ── */
.start-section {
  text-align: center;
  padding: 36px 24px 0;
  max-width: 680px;
  margin: 0 auto;
}

.start-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s;
}

.start-link:hover { color: var(--blue); }

.start-link .arrow {
  font-size: 1.6rem;
  transition: transform 0.2s;
}

.start-link:hover .arrow { transform: translateX(6px); }

/* ── VIDEO SECTIONS ── */
.videos-section {
  padding: 40px 24px 0;
  max-width: 680px;
  margin: 0 auto;
}

.channel-block {
  margin-bottom: 36px;
}

.channel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.channel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff0000;
  box-shadow: 0 0 8px rgba(255,0,0,0.5);
  flex-shrink: 0;
}

.channel-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.channel-name span { color: var(--blue); }

.channel-link {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.15s;
}

.channel-link:hover { opacity: 0.7; }

.videos-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 480px) {
  .videos-row { grid-template-columns: repeat(3, 1fr); }
}

.video-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: transform 0.15s, box-shadow 0.15s;
  border: 1.5px solid transparent;
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: #ff0000;
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.15s;
}

.video-card:hover .video-play { opacity: 1; }

.video-play-icon {
  width: 36px;
  height: 36px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-icon svg { width: 16px; height: 16px; fill: #fff; margin-left: 2px; }

.video-info { padding: 10px; }

.video-title {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.video-date {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: 'Space Mono', monospace;
}

.social-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 16px;
}

/* ── SKELETON ── */
.skeleton {
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.video-thumb.skeleton { border-radius: 0; }
.skel-title  { height: 12px; margin-bottom: 6px; }
.skel-title-2 { height: 12px; width: 70%; }
.skel-date   { height: 10px; width: 50%; margin-top: 6px; }

.load-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.load-error a { color: var(--blue); text-decoration: none; font-weight: 600; }

/* ── FOOTER ── */
.footer {
  text-align: center;
  padding: 48px 24px 40px;
  color: var(--text-muted);
  font-size: 0.78rem;
}

/* ── FADE IN ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in   { animation: fadeUp 0.5s ease both; }
.fade-in-1 { animation-delay: 0.05s; }
.fade-in-2 { animation-delay: 0.12s; }
.fade-in-3 { animation-delay: 0.2s; }
.fade-in-4 { animation-delay: 0.28s; }
.fade-in-5 { animation-delay: 0.36s; }

/* ── MOBILE ── */
@media (max-width: 480px) {
.logo-icon {
  width: 240px;
  height: auto;
}

  .logo-text {
    font-size: 1.3rem;
  }

  .header {
    padding: 24px 16px 12px;
  }

  .tagline {
    font-size: 1.05rem;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .cta-row {
    flex-direction: column;
    align-items: center;
    padding: 20px 24px 0;
  }

  .videos-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .start-link {
    font-size: 1.6rem;
  }
}