:root {
  --main-color: #000000;
  --bg-color: #ffffff;
  --light-bg: #f8f9fa;
  --primary-text: #000000;
  --secondary-text: #666666;
  --muted-text: #999999;
  --border-light: #e9ecef;
  --bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);

  /* 间距变量 */
  --gap-xs: 4px;
  --gap-sm: 8px;
  --gap-md: 12px;
  --gap-lg: 16px;
  --gap-xl: 20px;
  --gap-2xl: 24px;
  --gap-3xl: 32px;

  /* 圆角 */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 50%;

  /* 过渡 */
  --transition-quick: 0.15s ease;
  --transition-smooth: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* 阴影 */
  --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-heavy: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-deep: 0 16px 32px rgba(0, 0, 0, 0.2);

  /* 渐变 */
  --gradient-primary: linear-gradient(
    135deg,
    var(--main-color) 0%,
    var(--secondary-text) 100%
  );
  --gradient-blue: linear-gradient(135deg, #4285f4 0%, #1877f2 100%);

  /* 颜色 */
  --dark-gray: #1f2937;
  --font-xs: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--primary-text);
  background: var(--bg-gradient);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* 动态背景 */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    #f8f9fa 0%,
    #e9ecef 25%,
    #f8f9fa 50%,
    #e9ecef 75%,
    #f8f9fa 100%
  );
  background-size: 400% 400%;
  animation: gradientFlow 15s ease infinite;
  z-index: -2;
  opacity: 0.5;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header 顶部导航 */
.header {
  background: var(--bg-color);
  border-bottom: 1px solid var(--border-light);
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__brand {
  width: 100px;
  height: 100px;
  object-fit: contain;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-text);
  text-decoration: none;
}

.header__brandImg {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.header__menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.header__menuLink {
  text-decoration: none;
  color: var(--secondary-text);
  font-weight: 400;
  transition: color 0.3s ease;
}

.header__menuLink:hover {
  color: var(--primary-text);
}

.header__ctaBtn {
  background: var(--main-color);
  color: var(--bg-color);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.header__ctaBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Banner 主横幅区域 */
.banner {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  min-height: 800px;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}

.banner__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
}

.banner__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.banner__content {
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner__tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--secondary-text);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 24px;
  margin-bottom: 35px;
  border: 1px solid var(--border-light);
}

.banner__heading {
  font-size: 84px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--primary-text);
}

.banner__description {
  font-size: 30px;
  color: #fff;
  margin-bottom: 45px;
  line-height: 1.6;
}

.banner__actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.banner__btnPrimary {
  background: var(--main-color);
  color: var(--bg-color);
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.banner__btnPrimary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.banner__btnSecondary {
  color: var(--primary-text);
  text-decoration: none;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.banner__btnSecondary:hover {
  border-bottom-color: var(--primary-text);
}

/* Partners 合作伙伴 */
.partners {
  padding: 60px 0;
  background: var(--bg-color);
  border-top: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.partners::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 100%
  );
  animation: flowLine 3s ease-in-out infinite;
}

@keyframes flowLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.partners > .wrapper {
  position: relative;
  z-index: 1;
}

.partners__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.6;
  gap: 40px;
}

.partners__name {
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-text);
}

/* Traffic 全球流量服务区域 */
.traffic {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.traffic::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(66, 133, 244, 0.03) 0%,
    transparent 50%
  );
  animation: rotateGradient 20s linear infinite;
  z-index: 0;
}

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

.traffic > .wrapper {
  position: relative;
  z-index: 1;
}

.traffic__intro {
  text-align: center;
  margin-bottom: 80px;
}

.traffic__tag {
  display: inline-block;
  background: var(--bg-color);
  color: var(--secondary-text);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}

.traffic__heading {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 20px;
  line-height: 1.2;
}

.traffic__subtext {
  font-size: 18px;
  color: var(--secondary-text);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.traffic__servicesLayout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.traffic__serviceBox {
  background: var(--bg-color);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.traffic__serviceBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s;
}

.traffic__serviceBox:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.traffic__serviceBox:hover::before {
  left: 100%;
}

.traffic__serviceIcon {
  width: 60px;
  height: 60px;
  background: var(--main-color);
  color: var(--bg-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
}

.traffic__serviceTitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-text);
  margin-bottom: 15px;
}

.traffic__serviceDesc {
  color: var(--secondary-text);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 25px;
}

.traffic__serviceItems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.traffic__itemTag {
  background: var(--light-bg);
  padding: 12px 16px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-text);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.traffic__itemTag::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  opacity: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

.traffic__itemTag:hover {
  background: var(--main-color);
  color: var(--bg-color);
  transform: translateY(-4px) scale(1.05);
}

.traffic__itemTag:hover::after {
  opacity: 1;
}

.traffic__platformInfo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.traffic__platformBox {
  background: var(--bg-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.traffic__platformTop {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.traffic__platformLogo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.traffic__platformLogo--google {
  background: linear-gradient(45deg, #4285f4, #34a853);
  color: white;
}

.traffic__platformLogo--facebook {
  background: linear-gradient(45deg, #1877f2, #42a5f5);
  color: white;
}

.traffic__platformLogo--tiktok {
  background: linear-gradient(45deg, #ff0050, #000000);
  color: white;
}

.traffic__platformTitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-text);
}

.traffic__platformItems {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.traffic__security {
  background: var(--main-color);
  color: var(--bg-color);
  padding: 60px 40px;
  border-radius: 20px;
  margin-top: 60px;
  text-align: center;
}

.traffic__securityHeading {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.traffic__securityLayout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.traffic__securityBox {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* Services 专业服务区域 */
.services {
  padding: 100px 0;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.services::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 0, 0, 0.02),
    transparent
  );
  animation: slideLight 8s ease-in-out infinite;
  z-index: 0;
}

@keyframes slideLight {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.services > .wrapper {
  position: relative;
  z-index: 1;
}

.services__header {
  text-align: center;
  margin-bottom: 80px;
}

.services__tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--secondary-text);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}

.services__heading {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--primary-text);
  line-height: 1.2;
}

.services__industriesLayout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}

.services__industryBox {
  background: var(--light-bg);
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  color: var(--primary-text);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 150px;
}

.services__industryBox:hover {
  background: var(--main-color);
  color: var(--bg-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.services__industryBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.services__industryBox:hover::before {
  left: 100%;
}

.services__moreIndustries {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--bg-color) 100%);
  border-radius: 15px;
  border: 2px dashed var(--border-light);
}

.services__moreText {
  font-size: 18px;
  color: var(--secondary-text);
  font-style: italic;
}

/* Account 账户服务区域 */
.account {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.account::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(0, 0, 0, 0.02) 25%,
    transparent 50%,
    rgba(0, 0, 0, 0.02) 75%,
    transparent 100%
  );
  background-size: 200% 200%;
  animation: waveBg 15s ease infinite;
  z-index: 0;
}

@keyframes waveBg {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.account > .wrapper {
  position: relative;
  z-index: 1;
}

.account__header {
  text-align: center;
  margin-bottom: 80px;
}

.account__tag {
  display: inline-block;
  background: var(--bg-color);
  color: var(--secondary-text);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}

.account__heading {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 30px;
  line-height: 1.2;
}

.account__highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.account__highlightBox {
  background: var(--bg-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.account__highlightBox:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.account__highlightImg {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.account__highlightHeading {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-text);
  margin-bottom: 20px;
  line-height: 1.4;
}

.account__highlightDesc {
  color: var(--secondary-text);
  line-height: 1.7;
  font-size: 16px;
  text-align: left;
}

/* Team 专业团队区域 */
.team {
  padding: 100px 0;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(24, 119, 242, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: -250px;
  right: -250px;
  animation: pulse 8s ease-in-out infinite;
  z-index: 0;
}

.team::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(66, 133, 244, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  bottom: -200px;
  left: -200px;
  animation: pulse 10s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.team > .wrapper {
  position: relative;
  z-index: 1;
}

.team__header {
  text-align: center;
  margin-bottom: 80px;
}

.team__tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--secondary-text);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}

.team__heading {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 30px;
  line-height: 1.2;
}

.team__description {
  font-size: 18px;
  color: var(--secondary-text);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.team__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.team__statCard {
  background: var(--light-bg);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team__statCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: var(--bg-color);
}

.team__statNumber {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 15px;
  display: block;
}

.team__statLabel {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-text);
  margin-bottom: 15px;
}

.team__statDetails {
  font-size: 14px;
  color: var(--secondary-text);
  line-height: 1.5;
}

.team__statCard::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.team__statCard:hover::before {
  left: 100%;
}

/* Reviews 客户评价区域 */
.reviews {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 50px,
    rgba(0, 0, 0, 0.01) 50px,
    rgba(0, 0, 0, 0.01) 100px
  );
  animation: moveDiagonal 20s linear infinite;
  z-index: 0;
}

@keyframes moveDiagonal {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100px, 100px);
  }
}

.reviews > .wrapper {
  position: relative;
  z-index: 1;
}

.reviews__header {
  text-align: center;
  margin-bottom: 80px;
}

.reviews__tag {
  display: inline-block;
  background: var(--bg-color);
  color: var(--secondary-text);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid var(--border-light);
}

.reviews__heading {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 30px;
  line-height: 1.2;
}

.reviews__swiper {
  padding: 20px 0 60px 0;
}

.reviews__card {
  background: var(--bg-color);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reviews__content {
  flex-grow: 1;
}

.reviews__text {
  font-size: 16px;
  color: var(--secondary-text);
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviews__authorInfo {
  flex-grow: 1;
}

.reviews__authorName {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-text);
  margin-bottom: 5px;
}

.reviews__authorLocation {
  font-size: 14px;
  color: var(--secondary-text);
  display: flex;
  align-items: center;
  gap: 5px;
}

.reviews__countryFlag {
  font-size: 16px;
}

.reviews__rating {
  display: flex;
  gap: 3px;
  margin-top: 10px;
}

.reviews__star {
  color: #ffd700;
  font-size: 16px;
}

/* Swiper 自定义样式 */
.swiper-pagination-bullet {
  background: var(--secondary-text);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: var(--main-color);
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--main-color);
  background: var(--bg-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

/* Support 支持服务区域 */
.support {
  padding: 100px 0;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.support::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 136, 204, 0.04) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  animation: breathe 6s ease-in-out infinite;
  z-index: 0;
}

@keyframes breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.8;
  }
}

.support__container {
  position: relative;
  z-index: 1;
}

.support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.support__titleArea {
  text-align: center;
  margin-bottom: 80px;
}

.support__mainTitle {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 30px;
  line-height: 1.2;
}

.support__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  align-items: start;
}

.support__card {
  background: var(--light-bg);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.6s ease-out;
  position: relative;
  overflow: hidden;
}

.support__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: var(--bg-color);
}

.support__icon {
  width: 80px;
  height: 80px;
  background: var(--main-color);
  color: var(--bg-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.support__card:hover .support__icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--main-color), var(--secondary-text));
}

.support__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-text);
  margin-bottom: 20px;
  line-height: 1.3;
}

.support__content {
  font-size: 16px;
  color: var(--secondary-text);
  line-height: 1.6;
}

.support__highlight {
  display: inline-block;
  background: var(--main-color);
  color: var(--bg-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 500;
  margin: 2px 4px;
  transition: all 0.3s ease;
}

.support__card:hover .support__highlight {
  background: linear-gradient(135deg, var(--main-color), var(--secondary-text));
  transform: translateY(-1px);
}

.support__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.support__card:hover::before {
  left: 100%;
}

/* Contact 联系区域 */
.contact {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--bg-color) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(8, 136, 204, 0.06) 0%,
    rgba(24, 119, 242, 0.03) 30%,
    transparent 70%
  );
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 10s ease-in-out infinite;
  z-index: 0;
}

.contact::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(66, 133, 244, 0.04) 0%,
    transparent 70%
  );
  border-radius: 50%;
  top: 20%;
  right: 10%;
  animation: ripple 8s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes ripple {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.3;
  }
}

.contact__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.contact__titleArea {
  text-align: center;
  margin-bottom: 80px;
}

.contact__mainTitle {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-text);
  margin-bottom: 30px;
  line-height: 1.2;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap-3xl);
  margin-top: var(--gap-3xl);
  position: relative;
  z-index: 2;
}

.contact__card {
  background: var(--bg-color);
  padding: var(--gap-3xl) var(--gap-2xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-heavy);
  transition: all var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.contact__card:hover {
  transform: translateY(-var(--gap-sm));
  box-shadow: var(--shadow-deep);
  border-color: var(--main-color);
}

.contact__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left var(--transition-slow);
}

.contact__card:hover::before {
  left: 100%;
}

.contact__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-blue);
  color: var(--bg-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto var(--gap-2xl);
  transition: all var(--transition-quick);
  position: relative;
  z-index: 2;
}

.contact__card:hover .contact__icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-primary);
}

.contact__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-text);
  margin-bottom: var(--gap-lg);
  position: relative;
  z-index: 2;
}

.contact__info {
  font-size: 18px;
  color: var(--secondary-text);
  font-weight: 500;
  margin-bottom: var(--gap-sm);
  position: relative;
  z-index: 2;
}

.contact__telegramId {
  background: var(--light-bg);
  padding: var(--gap-sm) var(--gap-lg);
  border-radius: var(--radius-sm);
  display: inline-block;
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
  border: 1px solid var(--border-light);
  transition: all var(--transition-quick);
}

.contact__card--telegram:hover .contact__telegramId {
  background: #0088cc;
  color: var(--bg-color);
  transform: scale(1.05);
}

.contact__addressText {
  font-size: 16px;
  color: var(--secondary-text);
  margin-bottom: var(--gap-sm);
  position: relative;
  z-index: 2;
}

.contact__addressHint {
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
  font-size: 14px;
  color: var(--muted-text);
  font-style: italic;
  position: relative;
  z-index: 2;
}

.contact__card--address:hover .contact__addressHint {
  color: var(--main-color);
  font-weight: 500;
}

/* Telegram 特定样式 */
.contact__card--telegram .contact__icon {
  background: linear-gradient(135deg, #0088cc 0%, #229ed9 100%);
}

.contact__card--telegram:hover .contact__icon {
  background: linear-gradient(135deg, #229ed9 0%, #0088cc 100%);
}

/* 地址特定样式 */
.contact__card--address .contact__icon {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.contact__card--address:hover .contact__icon {
  background: linear-gradient(135deg, #ee5a24 0%, #ff6b6b 100%);
}

/* Footer 页脚样式 */
.footer {
  background: var(--main-color);
  color: var(--bg-color);
  padding: 60px 0 30px;
  margin-top: 0;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__brand {
  text-align: center;
  margin-bottom: 40px;
}

.footer__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--bg-color);
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.footer__slogan {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  position: relative;
}

.footer__link:hover {
  color: var(--bg-color);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 40px 0;
}

.footer__bottom {
  text-align: center;
}

.footer__copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer__year {
  font-weight: 600;
  color: var(--bg-color);
}

/* MapPopup 地图弹窗样式 */
.mapPopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.mapPopup--show {
  opacity: 1;
}

.mapPopup__content {
  background: var(--bg-color);
  border-radius: var(--radius-lg);
  max-width: 90vw;
  max-height: 90vh;
  width: 800px;
  box-shadow: var(--shadow-deep);
  transform: scale(0.9);
  transition: transform var(--transition-smooth);
  overflow: hidden;
}

.mapPopup--show .mapPopup__content {
  transform: scale(1);
}

.mapPopup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--gap-2xl) var(--gap-2xl) var(--gap-lg);
  border-bottom: 1px solid var(--border-light);
}

.mapPopup__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-text);
  margin: 0;
}

.mapPopup__closeBtn {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--gap-sm);
  border-radius: var(--radius-sm);
  color: var(--secondary-text);
  transition: all var(--transition-quick);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mapPopup__closeBtn:hover {
  background: var(--light-bg);
  color: var(--primary-text);
  transform: scale(1.1);
}

.mapPopup__body {
  padding: var(--gap-2xl);
}

.mapPopup__addressInfo {
  margin-bottom: var(--gap-lg);
}

.mapPopup__addressDisplay {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  font-size: 18px;
  color: var(--primary-text);
  font-weight: 500;
}

.mapPopup__addressDisplay i {
  color: #ff6b6b;
  font-size: 20px;
}

.mapPopup__imageWrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: var(--light-bg);
}

.mapPopup__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-smooth);
}

.mapPopup__image:hover {
  transform: scale(1.02);
}

/* Notification 通知样式 */
.notification {
  position: fixed;
  top: var(--gap-2xl);
  right: var(--gap-2xl);
  background: var(--bg-color);
  color: var(--primary-text);
  padding: var(--gap-lg) var(--gap-2xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
  z-index: 10001;
  font-weight: 500;
  font-size: 16px;
  max-width: 400px;
  transform: translateX(100%);
  opacity: 0;
  transition: all var(--transition-smooth);
  border-left: 4px solid var(--main-color);
}

.notification--show {
  transform: translateX(0);
  opacity: 1;
}

.notification--success {
  border-left-color: #10b981;
  background: #f0fdf4;
  color: #166534;
}

.notification--error {
  border-left-color: #ef4444;
  background: #fef2f2;
  color: #991b1b;
}

.notification--info {
  border-left-color: #3b82f6;
  background: #eff6ff;
  color: #1e40af;
}

/* FloatingContact 浮动联系面板 */
.floatingContact {
  position: fixed;
  bottom: 50%;
  right: var(--gap-lg);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--gap-lg);
  transform: translateY(50%);
}

.floatingContact__items {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(var(--gap-xl));
  transition: all var(--transition-smooth);
}

.floatingContact--active .floatingContact__items {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floatingContact__btnWrapper {
  position: relative;
}

.floatingContact__btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--gradient-primary);
  color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: var(--shadow-heavy);
  transition: all var(--transition-quick);
  position: relative;
  border: 2px solid var(--bg-color);
}

.floatingContact__btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: var(--shadow-deep);
  background: var(--gradient-blue);
}

.floatingContact__btn svg {
  width: 24px;
  height: 24px;
  transition: all var(--transition-quick);
}

.floatingContact__btn:hover svg {
  transform: scale(1.1);
}

.floatingContact__tooltip {
  position: absolute;
  right: calc(100% + var(--gap-md));
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-gray);
  color: var(--bg-color);
  padding: var(--gap-sm) var(--gap-md);
  border-radius: var(--radius-sm);
  font-size: var(--font-xs);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-quick);
  box-shadow: var(--shadow-medium);
}

.floatingContact__tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark-gray);
}

.floatingContact__btn:hover .floatingContact__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-var(--gap-xs));
}

.floatingContact__mainWrapper {
  position: relative;
}

.floatingContact__mainBtn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--gradient-blue);
  color: var(--bg-color);
  border: 3px solid var(--bg-color);
  cursor: pointer;
  box-shadow: var(--shadow-heavy);
  transition: all var(--transition-quick);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floatingContact__mainBtn:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: var(--shadow-deep);
  background: var(--gradient-primary);
}

.floatingContact__mainBtn svg {
  width: 28px;
  height: 28px;
  transition: all var(--transition-quick);
}

.floatingContact__mainBtn:hover svg {
  transform: rotate(15deg) scale(1.1);
}

.floatingContact__mainTooltip {
  position: absolute;
  right: calc(100% + var(--gap-md));
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-gray);
  color: var(--bg-color);
  padding: var(--gap-sm) var(--gap-md);
  border-radius: var(--radius-sm);
  font-size: var(--font-xs);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-quick);
  box-shadow: var(--shadow-medium);
}

.floatingContact__mainTooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark-gray);
}

.floatingContact__mainBtn:hover + .floatingContact__mainTooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(-var(--gap-xs));
}

/* Telegram 特定样式 */
.floatingContact__btn--telegram {
  background: linear-gradient(135deg, #0088cc 0%, #229ed9 100%);
}

.floatingContact__btn--telegram:hover {
  background: linear-gradient(135deg, #229ed9 0%, #0088cc 100%);
}

/* 装饰元素 */
.decoration {
  position: fixed;
  width: 40px;
  height: 40px;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

.decoration--star1 {
  top: 20%;
  left: 10%;
  animation: floatStar1 20s ease-in-out infinite;
  font-size: 3rem;
  color: #000;
}

.decoration--star2 {
  top: 60%;
  right: 15%;
  animation: floatStar2 18s ease-in-out infinite;
  font-size: 2.5rem;
  color: #000;
}

@keyframes floatStar1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(0, -60px) rotate(180deg);
  }
  75% {
    transform: translate(-30px, -30px) rotate(270deg);
  }
}

@keyframes floatStar2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-40px, 40px) rotate(-90deg);
  }
  50% {
    transform: translate(0, 80px) rotate(-180deg);
  }
  75% {
    transform: translate(40px, 40px) rotate(-270deg);
  }
}

/* 圆形装饰 */
.decoration--circle1 {
  top: 15%;
  right: 20%;
  animation: floatCircle1 15s ease-in-out infinite;
  font-size: 1.5rem;
  color: #000;
}

.decoration--circle2 {
  top: 45%;
  left: 5%;
  animation: floatCircle2 22s ease-in-out infinite;
  font-size: 1rem;
  color: #000;
}

.decoration--circle3 {
  bottom: 25%;
  right: 8%;
  animation: floatCircle3 19s ease-in-out infinite;
  font-size: 2rem;
  color: #000;
}

@keyframes floatCircle1 {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-50px) scale(1.3);
    opacity: 0.2;
  }
}

@keyframes floatCircle2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.15;
  }
  33% {
    transform: translate(40px, -30px) scale(1.2);
    opacity: 0.08;
  }
  66% {
    transform: translate(-20px, -60px) scale(0.9);
    opacity: 0.18;
  }
}

@keyframes floatCircle3 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.12;
  }
  50% {
    transform: translate(-60px, 40px) rotate(180deg);
    opacity: 0.18;
  }
}

/* 菱形装饰 */
.decoration--diamond1 {
  top: 35%;
  right: 12%;
  animation: floatDiamond1 25s ease-in-out infinite;
  font-size: 1.8rem;
  color: #000;
}

.decoration--diamond2 {
  bottom: 15%;
  left: 18%;
  animation: floatDiamond2 20s ease-in-out infinite;
  font-size: 1.3rem;
  color: #000;
}

@keyframes floatDiamond1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.1;
  }
  25% {
    transform: translate(-30px, 40px) rotate(90deg) scale(1.2);
    opacity: 0.15;
  }
  50% {
    transform: translate(-60px, 0) rotate(180deg) scale(0.8);
    opacity: 0.08;
  }
  75% {
    transform: translate(-30px, -40px) rotate(270deg) scale(1.1);
    opacity: 0.12;
  }
}

@keyframes floatDiamond2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(45deg);
    opacity: 0.12;
  }
  50% {
    transform: translate(50px, -50px) rotate(225deg);
    opacity: 0.18;
  }
}

.dot {
  display: inline-block;
  width: 4px;
  height: 4px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .banner {
    min-height: 500px;
    padding: 80px 0;
  }

  .banner__video {
    opacity: 0.12;
  }

  .banner__content {
    max-width: 100%;
    padding: 0 20px;
  }

  .banner__tag {
    font-size: 18px;
    padding: 8px 16px;
  }

  .banner__heading {
    font-size: 42px;
  }

  .banner__description {
    font-size: 22px;
  }

  .header__menu {
    display: none;
  }

  .partners__row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .traffic__servicesLayout {
    grid-template-columns: 1fr;
  }

  .traffic__platformInfo {
    grid-template-columns: 1fr;
  }

  .traffic__heading {
    font-size: 32px;
  }

  .services__industriesLayout {
    flex-direction: column;
    gap: 15px;
  }

  .services__industryBox {
    min-width: auto;
  }

  .account__highlights {
    grid-template-columns: 1fr;
  }

  .account__heading {
    font-size: 32px;
  }

  .team__stats {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team__heading {
    font-size: 32px;
  }

  .team__statNumber {
    font-size: 36px;
  }

  .reviews__heading {
    font-size: 32px;
  }

  .reviews__card {
    padding: 30px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .support__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .support__mainTitle {
    font-size: 32px;
  }

  .support__card {
    padding: 30px 20px;
  }

  .support__title {
    font-size: 20px;
  }

  .support__highlight {
    font-size: 13px;
    padding: 3px 10px;
  }

  .footer__title {
    font-size: 28px;
  }

  .footer__slogan {
    font-size: 16px;
  }

  .footer__nav {
    gap: 20px;
  }

  .footer__link {
    font-size: 14px;
    padding: 6px 12px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__card {
    padding: 30px 20px;
  }

  .contact__icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    margin-bottom: var(--gap-lg);
  }

  .contact__title {
    font-size: 20px;
    margin-bottom: var(--gap-md);
  }

  .contact__info {
    font-size: 16px;
  }

  .contact__telegramId {
    padding: var(--gap-xs) var(--gap-md);
    font-size: 14px;
  }

  .contact__addressText {
    font-size: 14px;
  }

  .contact__addressHint {
    font-size: 12px;
  }

  /* 浮动联系面板移动端 */
  .floatingContact {
    right: var(--gap-md);
    bottom: 45%;
  }

  .floatingContact__btn {
    width: 45px;
    height: 45px;
  }

  .floatingContact__btn svg {
    width: 20px;
    height: 20px;
  }

  .floatingContact__mainBtn {
    width: 55px;
    height: 55px;
  }

  .floatingContact__mainBtn svg {
    width: 24px;
    height: 24px;
  }

  .floatingContact__tooltip,
  .floatingContact__mainTooltip {
    font-size: 11px;
    padding: var(--gap-xs) var(--gap-sm);
    right: calc(100% + var(--gap-sm));
  }

  .floatingContact__tooltip::after,
  .floatingContact__mainTooltip::after {
    border-width: 4px;
  }

  /* 地图弹窗移动端 */
  .mapPopup__content {
    width: 95vw;
    max-height: 85vh;
  }

  .mapPopup__header {
    padding: var(--gap-lg) var(--gap-lg) var(--gap-md);
  }

  .mapPopup__title {
    font-size: 20px;
  }

  .mapPopup__body {
    padding: var(--gap-lg);
  }

  .mapPopup__addressDisplay {
    font-size: 16px;
  }

  .mapPopup__addressDisplay i {
    font-size: 18px;
  }

  /* 通知移动端 */
  .notification {
    top: var(--gap-lg);
    right: var(--gap-lg);
    left: var(--gap-lg);
    max-width: none;
    font-size: 14px;
    padding: var(--gap-md) var(--gap-lg);
  }
}
