.content-creativity-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  background: linear-gradient(
    to bottom,
    #000000 2%,
    #030104 33%,
    #1e1b4a 77%,
    #252456 100%
  );
}

.content-creativity-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/bg-img/bg1.png?v=20260824093634');
  background-size: cover;
  background-position: calc(50% + 160px) center;
  background-repeat: no-repeat;

  z-index: 0;
}

.content-creativity-content {
  width: 1204px;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.content-sub-title-group {
  margin-top: 124px;
}

.content-sub-title-left {
  width: 626px;
  height: auto;
}

.content-description {
  width: 645px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  margin-top: 26px;
}

/* CTA Button */
.content-cta-button {
  width: 364px;
  height: 54px;
  background: linear-gradient(
    90.7deg,
    #ff009e 4%,
    #ff0023 35%,
    #ff0023 68%,
    #ffa922 100%
  );
  box-shadow: inset 4px 2px 12px 0px rgba(255, 255, 255, 0.52);
  border-radius: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 0;
  margin-top: 96px;
  margin-bottom: 80px;
}

.content-cta-icon {
  width: 10px;
  height: auto;
  margin-top: 2px;
}

/* Feature Cards */
.content-feature-cards {
  /* position: absolute;
  bottom: 98px; */
  width: 100%;
  display: flex;
  gap: 20px;
  /* margin-top: 214px; */
  margin-bottom: 98px;
}

.content-feature-card {
  flex: 1;
  background: rgba(0, 0, 0, 0.24);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}

.content-card-icon-box {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.content-card-icon {
  width: 100%;
  height: 100%;
  position: relative;
}

.content-icon-ai::before,
.content-icon-ai::after,
.content-icon-train::before,
.content-icon-train::after,
.content-icon-free::before,
.content-icon-free::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease;
}

/* AI Icon */
.content-icon-ai::before {
  background-image: url('/assets/images/content/ai.png?v=20260824093634');
  opacity: 1;
}
.content-icon-ai::after {
  background-image: url('/assets/images/content/active-ai.png?v=20260824093634');
  opacity: 0;
}
.content-feature-card:hover .content-icon-ai::before {
  opacity: 0;
}
.content-feature-card:hover .content-icon-ai::after {
  opacity: 1;
}

/* Train Icon */
.content-icon-train::before {
  background-image: url('/assets/images/content/train.png?v=20260824093634');
  opacity: 1;
}
.content-icon-train::after {
  background-image: url('/assets/images/content/active-train.png?v=20260824093634');
  opacity: 0;
}
.content-feature-card:hover .content-icon-train::before {
  opacity: 0;
}
.content-feature-card:hover .content-icon-train::after {
  opacity: 1;
}

/* Free Icon */
.content-icon-free::before {
  background-image: url('/assets/images/content/free.png?v=20260824093634');
  opacity: 1;
}
.content-icon-free::after {
  background-image: url('/assets/images/content/active-free.png?v=20260824093634');
  opacity: 0;
}
.content-feature-card:hover .content-icon-free::before {
  opacity: 0;
}
.content-feature-card:hover .content-icon-free::after {
  opacity: 1;
}

.content-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.content-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 22px;
}

.content-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 20px;
}
