/*
Theme Name: DJStefano Music
Description: Vibrant dark theme for music and entertainment industry
Version: 1.0
Author: Custom Theme
*/

/* CSS Variables for consistent theming */
:root {
  --primary-bg: #0a0a0a;
  --secondary-bg: #1a1a1a;
  --accent-bg: #2a2a2a;
  --primary-accent: #ff006e;
  --secondary-accent: #8338ec;
  --tertiary-accent: #3a86ff;
  --quaternary-accent: #06ffa5;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #999999;
  --gradient-primary: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #3a86ff 100%);
  --gradient-secondary: linear-gradient(135deg, #06ffa5 0%, #3a86ff 50%, #8338ec 100%);
  --shadow-glow: 0 0 20px rgba(255, 0, 110, 0.3);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(131, 56, 236, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(58, 134, 255, 0.05) 0%, transparent 50%);
  z-index: -1;
  animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0% { transform: translateX(-50px) translateY(-30px) rotate(0deg); }
  100% { transform: translateX(50px) translateY(30px) rotate(1deg); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }

a {
  color: var(--primary-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 4rem 0;
}

.text-center {
  text-align: center;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glow-effect {
  box-shadow: var(--shadow-glow);
}

/* Navigation */
.main-navigation {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-accent);
  text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Main Content */
.main-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.site-main {
  margin-top: 80px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

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

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 0, 110, 0.4);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid var(--primary-accent);
  color: var(--primary-accent);
}

.cta-button.secondary:hover {
  background: var(--primary-accent);
  color: white;
}

.cta-button.outline {
  background: transparent;
  border: 2px solid var(--primary-accent);
  color: var(--primary-accent);
}

.cta-button.outline:hover {
  background: var(--primary-accent);
  color: white;
}

/* Section Styling */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
}

.section-footer {
  text-align: center;
  margin-top: 3rem;
}

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

.artist-card {
  background: var(--secondary-bg);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.artist-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.artist-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.artist-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.artist-card:hover .artist-image img {
  transform: scale(1.1);
}

.artist-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.view-artist {
  padding: 0.8rem 1.5rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
}

.artist-info {
  padding: 1rem 0;
}

.artist-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.artist-name a {
  color: var(--text-primary);
  text-decoration: none;
}

.artist-name a:hover {
  color: var(--primary-accent);
}

.artist-genre {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.genre-tag {
  display: inline-block;
  background: var(--tertiary-accent);
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.artist-rating {
  margin-bottom: 1rem;
}

.rating-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-stars, .rating-display {
  color: #ffd700;
  font-size: 1.2rem;
}

.no-rating {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.rating-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Event Styles */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.event-card {
  background: var(--secondary-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
}

.event-month {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.event-day {
  display: block;
  font-size: 1.5rem;
}

.event-content {
  padding: 1.5rem;
}

.event-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.event-title a {
  color: var(--text-primary);
  text-decoration: none;
}

.event-title a:hover {
  color: var(--primary-accent);
}

.event-venue,
.event-time,
.event-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.event-excerpt {
  color: var(--text-secondary);
  margin: 1rem 0;
}

.event-link {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.event-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 110, 0.3);
}

/* Release Styles */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.release-card {
  background: var(--secondary-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.release-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.release-cover {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

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

.release-card:hover .release-cover img {
  transform: scale(1.1);
}

.release-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.release-card:hover .release-overlay {
  opacity: 1;
}

.play-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

.release-info {
  padding: 1.5rem;
}

.release-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.release-title a {
  color: var(--text-primary);
  text-decoration: none;
}

.release-title a:hover {
  color: var(--primary-accent);
}

.release-type {
  color: var(--secondary-accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.release-date {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.release-links {
  text-align: center;
}

.release-link {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.release-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 110, 0.3);
}

/* Newsletter Section */
.newsletter-section {
  background: var(--secondary-bg);
  border-radius: 30px;
  margin: 4rem 0;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.newsletter-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter-subtitle {
  color: var(--text-secondary);
}

.newsletter-signup {
  display: flex;
  gap: 1rem;
}

.newsletter-signup input {
  flex: 1;
  padding: 1rem;
  background: var(--accent-bg);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  color: var(--text-primary);
  outline: none;
}

.newsletter-signup input:focus {
  border-color: var(--primary-accent);
}

/* Footer */
.site-footer {
  background: var(--secondary-bg);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* No Content States */
.no-events,
.no-releases,
.no-artists {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--secondary-bg);
  border-radius: 20px;
}

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

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

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Archive Filters */
.archive-filters {
  background: var(--secondary-bg);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}

.archive-filters > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.archive-filters label {
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}

.archive-filters select {
  background: var(--accent-bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  outline: none;
  cursor: pointer;
}

.archive-filters select:focus {
  border-color: var(--primary-accent);
}

/* Search Form Styles */
.search-form {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-input-wrapper {
  position: relative;
  display: flex;
}

.search-field {
  flex: 1;
  padding: 1rem 4rem 1rem 1.5rem;
  background: var(--secondary-bg);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.search-field:focus {
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(255, 0, 110, 0.1);
}

.search-field::placeholder {
  color: var(--text-muted);
}

.search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-submit:hover {
  transform: translateY(-50%) scale(1.05);
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  position: relative;
  width: 90%;
  max-width: 600px;
}

.search-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-close:hover {
  color: var(--primary-accent);
  transform: rotate(90deg);
}

/* Navigation Extras */
.nav-extras {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-toggle:hover {
  color: var(--primary-accent);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: var(--primary-accent);
}

/* 404 Error Styles */
.error-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.error-code {
  font-size: 8rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.error-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.error-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

.secondary-button {
  padding: 1rem 2rem;
  background: transparent;
  border: 2px solid var(--primary-accent);
  color: var(--primary-accent);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.secondary-button:hover {
  background: var(--primary-accent);
  color: white;
}

.search-section {
  margin: 3rem 0;
}

.helpful-links {
  margin-top: 3rem;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.help-link {
  background: var(--secondary-bg);
  padding: 1rem;
  border-radius: 15px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.help-link:hover {
  background: var(--accent-bg);
  transform: translateY(-3px);
}

.help-link i {
  color: var(--primary-accent);
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

/* Archive Headers */
.archive-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.archive-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.archive-description {
  color: var(--text-secondary);
  font-size: 1.2rem;
}

/* Default Images */
.default-artist-image,
.default-cover {
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  aspect-ratio: 1;
  border-radius: 15px;
}

/* Post Styles */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.post-card {
  background: var(--secondary-bg);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}

.post-thumbnail {
  height: 200px;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content {
  padding: 1.5rem;
}

.post-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.post-title a {
  color: var(--text-primary);
  text-decoration: none;
}

.post-title a:hover {
  color: var(--primary-accent);
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.post-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary-accent);
  text-decoration: none;
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}

/* Pagination */
.posts-pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.page-numbers {
  padding: 0.8rem 1.2rem;
  background: var(--secondary-bg);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-numbers:hover,
.page-numbers.current {
  background: var(--primary-accent);
  color: white;
}

/* No Posts */
.no-posts {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--secondary-bg);
  border-radius: 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .events-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero-title {
    font-size: 2.5rem;
  }
  
  .artist-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }

  .archive-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .archive-filters > div {
    justify-content: space-between;
  }

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

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

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

  .newsletter-signup {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .error-code {
    font-size: 5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .search-field {
    padding: 0.8rem 3.5rem 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .search-submit {
    width: 35px;
    height: 35px;
  }

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

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

  .archive-title {
    font-size: 2rem;
  }
}

/* Print Styles */
@media print {
  .main-navigation,
  .search-overlay,
  .footer,
  .social-links {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .main-content {
    margin-top: 0;
  }
}
