.hero {
  background: 
    linear-gradient(120deg, rgba(11, 5, 29, 0.8) 60%, rgba(255, 168, 205, 0.6) 100%),
    url('pictures/2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f9f8f5;
  padding: 11em 0 5em 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 600px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}
.hero-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 0.2em;
  color: #f9f8f5;
  text-shadow: 0 4px 24px #ffa8cd44;
}
.hero-logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 0.5em;
  filter: drop-shadow(0 4px 24px rgba(255, 168, 205, 0.3));
}
.hero-tagline {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #ffa8cd;
}
.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 1.5em;
  color: #3a3454;
}
.hero-actions {
  margin-bottom: 1.5em;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75em 2em;
  margin: 0 0.5em;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: #ffa8cd;
  color: #f9f8f5;
  border: none;
  box-shadow: 0 2px 8px #ffa8cd33;
}
.btn-primary:hover, .btn-primary:focus {
  background: #f9f8f5;
  color: #ffa8cd;
  box-shadow: 0 4px 16px #ffa8cd44;
}
.btn-secondary {
  background: #0b051d;
  color: #f9f8f5;
  border: 2px solid #ffa8cd;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #ffa8cd;
  color: #f9f8f5;
}
.hero-socials {
  margin-top: 1.5em;
}
.social-icon {
  display: inline-block;
  margin: 0 0.5em;
  vertical-align: middle;
  transition: transform 0.2s;
}
.social-icon:hover, .social-icon:focus {
  transform: scale(1.15);
  outline: none;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #0b051d;
  color: #f9f8f5;
}

.text-secondary {
  color: #8e82c7;
}

.text-muted {
  color: #3a3454;
}

nav {
  background: #0b051d;
  color: #f9f8f5;
  padding: 1em 0;
  box-shadow: 0 2px 8px rgba(255,168,205,0.08);
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}
nav ul li {
  margin: 0 1em;
}
nav ul li a {
  color: #f9f8f5;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5em 1em;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, border 0.2s;
  border: 2px solid transparent;
}
nav ul li a.active {
  border-color: #ffa8cd;
}
nav ul li a:hover, nav ul li a:focus {
  background: #ffa8cd;
  color: #f9f8f5;
  outline: none;
}

main {
  max-width: 1400px;
  margin: 2em auto;
  background: #170e33;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(255,168,205,0.08);
  border: 1px solid #170e331a;
}

.featured {
  text-align: center;
  margin-top: 2em;
}

h1, h2, h3, h4, h5, h6 {
  color: #ffa8cd;
  margin-top: 0;
}

form {
  display: flex;
  flex-direction: column;
}
form label {
  margin-top: 1em;
  color: #f9f8f5;
}
form input, form textarea {
  margin-top: 0.5em;
  padding: 0.5em;
  border: 1px solid #ffa8cd;
  border-radius: 4px;
  background: #0b051d;
  color: #f9f8f5;
}
form input:focus, form textarea:focus {
  border-color: #ffa8cd;
  outline: none;
  box-shadow: 0 0 0 2px rgba(255,168,205,0.15);
}
form button {
  margin-top: 1em;
  padding: 0.75em;
  background: #ffa8cd;
  color: #0b051d;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}
form button:hover, form button:focus {
  background: #f9f8f5;
  color: #0b051d;
}

/* Coming Soon & Puzzle Game Styles */
.coming-soon-container {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.coming-soon-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0.5em;
  background: linear-gradient(120deg, #ffa8cd, #f9f8f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.coming-soon-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2em;
  color: #8e82c7;
}

.puzzle-container {
  margin-top: 3em;
  padding: 2em;
  background: #0b051d;
  border-radius: 12px;
  border: 1px solid #ffa8cd33;
}

.puzzle-container h3 {
  color: #ffa8cd;
  margin-bottom: 0.5em;
}

.puzzle-instructions {
  color: #8e82c7;
  margin-bottom: 1.5em;
  font-size: 0.9rem;
}

.puzzle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 300px;
  margin: 0 auto 2em auto;
  background: #170e33;
  padding: 8px;
  border-radius: 8px;
}

.puzzle-tile {
  aspect-ratio: 1;
  background: #ffa8cd;
  color: #0b051d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.puzzle-tile:hover:not(.empty) {
  background: #f9f8f5;
  transform: scale(0.95);
}

.puzzle-tile.empty {
  background: transparent;
  cursor: default;
}

.puzzle-tile.moveable {
  box-shadow: 0 0 10px rgba(255, 168, 205, 0.5);
}

.puzzle-controls {
  margin: 1.5em 0;
}

.puzzle-controls button {
  margin: 0 0.5em;
}

.puzzle-status {
  color: #ffa8cd;
  font-weight: bold;
  margin-top: 1em;
  min-height: 24px;
}

.puzzle-win {
  background: linear-gradient(120deg, #ffa8cd, #f9f8f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  animation: celebration 0.6s ease-in-out;
}

@keyframes celebration {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

/* To Be Announced & Tetris Game Styles */
.tba-container {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.tba-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0.5em;
  background: linear-gradient(120deg, #ffa8cd, #f9f8f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tba-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2em;
  color: #8e82c7;
}

.tetris-container {
  margin-top: 3em;
  padding: 2em;
  background: #0b051d;
  border-radius: 12px;
  border: 1px solid #ffa8cd33;
}

.tetris-container h3 {
  color: #ffa8cd;
  margin-bottom: 0.5em;
}

.tetris-instructions {
  color: #8e82c7;
  margin-bottom: 1.5em;
  font-size: 0.9rem;
}

.tetris-game {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2em;
  margin: 2em 0;
  flex-wrap: wrap;
}

.tetris-board {
  width: 300px;
  height: 600px;
  background: #170e33;
  border: 2px solid #ffa8cd;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.tetris-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  min-width: 150px;
}

.tetris-score {
  background: #170e33;
  padding: 1em;
  border-radius: 8px;
  border: 1px solid #ffa8cd33;
}

.tetris-score div {
  color: #f9f8f5;
  margin-bottom: 0.5em;
  font-weight: bold;
}

.tetris-score span {
  color: #ffa8cd;
}

.tetris-next {
  background: #170e33;
  padding: 1em;
  border-radius: 8px;
  border: 1px solid #ffa8cd33;
  color: #f9f8f5;
  font-weight: bold;
}

.next-piece {
  width: 80px;
  height: 80px;
  background: #0b051d;
  border-radius: 4px;
  margin-top: 0.5em;
  position: relative;
}

.tetris-block {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(249, 248, 245, 0.2);
}

.tetris-block.I { background: #8d1ff3; }
.tetris-block.O { background: #ff63b1; }
.tetris-block.T { background: #d179ec; }
.tetris-block.S { background: #ffacf4; }
.tetris-block.Z { background: #ff76a4; }
.tetris-block.J { background: #9292ff; }
.tetris-block.L { background: #5b3bcf; }

.tetris-controls {
  margin: 1.5em 0;
}

.tetris-controls button {
  margin: 0 0.5em;
}

.tetris-status {
  color: #ffa8cd;
  font-weight: bold;
  margin-top: 1em;
  min-height: 24px;
}

.tetris-game-over {
  background: linear-gradient(120deg, #ffa8cd, #f9f8f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.5rem;
  animation: celebration 0.6s ease-in-out;
}

/* About Page Styles */
.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  gap: 3em;
  margin-top: 2em;
  align-items: flex-start;
}

.about-image {
  flex: 0 0 300px;
  position: sticky;
  top: 2em;
}

.bio-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(255, 168, 205, 0.2);
  border: 2px solid #ffa8cd33;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bio-photo:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 48px rgba(255, 168, 205, 0.3);
}

.about-text {
  flex: 1;
  color: #f9f8f5;
}

.bio-section {
  margin-bottom: 2.5em;
}

.bio-section h2 {
  color: #ffa8cd;
  font-size: 1.5rem;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #ffa8cd33;
}

.bio-section p {
  line-height: 1.7;
  margin-bottom: 1.2em;
  color: #f9f8f5;
  font-size: 1.05rem;
}

.achievements-list {
  list-style: none;
  padding: 0;
}

.achievements-list li {
  background: #0b051d;
  margin-bottom: 0.8em;
  padding: 1em;
  border-radius: 8px;
  border-left: 4px solid #ffa8cd;
  color: #f9f8f5;
  transition: background 0.2s ease, transform 0.2s ease;
}

.achievements-list li:hover {
  background: #170e33;
  transform: translateX(0.5em);
}

.achievements-list li::before {
  content: "🎵";
  margin-right: 0.8em;
  font-size: 1.2em;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 2em;
  }
  
  .about-image {
    flex: none;
    position: static;
    max-width: 250px;
    margin: 0 auto;
  }
  
  .about-text {
    text-align: left;
  }
}

/* Music Page Styles */
.music-header {
  height: 400px;
  background: linear-gradient(135deg, #170e33 0%, #0b051d 50%, #170e33 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 -2em 2em -2em;
  border-radius: 0 0 12px 12px;
}

.music-header-content {
  text-align: center;
  z-index: 10;
  position: relative;
}

.music-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0.5em;
  background: linear-gradient(120deg, #ffa8cd, #f9f8f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 24px rgba(255, 168, 205, 0.3);
}

.music-subtitle {
  font-size: 1.3rem;
  color: #8e82c7;
  margin: 0;
  font-style: italic;
}

.floating-notes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.music-note {
  position: absolute;
  font-size: 2.5rem;
  color: #8e82c7;
  opacity: 0.7;
  transition: all 0.3s ease;
  user-select: none;
  animation: float 6s ease-in-out infinite;
}

.music-note:nth-child(odd) {
  animation-delay: -2s;
}

.music-note:nth-child(even) {
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

.music-content {
  margin-top: 2em;
}

.music-section {
  margin-bottom: 3em;
  padding: 2em;
  background: #0b051d;
  border-radius: 12px;
  border: 1px solid #ffa8cd33;
}

.music-section h3 {
  color: #ffa8cd;
  margin-bottom: 1.5em;
  font-size: 1.5rem;
  border-bottom: 2px solid #ffa8cd33;
  padding-bottom: 0.5em;
}

.track-placeholder, .album-placeholder {
  background: #170e33;
  padding: 2em;
  border-radius: 8px;
  text-align: center;
  color: #8e82c7;
  border: 2px dashed #ffa8cd33;
  transition: border-color 0.3s ease;
}

.track-placeholder:hover, .album-placeholder:hover {
  border-color: #ffa8cd;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5em;
}

.singles-list {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.single-item {
  background: #170e33;
  padding: 1em 1.5em;
  border-radius: 8px;
  color: #f9f8f5;
  border-left: 4px solid #ffa8cd;
  transition: transform 0.2s ease, background 0.2s ease;
}

.single-item:hover {
  transform: translateX(0.5em);
  background: #0b051d;
}

/* Spotify Music Integration Styles */
.spotify-embed {
  margin: 1.5em 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(255, 168, 205, 0.1);
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  margin: 2em 0;
}

.track-item {
  background: #0b051d;
  padding: 1.5em;
  border-radius: 12px;
  border: 1px solid #ffa8cd33;
  transition: all 0.3s ease;
}

.track-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(255, 168, 205, 0.15);
  border-color: #ffa8cd;
}

.track-item h4 {
  color: #ffa8cd;
  margin-bottom: 1em;
  font-size: 1.2rem;
  text-align: center;
}

.track-item iframe {
  border-radius: 8px;
}

.singles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  margin: 2em 0;
}

.single-card {
  background: #0b051d;
  padding: 1.5em;
  border-radius: 12px;
  border: 1px solid #ffa8cd33;
  transition: all 0.3s ease;
}

.single-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(255, 168, 205, 0.15);
  border-color: #ffa8cd;
}

.single-card h4 {
  color: #ffa8cd;
  margin-bottom: 1em;
  font-size: 1.1rem;
  text-align: center;
}

.single-card iframe {
  border-radius: 8px;
}

.album-feature {
  margin: 2em 0;
  padding: 2em;
  background: #0b051d;
  border-radius: 12px;
  border: 1px solid #ffa8cd33;
  transition: all 0.3s ease;
}

.album-feature:hover {
  box-shadow: 0 8px 32px rgba(255, 168, 205, 0.15);
  border-color: #ffa8cd;
}

.album-feature iframe {
  border-radius: 8px;
}

.spotify-links {
  display: flex;
  justify-content: center;
  gap: 2em;
  margin: 2em 0;
  flex-wrap: wrap;
}

.spotify-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 1em 2em;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.spotify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 168, 205, 0.3);
}

/* Responsive Design for Music Embeds */
@media (max-width: 768px) {
  .tracks-grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  
  .singles-grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  
  .spotify-links {
    flex-direction: column;
    align-items: center;
    gap: 1em;
  }
  
  .track-item, .single-card, .album-feature {
    padding: 1.2em;
  }
}

/* Videos Page Styles */
.videos-header {
  height: 400px;
  background: linear-gradient(135deg, #170e33 0%, #0b051d 50%, #170e33 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 -2em 2em -2em;
  border-radius: 0 0 12px 12px;
}

.videos-header-content {
  text-align: center;
  z-index: 10;
  position: relative;
}

.videos-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0.5em;
  background: linear-gradient(120deg, #ffa8cd, #f9f8f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 24px rgba(255, 168, 205, 0.3);
}

.videos-subtitle {
  font-size: 1.3rem;
  color: #8e82c7;
  margin: 0;
  font-style: italic;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.music-element {
  position: absolute;
  font-size: 2.5rem;
  color: #8e82c7;
  opacity: 0.7;
  transition: all 0.3s ease;
  user-select: none;
  animation: elementFloat 6s ease-in-out infinite;
}

.music-element:nth-child(odd) {
  animation-delay: -2s;
}

.music-element:nth-child(even) {
  animation-delay: -4s;
}

.video-element {
  position: absolute;
  font-size: 2.5rem;
  color: #8e82c7;
  opacity: 0.7;
  transition: all 0.3s ease;
  user-select: none;
  animation: elementFloat 6s ease-in-out infinite;
}

.video-element:nth-child(odd) {
  animation-delay: -2s;
}

.video-element:nth-child(even) {
  animation-delay: -4s;
}

@keyframes elementFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

.videos-container {
  max-width: 1600px;
  margin: 0 auto;
}

.videos-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #8e82c7;
  margin-bottom: 3em;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  margin-bottom: 3em;
}

.video-item {
  background: #0b051d;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ffa8cd33;
  transition: all 0.3s ease;
  position: relative;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(255, 168, 205, 0.2);
  border-color: #ffa8cd;
}

.video-item.featured {
  border-color: #ffa8cd;
  box-shadow: 0 4px 24px rgba(255, 168, 205, 0.15);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #170e33;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 168, 205, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0b051d;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.video-item:hover .play-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
  background: #ffa8cd;
}

.featured-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(120deg, #ffa8cd, #f9f8f5);
  color: #0b051d;
  padding: 0.3em 0.8em;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}

.video-info {
  padding: 1.5em;
}

.video-title {
  color: #ffa8cd;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

.video-meta {
  color: #8e82c7;
  font-size: 0.9rem;
  margin-bottom: 1em;
  line-height: 1.4;
}

.video-link {
  display: inline-block;
  background: #170e33;
  color: #ffa8cd;
  padding: 0.6em 1.2em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
  border: 1px solid #ffa8cd33;
}

.video-link:hover {
  background: #ffa8cd;
  color: #0b051d;
  transform: translateY(-2px);
}

.channel-link {
  text-align: center;
  margin-top: 3em;
  padding-top: 2em;
  border-top: 2px solid #ffa8cd33;
}

.channel-link .btn-primary {
  font-size: 1.1rem;
  padding: 1em 2.5em;
}

/* Videos Page Responsive Design */
@media (max-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5em;
  }
}

@media (max-width: 768px) {
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
  
  .video-thumbnail {
    height: 180px;
  }
  
  .video-info {
    padding: 1.2em;
  }
  
  .video-title {
    font-size: 1.1rem;
  }
}

/* Easter Egg Styles */
.easter-egg {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: #8e82c7;
  opacity: 0.3;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  z-index: 100;
  background: rgba(139, 130, 199, 0.1);
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.easter-egg:hover {
  opacity: 0.8;
  transform: scale(1.2);
  background: rgba(139, 130, 199, 0.2);
  box-shadow: 0 0 15px rgba(139, 130, 199, 0.3);
}

/* New Events Page Content */
.announcement-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.update-card {
  background: rgba(139, 130, 199, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 168, 205, 0.3);
  text-align: center;
}

.update-card h3 {
  color: #8e82c7;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.notification-signup {
  background: rgba(255, 168, 205, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(139, 130, 199, 0.3);
  text-align: center;
  margin-top: 3rem;
}

.notification-signup h3 {
  color: #8e82c7;
  margin-bottom: 1rem;
}

.signup-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.email-input {
  padding: 0.8rem 1.2rem;
  border: 2px solid #8e82c7;
  border-radius: 25px;
  background: rgba(249, 248, 245, 0.9);
  color: #170e33;
  font-size: 1rem;
  min-width: 250px;
}

.email-input:focus {
  outline: none;
  border-color: #ffa8cd;
  box-shadow: 0 0 10px rgba(255, 168, 205, 0.3);
}

/* New Merch Page Content */
.merch-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.merch-card {
  background: rgba(255, 168, 205, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(139, 130, 199, 0.3);
  text-align: center;
}

.merch-card h3 {
  color: #8e82c7;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Store Link Styling */
.store-link-container {
  background: linear-gradient(145deg, rgba(255, 168, 205, 0.15), rgba(139, 130, 199, 0.15));
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 168, 205, 0.3);
  text-align: center;
  margin: 3rem 0;
  box-shadow: 0 8px 25px rgba(139, 130, 199, 0.2);
}

.store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #8e82c7 0%, #ffa8cd 100%);
  border: none;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(139, 130, 199, 0.4);
  letter-spacing: 0.02em;
}

.store-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 130, 199, 0.5);
  background: linear-gradient(135deg, #9d8fd1 0%, #ffb3d1 100%);
}

.store-description {
  color: #8e82c7;
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

.newsletter-signup {
  background: rgba(139, 130, 199, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 168, 205, 0.3);
  text-align: center;
  margin-top: 3rem;
}

.newsletter-signup h3 {
  color: #8e82c7;
  margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  background: linear-gradient(135deg, #8e82c7 0%, #ffa8cd 100%);
  padding: 4rem 2rem;
  border-radius: 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="70" r="2.5" fill="rgba(255,255,255,0.1)"/></svg>');
  pointer-events: none;
}

.contact-header h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

.contact-header p {
  font-size: 1.3rem;
  opacity: 0.95;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: linear-gradient(145deg, rgba(250, 218, 230, 0.9), #89579c0d);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 168, 205, 0.2);
  box-shadow: 0 8px 25px rgba(255, 119, 244, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #8e82c7, #ffa8cd);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(139, 130, 199, 0.2);
  border-color: #8e82c7;
}

.contact-card h3 {
  color: #312063;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: bold;
}

.contact-card p {
  margin-bottom: 1.5rem;
  color: #170e33;
  line-height: 1.6;
}

.contact-link {
  color: #ffa8cd;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  background: rgba(255, 168, 205, 0.1);
}

.contact-link:hover {
  color: white;
  background: #ffa8cd;
  transform: scale(1.05);
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #8e82c7, #ffa8cd);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(139, 130, 199, 0.3);
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 130, 199, 0.4);
}

.social-btn.spotify {
  background: linear-gradient(135deg, #c59c43, #eceb91);
}

.social-btn.youtube {
  background: linear-gradient(135deg, #ff369b, #ff86b4);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.5rem;
  border: 2px solid #8e82c7;
  border-radius: 25px;
  background: rgba(249, 248, 245, 0.9);
  color: #170e33;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #ffa8cd;
  box-shadow: 0 0 20px rgba(255, 168, 205, 0.3);
  transform: scale(1.02);
}

.newsletter-btn {
  padding: 1rem 2rem;
  white-space: nowrap;
  border-radius: 25px;
  background: linear-gradient(135deg, #8e82c7, #ffa8cd);
  box-shadow: 0 4px 15px rgba(139, 130, 199, 0.3);
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 130, 199, 0.4);
}

.contact-form-section {
  background: linear-gradient(145deg, rgba(250, 218, 230, 0.9), rgba(255, 168, 205, 0.05));
  padding: 3rem;
  border-radius: 25px;
  border: 2px solid rgba(139, 130, 199, 0.2);
  box-shadow: 0 10px 30px rgba(139, 130, 199, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 168, 205, 0.1), transparent);
  border-radius: 50%;
}

.contact-form-section h2 {
  color: #8e82c7;
  margin-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: bold;
}

.contact-form-section > p {
  margin-bottom: 2.5rem;
  color: #170e33;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: white;
  font-weight: bold;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.form-input, .form-textarea {
  padding: 1.2rem 1.5rem;
  border: 2px solid rgba(142, 130, 199, 0.3);
  border-radius: 15px;
  background: rgba(249, 248, 245, 0.9);
  color: #170e33;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #8e82c7;
  box-shadow: 0 0 20px rgba(142, 130, 199, 0.2);
  transform: scale(1.02);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 10px;
  background: rgba(142, 130, 199, 0.05);
  transition: background 0.3s ease;
}

.checkbox-container:hover {
  background: rgba(142, 130, 199, 0.1);
}

.checkbox-container input[type="checkbox"] {
  margin: 0;
  margin-top: 0.2rem;
  transform: scale(1.2);
  accent-color: #8e82c7;
}

.checkbox-label {
  color: #170e33;
  font-size: 1rem;
  line-height: 1.5;
}

.form-submit {
  align-self: flex-start;
  padding: 1.2rem 3rem;
  font-size: 1.2rem;
  border-radius: 25px;
  background: linear-gradient(135deg, #8e82c7, #ffa8cd);
  box-shadow: 0 6px 20px rgba(139, 130, 199, 0.3);
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 130, 199, 0.4);
}

.contact-footer {
  background: linear-gradient(145deg, rgba(255, 168, 205, 0.1), rgba(139, 130, 199, 0.05));
  padding: 3rem;
  border-radius: 20px;
  border: 2px solid rgba(139, 130, 199, 0.2);
  text-align: center;
  box-shadow: 0 8px 25px rgba(139, 130, 199, 0.1);
}

.contact-footer h3 {
  color: #8e82c7;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-footer p {
  color: #170e33;
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-info {
    order: 2;
  }
  
  .contact-form-section {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact-container {
    padding: 0 1rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-header {
    padding: 3rem 1rem 2rem 1rem;
  }
  
  .contact-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }
  
  .contact-header p {
    font-size: 1rem;
  }
  
  .contact-card {
    padding: 1.8rem;
    margin: 0 0.5rem;
  }
  
  .contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .contact-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .contact-form-section {
    padding: 2rem 1rem;
  }
  
  .contact-form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .contact-form-section p {
    font-size: 0.95rem;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .newsletter-input {
    min-width: auto;
    width: 100%;
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  
  .newsletter-btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  
  .social-links {
    justify-content: center;
    gap: 0.8rem;
  }
  
  .social-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    flex: 1;
    min-width: 120px;
  }
  
  .form-group {
    margin-bottom: 1.2rem;
  }
  
  .form-input, .form-textarea {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  
  .form-textarea {
    min-height: 120px;
  }
  
  .form-submit {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
  }
  
  .contact-link {
    padding: 0.6rem 1rem;
    font-size: 1rem;
    display: block;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-header {
    padding: 2.5rem 0.5rem 1.5rem 0.5rem;
  }
  
  .contact-header h1 {
    font-size: 1.8rem;
  }
  
  .contact-card {
    padding: 1.5rem;
    margin: 0 0.2rem;
  }
  
  .contact-form-section {
    padding: 1.5rem 0.5rem;
  }
  
  .social-btn {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    min-width: 100px;
  }
  
  .form-input, .form-textarea, .newsletter-input {
    padding: 0.7rem;
    font-size: 0.9rem;
  }
}

/* Events Widget Styling */
.events-widget {
  margin: 3rem 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(139, 130, 199, 0.1);
  border: 2px solid rgba(139, 130, 199, 0.1);
}

.events-widget .bit-widget-initializer {
  display: block;
  width: 100%;
}

/* Responsive adjustments for events widget */
@media (max-width: 768px) {
  .events-widget {
    margin: 2rem 0;
    padding: 1rem;
    border-radius: 10px;
  }
}

/* Home Page Snippets Styling */
.page-snippets {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 3rem 0;
  padding: 0 2rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.snippet-card {
  background: linear-gradient(145deg, rgba(255, 168, 205, 0.03), rgba(139, 130, 199, 0.02));
  border: 1px solid rgba(255, 168, 205, 0.1);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(139, 130, 199, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 220px;
  backdrop-filter: blur(10px);
}

.snippet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139, 130, 199, 0.15);
  border-color: rgba(255, 168, 205, 0.3);
}

.snippet-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #8e82c7, #ffa8cd, #8e82c7);
  border-radius: 16px 16px 0 0;
}

.about-snippet {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
}

.about-snippet .snippet-image {
  flex: 0 0 180px;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 6px 20px rgba(255, 168, 205, 0.2);
  border: 2px solid rgba(255, 168, 205, 0.2);
}

.about-snippet .snippet-content {
  flex: 1;
  position: relative;
  min-height: 180px;
}

.snippet-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.snippet-card:hover .snippet-photo {
  transform: scale(1.05);
}

.snippet-content {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 180px;
}

.snippet-content .featured-track,
.snippet-content .featured-video,
.snippet-content .next-event,
.snippet-content .quick-contact {
  margin: 0;
}

.snippet-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 0;
  padding-bottom: 3rem;
}

.snippet-text-content h3 {
  color: #ffa8cd;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  position: relative;
}

.snippet-text-content h3::after {
  content: '';
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #8e82c7, #ffa8cd);
  border-radius: 2px;
}

.snippet-text-content p {
  color: #f9f8f5;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 400;
}

.snippet-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
  border-radius: 25px;
  background: linear-gradient(135deg, #8e82c7 0%, #ffa8cd 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 130, 199, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.snippet-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.snippet-btn:hover::before {
  left: 100%;
}

.snippet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 130, 199, 0.4);
}

.snippet-btn::after {
  content: '→';
  transition: transform 0.3s ease;
}

.snippet-btn:hover::after {
  transform: translateX(4px);
}

.snippet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 130, 199, 0.4);
}

/* Music Snippet Layout */
.music-snippet {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
}

.music-snippet .snippet-content {
  flex: 1;
}

.music-snippet .featured-track {
  flex: 0 0 180px;
  align-self: center;
  display: flex;
  align-items: center;
}

.music-snippet .featured-track .snippet-image {
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 6px 20px rgba(255, 168, 205, 0.2);
  border: 2px solid rgba(255, 168, 205, 0.2);
}

/* Videos Snippet Layout */
.videos-snippet {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
}

.videos-snippet .snippet-content {
  flex: 1;
}

.videos-snippet .featured-video {
  flex: 0 0 180px;
  align-self: center;
  display: flex;
  align-items: center;
}

.videos-snippet .featured-video .snippet-image {
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 6px 20px rgba(255, 168, 205, 0.2);
  border: 2px solid rgba(255, 168, 205, 0.2);
}

/* Events Snippet Layout */
.events-snippet {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
}

.events-snippet .snippet-content {
  flex: 1;
}

.events-snippet .next-event {
  flex: 0 0 180px;
  align-self: center;
  display: flex;
  align-items: center;
}

.events-snippet .next-event .snippet-image {
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 6px 20px rgba(255, 168, 205, 0.2);
  border: 2px solid rgba(255, 168, 205, 0.2);
}

/* Contact Snippet Layout */
.contact-snippet {
  display: flex;
  gap: 2.5rem;
  align-items: stretch;
}

.contact-snippet .snippet-content {
  flex: 1;
}

.contact-snippet .quick-contact {
  flex: 0 0 280px;
  align-self: center;
  display: flex;
  align-items: center;
}

/* Featured Track Styling */
.featured-track {
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(139, 130, 199, 0.1);
}

/* Featured Video Styling */
.featured-video {
  margin: 0;
}

.video-thumbnail-home {
  position: relative;
  width: 100%;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 168, 205, 0.2);
  border: 1px solid rgba(255, 168, 205, 0.1);
}

.video-thumbnail-home:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 168, 205, 0.3);
}

.video-thumbnail-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-thumbnail-home:hover img {
  transform: scale(1.05);
}

.play-overlay-home {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 168, 205, 0.95), rgba(142, 130, 199, 0.95));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-thumbnail-home:hover .play-overlay-home {
  background: linear-gradient(135deg, #ffa8cd, #8e82c7);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 168, 205, 0.4);
}

/* Next Event Styling */
.next-event {
  margin: 0;
}

.event-placeholder {
  background: linear-gradient(145deg, rgba(139, 130, 199, 0.08), rgba(255, 168, 205, 0.05));
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 168, 205, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 168, 205, 0.03) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.event-placeholder:hover {
  border-color: rgba(255, 168, 205, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 130, 199, 0.15);
}

.event-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.event-placeholder p {
  color: #8e82c7;
  font-style: italic;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* Social Preview Styling */
.quick-contact {
  margin: 0;
}

.social-preview {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.social-icon-preview {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(145deg, rgba(139, 130, 199, 0.08), rgba(255, 168, 205, 0.05));
  border-radius: 12px;
  color: #f9f8f5;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 168, 205, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.social-icon-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 168, 205, 0.1), transparent);
  transition: left 0.6s ease;
}

.social-icon-preview:hover::before {
  left: 100%;
}

.social-icon-preview:hover {
  background: linear-gradient(145deg, rgba(255, 168, 205, 0.15), rgba(139, 130, 199, 0.1));
  transform: translateX(4px);
  border-color: rgba(255, 168, 205, 0.3);
  box-shadow: 0 4px 12px rgba(139, 130, 199, 0.15);
}

.social-icon-preview span {
  font-size: 1.1rem;
  filter: grayscale(0);
  transition: transform 0.3s ease;
}

.social-icon-preview:hover span {
  transform: scale(1.1);
}

/* Enhanced Mobile Responsiveness */

/* Navigation Mobile Improvements */
@media (max-width: 1024px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3rem;
    padding: 0 1rem;
  }
  
  nav ul li {
    margin: 0 0.2rem;
  }
  
  nav ul li a {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0.8rem 0;
    background: rgba(11, 5, 29, 0.98);
    backdrop-filter: blur(10px);
  }
  
  nav ul {
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0 0.8rem;
    justify-content: center;
  }
  
  nav ul li {
    margin: 0.1rem;
  }
  
  nav ul li a {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 15px;
    min-width: 70px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  nav ul {
    gap: 0.3rem;
    padding: 0 0.5rem;
  }
  
  nav ul li a {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
    min-width: 60px;
  }
}

/* Hero Section Mobile Improvements */
@media (max-width: 1024px) {
  .hero {
    padding: 6rem 2rem 3rem 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    min-width: 200px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 6rem 1rem 3rem 1rem;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-logo {
    max-width: 200px;
    height: auto;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  .hero-actions {
    gap: 1.2rem;
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    min-width: 180px;
  }
  
  .hero-socials {
    margin-top: 1.5rem;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 5rem 0.8rem 2.5rem 0.8rem;
  }
  
  .hero-logo {
    max-width: 160px;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
  
  .hero-desc {
    font-size: 0.9rem;
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    min-width: 160px;
    margin-bottom: 0.3rem;
  }
  
  .hero-actions {
    gap: 1rem;
  }
}

/* Snippets Mobile Enhancements */
@media (max-width: 1024px) {
  .page-snippets {
    gap: 2.5rem;
    padding: 0 1rem;
  }
  
  .snippet-card {
    padding: 1.8rem;
    flex-direction: column;
    text-align: center;
    min-height: auto;
    border-radius: 12px;
  }
  
  .about-snippet,
  .music-snippet,
  .videos-snippet,
  .events-snippet,
  .contact-snippet {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .about-snippet .snippet-image,
  .music-snippet .featured-track .snippet-image,
  .videos-snippet .featured-video .snippet-image,
  .events-snippet .next-event .snippet-image {
    flex: none;
    align-self: center;
    max-width: 200px;
    height: 200px;
  }
  
  .contact-snippet .quick-contact {
    flex: none;
    max-width: 350px;
    align-self: center;
  }
  
  .snippet-text-content h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-snippets {
    gap: 1.8rem;
    padding: 0 0.5rem;
  }
  
  .snippet-card {
    padding: 1.2rem;
    margin: 0 0.5rem;
    border-radius: 15px;
  }
  
  .snippet-text-content {
    margin-bottom: 1.2rem;
  }
  
  .snippet-text-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  
  .snippet-text-content h3::after {
    width: 30px;
    height: 2px;
  }
  
  .snippet-text-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
  
  .about-snippet .snippet-image,
  .music-snippet .featured-track .snippet-image,
  .videos-snippet .featured-video .snippet-image,
  .events-snippet .next-event .snippet-image {
    max-width: 160px;
    height: 160px;
    border-radius: 10px;
  }
  
  .social-preview {
    align-items: center;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .social-icon-preview {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    border-radius: 10px;
    flex: 1;
    min-width: 100px;
  }
  
  .snippet-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    border-radius: 20px;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  .page-snippets {
    gap: 1.5rem;
    padding: 0 0.3rem;
  }
  
  .snippet-card {
    padding: 1rem;
    margin: 0 0.2rem;
    border-radius: 10px;
  }
  
  .snippet-text-content h3 {
    font-size: 1.2rem;
  }
  
  .snippet-text-content p {
    font-size: 0.9rem;
  }
  
  .about-snippet .snippet-image,
  .music-snippet .featured-track .snippet-image,
  .videos-snippet .featured-video .snippet-image,
  .events-snippet .next-event .snippet-image {
    max-width: 140px;
    height: 140px;
  }
  
  .snippet-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    max-width: 220px;
  }
  
  .social-icon-preview {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
    min-width: 85px;
  }
}
  }
  
  .snippet-card {
    padding: 1.2rem;
    margin: 0 0.5rem;
  }
  
  .snippet-text-content {
    margin-bottom: 1.2rem;
  }
  
  .snippet-text-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  
  .snippet-text-content h3::after {
    width: 30px;
    height: 2px;
  }
  
  .snippet-text-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
  
  .about-snippet .snippet-image,
  .music-snippet .featured-track .snippet-image,
  .videos-snippet .featured-video .snippet-image,
  .events-snippet .next-event .snippet-image {
    max-width: 160px;
    height: 160px;
    border-radius: 10px;
  }
  
  .social-preview {
    align-items: center;
    gap: 0.8rem;
  }
  
  .social-icon-preview {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    border-radius: 10px;
  }
  
  .snippet-btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    border-radius: 20px;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  .hero {
    padding: 6em 0.8rem 3em 0.8rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-logo {
    max-width: 180px;
  }
  
  .page-snippets {
    gap: 1.5rem;
    padding: 0 0.3rem;
  }
  
  .snippet-card {
    padding: 1rem;
    margin: 0 0.2rem;
    border-radius: 10px;
  }
  
  .snippet-text-content h3 {
    font-size: 1.2rem;
  }
  
  .snippet-text-content p {
    font-size: 0.9rem;
  }
  
  .about-snippet .snippet-image,
  .music-snippet .featured-track .snippet-image,
  .videos-snippet .featured-video .snippet-image,
  .events-snippet .next-event .snippet-image {
    max-width: 140px;
    height: 140px;
  }
  
  .snippet-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    max-width: 220px;
  }
  
  nav ul li a {
    font-size: 0.8rem;
    padding: 0.3em 0.6em;
  }
}
