/* === TodayDaysOld.com - Dual Theme === */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Inter:wght@400;600;700&family=JetBrains+Mono:wght@400;700&family=Oswald:wght@400;700&family=Roboto+Mono:wght@400;700&family=Roboto:wght@400;700&display=swap');

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

/* ============================================
   THEME SWITCHER
   ============================================ */

.theme-switcher {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  display: flex;
  gap: 6px;
  padding: 6px;
  border-radius: 12px;
  transition: background 0.4s, border-color 0.4s;
}

.theme-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s;
  position: relative;
}

.theme-btn:hover {
  transform: scale(1.1);
}

.theme-btn.active {
  transform: scale(1.05);
}

.theme-btn .btn-label {
  display: none;
  position: absolute;
  left: 52px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  pointer-events: none;
}

.theme-btn:hover .btn-label {
  display: block;
}

/* RadioShack button */
.theme-btn-radioshack {
  background: #cc0000;
  color: #ffd700;
}

.theme-btn-radioshack.active {
  border-color: #ffd700;
  box-shadow: 0 0 8px rgba(204, 0, 0, 0.5);
}

.theme-btn-radioshack .btn-label {
  background: #cc0000;
  color: #fff;
}

/* Trading Card button */
.theme-btn-tradingcard {
  background: #1a1a2e;
  color: #a855f7;
}

.theme-btn-tradingcard.active {
  border-color: #a855f7;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
}

.theme-btn-tradingcard .btn-label {
  background: #1a1a2e;
  color: #a855f7;
}

/* ============================================
   COMMON TRANSITIONS
   ============================================ */

body,
.site-header,
nav,
main,
footer,
.featured-post,
.featured-inner,
.featured-image,
.featured-content,
.archive-card,
.about-page,
.post-page,
a {
  transition: all 0.4s ease;
}

/* ============================================
   RADIOSHACK THEME
   ============================================ */

body.theme-radioshack {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f5f0e8;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Theme switcher bg */
.theme-radioshack .theme-switcher {
  background: rgba(245, 240, 232, 0.95);
  border: 2px solid #1a1a1a;
}

/* Header */
.theme-radioshack .site-header {
  background: #cc0000;
  color: #ffffff;
  text-align: center;
  padding: 1rem 1rem 0.5rem;
  padding-left: 120px;
  border-bottom: 6px solid #1a1a1a;
  position: relative;
}

.theme-radioshack .site-header::after {
  content: '';
  display: block;
  height: 4px;
  background: repeating-linear-gradient(90deg, #ffd700 0px, #ffd700 10px, transparent 10px, transparent 20px);
  margin-top: 0.5rem;
}

.theme-radioshack .site-title {
  font-family: 'Oswald', Impact, sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.3);
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: unset;
  animation: none;
  filter: none;
}

.theme-radioshack .site-title span { color: #ffd700; }

.theme-radioshack .site-tagline {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-top: 0.25rem;
  color: #ffffff;
}

/* Nav */
.theme-radioshack nav {
  background: #1a1a1a;
  padding: 0.6rem 1rem;
  text-align: center;
  border-bottom: 3px solid #cc0000;
}

.theme-radioshack nav a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 1rem;
  padding: 0.25rem 0.5rem;
}

.theme-radioshack nav a:hover { background: #cc0000; }

/* Main */
.theme-radioshack main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Featured post */
.theme-radioshack .featured-post {
  background: #ffffff;
  border: 3px solid #1a1a1a;
  position: relative;
  margin-bottom: 2rem;
  border-radius: 0;
}

.theme-radioshack .featured-badge {
  display: block;
  position: absolute;
  top: -14px;
  left: 20px;
  background: #cc0000;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.2rem 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: rotate(-2deg);
  z-index: 2;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.2);
  border-radius: 0;
}

.theme-radioshack .featured-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.theme-radioshack .featured-image {
  background: linear-gradient(135deg, #cc0000 0%, #ff4444 50%, #ffd700 100%);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 3px solid #1a1a1a;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.theme-radioshack .starburst {
  width: 200px;
  height: 200px;
  background: #ffd700;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}

.theme-radioshack .starburst-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #cc0000;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
  transform: rotate(-10deg);
}

@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.05) rotate(2deg); }
}

/* Hide trading card elements in radioshack */
.theme-radioshack .card-category,
.theme-radioshack .rarity-badge,
.theme-radioshack .card-stats,
.theme-radioshack .issue-circle {
  display: none;
}

.theme-radioshack .featured-content {
  padding: 2rem;
}

.theme-radioshack .post-number {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.75rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px dotted #666666;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.theme-radioshack .featured-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.theme-radioshack .price-tag {
  display: inline-block;
  background: #ffd700;
  color: #1a1a1a;
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border: 2px solid #1a1a1a;
  margin-bottom: 1rem;
}

.theme-radioshack .excerpt {
  font-size: 0.95rem;
  color: #666666;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.theme-radioshack .read-more {
  display: inline-block;
  background: #cc0000;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  border: 2px solid #1a1a1a;
  border-radius: 0;
  box-shadow: 3px 3px 0 #1a1a1a;
}

.theme-radioshack .read-more:hover {
  background: #1a1a1a;
  color: #ffd700;
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 #1a1a1a;
}

/* Archive */
.theme-radioshack .section-header {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1a1a1a;
  border-bottom: 4px solid #cc0000;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.theme-radioshack .section-header::after { display: none; }

.theme-radioshack .archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.theme-radioshack .archive-card {
  background: #ffffff;
  border: 2px solid #1a1a1a;
  padding: 1.5rem;
  position: relative;
  border-radius: 0;
}

.theme-radioshack .archive-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 #1a1a1a;
}

.theme-radioshack .card-date {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.7rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.theme-radioshack .archive-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 0.5rem 0;
}

.theme-radioshack .archive-card h3 a {
  color: #1a1a1a;
  text-decoration: none;
}

.theme-radioshack .archive-card h3 a:hover { color: #cc0000; }

.theme-radioshack .card-excerpt {
  font-size: 0.85rem;
  color: #666666;
}

.theme-radioshack .new-badge {
  display: block;
  position: absolute;
  top: -8px;
  right: 10px;
  background: #cc0000;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.1rem 0.5rem;
  text-transform: uppercase;
  border-radius: 0;
}

/* Hide mini-rarity in radioshack */
.theme-radioshack .mini-rarity { display: none; }

/* About page */
.theme-radioshack .about-page {
  background: #ffffff;
  border: 3px solid #1a1a1a;
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 0;
}

.theme-radioshack .about-page::before { display: none; }

.theme-radioshack .about-page h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: #cc0000;
  border-bottom: 4px solid #cc0000;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  background: none;
  -webkit-text-fill-color: unset;
}

.theme-radioshack .about-page h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  margin: 1.5rem 0 0.5rem;
  color: #1a1a1a;
}

.theme-radioshack .about-page p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #1a1a1a;
}

.theme-radioshack .contact-box {
  background: #f5f0e8;
  border: 2px dashed #cc0000;
  padding: 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
  border-radius: 0;
}

.theme-radioshack .contact-box a {
  color: #cc0000;
  font-weight: 700;
  font-family: 'Roboto Mono', monospace;
}

/* Post page */
.theme-radioshack .post-page {
  background: #ffffff;
  border: 3px solid #1a1a1a;
  padding: 2.5rem;
  max-width: 750px;
  margin: 0 auto;
  border-radius: 0;
}

.theme-radioshack .post-page::before { display: none; }

.theme-radioshack .post-meta {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.75rem;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px dotted #666666;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.theme-radioshack .post-page h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.theme-radioshack .post-body p {
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1.05rem;
  color: #1a1a1a;
}

.theme-radioshack .post-body ul {
  margin: 1rem 0 1rem 1.5rem;
  line-height: 1.8;
  color: #1a1a1a;
}

.theme-radioshack .post-body a { color: #cc0000; }

.theme-radioshack .post-body strong { color: #1a1a1a; }

.theme-radioshack .back-link {
  display: inline-block;
  margin-top: 2rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: #cc0000;
  text-decoration: none;
  letter-spacing: 1px;
}

.theme-radioshack .back-link:hover { color: #1a1a1a; }

/* Footer */
.theme-radioshack .site-footer {
  background: #1a1a1a;
  color: #e0ddd5;
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
  font-family: 'Roboto Mono', monospace;
  font-size: 0.8rem;
  border-top: 4px solid #cc0000;
}

.theme-radioshack .site-footer a { color: #ffd700; text-decoration: none; }


/* ============================================
   TRADING CARD THEME
   ============================================ */

body.theme-tradingcard {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #0f0f1a;
  color: #e5e7eb;
  line-height: 1.6;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 50%);
}

/* Theme switcher bg */
.theme-tradingcard .theme-switcher {
  background: rgba(15, 15, 26, 0.95);
  border: 2px solid rgba(168, 85, 247, 0.3);
}

/* Header */
.theme-tradingcard .site-header {
  text-align: center;
  padding: 2rem 1rem 1rem;
  padding-left: 120px;
  background: transparent;
  border-bottom: none;
}

.theme-tradingcard .site-header::after { display: none; }

.theme-tradingcard .site-title {
  font-family: 'Bangers', cursive;
  font-size: 3.5rem;
  letter-spacing: 3px;
  background: linear-gradient(135deg, #ff6b6b, #f97316, #ffd700, #4ecdc4, #a855f7);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: holoShift 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.3));
  text-shadow: none;
  text-transform: none;
}

@keyframes holoShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.theme-tradingcard .site-title span { color: inherit; -webkit-text-fill-color: transparent; }

.theme-tradingcard .site-tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

/* Nav */
.theme-tradingcard nav {
  text-align: center;
  padding: 0.5rem 1rem 1.5rem;
  background: transparent;
  border-bottom: none;
}

.theme-tradingcard nav a {
  color: #9ca3af;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 1rem;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
}

.theme-tradingcard nav a:hover {
  color: #ffd700;
  border-bottom-color: #ffd700;
  background: transparent;
}

/* Main */
.theme-tradingcard main {
  max-width: 950px;
  margin: 0 auto;
  padding: 1rem;
}

/* Featured post - card style */
.theme-tradingcard .featured-post {
  position: relative;
  margin: 0 auto 3rem;
  max-width: 600px;
  background: #1a1a2e;
  border-radius: 16px;
  padding: 3px;
  overflow: hidden;
  border: none;
}

.theme-tradingcard .featured-post::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(135deg, #ff6b6b, #f97316, #ffd700, #4ecdc4, #a855f7, #ff6b6b);
  background-size: 400% 400%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderHolo 5s ease-in-out infinite;
}

@keyframes borderHolo {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 0%; }
  50% { background-position: 100% 100%; }
  75% { background-position: 0% 100%; }
}

.theme-tradingcard .featured-badge { display: none; }
.theme-tradingcard .price-tag { display: none; }
.theme-tradingcard .starburst { display: none; }

.theme-tradingcard .featured-inner {
  display: block;
  background: #1a1a2e;
  border-radius: 13px;
  overflow: hidden;
  position: relative;
}

/* Holographic sheen */
.theme-tradingcard .featured-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.03) 45%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.03) 55%, transparent 60%);
  pointer-events: none;
  animation: sheen 3s ease-in-out infinite;
}

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

.theme-tradingcard .featured-image {
  background: linear-gradient(135deg, #a855f7 0%, #3b82f6 40%, #4ecdc4 100%);
  height: 250px;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-right: none;
  border-radius: 13px 13px 0 0;
}

.theme-tradingcard .card-category {
  display: block;
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.4);
  color: #ffffff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

.theme-tradingcard .rarity-badge {
  display: block;
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #1a1a2e;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.theme-tradingcard .issue-circle {
  display: flex;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.3);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
}

.theme-tradingcard .issue-num {
  font-family: 'Bangers', cursive;
  font-size: 2.5rem;
  color: #ffffff;
  line-height: 1;
}

.theme-tradingcard .issue-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.theme-tradingcard .featured-content {
  padding: 1.5rem;
}

.theme-tradingcard .post-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: none;
}

.theme-tradingcard .featured-content h2 {
  font-family: 'Bangers', cursive;
  font-size: 1.8rem;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0.5rem 0;
  text-transform: none;
}

.theme-tradingcard .excerpt {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.theme-tradingcard .card-stats {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.theme-tradingcard .stat { text-align: center; }

.theme-tradingcard .stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.theme-tradingcard .stat-value {
  font-family: 'Bangers', cursive;
  font-size: 1.2rem;
  color: #ffd700;
}

.theme-tradingcard .read-more {
  display: inline-block;
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.theme-tradingcard .read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
}

/* Archive / Collection */
.theme-tradingcard .section-header {
  font-family: 'Bangers', cursive;
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.5rem;
  border-bottom: none;
  padding-bottom: 0;
}

.theme-tradingcard .section-header::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #a855f7, #4ecdc4);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.theme-tradingcard .archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.theme-tradingcard .archive-card {
  background: #1a1a2e;
  border-radius: 12px;
  padding: 2px;
  position: relative;
  overflow: hidden;
  border: none;
}

.theme-tradingcard .archive-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, #a855f7, #3b82f6, #4ecdc4);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.theme-tradingcard .archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.2);
}

.theme-tradingcard .archive-card:hover::before { opacity: 1; }

.theme-tradingcard .archive-card-inner {
  background: #1a1a2e;
  border-radius: 10px;
  padding: 1.25rem;
  position: relative;
}

.theme-tradingcard .new-badge { display: none; }

.theme-tradingcard .mini-rarity {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #1a1a2e;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.55rem;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.theme-tradingcard .card-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: #9ca3af;
  margin-top: 0.5rem;
}

.theme-tradingcard .archive-card h3 {
  font-family: 'Bangers', cursive;
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0.4rem 0;
  text-transform: none;
}

.theme-tradingcard .archive-card h3 a {
  color: inherit;
  text-decoration: none;
}

.theme-tradingcard .card-excerpt {
  font-size: 0.8rem;
  color: #9ca3af;
  line-height: 1.6;
}

/* About page */
.theme-tradingcard .about-page {
  max-width: 650px;
  margin: 0 auto;
  background: #1a1a2e;
  border-radius: 16px;
  padding: 3px;
  position: relative;
  border: none;
}

.theme-tradingcard .about-page::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(135deg, #a855f7, #3b82f6, #4ecdc4);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.theme-tradingcard .about-inner {
  background: #1a1a2e;
  border-radius: 13px;
  padding: 2.5rem;
  position: relative;
}

.theme-tradingcard .about-page h1 {
  font-family: 'Bangers', cursive;
  font-size: 2.2rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ff6b6b, #ffd700, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  border-bottom: none;
  text-transform: none;
}

.theme-tradingcard .about-page h2 {
  font-family: 'Bangers', cursive;
  font-size: 1.3rem;
  color: #4ecdc4;
  letter-spacing: 1px;
  margin: 1.5rem 0 0.5rem;
  text-transform: none;
}

.theme-tradingcard .about-page p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: #e5e7eb;
}

.theme-tradingcard .contact-box {
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.theme-tradingcard .contact-box a {
  color: #ffd700;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  text-decoration: none;
}

/* Post page */
.theme-tradingcard .post-page {
  max-width: 700px;
  margin: 0 auto;
  background: #1a1a2e;
  border-radius: 16px;
  padding: 3px;
  position: relative;
  border: none;
}

.theme-tradingcard .post-page::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(135deg, #a855f7, #3b82f6, #4ecdc4);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.theme-tradingcard .post-inner {
  background: #1a1a2e;
  border-radius: 13px;
  padding: 2.5rem;
  position: relative;
}

.theme-tradingcard .post-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  border-bottom: none;
}

.theme-tradingcard .post-page h1 {
  font-family: 'Bangers', cursive;
  font-size: 2.2rem;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: none;
}

.theme-tradingcard .post-body p {
  margin-bottom: 1rem;
  line-height: 1.8;
  font-size: 1rem;
  color: #e5e7eb;
}

.theme-tradingcard .post-body ul {
  margin: 1rem 0 1rem 1.5rem;
  line-height: 1.8;
  color: #e5e7eb;
}

.theme-tradingcard .post-body a {
  color: #4ecdc4;
  text-decoration: none;
  border-bottom: 1px solid rgba(78, 205, 196, 0.3);
}

.theme-tradingcard .post-body a:hover { border-bottom-color: #4ecdc4; }

.theme-tradingcard .post-body strong { color: #ffffff; }

.theme-tradingcard .back-link {
  display: inline-block;
  margin-top: 2rem;
  color: #a855f7;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.theme-tradingcard .back-link:hover { color: #ffd700; }

/* Footer */
.theme-tradingcard .site-footer {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #9ca3af;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: transparent;
}

.theme-tradingcard .site-footer a {
  color: #ffd700;
  text-decoration: none;
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 700px) {
  .theme-radioshack .site-title { font-size: 1.8rem; }
  .theme-radioshack .featured-inner { grid-template-columns: 1fr; }
  .theme-radioshack .featured-image {
    min-height: 200px;
    border-right: none;
    border-bottom: 3px solid #1a1a1a;
  }
  .theme-tradingcard .site-title { font-size: 2.5rem; }
  .theme-tradingcard .featured-image { height: 180px; }

  .site-header { padding-left: 1rem !important; }
  .theme-switcher { position: static; margin: 0.5rem auto; justify-content: center; }
  nav a { margin: 0 0.5rem !important; font-size: 0.85rem !important; }
}
