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

body {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  background: #0a0a0a;
  color: #f5f5f5;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0) 100%
  );
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-seal {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.logo-text {
  font-size: 16px;
  letter-spacing: 3px;
  font-weight: 300;
  color: #d4af37;
  text-transform: uppercase;
}

nav a {
  margin-left: 40px;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

nav a:hover {
  color: #d4af37;
}

.hero-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 70%);
}
.featured-item {
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 70%);
   border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.fireworks-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.firework {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: explode 2s ease-out infinite;
}

@keyframes explode {
  0% {
    transform: translate(0, 0) scale(0);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) scale(1);
    opacity: 0;
  }
}

.artwork-display {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 600px;
  animation: fadeInUp 1.5s ease-out;
}

.Logo-seal-display {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.frame {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 30px;
  border: 2px solid #d4af37;
  box-shadow: 0 20px 80px rgba(212, 175, 55, 0.3),
    inset 0 0 40px rgba(212, 175, 55, 0.1);
  position: relative;
  margin-bottom: 40px;
}

.frame::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(45deg, #d4af37, #f5f5f5, #d4af37);
  z-index: -1;
  filter: blur(10px);
  opacity: 0.5;
}

.temporal-art {
  background: #000;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.temporal-art::before {
  content: "GENESIS";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 180px;
  font-weight: 700;
  color: #d4af37;
  opacity: 0.03;
  letter-spacing: 20px;
}

.seal-watermark {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  opacity: 0.15;
  z-index: 1;
}

.large-logo-display {
  width: 700px;
  height: 700px;
  margin: 0 auto 30px;
  display: block;
  opacity: 0.9;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
  position: relative;
  z-index: 2;
}

.minute-display {
  font-size: 72px;
  font-weight: 300;
  color: #d4af37;
  letter-spacing: 8px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
  animation: glow 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
  }
  50% {
    text-shadow: 0 0 50px rgba(212, 175, 55, 1),
      0 0 80px rgba(212, 175, 55, 0.6);
  }
}

.minute-number {
  font-size: 24px;
  color: #888;
  margin-top: 20px;
  letter-spacing: 4px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 20px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 10px;
  font-weight: 300;
}
.minute-title {
  font-size: 20px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 10px;
  font-weight: 300;
}

.hero-subtitle {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 30px;
  line-height: 1.3;
}

.inaugural-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid #d4af37;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 20px;
}

.price-section {
  padding: 100px 60px;
  background: linear-gradient(
    180deg,
    #0a0a0a 0%,
    #1a1a1a 50%,
    #0a0a0a 100%
  );
  text-align: center;
   border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.price-label {
  font-size: 16px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
}

.price {
  font-size: 84px;
  font-weight: 300;
  color: #d4af37;
  letter-spacing: 4px;
  margin-bottom: 40px;
}

.edition-info {
  font-size: 18px;
  color: #aaa;
  letter-spacing: 3px;
  margin-bottom: 60px;
}

.authenticity-badge {
  text-align: center;
  margin-top: 40px;
  padding: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.authenticity-badge svg {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.authenticity-badge p {
  font-size: 14px;
  letter-spacing: 3px;
  color: #888;
  text-transform: uppercase;
}

.section-divider {
  text-align: center;
  padding: 60px 0;
  background: #0a0a0a;
}

.seal-divider {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
  animation: gentleGlow 4s ease-in-out infinite;
}

@keyframes gentleGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
  }
}

.story-section {
  padding: 120px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 40px;
  text-align: center;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  margin-top: 80px;
}

.story-item {
  text-align: center;
  padding: 40px;
  background: rgba(26, 26, 30, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.4s;
}

.story-item:hover {
  background: rgba(26, 26, 30, 0.6);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-10px);
}

.story-icon {
  font-size: 48px;
  margin-bottom: 30px;
}

.story-item h3 {
  font-size: 24px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #d4af37;
  font-weight: 400;
}

.story-item p {
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  letter-spacing: 1px;
}

.inquiry-section {
  padding: 120px 60px;
  text-align: center;
  background: radial-gradient(ellipse at center, #1a1a2e 0%, #0a0a0a 70%);
}

.inquiry-button {
  display: inline-block;
  padding: 20px 60px;
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.inquiry-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #d4af37;
  transition: left 0.4s;
  z-index: -1;
}

.inquiry-button:hover::before {
  left: 0;
}

.inquiry-button:hover {
  color: #0a0a0a;
}

.provenance-section {
  padding: 120px 60px;
  background: #0a0a0a;
  max-width: 900px;
  margin: 0 auto;
}

.provenance-text {
  font-size: 20px;
  line-height: 2;
  color: #ccc;
  text-align: center;
  letter-spacing: 1px;
  font-style: italic;
}

.highlight {
  color: #d4af37;
  font-style: normal;
  font-weight: 400;
}

.collection-intro {
  padding: 100px 60px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.collection-intro h2 {
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 40px;
  color: #d4af37;
}

.collection-intro p {
  font-size: 18px;
  line-height: 2;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 50px;
  letter-spacing: 1px;
}

.collection-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 56px;
  color: #d4af37;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 13px;
  color: #888;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.sister-brand {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.sister-brand p {
  font-size: 16px;
  color: #888;
  margin-bottom: 30px;
}

.sister-brand-link {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: #d4af37;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.sister-brand-link:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #d4af37;
}

footer {
  padding: 60px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 12px;
  letter-spacing: 3px;
  color: #666;
}

.footer-seal {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

.footer-nav {
  margin-top: 30px;
}

.footer-nav a {
  color: #888;
  text-decoration: none;
  margin: 0 20px;
  font-size: 11px;
  letter-spacing: 2px;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #d4af37;
}

@media (max-width: 768px) {
  header {
    padding: 20px 30px;
  }

  .logo {
    flex-direction: column;
    gap: 10px;
  }

  .logo-seal {
    width: 40px;
    height: 40px;
  }

  .logo-text {
    font-size: 14px;
  }

  nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin-left: 0;
    font-size: 11px;
  }

  .hero-subtitle {
    font-size: 32px;
  }

  .minute-display {
    font-size: 48px;
  }

  .price {
    font-size: 56px;
  }

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

  .collection-stats {
    gap: 40px;
  }

  .stat-number {
    font-size: 42px;
  }

  .collection-intro h2 {
    font-size: 32px;
  }
}