* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #fcaac9, #46063a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.container {
  width: 100%;
  max-width: 850px;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

header h1 {
  font-size: 26px;
}

header p {
  font-size: 14px;
  opacity: 0.8;
}

/* Card */
.card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  height: 420px;
  animation: fadeIn 0.5s ease;
}

/* Image */
.image-container {
  position: relative;
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Loader */
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  border: 4px solid white;
  border-top: 4px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1s linear infinite;
  display: none;
}

/* Content */
.content {
  padding: 20px;
  flex: 1;
  color: #fff;
}

.content h2 {
  margin-bottom: 5px;
}

.content p {
  font-size: 14px;
  margin-bottom: 10px;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.tags span {
  background: rgba(255,255,255,0.25);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* Description */
.description {
  font-size: 13px;
  opacity: 0.9;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 10px 0;
}

.stat {
  background: rgba(255,255,255,0.2);
  padding: 5px;
  border-radius: 10px;
  font-size: 12px;
}

/* Button */
button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #fff;
  color: #333;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #f1f1f1;
}

/* Animations */
@keyframes spin {
  to { transform: rotate(360deg) translate(-50%, -50%); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}