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

body {
  background-color: #f5f5f0;
  color: #333;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(245, 245, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e5e5;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  min-height: 70px;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

.logo-image {
  width: 45px;
  height: 45px;
  border-radius: 4px;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
}

.header-title-image {
  width: 100px;
  height: 30px;
  object-fit: contain;
  box-shadow: none;
  border: none;
  border-radius: 0;
}

.desktop-nav {
  display: none;
  gap: 1.5rem;
}

.nav-link {
  color: #666;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link:hover {
  color: #000;
}

.nav-link.live-button {
  background-color: #f16baa;
  color: white;
  padding: 0.375rem 1rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(241, 107, 170, 0.3);
  display: inline-flex;
  align-items: center;
}

.nav-link.live-button:hover {
  background-color: rgba(241, 107, 170, 0.9);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(241, 107, 170, 0.4);
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.hamburger {
  width: 24px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background-color: rgba(245, 245, 240, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #e5e5e5;
  flex-direction: column;
  padding: 1rem 0;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
}

.mobile-nav.active {
  display: flex;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-link {
  color: #666;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: #000;
  background-color: rgba(241, 107, 170, 0.1);
  outline: none;
}

.mobile-nav-link.live-button-mobile {
  background-color: #f16baa;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  margin: 0.5rem 1rem;
  width: calc(100% - 2rem);
}

.mobile-nav-link.live-button-mobile:hover,
.mobile-nav-link.live-button-mobile:focus {
  background-color: rgba(241, 107, 170, 0.9);
  color: white;
}

/* Hero Section */
.hero-section {
  padding: 2rem 1rem 3rem 1rem;
}

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

.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
  box-shadow: none;
  border: none;
  border-radius: 0;
}

.hero-text {
  width: 100%;
  text-align: center;
}

.hero-title-container {
  margin-bottom: 1.5rem;
}

.hero-title-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  box-shadow: none;
  border: none;
  border-radius: 0;
}

.hero-description {
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.9rem;
  text-align: left;
}

/* Artist Section */
.artist-section {
  padding: 3rem 1rem;
  background-color: #fff;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 300;
  text-align: center;
  color: #000;
  margin-bottom: 2.5rem;
  letter-spacing: 0.1em;
}

.artist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.artist-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.artist-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
  justify-content: center;
}

.artist-image img {
  width: 100%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.artist-name {
  font-size: 1.25rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.artist-role {
  margin-bottom: 1rem;
  text-align: center;
}

.role-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background-color: #f5f5f5;
  color: #666;
  font-size: 0.8rem;
  font-weight: 400;
  border-radius: 20px;
}

.artist-description {
  color: #666;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 300;
  text-align: center;
}

/* Discography Section */
.discography-section {
  padding: 3rem 1rem;
}

.tabs {
  max-width: 900px;
  margin: 0 auto;
}

.tab-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.tab-button {
  padding: 1rem;
  background: none;
  border: none;
  color: #666;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  position: relative;
}

.tab-button.active {
  background-color: #f5f5f5;
  color: #000;
  font-weight: 400;
}

.tab-button:hover {
  background-color: rgba(245, 245, 245, 0.5);
}

.tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tab-content.active {
  display: block;
  opacity: 1;
}

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

.media-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.media-item:hover {
  transform: translateY(-2px);
}

.media-item img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.media-item:hover img {
  transform: scale(1.02);
}

.media-item p {
  color: #666;
  font-size: 0.875rem;
  font-weight: 300;
}

.video-item .video-thumbnail {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-thumbnail iframe {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

.tab-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.other-btn {
  padding: 0.75rem 2rem;
  background: transparent;
  border: 1px solid #ccc;
  color: #666;
  font-weight: 300;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-block;
}

.other-btn:hover {
  background-color: #f9f9f9;
  border-color: #999;
  transform: translateY(-1px);
}

/* Live Section */
.live-section {
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #fff 0%, rgba(252, 231, 243, 0.3) 50%, rgba(243, 232, 255, 0.2) 100%);
  position: relative;
  overflow: hidden;
}

.live-bg-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(225deg, rgba(252, 231, 243, 0.2) 0%, transparent 100%);
  border-radius: 50%;
  filter: blur(40px);
}

.live-bg-decoration-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, rgba(243, 232, 255, 0.2) 0%, transparent 100%);
  border-radius: 50%;
  filter: blur(40px);
}

.live-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}

.live-header .section-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.live-subsection {
  max-width: 900px;
  margin: 0 auto 3rem auto;
  position: relative;
  z-index: 10;
}

.live-subsection-header {
  text-align: center;
  margin-bottom: 2rem;
}

.new-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #f16baa;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.ping-dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.live-subtitle {
  color: #666;
  font-weight: 300;
  font-size: 0.95rem;
}

.live-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(252, 231, 243, 1);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.live-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.live-card-content {
  padding: 2rem 1.5rem;
}

.live-title-section {
  text-align: center;
  margin-bottom: 2rem;
}

.live-title {
  font-size: 1.1rem;
  font-weight: 300;
  background: linear-gradient(45deg, #ec4899, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.live-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.live-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(249, 249, 249, 0.8);
  padding: 1rem;
  border-radius: 12px;
  font-weight: 400;
  color: #666;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

.live-info-item span:last-child {
  font-size: 0.875rem;
  line-height: 1.4;
}

.mobile-break {
  display: block;
}

.info-icon {
  color: #f16baa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.map-button {
  display: inline-block !important;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background-color: #6b7280 !important;
  color: white !important;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(107, 114, 128, 0.3);
  text-align: center;
}

.map-button:hover {
  background-color: #4b5563 !important;
  color: white !important;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(107, 114, 128, 0.4);
}

.ticket-info {
  background: linear-gradient(135deg, rgba(249, 249, 249, 0.8) 0%, rgba(252, 231, 243, 0.5) 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(252, 231, 243, 1);
}

.ticket-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ticket-header h4 {
  font-size: 1.1rem;
  font-weight: 300;
  color: #000;
}

.ticket-icon {
  color: #f16baa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ticket-description {
  color: #666;
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.6;
}

.ticket-types {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ticket-type {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ticket-type.sold-out {
  background: rgba(245, 245, 245, 0.8);
  border: 1px solid #ccc;
  opacity: 0.75;
}

.ticket-type.sold-out .ticket-name,
.ticket-type.sold-out .ticket-price {
  text-decoration: line-through;
  color: #999;
}

.ticket-type.available {
  border: 2px solid rgba(252, 231, 243, 1);
}

.ticket-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ticket-name {
  color: #666;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.5;
}

.ticket-price-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.ticket-price {
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
}

.sold-out-badge {
  background: #ef4444;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-weight: 500;
}

.limited-badge {
  background: #f97316;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.premium-benefits {
  background: linear-gradient(135deg, rgba(252, 231, 243, 0.5) 0%, rgba(243, 232, 255, 0.3) 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(252, 231, 243, 1);
}

.benefits-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 1.25rem;
}

.gift-icon {
  font-size: 1.25rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  border-radius: 10px;
}

.check-icon {
  color: #f16baa;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.125rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-item span:last-child {
  color: #666;
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.5;
}

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

.purchase-btn {
  background-color: #f16baa;
  color: #fff;
  font-weight: 500;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(241, 107, 170, 0.3);
  text-decoration: none;
  display: inline-block;
  width: 100%;
  max-width: 300px;
}

.purchase-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(241, 107, 170, 0.4);
}

.purchase-note {
  font-size: 0.8rem;
  color: #666;
  margin-top: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

/* Live History Section */
.live-history-section {
  background: linear-gradient(135deg, rgba(249, 249, 249, 0.8) 0%, rgba(252, 231, 243, 0.3) 100%);
  border-radius: 16px;
  border: 1px solid #e5e5e5;
  padding: 2rem 1.5rem;
}

.live-history-header {
  text-align: center;
  margin-bottom: 2rem;
}

.live-history-title {
  font-size: 1.3rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.live-history-description {
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto 2rem auto;
}

.recent-live-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.recent-live-content {
  padding: 1.5rem;
}

.recent-live-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.recent-live-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-live-announcement {
  margin-bottom: 0.5rem;
}

.announcement-badge {
  font-size: 0.75rem;
  color: #666;
  background: rgba(245, 245, 245, 0.8);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
}

.recent-live-event-name {
  font-size: 1.1rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.recent-live-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.recent-live-detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
}

.detail-icon {
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.recent-live-setlist {
  border-left: none;
  border-top: 1px solid #e5e5e5;
  padding-left: 0;
  padding-top: 1.5rem;
}

.setlist-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.setlist-header h5 {
  font-size: 1rem;
  font-weight: 300;
  color: #000;
}

.setlist-icon {
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.setlist-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.setlist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(249, 249, 249, 0.8);
  border-radius: 10px;
}

.setlist-number {
  flex-shrink: 0;
  color: #666;
  font-weight: 500;
  font-size: 0.8rem;
  min-width: 20px;
}

.setlist-song {
  color: #666;
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.4;
}

.live-history-footer {
  text-align: center;
  margin-top: 1.5rem;
}

/* Media Section */
.media-section {
  padding: 3rem 1rem;
}

.coming-soon {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.coming-soon h3 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 1rem;
}

.coming-soon p {
  color: #666;
  font-weight: 300;
}

/* Footer */
.footer {
  padding: 3rem 1rem;
  border-top: 1px solid #e5e5e5;
  background-color: #fff;
}

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

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

.social-link {
  color: #666;
  text-decoration: none;
  font-size: 1.25rem;
  transition: color 0.3s ease;
  padding: 0.5rem;
}

.social-link:hover {
  color: #000;
}

.footer-contact {
  color: #666;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.footer-privacy {
  color: #999;
  font-size: 0.75rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-privacy:hover {
  color: #000 !important;
}

.footer-copyright {
  color: #999;
  font-size: 0.75rem;
  font-weight: 300;
}

.back-link {
  color: #666;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 300;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.back-link:hover {
  color: #000;
}

/* Common Page Styles */
.responsive-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem;
}

.page-title {
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: 300;
  text-align: center;
  color: #000;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.page-description {
  text-align: center;
  color: #666;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

/* Privacy Page Styles */
.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: clamp(1rem, 4vw, 2rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.privacy-section {
  margin-bottom: 2rem;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: rgba(249, 249, 249, 0.3);
  border-radius: 12px;
}

.section-heading {
  font-size: clamp(1rem, 3vw, 1.1rem);
  font-weight: 400;
  color: #000;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0.5rem;
}

.section-text {
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  margin-bottom: 1rem;
}

.section-list {
  color: #666;
  font-weight: 300;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.section-list li {
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

.privacy-footer {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;
}

.update-date {
  color: #999;
  font-size: clamp(0.75rem, 2.5vw, 0.875rem);
  font-weight: 300;
}

/* Loading and Error States */
.loading-container {
  text-align: center;
  padding: 3rem 1rem;
}

.loading-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid #e5e5e5;
  border-top: 2px solid #666;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem auto;
}

.loading-text {
  color: #666;
  font-weight: 300;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

.error-container {
  text-align: center;
  padding: 3rem 1rem;
  color: #ef4444;
}

.error-text {
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Utility Classes */
.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.mb-4 {
  margin-bottom: 1rem;
}

.object-contain {
  object-fit: contain;
}

/* Responsive Styles */
@media (min-width: 480px) {
  .container {
    padding: 0 1.5rem;
  }

  .hero-img {
    max-width: 350px;
  }

  .hero-title-image {
    max-width: 320px;
  }

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

  .video-thumbnail iframe {
    height: 180px;
  }

  .live-info {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .live-info-item {
    flex-direction: row;
    gap: 0.75rem;
    max-width: none;
    width: auto;
  }

  .mobile-break {
    display: none;
  }

  .map-button {
    margin-top: 0;
    margin-left: 0.75rem;
  }

  .responsive-container {
    padding: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 0 2rem;
  }

  .header-content {
    padding: 0.75rem 0;
  }

  .logo-image {
    width: 50px;
    height: 50px;
  }

  .header-title-image {
    width: 110px;
    height: 33px;
  }

  .desktop-nav {
    display: flex;
    gap: 1.25rem;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-section {
    padding: 4rem 2rem;
  }

  .hero-content {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }

  .hero-image {
    flex: 1;
    max-width: 400px;
  }

  .hero-img {
    max-width: 350px;
  }

  .hero-text {
    flex: 1;
    text-align: left;
  }

  .hero-title-image {
    max-width: 350px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2.25rem;
    margin-bottom: 3rem;
  }

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

  .artist-image img {
    max-width: 220px;
  }

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

  .video-thumbnail iframe {
    height: 220px;
  }

  .live-header .section-title {
    font-size: 2.25rem;
  }

  .live-title {
    font-size: 1.4rem;
  }

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

  .recent-live-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recent-live-setlist {
    border-left: 1px solid #e5e5e5;
    border-top: none;
    padding-left: 2rem;
    padding-top: 0;
  }

  .responsive-container {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .header-content {
    padding: 1rem 0;
  }

  .logo-image {
    width: 58px;
    height: 58px;
  }

  .header-title-image {
    width: 120px;
    height: 36px;
  }

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

  .mobile-menu-btn {
    display: none;
  }

  .hero-section {
    padding: 6rem 2rem;
  }

  .hero-content {
    flex-direction: row;
    gap: 4rem;
    align-items: center;
  }

  .hero-image {
    flex: 1;
    max-width: 500px;
  }

  .hero-img {
    max-width: 450px;
  }

  .hero-text {
    flex: 1;
    text-align: left;
  }

  .hero-title-image {
    max-width: 450px;
  }

  .hero-description {
    font-size: 1.1rem;
  }

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

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

  .artist-image img {
    max-width: 250px;
  }

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

  .video-thumbnail iframe {
    height: 250px;
  }

  .live-section {
    padding: 5rem 2rem;
  }

  .live-header .section-title {
    font-size: 3rem;
  }

  .live-title {
    font-size: 1.6rem;
  }

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

  .purchase-btn {
    width: auto;
    max-width: none;
  }

  .recent-live-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recent-live-setlist {
    border-left: 1px solid #e5e5e5;
    border-top: none;
    padding-left: 2rem;
    padding-top: 0;
  }

  .responsive-container {
    padding: 2.5rem;
  }
}

@media (min-width: 1440px) {
  .live-header .section-title {
    font-size: 4rem;
  }

  .hero-section {
    padding: 8rem 2rem;
  }

  .section-title {
    font-size: 3rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .ping-dot {
    animation: none;
  }

  .limited-badge {
    animation: none;
  }

  .loading-spinner {
    animation: none;
  }
}

@media (prefers-contrast: high) {
  .artist-card,
  .live-card,
  .recent-live-card {
    border-width: 2px;
  }

  .nav-link:hover,
  .back-link:hover {
    text-decoration: underline;
  }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.mobile-menu-overlay.active {
  display: block;
}

/* Focus styles for accessibility */
.mobile-menu-btn:focus {
  outline: 2px solid #f16baa;
  outline-offset: 2px;
}

.mobile-nav-link:focus {
  outline: 2px solid #f16baa;
  outline-offset: 2px;
  background-color: rgba(241, 107, 170, 0.1);
}

.tab-button:focus {
  outline: 2px solid #f16baa;
  outline-offset: 2px;
}
