/*
Theme Name: MAR10 Day
Theme URI: https://mar10day.com
Author: MAR10 Day
Author URI: https://mar10day.com
Description: Every Day is MAR10 Day - An unofficial Mario fan celebration theme.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mar10day
Tags: one-page, custom-menu, featured-images, dark
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --red:    #E52521;
  --blue:   #049CD8;
  --yellow: #FBD000;
  --white:  #FFFFFF;
  --dark:   #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --dark-5: #2a2a2a;
  --gray:   #888888;
  --gray-light: #cccccc;
  --font-main: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-pixel: 'Press Start 2P', 'Courier New', monospace;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.6);
  --shadow-colored: 0 4px 24px rgba(229,37,33,0.3);
  --transition: 0.25s ease;
  --max-w: 1200px;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--yellow);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

.section-title {
  font-family: var(--font-pixel);
  font-size: clamp(1.1rem, 3vw, 2rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.section-title span {
  background: linear-gradient(135deg, var(--red), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(229,37,33,0.4);
}

.btn-primary:hover {
  background: #c41e1b;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(229,37,33,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: #037ab3;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(4,156,216,0.4);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--dark);
}

.btn-yellow:hover {
  background: #e0ba00;
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding var(--transition);
}

.site-header.scrolled {
  padding: 0.6rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.site-logo a {
  color: var(--white);
}

.site-logo .logo-mar {
  color: var(--red);
}

.site-logo .logo-10 {
  color: var(--yellow);
}

.site-logo .logo-day {
  color: var(--white);
}

.site-nav ul {
  display: flex;
  gap: 0.25rem;
}

.site-nav a {
  color: var(--gray-light);
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  font-weight: 400;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--transition);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s steps(4);
}

.site-nav a:hover {
  color: var(--red);
  background: transparent;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(229,37,33,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(4,156,216,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(251,208,0,0.1) 0%, transparent 60%);
  z-index: 1;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(229,37,33,0.15);
  border: 1px solid rgba(229,37,33,0.3);
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-title .word-every  { color: var(--white); }
.hero-title .word-day    { color: var(--yellow); }
.hero-title .word-is     { color: var(--white); }
.hero-title .word-mar    { color: var(--red); }
.hero-title .word-10     {
  color: var(--blue);
  text-shadow: 0 0 40px rgba(4,156,216,0.5);
}
.hero-title .word-day2   { color: var(--yellow); }

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--gray);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gray-light);
  font-size: 1.1rem;
  transition: all var(--transition);
  background: rgba(255,255,255,0.04);
}

.hero-social a:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(229,37,33,0.15);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* =============================================
   COLOR ACCENT BAR
   ============================================= */
.color-bar {
  height: 4px;
  background: linear-gradient(90deg,
    var(--red) 0%,
    var(--red) 33.33%,
    var(--blue) 33.33%,
    var(--blue) 66.66%,
    var(--yellow) 66.66%,
    var(--yellow) 100%
  );
}

/* =============================================
   LORE SECTION
   ============================================= */
#lore {
  background: var(--dark-2);
  position: relative;
}

#lore::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229,37,33,0.4), transparent);
}

.lore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.lore-main h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.lore-main h2 span {
  color: var(--red);
}

.lore-main p {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.lore-main h3 {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.lore-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), transparent);
}

.timeline-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(229,37,33,0.15);
  border: 2px solid rgba(229,37,33,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.timeline-body {}

.timeline-year {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin: 0.2rem 0;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}


/* =============================================
   SHOP SECTION
   ============================================= */
#shop {
  background: var(--dark);
  position: relative;
}

#shop::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(4,156,216,0.4), transparent);
}

.shop-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.shop-search-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

.shop-search-wrap svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  pointer-events: none;
}

#shop-search {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 3rem;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

#shop-search:focus {
  outline: none;
  border-color: var(--blue);
}

#shop-search::placeholder {
  color: var(--gray);
}

.shop-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: var(--gray-light);
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(229,37,33,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-colored);
}

.product-card.hidden {
  display: none;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--dark-4);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-badge {
  font-family: var(--font-pixel);
  font-size: 0.45rem;
  letter-spacing: 0.05em;
}
.badge-games       { background: var(--red);    color: #fff; }
.badge-consoles    { background: var(--blue);   color: #fff; }
.badge-controllers { background: #9b59b6;       color: #fff; }
.badge-plushies    { background: #e91e8c;       color: #fff; }
.badge-merch       { background: var(--yellow); color: #000; }
.badge-soundtracks { background: #2ecc71;       color: #000; }

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--yellow);
}

.product-buy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  white-space: nowrap;
}

.product-buy:hover {
  background: #c41e1b;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(229,37,33,0.4);
}

.shop-no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray);
}

.shop-no-results .no-results-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.affiliate-disclosure {
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.6;
}

.affiliate-disclosure a {
  color: var(--blue);
}

/* =============================================
   MUSIC SECTION
   ============================================= */
#music {
  background: var(--dark-2);
  position: relative;
}

#music::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251,208,0,0.4), transparent);
}

.music-streaming-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.music-streaming-label {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.streaming-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.streaming-btn-apple {
  background: rgba(252, 60, 68, 0.12);
  border-color: rgba(252, 60, 68, 0.3);
  color: #fc3c44;
}

.streaming-btn-apple:hover {
  background: #fc3c44;
  color: #fff;
  transform: translateY(-2px);
}

.streaming-btn-spotify {
  background: rgba(29, 185, 84, 0.12);
  border-color: rgba(29, 185, 84, 0.3);
  color: #1db954;
}

.streaming-btn-spotify:hover {
  background: #1db954;
  color: #000;
  transform: translateY(-2px);
}

.streaming-btn-soundcloud {
  background: rgba(255, 85, 0, 0.12);
  border-color: rgba(255, 85, 0, 0.3);
  color: #ff5500;
}

.streaming-btn-soundcloud:hover {
  background: #ff5500;
  color: #fff;
  transform: translateY(-2px);
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.album-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.album-card:hover {
  border-color: rgba(251,208,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(251,208,0,0.15);
}

.album-cover {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--dark-4);
  position: relative;
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.album-card:hover .album-cover img {
  transform: scale(1.05);
}

.album-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--dark-4), var(--dark-5));
}

.album-body {
  padding: 1.5rem;
}

.album-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.album-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.album-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.album-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gray-light);
  background: rgba(255,255,255,0.04);
}

.album-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(251,208,0,0.1);
}

.music-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray);
  font-size: 1rem;
}

/* =============================================
   BLOG / NEWS SECTION
   ============================================= */
#news {
  background: var(--dark);
  position: relative;
}

#news::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(229,37,33,0.4), transparent);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: rgba(229,37,33,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-colored);
}

.news-thumbnail {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--dark-4);
}

.news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-thumbnail img {
  transform: scale(1.05);
}

.news-thumbnail-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--dark-4), var(--dark-5));
}

.news-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.news-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  background: rgba(229,37,33,0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.news-date {
  font-size: 0.8rem;
  color: var(--gray);
}

.news-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  flex: 1;
}

.news-title a {
  color: inherit;
}

.news-title a:hover {
  color: var(--red);
}

.news-excerpt {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
  transition: gap var(--transition);
}

.news-read-more:hover {
  color: var(--red);
  gap: 0.7rem;
}

.news-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray);
}

.news-view-all {
  text-align: center;
  margin-top: 3rem;
}

/* =============================================
   SINGLE POST - AFFILIATE DISCLOSURE
   ============================================= */
.affiliate-disclosure-banner {
  background: rgba(251,208,0,0.1);
  border: 1px solid rgba(251,208,0,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--gray-light);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.affiliate-disclosure-banner::before {
  content: '⚠️';
  flex-shrink: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark-2);
  padding: 0;
}

.footer-color-bar {
  height: 4px;
  background: linear-gradient(90deg,
    var(--red) 0%,
    var(--red) 33.33%,
    var(--blue) 33.33%,
    var(--blue) 66.66%,
    var(--yellow) 66.66%,
    var(--yellow) 100%
  );
}

.footer-inner {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .site-logo {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gray-light);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--red);
  color: var(--white);
  background: rgba(229,37,33,0.15);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--gray-light);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.6;
  text-align: center;
}

.footer-disclaimer a {
  color: var(--blue);
}

.footer-copyright {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
}

/* =============================================
   SINGLE POST TEMPLATE
   ============================================= */
.single-post-wrap {
  padding-top: 100px;
  padding-bottom: 6rem;
  max-width: 780px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 2.5rem;
}

.post-cats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.post-cat-link {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  background: rgba(229,37,33,0.12);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.post-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--gray);
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.post-thumbnail {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.post-content {
  color: var(--gray-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  color: var(--white);
  margin: 2rem 0 1rem;
}

.post-content p {
  margin-bottom: 1.2rem;
}

.post-content a {
  color: var(--blue);
}

.post-content a:hover {
  color: var(--yellow);
}

.post-content img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.post-content blockquote {
  border-left: 3px solid var(--red);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  color: var(--gray);
  font-style: italic;
}

.post-content ul,
.post-content ol {
  list-style: initial;
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.post-content li {
  margin-bottom: 0.4rem;
}

.post-content pre {
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

/* =============================================
   PAGE TEMPLATE (for Lore page)
   ============================================= */
.page-wrap {
  padding-top: 100px;
  padding-bottom: 6rem;
  max-width: 960px;
  margin: 0 auto;
}

.page-title-bar {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-title-bar h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
}

.page-content {
  color: var(--gray-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.page-content h2,
.page-content h3 { color: var(--white); margin: 2rem 0 1rem; }
.page-content p { margin-bottom: 1.2rem; }
.page-content a { color: var(--blue); }
.page-content ul, .page-content ol { list-style: initial; padding-left: 1.5rem; margin-bottom: 1.2rem; }

/* =============================================
   404 PAGE
   ============================================= */
.not-found-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.not-found-code {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.not-found-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.not-found-wrap p {
  color: var(--gray);
  margin-bottom: 2rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .lore-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

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

@media (max-width: 768px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-2);
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
    transition: right var(--transition);
    padding: 80px 2rem 2rem;
  }

  .site-nav.open {
    right: 0;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }

  .site-nav a {
    display: block;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 600px) {
  section {
    padding: 4rem 0;
  }

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

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   ACCESSIBILITY & FOCUS
   ============================================= */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   SCROLLBAR STYLING
   ============================================= */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--dark-5);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

/* =============================================
   ADMIN PANEL STYLES (wp-admin)
   ============================================= */
.mar10-admin-wrap {
  max-width: 960px;
}

.mar10-admin-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 24px;
}

.mar10-admin-card h2 {
  margin-top: 0;
  border-bottom: 2px solid #E52521;
  padding-bottom: 12px;
  color: #1a1a1a;
}

.mar10-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.mar10-form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mar10-form-field label {
  font-weight: 600;
  font-size: 13px;
  color: #444;
}

.mar10-form-field input,
.mar10-form-field select,
.mar10-form-field textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 14px;
  width: 100%;
}

.mar10-form-field textarea {
  resize: vertical;
  min-height: 80px;
}

.mar10-form-field.full-width {
  grid-column: 1 / -1;
}

.mar10-submit-btn {
  background: #E52521;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.mar10-submit-btn:hover {
  background: #c41e1b;
}

.mar10-items-table {
  width: 100%;
  border-collapse: collapse;
}

.mar10-items-table th,
.mar10-items-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 13px;
}

.mar10-items-table th {
  background: #f5f5f5;
  font-weight: 600;
  color: #444;
}

.mar10-items-table tr:hover td {
  background: #fafafa;
}

.mar10-items-table .mar10-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
}

.mar10-delete-btn {
  color: #E52521;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.mar10-delete-btn:hover {
  text-decoration: underline;
}

.mar10-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.mar10-success-notice {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 12px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 14px;
}

/* =============================================
   COUNTDOWN BAR
   ============================================= */
.countdown-bar {
  background: var(--dark);
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--blue);
  padding: 0.45rem 0;
  text-align: center;
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.countdown-mushroom {
  font-size: 1rem;
  animation: mushroom-bob 1.2s ease-in-out infinite;
}

@keyframes mushroom-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.countdown-label {
  font-family: var(--font-pixel);
  font-size: 0.55rem;
  color: var(--gray-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.countdown-units {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.countdown-num {
  font-family: var(--font-pixel);
  font-size: 0.9rem;
  color: var(--yellow);
  line-height: 1.2;
  display: block;
  transition: transform 0.1s ease;
}

.countdown-num.tick {
  animation: num-tick 0.15s ease;
}

@keyframes num-tick {
  0%   { transform: scale(1); color: var(--yellow); }
  50%  { transform: scale(1.25); color: var(--white); }
  100% { transform: scale(1); color: var(--yellow); }
}

.countdown-unit-label {
  font-family: var(--font-pixel);
  font-size: 0.35rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.1rem;
}

.countdown-sep {
  font-family: var(--font-pixel);
  font-size: 0.9rem;
  color: var(--red);
  padding-bottom: 0.75rem;
  align-self: flex-start;
}

/* MAR10 Day celebration state */
.countdown-bar.is-mar10-day {
  background: linear-gradient(90deg, var(--dark) 0%, rgba(229,37,33,0.12) 50%, var(--dark) 100%);
  border-top-color: var(--yellow);
  border-bottom-color: var(--yellow);
}

.countdown-celebrate {
  font-family: var(--font-pixel);
  font-size: 0.65rem;
  color: var(--yellow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: celebrate-pulse 0.8s ease-in-out infinite alternate;
}

@keyframes celebrate-pulse {
  from { color: var(--yellow); text-shadow: 0 0 8px rgba(251,208,0,0.4); }
  to   { color: var(--red);    text-shadow: 0 0 16px rgba(229,37,33,0.6); }
}

/* =============================================
   HERO TITLE FLOATING ANIMATION
   ============================================= */
.hero-title {
  animation: hero-float 4s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* =============================================
   BUTTON PRESS ANIMATION
   ============================================= */
.btn:active,
.product-buy:active,
.streaming-btn:active,
.filter-btn:active {
  transform: scale(0.94) translateY(1px) !important;
  transition: transform 0.05s ease !important;
}

/* =============================================
   MUSIC ALBUM - PLAY OVERLAY
   ============================================= */
.album-cover {
  position: relative;
}

.album-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 2;
}

.album-card:hover .album-play-overlay {
  opacity: 1;
}

.album-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transform: scale(0.8);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  line-height: 1;
}

.album-card:hover .album-play-btn {
  transform: scale(1);
}

.album-play-btn:hover {
  background: var(--white);
  color: var(--dark);
  transform: scale(1.1) !important;
}

/* =============================================
   PIXEL SECTION DIVIDERS
   ============================================= */
.pixel-divider {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--red)    0px,  var(--red)    8px,
    var(--dark)   8px,  var(--dark)   10px,
    var(--blue)   10px, var(--blue)   18px,
    var(--dark)   18px, var(--dark)   20px,
    var(--yellow) 20px, var(--yellow) 28px,
    var(--dark)   28px, var(--dark)   30px
  );
  opacity: 0.7;
}

/* Replace the thin gradient lines on sections with pixel dividers */
#lore::before,
#shop::before,
#music::before,
#news::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--red)    0px,  var(--red)    6px,
    var(--dark-3) 6px,  var(--dark-3) 8px,
    var(--blue)   8px,  var(--blue)   14px,
    var(--dark-3) 14px, var(--dark-3) 16px,
    var(--yellow) 16px, var(--yellow) 22px,
    var(--dark-3) 22px, var(--dark-3) 24px
  );
  opacity: 0.6;
}

/* =============================================
   ARCADE EDGE BARS (screens > 1400px)
   ============================================= */
@media (min-width: 1401px) {
  body::before,
  body::after {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    width: 20px;
    z-index: 1999;
    pointer-events: none;
    background-color: var(--dark-2);
    background-image: radial-gradient(
      circle,
      rgba(255,255,255,0.18) 1.5px,
      transparent 1.5px
    );
    background-size: 5px 5px;
  }
  body::before { left: 0; }
  body::after  { right: 0; }
}

/* =============================================
   404 PIXEL COIN/BLOCK BORDER
   ============================================= */
.not-found-wrap > div {
  position: relative;
  padding: 3rem 3.5rem;
  border: 4px solid var(--yellow);
  box-shadow:
    0 0 0 4px var(--dark),
    0 0 0 8px var(--red),
    0 0 0 12px var(--dark),
    0 0 0 16px var(--blue),
    0 0 0 20px var(--dark),
    0 0 0 24px rgba(255,255,255,0.06);
  border-radius: 4px;
  background: var(--dark-2);
}

/* =============================================
   PAGE TOP OFFSETS FOR COUNTDOWN BAR
   Uses CSS custom property --topper-h set by JS
   ============================================= */
.single-post-wrap {
  padding-top: calc(var(--topper-h, 110px) + 24px) !important;
}

.page-wrap {
  padding-top: calc(var(--topper-h, 110px) + 24px) !important;
}

/* =============================================
   PRODUCT CARD HOVER - enhanced
   ============================================= */
.product-card:hover {
  border-color: rgba(251,208,0,0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(251,208,0,0.15), 0 4px 16px rgba(229,37,33,0.2);
}

/* =============================================
   LORE HEADING FONT TWEAK
   ============================================= */
.lore-main h2 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.lore-main h3 {
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  font-family: var(--font-pixel);
  font-weight: 400;
  color: var(--yellow);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* =============================================
   RESPONSIVE ADDITIONS
   ============================================= */
@media (max-width: 768px) {
  .countdown-inner {
    gap: 0.5rem;
  }
  .countdown-num {
    font-size: 0.7rem;
  }
  .countdown-label {
    font-size: 0.45rem;
  }
  .countdown-unit {
    min-width: 38px;
  }

  /* Shop banner: move text to bottom-left on mobile */
  .shop-banner-overlay {
    align-items: flex-end;
    padding-left: 1.5rem;
    padding-bottom: 15px;
  }

  /* Lore texture: disable fixed attachment on iOS Safari */
  .lore-texture {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .countdown-inner {
    flex-direction: column;
    gap: 0.35rem;
  }
  .countdown-units {
    gap: 0.15rem;
  }
}

/* =============================================
   PART 2 – IMAGE INTEGRATIONS
   ============================================= */

/* ── Logo image ──────────────────────────────────────────── */
.site-logo-img {
  height: 55px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* WP custom-logo output */
.custom-logo {
  height: 55px;
  width: auto;
  display: block;
  object-fit: contain;
}

.header-inner {
  min-height: 70px;
}

/* Keep logo link from adding extra line-height */
.site-logo a {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .site-logo-img,
  .custom-logo {
    height: 40px;
  }
}

/* ── Hero background image ───────────────────────────────── */
.hero-bg {
  background-color: var(--dark);
  background-image:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('/wp-content/uploads/2026/03/waterportrait005.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* ── Lore section background texture ────────────────────── */
#lore {
  position: relative;
}

.lore-texture {
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2026/03/mmcharcoal.png');
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* Ensure lore content sits above the texture */
#lore > .container {
  position: relative;
  z-index: 1;
}

/* ── Shop banner ─────────────────────────────────────────── */
.shop-subtitle {
  margin-bottom: 1.5rem;
}

.shop-banner {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.shop-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.shop-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(229,37,33,0.75) 0%,
    rgba(229,37,33,0.4) 40%,
    rgba(0,0,0,0.1) 100%
  );
  display: flex;
  align-items: center;
  padding-left: 3rem;
}

.shop-banner-text {
  font-family: var(--font-pixel);
  font-size: clamp(0.9rem, 2.5vw, 1.6rem);
  color: var(--white);
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  line-height: 1.4;
}

/* ── Music section header layout ────────────────────────── */
.music-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.music-header-text {
  flex: 1;
  min-width: 0;
}

.music-subtitle-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.75rem;
}

.music-intro-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #FBD000;
  box-shadow: 0 0 20px rgba(251,208,0,0.2);
}

@media (max-width: 900px) {
  .music-subtitle-row {
    justify-content: center;
  }
}

/* ── News section header layout ─────────────────────────── */
.news-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.news-deco-img {
  max-width: 280px;
  width: 100%;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .news-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-deco-img {
    max-width: 180px;
    align-self: center;
  }

  .news-section-header .section-title,
  .news-section-header .section-subtitle {
    text-align: center !important;
  }
}

/* ── Footer art images ───────────────────────────────────── */
.footer-art {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-art-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.9;
  transition: opacity var(--transition);
  border-radius: var(--radius);
}

.footer-art-img:hover {
  opacity: 1;
}

.footer-art-caption {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  font-style: italic;
  margin-top: -0.5rem;
}

/* ── Music featured image (Steve Jobs) ──────────────────── */
.music-featured {
  text-align: center;
  margin-bottom: 3rem;
}

.music-featured-img {
  max-width: 700px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

.music-featured-caption {
  font-size: 0.85rem;
  font-style: italic;
  color: #888888;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .music-featured-img {
    border-radius: var(--radius);
  }
}
