/* fivewyze - dark theme with #FED111 yellow accents */

:root {
  --color-bg: #0a0a0a;
  --color-bg-alt: #111111;
  --color-bg-card: #161616;
  --color-text: #ffffff;
  --color-text-muted: #888888;
  --color-accent: #FED111;
  --color-accent-hover: #ffe044;
  --color-border: #222222;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-brand: 'Righteous', cursive;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Static pixelation effect */
main {
  filter: url(#pixelate-tiny);
}

/* Breathing bounce animation */
@keyframes breathe {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

/* Bob wrappers for independent animation */
.bob {
  display: inline-block;
}

.bob-1 {
  animation: breathe 2.5s ease-in-out infinite;
}

.bob-2 {
  animation: breathe 2.8s ease-in-out infinite 0.1s;
}

.bob-3 {
  animation: breathe 3.2s ease-in-out infinite 0.3s;
}

.bob-4 {
  animation: breathe 2.6s ease-in-out infinite 0.5s;
}

.hero-tagline {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.tagline-dot {
  color: var(--color-accent);
  font-size: 0.8rem;
}

.tagword {
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.tagword:hover {
  color: var(--color-accent);
  text-shadow: 0 0 15px rgba(254, 209, 17, 0.5);
}

.tagword::after {
  content: attr(data-meaning);
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: var(--color-bg-card);
  border: 1px solid var(--color-accent);
  color: var(--color-text);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: var(--font-main);
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.tagword:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.section-title {
  animation: breathe 4s ease-in-out infinite;
}

.artist-card {
  animation: breathe 4s ease-in-out infinite;
}

.artist-card:nth-child(2) {
  animation-delay: 0.3s;
}

.artist-card:nth-child(3) {
  animation-delay: 0.6s;
}

.btn {
  animation: breathe 3s ease-in-out infinite 0.4s;
}

.nav-logo {
  animation: breathe 4s ease-in-out infinite;
}

.spotify-embed {
  animation: breathe 5s ease-in-out infinite;
}

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

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

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  width: auto;
  color: var(--color-text);
  transition: color var(--transition);
}

.nav-logo:hover .logo {
  color: var(--color-accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover {
  color: var(--color-accent);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.98);
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}

/* Main content */
main {
  flex: 1;
  margin-top: 73px;
}

/* Hero Section */
.hero {
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: radial-gradient(ellipse at center, var(--color-bg-alt) 0%, var(--color-bg) 70%);
}

.hero-content {
  max-width: 600px;
}

.hero-logo {
  width: 120px;
  height: auto;
  color: var(--color-text);
  margin-bottom: 2rem;
  animation: float 6s ease-in-out infinite;
}

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

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-bg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-text);
  color: var(--color-text);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt {
  background: var(--color-bg-alt);
  max-width: none;
}

.section-alt > * {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-brand);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin: 1rem auto 0;
}

.section-text {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Page Header */
.page-header {
  padding: 6rem 2rem 4rem;
  text-align: center;
  background: var(--color-bg-alt);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--color-text-muted);
  font-size: 1.125rem;
}

/* Artist Grid */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.artist-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
}

.artist-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.artist-card:hover h3 {
  color: var(--color-accent);
}

.artist-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  filter: grayscale(100%);
  transition: filter var(--transition);
}

.artist-card:hover .artist-image {
  filter: grayscale(0%);
}

.artist-card h3 {
  padding: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  transition: color var(--transition);
}

/* Artist Hero */
.artist-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.artist-hero-image {
  background-color: var(--color-bg-alt);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  min-height: 400px;
  transition: filter 0.4s ease;
}

.artist-hero:hover .artist-hero-image {
  filter: grayscale(0%);
}

.artist-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

.artist-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.artist-bio {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.artist-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .artist-hero {
    grid-template-columns: 1fr;
  }

  .artist-hero-content {
    padding: 2rem;
  }

  .artist-hero-content h1 {
    font-size: 2rem;
  }
}

/* Releases Grid */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.release-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
}

.release-card:hover {
  border-color: var(--color-accent);
}

.release-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.release-info {
  padding: 1.5rem;
}

.release-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.release-info p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* About */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
  font-size: 1.125rem;
  line-height: 1.8;
}

.about-text .lead {
  font-size: 1.5rem;
  color: var(--color-text);
  font-weight: 500;
}

.about-text.centered {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.about-logo {
  color: var(--color-text);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    text-align: center;
  }

  .about-logo {
    max-width: 150px;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2,
.contact-form-container h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

.contact-methods {
  margin-bottom: 2rem;
}

.contact-method {
  margin-bottom: 1.5rem;
}

.contact-method h3 {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-transform: lowercase;
  margin-bottom: 0.25rem;
}

.contact-method a {
  color: var(--color-accent);
  font-size: 1.125rem;
}

.social-links h3 {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-transform: lowercase;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: var(--color-text);
  transition: color var(--transition);
}

.social-icons a:hover {
  color: var(--color-accent);
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-transform: lowercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group select {
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* Back link */
.back-link {
  text-align: center;
}

/* Footer */
.footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 3rem 2rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  height: 30px;
  color: var(--color-text);
  opacity: 0.5;
}

.footer p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  text-transform: lowercase;
}

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

/* Utility */
strong {
  color: var(--color-accent);
  font-weight: 600;
}

/* Selection */
::selection {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* ============================================
   FANCY EFFECTS
   ============================================ */

/* Film grain overlay */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Hero logo glow effect */
.hero-logo {
  width: 120px;
  height: auto;
  color: var(--color-text);
  margin-bottom: 2rem;
  animation: float 6s ease-in-out infinite, glow-pulse 4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(254, 209, 17, 0.3));
  transition: filter 0.5s ease;
}

.hero-logo:hover {
  filter: drop-shadow(0 0 40px rgba(254, 209, 17, 0.6)) drop-shadow(0 0 80px rgba(254, 209, 17, 0.3));
  animation-play-state: paused;
}

@keyframes glow-pulse {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(254, 209, 17, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 35px rgba(254, 209, 17, 0.5)) drop-shadow(0 0 60px rgba(254, 209, 17, 0.2));
  }
}

/* Entrance animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero entrance animations */
.hero-content {
  max-width: 600px;
}

.hero-content .hero-logo {
  animation: fadeInScale 1s ease-out forwards, float 6s ease-in-out 1s infinite, glow-pulse 4s ease-in-out 1s infinite;
}

.hero-title {
  font-family: var(--font-brand);
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards, breathe 3s ease-in-out 1s infinite;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

/* Section entrance (triggered by scroll - will need JS) */
.section-title {
  font-family: var(--font-brand);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 0.05em;
}

/* Enhanced artist card hover effects */
.artist-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.artist-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(254, 209, 17, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.artist-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(254, 209, 17, 0.1);
}

.artist-card:hover::before {
  opacity: 1;
}

.artist-card:hover h3 {
  color: var(--color-accent);
  text-shadow: 0 0 20px rgba(254, 209, 17, 0.5);
}

.artist-image {
  aspect-ratio: 1;
  background-color: var(--color-bg-alt);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.artist-card:hover .artist-image {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Release card hover effects */
.release-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.release-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(254, 209, 17, 0.08);
}

.release-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
  transition: transform 0.4s ease;
}

.release-card:hover .release-image {
  transform: scale(1.03);
}

/* Button enhanced hover */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  color: var(--color-bg);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(254, 209, 17, 0.3);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-text);
  color: var(--color-text);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(254, 209, 17, 0.15);
}

/* Parallax hero background */
.hero {
  min-height: calc(100vh - 73px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(254, 209, 17, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(254, 209, 17, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at center, var(--color-bg-alt) 0%, var(--color-bg) 70%);
  position: relative;
  overflow: hidden;
}

/* Animated background particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 50%;
  bottom: 0;
  opacity: 0;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0% {
    transform: translateY(20px) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 0.3;
  }
  95% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Nav logo hover glow */
.nav-logo:hover .logo {
  color: var(--color-accent);
  filter: drop-shadow(0 0 10px rgba(254, 209, 17, 0.5));
}

/* Footer logo subtle animation */
.footer-logo {
  height: 30px;
  color: var(--color-text);
  opacity: 0.5;
  transition: all 0.4s ease;
}

.footer-logo:hover {
  opacity: 1;
  filter: drop-shadow(0 0 15px rgba(254, 209, 17, 0.4));
}

/* Spotify embed */
.spotify-embed {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spotify-embed:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(254, 209, 17, 0.1);
}

.spotify-embed iframe {
  display: block;
}

/* Latest releases section */
.latest-releases {
  margin-bottom: 1.5rem;
}

.latest-caption {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
