/* BL Voice Auto - Frontend Styles */

/* ── Age Check ── */
.blva-age-check {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a2e;
  padding: 2rem 1rem;
}

.blva-age-check__inner {
  background: #16213e;
  border: 1px solid #e91e8c33;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 40px #e91e8c22;
}

.blva-age-check__logo {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.blva-age-check__title {
  color: #e91e8c;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blva-age-check__subtitle {
  color: #a0a0c0;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blva-age-check__warning {
  background: #e91e8c18;
  border: 1px solid #e91e8c44;
  border-radius: 8px;
  padding: 1rem;
  color: #ffb3d9;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.blva-age-check__btn-yes {
  display: block;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 0.75rem;
  transition: opacity 0.2s;
}

.blva-age-check__btn-yes:hover {
  opacity: 0.88;
  color: #fff;
}

.blva-age-check__btn-no {
  display: block;
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #a0a0c0;
  font-size: 0.875rem;
  border: 1px solid #a0a0c055;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.blva-age-check__btn-no:hover {
  border-color: #a0a0c0;
  color: #d0d0e8;
}

/* ── Work Grid ── */
.blva-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  padding: 1.5rem 0;
}

@media (max-width: 480px) {
  .blva-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* ── Work Card ── */
.blva-card {
  background: #16213e;
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.blva-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px #e91e8c22;
  border-color: #e91e8c44;
}

.blva-card__thumb {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #1a1a2e;
}

.blva-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blva-card:hover .blva-card__thumb img {
  transform: scale(1.04);
}

.blva-card__new-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #e91e8c;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.blva-card__body {
  padding: 0.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.blva-card__circle {
  font-size: 0.7rem;
  color: #e91e8c;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blva-card__title {
  font-size: 0.8rem;
  color: #e8e8f8;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blva-card__price {
  font-size: 0.85rem;
  color: #ffb3d9;
  font-weight: 700;
}

.blva-card__btn {
  display: block;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  border-radius: 6px;
  text-decoration: none !important;
  transition: opacity 0.2s;
}

.blva-card__btn:hover {
  opacity: 0.85;
}

/* ── Single Post ── */
.blva-single {
  max-width: 860px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.blva-single__hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}

@media (max-width: 600px) {
  .blva-single__hero {
    grid-template-columns: 1fr;
  }
}

.blva-single__cover {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px #00000044;
}

.blva-single__cover img {
  width: 100%;
  display: block;
}

.blva-single__meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.blva-single__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #e8e8f8;
  line-height: 1.4;
  margin: 0;
}

.blva-single__circle {
  color: #e91e8c;
  font-size: 0.9rem;
  font-weight: 600;
}

.blva-single__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffb3d9;
}

.blva-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.blva-single__tag {
  background: #2a2a4a;
  color: #c0c0e0;
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.blva-single__buy-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #e91e8c, #c2185b);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none !important;
  transition: opacity 0.2s;
}

.blva-single__buy-btn:hover {
  opacity: 0.85;
}

.blva-single__description {
  background: #16213e;
  border: 1px solid #2a2a4a;
  border-radius: 10px;
  padding: 1.5rem;
  color: #b8b8d8;
  line-height: 1.8;
  font-size: 0.9rem;
  white-space: pre-line;
}
