/* Modern, classy art book & music store CSS */
body {
  background:
    linear-gradient(120deg, #181c2b 60%, #232946 100%) fixed;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(90deg, rgba(0,255,255,0.07) 0 2px, transparent 2px 80px),
    repeating-linear-gradient(0deg, rgba(0,255,255,0.07) 0 2px, transparent 2px 80px);
  color: #222;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
}
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0.5rem 0;
}

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

.header-logo {
  flex-shrink: 0;
}

.header-logo img {
  height: 75px;
  width: auto;
}

header nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 700px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .header-logo img {
    height: 120px;
  }
  
  header nav {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.intro-section {
  background: linear-gradient(135deg, #232946 0%, #181c2b 100%);
  color: #e0e7ff;
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid #00fff7;
}

.intro-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  color: #00fff7;
  text-shadow: 0 0 20px #00fff7;
}

.intro-section p {
  color: #e0e7ff;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
  font-size: 1.1rem;
  line-height: 1.7;
}
nav a {
  color: rgb(20, 91, 67);
  text-decoration: none;
  font-weight: 600;
  margin: 0 0.5rem;
}
.container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ED7512;
  border-left: 4px solid rgb(208, 178, 185);
  padding-left: 0.75rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

.card {
  background: linear-gradient(120deg, #232946 80%, #181c2b 100%);
  border-radius: 1.2rem;
  box-shadow: 0 2px 24px rgba(0,255,255,0.08), 0 0px 0px 1.5px #232946;
  border: 1.5px solid #232946;
  overflow: hidden;
  padding: 1.5rem 1rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  color: #e0e7ff;
  cursor: pointer;
}

.card.book-card {
  padding: 1rem;
  cursor: pointer;
  min-height: 500px;
}

.card.book-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.card.book-card img {
  width: 100%;
  height: auto;
  max-width: 300px;
  object-fit: contain;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  aspect-ratio: auto;
}
.card:hover {
  box-shadow: 0 8px 48px 2px #00fff7, 0 0px 0px 2px #00fff7;
  transform: translateY(-6px) scale(1.025);
  border-color: #00fff7;
}
.card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 0.7rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 24px #00fff7a0;
  background: #181c2b;
}
.card h3 {
  font-size: 1.2rem;
  margin: 0.5rem 0 0.25rem 0;
  font-family: 'Playfair Display', serif;
}
.card .meta {
  color: #888;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.card .desc {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-align: center;
}
.card .donate {
  background: linear-gradient(90deg, #00fff7 60%, #00bfff 100%);
  color: #181c2b;
  border: none;
  border-radius: 2rem;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: auto;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 16px #00fff7a0;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #00fff7;
}
.card .donate:hover {
  background: linear-gradient(90deg, #00bfff 60%, #00fff7 100%);
  box-shadow: 0 4px 32px #00fff7cc;
}
footer {
  text-align: center;
  color: #aaa;
  font-size: 0.95rem;
  padding: 2rem 0 1rem 0;
  margin-top: 2rem;
}
@media (max-width: 700px) {
  .container {
    padding: 0 0.5rem;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

/* Streaming service buttons */
.streaming-links {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 255, 247, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.streaming-text {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.25rem;
}

.streaming-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  color: #fff;
  margin: 0 0.25rem;
}

.streaming-btn svg {
  flex-shrink: 0;
}

.spotify-btn {
  background: #1DB954;
  box-shadow: 0 2px 8px rgba(29, 185, 84, 0.3);
}

.spotify-btn:hover {
  background: #1ed760;
  box-shadow: 0 4px 16px rgba(29, 185, 84, 0.5);
  transform: translateY(-2px);
}

.apple-btn {
  background: linear-gradient(135deg, #FA2D48 0%, #FA233B 100%);
  box-shadow: 0 2px 8px rgba(250, 45, 72, 0.3);
}

.apple-btn:hover {
  background: linear-gradient(135deg, #FB3A51 0%, #FB3149 100%);
  box-shadow: 0 4px 16px rgba(250, 45, 72, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .streaming-links {
    flex-direction: column;
  }
  
  .streaming-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: linear-gradient(135deg, #232946 0%, #181c2b 100%);
  border: 2px solid #00fff7;
  border-radius: 1rem;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 255, 247, 0.3);
  animation: slideDown 0.3s;
}

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

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: #00fff7;
  color: #181c2b;
  border: none;
  font-size: 2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.2s;
  font-weight: 700;
}

.modal-close:hover {
  background: #fff;
  transform: rotate(90deg);
  box-shadow: 0 0 20px #00fff7;
}

.modal-body {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  padding: 2rem;
}

.modal-cover img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.modal-info {
  color: #e0e7ff;
}

.modal-info h2 {
  font-family: 'Playfair Display', serif;
  color: #00fff7;
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
}

.modal-meta {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.modal-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #cbd5e1;
}

.modal-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0fa;
  margin-bottom: 1rem;
}

/* Carousel Styles */
.modal-carousel {
  padding: 2rem;
  border-top: 2px solid rgba(0, 255, 247, 0.2);
}

.modal-carousel h3 {
  font-family: 'Playfair Display', serif;
  color: #00fff7;
  text-align: center;
  margin: 0 0 1.5rem 0;
  font-size: 1.5rem;
}

.carousel-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.carousel-slides {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #181c2b;
}

.carousel-slide {
  display: none;
  width: 100%;
}

.carousel-slide.active {
  display: block;
  animation: slideIn 0.5s;
}

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

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 255, 247, 0.8);
  color: #181c2b;
  border: none;
  padding: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 0.5rem;
  transition: all 0.2s;
  font-weight: 700;
}

.carousel-btn:hover {
  background: #00fff7;
  box-shadow: 0 0 20px #00fff7;
}

.carousel-btn.prev {
  left: -3.5rem;
}

.carousel-btn.next {
  right: -3.5rem;
}

.carousel-dots {
  text-align: center;
  margin-top: 1rem;
}

.carousel-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 255, 247, 0.3);
  margin: 0 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: #00fff7;
  box-shadow: 0 0 10px #00fff7;
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
  
  .modal-cover {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .carousel-btn.prev {
    left: 0.5rem;
  }
  
  .carousel-btn.next {
    right: 0.5rem;
  }
}

/* Ticker Styles */
.ticker-container {
  background: linear-gradient(120deg, #232946 80%, #181c2b 100%);
  border: 1px solid rgba(0, 255, 247, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  max-height: 400px;
  overflow-y: auto;
}

.ticker-item {
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(0, 255, 247, 0.05);
  border-left: 3px solid #00fff7;
  border-radius: 0.25rem;
  color: #e0e7ff;
}

.ticker-title {
  font-weight: 600;
  color: #00fff7;
}

.ticker-meta {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-left: 1rem;
}
