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

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #0d0d0d;
  color: #e5e5e5;
  text-align: center;
}

/* --- LAYOUT --- */
.container {
  padding: 60px 20px;
}

.logo img {
  max-width: 280px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 6px #6200ff88);
}

.caption{
    color:red
}

.logo-subtext {
  margin-top: 10px;
  margin-bottom: 50px;
  font-size: 1.5rem;
  color: #bbbbbb;
  text-shadow: 0 0 6px #6200ff;
}

/* --- CARD GRID --- */
.card-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* --- WRAPPER FOR CARD + WIG --- */
.card-wrapper {
  position: relative;
  width: 220px;
}

/* --- CLOWN WIG ABOVE CARD --- */
.clown-wig {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 140px;
  background: url('/assets/landingpage/clown.png') no-repeat center/contain;
  z-index: 0;
  pointer-events: none;
}

/* --- CARD DESIGN --- */
.card {
  position: relative;
  width: 220px;
  height: 300px;
  background: #151515;
  border: 2px solid #292929;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
  z-index: 1;
}

.card:hover {
  transform: translateY(-6px);
  border-color: #6200ff;
}

/* --- CARD IMAGE (UNIFORM) --- */
.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 2px solid #292929;
}

/* --- USERNAME + DESC --- */
.caption {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 0 4px;
}

.desc {
  font-size: 0.85rem;
  color: #bbbbbb;
  padding: 0 12px 16px;
  line-height: 1.35;
}

/* --- RESPONSIVE FIX --- */
@media (max-width: 600px) {
  .card-wrapper {
    width: 90%;
  }

  .clown-wig {
    width: 100%;
    height: 100px;
  }
}
/* === INTRO OVERLAY ANIMATION === */
.intro-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

.intro-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.intro-logo {
  width: 300px;
  animation: logo-drop 2.5s ease forwards;
}

@keyframes logo-drop {
  0% {
    transform: translateY(-200%) scale(2) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  70% {
    transform: translateY(0) scale(1.2) rotate(360deg);
  }
  100% {
    transform: translateY(0) scale(1) rotate(360deg);
  }
}

