@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
/* Base */
@import 'base/reset.css';
@import 'base/variables.css';
@import 'base/base.css';

/* Components */
@import 'components/header.css';
@import 'components/footer.css';
@import 'components/buttons.css';
@import 'components/navigation.css';

/* Sections */
@import 'sections/mainvisual.css';
@import 'sections/warranty.css';
@import 'sections/campaign.css';
@import 'sections/flow.css';
@import 'sections/faq.css';
@import 'sections/post.css';

/* Utils */
@import 'utils/animations.css';
@import 'utils/responsive.css';
/* 色設定 */
/* ============================================ */
/* 共通 */
html {
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  overflow-x: hidden;
  font-size: 1px;
}

body {
  overflow-x: hidden;
  font-size: 16rem;
  line-height: 1.6;
  font-family: "Noto Sans JP";
  font-weight: 300;
  position: relative;
}

p,
td,
th,
li {
  font-size: 16rem;
  line-height: 1.6;
}

.no-scroll {
  overflow: hidden;
}

.viewport-s {
  max-width: 780px;
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  box-sizing: content-box;
}

.viewport-m {
  max-width: 1080px;
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  box-sizing: content-box;
}

.viewport-l {
  width: 100%;
}

.flex-container {
  display: flex;
}

.is-bold {
  font-weight: 700;
}

.is-underlined {
  text-decoration: underline;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.inline-link {
  text-decoration: underline;
  color: blue;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.btn {
  display: flex;
  width: 100%;
  max-width: 200px;
  height: 50rem;
  background-color: #1877f2;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16rem;
}

.btn:hover {
  color: white;
  transition: 0.3s;
}

.btn-main {
  background: #1877f2;
}

.btn-main:hover {
  background: #1877f2;
}

.btn-sub {
  background: #1877f2;
}

.btn-sub:hover {
  background: #1877f2;
}

/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 2000ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================ */
/* ヘッダー */
header {
  position: relative;
  width: 100%;
}

header nav {
  padding: 0 56rem 0;
  display: flex;
  height: 80rem;
  justify-content: space-between;
  align-items: center;
}

header nav h1 a {
  height: 50rem;
  display: flex;
}

header nav h1 a img {
  height: 100%;
  width: auto;
}

header nav .header-right {
  align-items: center;
  display: flex;
}

header nav .header-right .menu-list {
  display: flex;
  font-weight: 500;
  font-size: 14rem;
  color: black;
  align-items: center;
}

header nav .header-right .menu-list > li {
  white-space: nowrap;
  display: flex;
  align-items: center;
}

header nav .header-right .menu-list > li a {
  position: relative;
}

header nav .header-right .menu-list > li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -6rem;
  height: 2rem;
  width: 0;
  background-color: #1877f2;
  transition: all 0.2s;
}

header nav .header-right .menu-list > li a:hover::after {
  width: 100%;
}

header nav .header-right .menu-list > li:not(:first-child) {
  margin-left: 22rem;
}

header nav .header-right .menu-list > li .sp {
  display: none;
}

header nav .header-right .pc {
  width: 200px;
}

/* ============================================ */
main #mainvisual .viewport-l .main-container {
  display: flex;
  padding: 0 40rem;
  height: calc(100vh - 80rem);
  margin-bottom: 40rem;
}

main #mainvisual .viewport-l .main-container .main-left {
  width: 55%;
  position: relative;
  overflow: hidden;
}

main #mainvisual .viewport-l .main-container .main-left .video {
  position: absolute;
  height: 125%;
  width: 100%;
  aspect-ratio: 1/1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

main #mainvisual .viewport-l .main-container .main-left .video video {
  height: 100%;
}

main #mainvisual .viewport-l .main-container .main-left .video::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), #000);
  opacity: .65;
}

main #mainvisual .viewport-l .main-container .main-left .main-message {
  position: absolute;
  display: block;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 24rem;
}

main #mainvisual .viewport-l .main-container .main-left .main-message .main-text {
  position: absolute;
  bottom: 15%;
  color: white;
  font-size: 32rem;
  font-weight: 500;
}

main #mainvisual .viewport-l .main-container .main-left .main-message .main-text span {
  display: flex;
}

main #mainvisual .viewport-l .main-container .main-left .main-message .main-text .center {
  padding-left: 80rem;
}

main #mainvisual .viewport-l .main-container .main-left .main-message .main-text .blue {
  color: #1877f2;
}

main #mainvisual .viewport-l .main-container .main-left .main-message .main-text .small {
  margin-top: 24rem;
  font-size: 20rem;
}

main #mainvisual .viewport-l .main-container .main-left .main-message .main-text .caution {
  font-size: 16rem;
}

main #mainvisual .viewport-l .main-container .main-right {
  width: 45%;
}

main #mainvisual .viewport-l .main-container .main-right .main-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

main #mainvisual .viewport-l .main-container .main-right .main-list li {
  width: 50%;
  overflow: hidden;
  position: relative;
}

main #mainvisual .viewport-l .main-container .main-right .main-list li a {
  display: block;
  color: white;
  font-weight: 500;
  height: calc( 50vh - 40rem);
  background-image: linear-gradient(225deg, #1877f2, #0a3368);
  padding: 24rem;
}

main #mainvisual .viewport-l .main-container .main-right .main-list li a .num {
  font-size: 20rem;
}

main #mainvisual .viewport-l .main-container .main-right .main-list li a .body {
  margin-top: 20rem;
  font-size: 16rem;
}

main #mainvisual .viewport-l .main-container .main-right .main-list li a .caution {
  font-size: 14rem;
}

main #mainvisual .viewport-l .main-container .main-right .main-list li a::before {
  position: absolute;
  top: 0;
  left: -10rem;
  z-index: 1;
  display: block;
  aspect-ratio: 1 / 1;
  content: "";
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
  transition-duration: .4s;
  transition-property: top;
  width: 200%;
  transition: 0.5s;
}

main #mainvisual .viewport-l .main-container .main-right .main-list li a:hover::before {
  transform: translateY(40rem);
}

/* セクション */
/* ============================================ */
/* セクション */
footer {
  padding: 16rem 0;
  background: #1b1b1b;
}

/* 流れセクションの小さいテキストスタイル */
.flow-step-content .small {
  font-size: 12px;
  color: #888;
}

/* キャンペーン詳細のスタイル */
.campaign-detail {
  max-width: 800px;
  margin: 20px auto 30px;
  padding: 25px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #1877f2;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.5), inset 0 0 15px rgba(24, 119, 242, 0.2);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.campaign-icon {
  font-size: 40px;
  color: #ffcc00;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
}

.campaign-divider {
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 119, 242, 0), rgba(24, 119, 242, 1), rgba(24, 119, 242, 0));
  margin: 15px auto;
}

.campaign-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 2;
}

.corner-top-left {
  top: 5px;
  left: 5px;
  border-top: 2px solid #ffcc00;
  border-left: 2px solid #ffcc00;
}

.corner-top-right {
  top: 5px;
  right: 5px;
  border-top: 2px solid #ffcc00;
  border-right: 2px solid #ffcc00;
}

.corner-bottom-left {
  bottom: 5px;
  left: 5px;
  border-bottom: 2px solid #ffcc00;
  border-left: 2px solid #ffcc00;
}

.corner-bottom-right {
  bottom: 5px;
  right: 5px;
  border-bottom: 2px solid #ffcc00;
  border-right: 2px solid #ffcc00;
}

.campaign-detail::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, rgba(24, 119, 242, 0) 0%, rgba(24, 119, 242, 0.1) 100%);
  animation: shine 3s infinite linear;
  pointer-events: none;
  z-index: 1;
}

@keyframes shine {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.campaign-highlight {
  font-size: 28px;
  font-weight: 700;
  color: #ffcc00;
  margin-bottom: 18px;
  text-shadow: 0 0 15px rgba(255, 204, 0, 0.7);
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
}

.campaign-condition {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.campaign-note.small {
  font-size: 12px;
  color: #aaa;
  position: relative;
  z-index: 2;
  margin-top: 15px;
  font-style: italic;
  padding: 8px;
}

footer .viewport-m .footer-list {
  display: flex;
  font-size: 12rem;
  margin: 24rem 0;
}

footer .viewport-m .footer-list li {
  color: white;
  font-size: 14rem;
  margin-right: 24rem;
}

footer .viewport-m .copy-right {
  text-align: center;
  color: white;
  font-size: 12rem;
}

/* SP */
@media screen and (max-width: 1330px) {
  html {
    position: relative;
    font-size: 0.76px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .viewport-s {
    box-sizing: border-box;
  }
  .viewport-m {
    box-sizing: border-box;
  }
  .viewport-l {
    box-sizing: border-box;
  }
  header nav {
    padding: 0 24rem;
  }
  header nav .hamburger-menu {
    display: none;
  }
  /* セクション */
  /* ============================================ */
  main #mainvisual .viewport-l .main-container {
    display: block;
    padding: 0;
    height: auto;
    margin-bottom: 0rem;
  }
  main #mainvisual .viewport-l .main-container .main-left {
    width: auto;
    height: auto;
    aspect-ratio: 1 / 1;
    transform: translateY(4rem);
  }
  main #mainvisual .viewport-l .main-container .main-left .video {
    position: absolute;
    height: 125%;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  main #mainvisual .viewport-l .main-container .main-left .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  main #mainvisual .viewport-l .main-container .main-left .main-message .main-text {
    position: absolute;
    bottom: 5%;
    color: white;
    font-size: 28rem;
    font-weight: 500;
  }
  main #mainvisual .viewport-l .main-container .main-left .main-message .main-text span {
    display: flex;
  }
  main #mainvisual .viewport-l .main-container .main-left .main-message .main-text .center {
    padding-left: 40rem;
  }
  main #mainvisual .viewport-l .main-container .main-left .main-message .main-text .blue {
    color: #1877f2;
  }
  main #mainvisual .viewport-l .main-container .main-left .main-message .main-text .small {
    margin-top: 24rem;
    font-size: 18rem;
  }
  main #mainvisual .viewport-l .main-container .main-left .main-message .main-text .caution {
    font-size: 14rem;
  }
  main #mainvisual .viewport-l .main-container .main-right {
    width: 100%;
  }
  footer .viewport-m .footer-list {
    display: block;
  }
  footer .viewport-m .footer-list li {
    margin-bottom: 16rem;
  }
  /* セクション */
}

/* ============================================ */
/* -----------------------------------------------------------------
スクロール時アニメーション
------------------------------------------------------------------*/
.textAnima span {
  opacity: 0;
}

.textAnima.animated span {
  animation: textAnima_on 1s ease-out forwards;
}

@keyframes textAnima_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeInLeft {
  transform: translateX(-20px);
  transition: 1s ease-in-out;
  opacity: 0;
}

.fadeInLeft.animated {
  transform: translateX(0);
  opacity: 1;
}

.fadeUp {
  transform: translateY(100px);
  opacity: 0;
}

.fadeUp.animated {
  animation: fadeUp .5s forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-time02 {
  animation-delay: 0.2s !important;
}

.delay-time04 {
  animation-delay: 0.4s !important;
}

/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 2000ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/* ============================================ */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.5s 2.5s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.loading__logo {
  opacity: 0;
  animation: logo_fade 2s 0.5s forwards;
  width: 175px;
}

@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .campaign-detail {
    padding: 15px 10px;
    max-width: 90%;
  }
  
  .campaign-highlight {
    font-size: 16px;
    letter-spacing: 0;
    word-break: keep-all;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  
  .campaign-condition {
    font-size: 12px;
    word-break: break-all;
    line-height: 1.4;
    padding: 0 5px;
    margin-bottom: 10px;
  }
  
  .campaign-note.small {
    font-size: 10px;
    padding: 0 5px;
    margin-top: 10px;
  }
  
  .campaign-icon {
    font-size: 30px;
    margin-bottom: 10px;
  }
  
  .campaign-divider {
    margin: 10px auto;
  }
}

/* スマホ専用改行 */
.sp-br {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-br {
    display: inline-block;
  }
}

/* キャンペーンカード新デザイン */
.campaign-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px auto;
  max-width: 1200px;
  perspective: 1000px;
}

.campaign-card {
  flex: 1;
  max-width: 500px;
  padding: 30px 16px;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #1877f2;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(24, 119, 242, 0.5), inset 0 0 15px rgba(24, 119, 242, 0.2);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.campaign-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 40px rgba(24, 119, 242, 0.6), inset 0 0 20px rgba(24, 119, 242, 0.3);
}

.campaign-card.seller {
  border-color: #ff9900;
}

.campaign-card.seller:hover {
  box-shadow: 0 10px 40px rgba(255, 153, 0, 0.6), inset 0 0 20px rgba(255, 153, 0, 0.3);
}

.campaign-card.buyer {
  border-color: #1877f2;
}

.campaign-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  background-color: rgba(24, 119, 242, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.campaign-card.seller .campaign-card-title {
  background-color: rgba(255, 153, 0, 0.2);
}

.campaign-card.seller .corner {
  border-color: #ff9900;
}

.campaign-card.buyer .corner {
  border-color: #1877f2;
}

.campaign-card .corner {
  width: 30px;
  height: 30px;
}

.campaign-card.seller .campaign-icon {
  color: #ff9900;
  text-shadow: 0 0 20px rgba(255, 153, 0, 0.8);
  font-size: 45px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.campaign-card.buyer .campaign-icon {
  color: #1877f2;
  text-shadow: 0 0 20px rgba(24, 119, 242, 0.8);
  font-size: 45px;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.campaign-card.seller .campaign-highlight {
  color: #ff9900;
  text-shadow: 0 0 15px rgba(255, 153, 0, 0.7);
}

.campaign-card.buyer .campaign-highlight {
  color: #1877f2;
  text-shadow: 0 0 15px rgba(24, 119, 242, 0.7);
}

.campaign-highlight {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 25px;
}

.campaign-condition {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  font-weight: 500;
  padding: 0 10px;
  line-height: 1.6;
}

.campaign-note.small {
  font-size: 12px;
  color: #aaa;
  position: relative;
  z-index: 2;
  margin-top: 20px;
  font-style: italic;
  opacity: 0.8;
}

/* キャンペーン金額強調スタイル */
.price-emphasis {
  font-size: 200%;
  font-weight: 900;
  background: linear-gradient(to right, #ffcc00, #ff9900, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 0px 15px rgba(255, 204, 0, 0.8);
  display: block;
  position: relative;
  z-index: 3;
  padding: 15px 5px;
  margin: 15px auto;
  animation: price-pulse 2s infinite;
  max-width: 400px;
  border-radius: 10px;
}

.price-emphasis::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 10px;
  z-index: -1;
}

.campaign-card.buyer .price-emphasis {
  background: linear-gradient(to right, #18a0fb, #1877f2, #18a0fb);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0px 0px 15px rgba(24, 119, 242, 0.8);
}

.campaign-card.buyer .price-emphasis::before {
  background: radial-gradient(circle, rgba(24, 119, 242, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
}

@keyframes price-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .campaign-cards {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 30px auto;
  }
  
  .campaign-card {
    width: 90%;
    padding: 20px 15px;
  }
  
  .campaign-card-title {
    font-size: 18px;
    margin-bottom: 15px;
    padding: 6px 15px;
  }
  
  .campaign-highlight {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .campaign-condition {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .price-emphasis {
    font-size: 160%;
    padding: 10px 5px;
    margin: 10px auto;
  }
  
  .campaign-card .campaign-icon {
    font-size: 35px;
    margin-bottom: 15px;
  }
}

/* キャンペーン開催日 */
.campaign-date {
  text-align: center;
  margin: 10px auto 20px;
}

.date-badge {
  display: inline-block;
  background: linear-gradient(to right, #ff9900, #1877f2);
  color: #fff;
  font-weight: 700;
  padding: 8px 25px;
  border-radius: 50px;
  font-size: 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  animation: date-pulse 2s infinite alternate;
}

.date-badge::before {
  content: "NEW!";
  position: absolute;
  top: -16px;
  right: -10px;
  background-color: #ff3a3a;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 20px;
  transform: rotate(15deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: bounce 0.8s infinite alternate;
}

@keyframes date-pulse {
  0% {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  100% {
    box-shadow: 0 5px 20px rgba(24, 119, 242, 0.6), 0 5px 20px rgba(255, 153, 0, 0.6);
  }
}

@keyframes bounce {
  from {
    transform: rotate(15deg) scale(1);
  }
  to {
    transform: rotate(15deg) scale(1.1);
  }
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .date-badge {
    font-size: 16px;
    padding: 6px 20px;
  }
}

/* キャンペーン新規追加バッジ */
.new-campaign-badge {
  position: absolute;
  top: 24px;
  right: 10px;
  background: linear-gradient(to right, #ff3a3a, #ff9900);
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 30px;
  transform: scale(1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  animation: badge-pulse 2s infinite alternate;
  z-index: 10;
}

.new-campaign-badge::before {
  content: "NEW!";
  position: absolute;
  top: -14px;
  right: 5px;
  background-color: #1877f2;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 10px;
  transform: scale(1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: badge-bounce 0.8s infinite alternate;
}

@keyframes badge-pulse {
  0% {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transform: scale(1);
  }
  100% {
    box-shadow: 0 5px 15px rgba(255, 58, 58, 0.5);
    transform: scale(1.05);
  }
}

@keyframes badge-bounce {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

@media screen and (max-width: 768px) {
  .new-campaign-badge {
    top: 15px;
    right: 5px;
    font-size: 12px;
    padding: 4px 12px;
  }
}
