@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@400;500;600;700;800&display=swap');

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

html, body {
  margin: 0;
  padding: 0;
  width: 1080px;
  height: 1080px;
  overflow: hidden;
  background: #111;
  font-family: 'Inter', sans-serif;
}

.card {
  width: 1080px;
  height: 1080px;
  position: relative;
  overflow: hidden;
}

/* Full-bleed photo */
.card-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlays */
.card-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.05) 35%,
    rgba(0,0,0,0.05) 45%,
    rgba(0,0,0,0.75) 75%,
    rgba(0,0,0,0.92) 100%
  );
}

/* Top bar */
.card-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 5;
  height: 6px;
}

/* Header */
.card-header {
  position: absolute;
  top: 22px;
  left: 15px;
  right: 51px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-handle {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(245,239,228,0.75);
}
.card-handle em { color: #4CAF82; font-style: normal; }
.card-counter {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(245,239,228,0.5);
}

/* Day badge */
.card-day {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: #4CAF82;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 40px;
}

/* Bottom content */
.card-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 5;
  padding: 0 60px 54px;
}

.card-type {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #4CAF82;
  margin-bottom: 16px;
}

.card-name {
  font-family: 'DM Serif Display', serif;
  font-size: 88px;
  line-height: 0.9;
  color: #F5EFE4;
  letter-spacing: -2px;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgb(0 0 0 / 76%);
}

.card-korean {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 40px;
  color: rgb(245 239 228 / 79%);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.card-divider {
  width: 48px;
  height: 3px;
  background: #4CAF82;
  border-radius: 2px;
  margin-bottom: 24px;
}

.card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  line-height: 1.45;
  color: rgba(245,239,228,0.82);
  max-width: 820px;
  font-weight: 400;
}

/* Bottom bar */
.card-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  z-index: 5;
}
