body {
  margin: 0;
  background: #fff;
  color: #111;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  transition: background 0.3s, color 0.3s;
}
body.dark, body[data-theme='dark'] {
  background: #111;
  color: #fff;
}

.main-header {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 32px 60px 0 60px;
  box-sizing: border-box;
  background: transparent;
}
.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: lowercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-end;
}
.main-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  padding: 2px 6px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #000000;
}
.merch-link {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: none;
  border: 1.5px solid #000000;
  color: #000000;
  border-radius: 5px;
  padding: 6px 18px;
  margin-left: 10px;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
body.dark .merch-link, body[data-theme='dark'] .merch-link {
  border: 1.5px solid #fff;
  color: #fff;
}
body.dark .merch-link:hover, body[data-theme='dark'] .merch-link:hover {
  background: #fff;
  color: #000000;
  border-color: #fff;
}
.merch-link:hover, .merch-link:focus {
  background: #fff;
  color: #000000;
  border-color: #000000;
}
.toggle-theme-btn {
  background: none;
  border: 1.5px solid #bbb;
  color: #bbb;
  border-radius: 50%;
  padding: 7px 10px;
  font-size: 1.2rem;
  font-weight: 400;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s, color 0.2s, border 0.2s;
  opacity: 0.8;
}
.toggle-theme-btn:hover, .toggle-theme-btn:focus {
  background: #eee;
  color: #111;
  border-color: #000000;
  opacity: 1;
}
body.dark .toggle-theme-btn, body[data-theme='dark'] .toggle-theme-btn {
  background: none;
  color: #bbb;
  border: 1.5px solid #444;
}
body.dark .toggle-theme-btn:hover, body[data-theme='dark'] .toggle-theme-btn:focus {
  background: #222;
  color: #fff;
  border-color: #000000;
}

.main-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px 0 40px;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero {
  width: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 60px 0 40px 0;
  text-align: center;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: -1px;
  margin-bottom: 18px;
  line-height: 1.1;
}
.hero-sub {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
  margin-bottom: 0;
}
body.dark .hero-sub, body[data-theme='dark'] .hero-sub {
  color: #bbb;
}
.section-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 60px 0 18px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
}
body.dark .section-title, 
body[data-theme="dark"] .section-title {
  color: #fff;
}
.artist-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.artist-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #e9ecef;
  border-radius: 20px;
  width: 500px;
  min-height: 180px;
  padding: 24px;
  text-align: left;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.artist-card:hover, .artist-card:focus-within {
  border: 2px solid #000000;
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
}
body.dark .artist-card, body[data-theme='dark'] .artist-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  border: 2px solid #333;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 16px rgba(0, 0, 0, 0.2);
}
body.dark .artist-card:hover, body[data-theme='dark'] .artist-card:focus-within {
  border: 2px solid #000000;
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 8px 24px rgba(0, 0, 0, 0.3);
}
.artist-img {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  border-radius: 50%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  font-weight: 900;
  letter-spacing: -2px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  border: 3px solid #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.artist-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
body.dark .artist-img, body[data-theme='dark'] .artist-img {
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  color: #fff;
  border: 3px solid #333;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
body.dark .icon-link svg path[fill="#000"], body[data-theme='dark'] .icon-link svg path[fill="#000"] {
  fill: #fff;
}
.artist-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0;
  margin-right: 24px;
  white-space: nowrap;
}
.artist-links {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  margin-left: 0;
}
.icon-link {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
}
.icon-link:hover, .icon-link:focus {
  opacity: 1;
  transform: scale(1.1);
}
.artist-desc {
  font-size: 0.95rem;
  color: #424242;
  font-weight: 400;
  padding-left: 18px;
  margin-bottom: 0;
  align-self: center;
}
body.dark .artist-desc, body[data-theme='dark'] .artist-desc {
  color: #bbb;
}
.contact {
  text-align: center;
  margin-top: 60px;
  color: #888;
}
body.dark .contact, body[data-theme='dark'] .contact {
  color: #bbb;
}
.contact a {
  color: #000000;
  text-decoration: underline;
  font-weight: 700;
}
body.dark .contact a, body[data-theme='dark'] .contact a {
  color: #50b8ff;
}
.site-footer {
  width: 100%;
  text-align: center;
  padding: 32px 0 18px 0;
  font-size: 1rem;
  color: #888;
  letter-spacing: 1px;
  background: none;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
body.dark .site-footer, body[data-theme='dark'] .site-footer {
  color: #787878;
}
body.light .site-footer, body[data-theme='light'] .site-footer {
  color: #232323;
}
.logo-hero {
  display: block;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: lowercase;
  margin: 48px 0 24px 0;
}
body.dark .logo-hero, body[data-theme='dark'] .logo-hero {
  color: #fff;
}
.about {
  max-width: 420px;
  margin: 48px auto 32px auto;
  text-align: center;
  font-size: 1.1rem;
  color: #444;
}
body.dark .about, body[data-theme='dark'] .about {
  color: #bbb;
}

@media (max-width: 900px) {
  .main-header {
    padding: 24px 18px 0 18px;
  }
  .main-content {
    padding: 0 10px 0 10px;
  }
  .artist-list {
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .main-header {
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    padding: 18px 8px 0 8px;
  }
  .main-nav {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .hero-title {
    font-size: 1.5rem;
  }
  .main-content {
    padding: 0 2vw;
  }
  .artist-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .artist-card {
    width: 100% !important;
    max-width: 340px;
    min-width: 0;
    padding: 16px 20px;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px;
    box-sizing: border-box;
  }
  .artist-img {
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 10px;
  }
  .artist-name {
    font-size: 1.15rem;
    white-space: nowrap;
    margin: 0 0 10px 0 !important;
    margin-right: 0 !important;
  }
  .artist-links {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 10px;
  }
  .icon-link svg,
  .icon-link img {
    width: 32px !important;
    height: 32px !important;
  }
  .artist-desc {
    font-size: 1rem;
    padding-left: 0 !important;
    margin: 0;
    color: #666;
    text-align: left;
  }
}

/* === ICON SIZE MODIFICATION FOR SPOTIFY & APPLE MUSIC === */
.icon-link svg {
  width: 40px;
  height: 40px;
  display: block;
}
.icon-link img {
  width: 40px;
  height: 40px;
  display: block;
}
.artist-links {
  gap: 24px;
}
