#edenhp3_wrap {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 0 2rem;
}

#edenhp3_wrap .ep3_grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@keyframes ep3_in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

#edenhp3_wrap .ep3_card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e8e0f0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  animation: ep3_in 0.42s cubic-bezier(.25,.8,.25,1) forwards;
  box-shadow: 0 2px 12px rgba(80,20,80,0.06);
  transition: box-shadow 0.22s, transform 0.22s;
}
#edenhp3_wrap .ep3_card:hover {
  box-shadow: 0 8px 32px rgba(80,20,80,0.13);
  transform: translateY(-3px);
}
#edenhp3_wrap .ep3_card:nth-child(1){animation-delay:.04s}
#edenhp3_wrap .ep3_card:nth-child(2){animation-delay:.10s}
#edenhp3_wrap .ep3_card:nth-child(3){animation-delay:.16s}
#edenhp3_wrap .ep3_card:nth-child(4){animation-delay:.22s}
#edenhp3_wrap .ep3_card:nth-child(5){animation-delay:.28s}
#edenhp3_wrap .ep3_card:nth-child(6){animation-delay:.34s}
#edenhp3_wrap .ep3_card:nth-child(7){animation-delay:.40s}

#edenhp3_wrap .ep3_inner {
  display: flex;
  align-items: stretch;
  min-height: 200px;
}

#edenhp3_wrap .ep3_thumb {
  flex: 0 0 240px;
  width: 240px;
  min-height: 200px;
  overflow: hidden;
  position: relative;
  background: #1a0a1e;
}
#edenhp3_wrap .ep3_thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.38s ease;
  margin:0!important;
}
#edenhp3_wrap .ep3_card:hover .ep3_thumb img {
  transform: scale(1.05);
}

#edenhp3_wrap .ep3_right {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

#edenhp3_wrap .ep3_titlebar {
  background: #4a1252;
  padding: 14px 18px 12px;
}
#edenhp3_wrap .ep3_name {
  font-size: 20px;
  font-weight: 700;
  color: #f0a030;
  margin: 0;
  letter-spacing: -0.3px;
  cursor: pointer;
}
#edenhp3_wrap .ep3_name:hover { color: #ffc060; }

#edenhp3_wrap .ep3_body {
  flex: 1;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#edenhp3_wrap .ep3_rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
#edenhp3_wrap .ep3_stars {
  font-size: 17px;
  color: #f0a030;
  letter-spacing: 1px;
}
#edenhp3_wrap .ep3_score {
  font-size: 13px;
  color: #666;
}
#edenhp3_wrap .ep3_score strong {
  color: #333;
  font-weight: 600;
}

#edenhp3_wrap .ep3_desc {
  font-size: 14px;
  color: #444;
  line-height: 1.55;
  margin: 0;
}

#edenhp3_wrap .ep3_badge {
  display: inline-block;
  font-size: 12px;
  color: #c0392b;
  background: #fff0ee;
  border: 1.5px solid #f09595;
  border-radius: 30px;
  padding: 3px 14px;
  width: fit-content;
  font-weight: 500;
}

#edenhp3_wrap .ep3_actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 18px 16px;
}

#edenhp3_wrap .ep3_btn_ghost {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 600;
  color: #f0a030;
  background: transparent;
  border: 2px solid #f0a030;
  border-radius: 10px;
  padding: 9px 18px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
#edenhp3_wrap .ep3_btn_ghost:hover {
  background: #f0a030;
  color: #fff;
}

#edenhp3_wrap .ep3_btn_main {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  background: #b22222;
  border: none;
  border-radius: 10px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.18s, transform 0.14s;
  user-select: none;
}
#edenhp3_wrap .ep3_btn_main:hover {
  background: #8b0000;
  transform: scale(1.03);
}

@media(max-width:540px){
  #edenhp3_wrap .ep3_inner{flex-direction:column}
  #edenhp3_wrap .ep3_thumb{flex:none;width:100%;height:180px}
  #edenhp3_wrap .ep3_thumb img{object-fit:cover;object-position:center center}
  #edenhp3_wrap .ep3_name{font-size:16px}
}