.dc-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  overflow: hidden;
  font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
	border-radius:10px;
}.dc-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 480px;
  overflow: hidden;
  font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
	border-radius:10px;
}
.dc-hero__bg-wrap { position: absolute; inset: 0; }
.dc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.dc-hero__bg.active { opacity: 1; }
.dc-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); }
.dc-hero__pill {
  position: fixed;
  top: 450px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 14px;
  color: #1a1a1a;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  z-index: 30;
  width: max-content;
  max-width: 90vw;
  transition: top 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: top;
}
.dc-hero__word {
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  color: #1a1a1a;
  padding: 0;
	font-size:14px;
  overflow: hidden;
}
.dc-hero__word i { font-style: normal; font-size: 12px; margin-left: 2px; }

.dc-word-text { display: inline-block; }
@keyframes dc-word-pop {
  0%   { opacity: 0; transform: translateY(10px) scale(0.85); }
  55%  { opacity: 1; transform: translateY(-3px) scale(1.08); }
  75%  { transform: translateY(1px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.dc-word-text.dc-pop {
  animation: dc-word-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dc-hero__caption {
  position: absolute; left: 32px; bottom: 32px; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4); z-index: 2; max-width: 80vw;
}
.dc-hero__caption h3,
.dc-hero__caption p { transition: opacity 0.4s ease-in-out; }
.dc-hero__caption h3 { margin: 0 0 4px; font-size: 16px; }
.dc-hero__caption p { margin: 0; font-size: 14px; opacity: 0.9; }
.dc-hero__dots { position: absolute; right: 32px; bottom: 36px; display: flex; gap: 4px; z-index: 2; }
.dc-hero__dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; }
.dc-hero__dots span.active { background: #fff; }

.dc-fullscreen-menu {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.dc-fullscreen-menu.open { opacity: 1; visibility: visible; }
.dc-fm-card {
  background: #efefef;
  border-radius: 24px;
  padding: 40px 40px 32px;
  width: min(760px, 90vw);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.dc-fm-image {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  margin-bottom: 28px;
}
.dc-fm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.dc-fm-tags button {
  background: rgba(0,0,0,0.06);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.25s ease, background 0.2s ease;
}
.dc-fm-tags button.dc-dim { opacity: 0.3; }

@keyframes dc-bounce {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.15); }
  55%  { transform: scale(0.94); }
  75%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.dc-fm-tags button.dc-bounce {
  animation: dc-bounce 0.45s ease;
  background: rgba(0,0,0,0.12);
}

.dc-fullscreen-menu__close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; color: #fff;
  font-size: 40px; cursor: pointer; line-height: 1; z-index: 3;
}

@media (max-width: 900px) {
  .dc-hero__pill { font-size: 15px; padding: 11px 20px; }
}
@media (max-width: 600px) {
  .dc-hero { height: 55vh; min-height: 340px; }
  .dc-hero__pill {
    font-size: 11px; padding: 8px 12px; flex-wrap: wrap;
    text-align: center; gap: 3px 6px; border-radius: 18px;
    white-space: normal;
  }
  .dc-hero__word { font-size: 11px; }
  .dc-hero__word i { font-size: 10px; }
  .dc-hero__caption { left: 16px; bottom: 50px; }
  .dc-hero__caption h3 { font-size: 15px; }
  .dc-hero__caption p { font-size: 11px; }
  .dc-hero__dots { right: 16px; bottom: 18px; }
  .dc-fm-card { padding: 24px 20px 24px; border-radius: 18px; }
  .dc-fm-image { height: 160px; margin-bottom: 20px; border-radius: 12px; }
  .dc-fm-tags button { font-size: 13px; padding: 8px 12px; }
  .dc-fullscreen-menu__close { top: 16px; right: 20px; font-size: 32px; }
}
@media (max-width: 380px) {
  .dc-hero { height: 50vh; min-height: 300px; }
  .dc-hero__pill { font-size: 10px; padding: 7px 10px; }
  .dc-hero__word, .dc-hero__word i { font-size: 10px; }
}
.dc-hero__bg-wrap { position: absolute; inset: 0; }
.dc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.dc-hero__bg.active { opacity: 1; }
.dc-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.2); }
.dc-hero__pill {
  position: fixed;
  top: 450px;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 14px;
  color: #1a1a1a;
  white-space: nowrap;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  z-index: 30;
  width: max-content;
  max-width: 90vw;
  transition: top 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
  will-change: top, opacity;
}
.dc-hero__word {
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  color: #1a1a1a;
  padding: 0;
	font-size:14px;
  overflow: hidden;
}
.dc-hero__word i { font-style: normal; font-size: 12px; margin-left: 2px; }

.dc-word-text { display: inline-block; }
@keyframes dc-word-pop {
  0%   { opacity: 0; transform: translateY(10px) scale(0.85); }
  55%  { opacity: 1; transform: translateY(-3px) scale(1.08); }
  75%  { transform: translateY(1px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.dc-word-text.dc-pop {
  animation: dc-word-pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dc-hero__caption {
  position: absolute; left: 32px; bottom: 32px; color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4); z-index: 2; max-width: 80vw;
}
.dc-hero__caption h3,
.dc-hero__caption p { transition: opacity 0.4s ease-in-out; }
.dc-hero__caption h3 { margin: 0 0 4px; font-size: 16px; }
.dc-hero__caption p { margin: 0; font-size: 14px; opacity: 0.9; }
.dc-hero__dots { position: absolute; right: 32px; bottom: 36px; display: flex; gap: 4px; z-index: 2; }
.dc-hero__dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; }
.dc-hero__dots span.active { background: #fff; }

.dc-fullscreen-menu {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.dc-fullscreen-menu.open { opacity: 1; visibility: visible; }
.dc-fm-card {
  background: #efefef;
  border-radius: 24px;
  padding: 40px 40px 32px;
  width: min(760px, 90vw);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.dc-fm-image {
  width: 100%;
  height: 260px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  margin-bottom: 28px;
}
.dc-fm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.dc-fm-tags button {
  background: rgba(0,0,0,0.06);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.25s ease, background 0.2s ease;
}
.dc-fm-tags button.dc-dim { opacity: 0.3; }

@keyframes dc-bounce {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.15); }
  55%  { transform: scale(0.94); }
  75%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.dc-fm-tags button.dc-bounce {
  animation: dc-bounce 0.45s ease;
  background: rgba(0,0,0,0.12);
}

.dc-fullscreen-menu__close {
  position: absolute; top: 24px; right: 32px;
  background: none; border: none; color: #fff;
  font-size: 40px; cursor: pointer; line-height: 1; z-index: 3;
}

@media (max-width: 900px) {
  .dc-hero__pill { font-size: 16px; padding: 12px 22px; }
}
@media (max-width: 600px) {
  .dc-hero { height: 100vh; min-height: 420px; }
  .dc-hero__pill {
    font-size: 13px; padding: 10px 16px; flex-wrap: wrap;
    text-align: center; gap: 4px 8px; border-radius: 20px;
    white-space: normal;
  }
  .dc-hero__caption { left: 16px; bottom: 60px; }
  .dc-hero__caption h3 { font-size: 18px; }
  .dc-hero__caption p { font-size: 12px; }
  .dc-hero__dots { right: 16px; bottom: 20px; }
  .dc-fm-card { padding: 24px 20px 24px; border-radius: 18px; }
  .dc-fm-image { height: 160px; margin-bottom: 20px; border-radius: 12px; }
  .dc-fm-tags button { font-size: 13px; padding: 8px 12px; }
  .dc-fullscreen-menu__close { top: 16px; right: 20px; font-size: 32px; }
}
@media (max-width: 380px) {
  .dc-hero__pill { font-size: 12px; padding: 8px 14px; }
}