
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #d4af37;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    animation: fadeIn 2s ease-in;
}
.logo img {
    max-width: 300px;
    margin-bottom: 20px;
    animation: slideUp 1.5s ease-out;
}
h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.description {
    max-width: 600px;
    padding: 0 20px;
    font-size: 1rem;
    margin-bottom: 30px;
}
.countdown {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}
footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.9rem;
    color: #888;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.catalog-selectors {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 25px 0;
  animation: fadeIn 0.6s ease;
}

.cat-box {
  background: var(--panel);
  border: 1px solid #2a2a2d;
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 240px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.45);
  animation: slideIn 0.35s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}

.cat-box:nth-child(1) { animation-delay: 0s; }
.cat-box:nth-child(2) { animation-delay: 0.1s; }
.cat-box:nth-child(3) { animation-delay: 0.2s; }

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

.cat-box h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--accent);
  font-weight: 700;
  border-bottom: 1px solid #2a2a2d;
  padding-bottom: 5px;
  text-transform: capitalize;
}

.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 240px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) #1a1a1a;
}

.cat-list::-webkit-scrollbar {
  width: 6px;
}
.cat-list::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 6px;
}

.cat-list li {
  padding: 7px 10px;
  cursor: pointer;
  color: var(--text);
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}
.cat-list li:hover {
  background: var(--accent);
  color: #111;
  transform: translateX(3px);
}
.cat-list li.active {
  background: var(--accent-2);
  color: #fff;
}
.cat-list li:first-child {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid #2a2a2d;
  margin-bottom: 6px;
}

