:root {
  --color-bg-dark: #050816;
  --color-bg-dark-soft: #0b1220;
  --color-bg-body: #f8faff;
  --color-bg-card: #ffffff;
  --color-primary-from: #ff8fa3;
  --color-primary-to: #f4cdc2;
  --color-secondary: #7c8cff;
  --color-accent-soft: #ff8fa3;
  --color-purple-theme: #d8b4e2;
  --color-text-main: #111827;
  --color-text-muted: #4b5563;
  --color-text-soft: #9ca3af;
  --color-border-subtle: #e5e7eb;
  --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius-lg: 16px;
  --radius-pill: 999px;
  --max-width: 1360px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../font/Inter-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../font/Inter-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../font/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../font/Inter-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../font/Inter-ExtraBold.woff2') format('woff2');
}


html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text-main);
  background: var(--color-bg-body);
  overflow-x: hidden;
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(90deg,
      rgba(5, 8, 22, 0.9),
      rgba(5, 8, 22, 0.7));
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(5, 8, 22, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1440px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f9fafb;
}

.logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 20%, #ffffff, #c7d2fe 30%, #0f172a);
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg,
      var(--color-primary-from),
      var(--color-primary-to));
  opacity: 0.9;
  mix-blend-mode: screen;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text-cn {
  font-weight: 600;
  font-size: 16px;
}

.logo-text-en {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cbd5f5;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.nav-list>li>a {
  font-size: 14px;
  color: #e5e7eb;
  padding: 4px 0;
  position: relative;
}

.nav-list>li>a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg,
      var(--color-primary-from),
      var(--color-primary-to));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease-out;
}

.nav-list>li>a:hover::after {
  transform: scaleX(1);
}

.nav-list .has-dropdown {
  position: relative;
}

.nav-list .has-dropdown>a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list .chevron {
  transition: transform 0.2s ease;
  opacity: 0.7;
}

.nav-list .has-dropdown:hover .chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 140px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 8px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  z-index: 50;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(15, 23, 42, 0.95);
}

.has-dropdown:hover .dropdown-menu,
.action-dropdown-wrapper:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 8px 16px;
  color: #cbd5e1;
  font-size: 13px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.compact-actions {
  gap: 16px;
}

.action-icon-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.action-icon-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.action-dropdown-wrapper {
  position: relative;
}

.action-dropdown {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(10px);
}

.action-dropdown::before {
  left: auto;
  right: 12px;
  transform: none;
}

.action-dropdown-wrapper:hover .action-dropdown {
  transform: translateX(0) translateY(0);
}

.cart-btn {
  text-decoration: none;
}

.cart-badge {
  position: absolute;
  top: 0px;
  right: -2px;
  background: #ef4444;
  color: white;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #050816;
}

.lang-switch {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.lang-switch:hover {
  color: #fff;
  border-color: rgba(148, 163, 184, 0.8);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

.btn {
  border-radius: var(--radius-pill);
  border: none;
  padding: 8px 18px;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.15s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg,
      var(--color-primary-from),
      var(--color-primary-to));
  color: #0b1120;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.45);
}

.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(15, 118, 110, 0.55);
}

.btn-secondary {
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: transparent;
  color: #e5e7eb;
}

.btn-secondary:hover {
  border-color: var(--color-primary-from);
  color: #f9fafb;
}

.btn-text {
  background: transparent;
  color: #e5e7eb;
}

.btn-ghost {
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text-main);
}

.btn-ghost:hover {
  border-color: var(--color-primary-from);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: transparent;
  padding: 0 7px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  width: 100%;
}

@media (max-width: 900px) {
  .nav-list {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .header-actions {
    display: none;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--color-bg-dark);
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}


.hero-volume-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hero-volume-btn:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 40px 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 50;
}

.hero-logo-img {
  height: 26px;
  width: auto;
}

.hero-menu-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-login-link {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.hero-login-link:hover {
  opacity: 0.8;
}

.hero-menu-btn {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  color: #fff;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-login-text {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-menu-icon {
  width: 20px;
  height: 20px;
}

.hero-menu-btn:hover {
  opacity: 0.8;
}

.hero-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  background: #ffffff;
  border: none;
  border-radius: 4px;
  min-width: 130px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-dropdown::after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
}

.hero-menu-container.active .hero-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-nav {
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.hero-nav>li {
  position: relative;
}

.hero-nav>li>a {
  display: block;
  padding: 12px 24px;
  color: #7D7D7D;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.hero-nav>li>a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
}

.hero-sub {
  position: absolute;
  top: 0;
  right: 100%;
  min-width: 120px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
}

.has-hero-sub:hover .hero-sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero-sub>li>a {
  display: block;
  padding: 10px 20px;
  color: #7D7D7D;
  font-size: 13px;
  transition: all 0.2s;
}

.hero-sub>li>a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
}

.hero-center-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
}

.hero-slogan {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  margin: 0;
}

.hero-search-container {
  position: absolute;
  left: 40px;
  bottom: 60px;
  z-index: 20;
  width: 100%;
  max-width: 540px;
}

.hero-search-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.hero-search-box {
  display: flex;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-search-input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 16px;
  color: #111;
  outline: none;
}

.hero-search-input::placeholder {
  color: #777;
}

.hero-search-btn {
  border: none;
  background: linear-gradient(135deg, var(--color-primary-from), var(--color-primary-to));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 0 32px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 1px;
}

.hero-search-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-search-desc a {
  color: #fff;
  text-decoration: underline;
}

.hero-search-desc a:hover {
  text-decoration: none;
}

.services-fullscreen {
  position: relative;
  display: block;
  overflow: hidden;
  color: #ffffff;
}

.services-bg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.services-bg img {
  width: 100%;
  height: 120%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: -10%;
  left: 0;
  transform: scale(1.2);
  transition: top 0.15s ease-out;
  will-change: top;
}


.services-inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 1300px;
}

.service-block {
  flex: 1;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-block:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 40px;
  padding-left: 120px;
}

.service-block:last-child {
  padding-left: 40px;
  padding-right: 120px;
}

.service-block:hover {
  transform: translateY(-8px);
}

.services-fullscreen .service-icon-wrapper {
  color: #ffffff;
  background: transparent;
  padding: 0;
  margin-bottom: 24px;
}

.services-fullscreen .service-icon-wrapper svg {
  width: 44px;
  height: 44px;
  stroke-width: 1.5;
}

.services-fullscreen .service-title,
.services-fullscreen .t-title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 300;
}

.services-fullscreen .service-list li,
.services-fullscreen .t-list span {
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  color: #ffffff;
}

.services-fullscreen .service-list li {
  padding-left: 0;
}

.service-btn {
  margin-top: auto;
  padding: 2px 0;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  border: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 1.1px;
}

.service-btn:hover {
  color: #ffffff !important;
  border-bottom-color: #ffffff;
  background: transparent !important;
}

.services-test0 {
  height: 50vh;
  min-height: 350px;
  max-height: 350px;
}

.services-test0 .services-bg {
  height: 100%;
}

.services-test0 .services-bg img {
  height: 100%;
  object-position: center;
}

.services-test0 .services-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(204, 206, 210, 0.1);
  z-index: 1;
}

@media (max-width: 1150px) {
  .services-fullscreen {
    height: 520px;
    min-height: 520px;
    position: relative;
    padding: 0;
    overflow: hidden;
  }

  .services-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 10;
    left: 0;
    transform: none;
    padding: 0;
    margin: 0;
  }

  .services-inner::-webkit-scrollbar {
    display: none;
  }

  .services-inner {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .service-block {
    flex: 0 0 100%;
    width: 100% !important;
    min-width: 100% !important;
    padding: 60px 40px !important;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
  }

  .service-block:first-child {
    border-right: none;
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .service-block:last-child {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .services-fullscreen .service-title {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  }

  .service-list li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .service-btn {
    margin-top: 10px !important;
    align-self: center;
  }

  .services-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 30;
  }

  .service-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .service-dot.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--color-primary-from), var(--color-primary-to));
  }
}

.platform-intro-section {
  /*background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.18), transparent 60%),*/
  /*  radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.2), transparent 60%),*/
  /*  var(--color-bg-body);*/
  background: rgba(129, 140, 248, 0.18);
  /*background:#ff9566;*/
  /*background: rgba(255, 149, 102, 0.3);*/
  padding: 80px 0;
  position: relative;
}

.intro-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.intro-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-right: 50px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.intro-brand-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-brand {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a26;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.intro-slogan {
  font-size: 22px;
  color: #1a1a26;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.intro-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-left: 50px;
}

.intro-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a26;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.intro-desc {
  font-size: 15px;
  color: #4c5864;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .intro-layout {
    flex-direction: column;
    text-align: left;
    gap: 40px;
  }

  .intro-left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
  }

  .intro-right {
    padding-left: 0;
  }
}

.recommended-section {
  padding: 60px 0;
  background: var(--color-bg-body);
}

.recommended-header {
  text-align: center;
  margin-bottom: 40px;
}

.recommended-carousel-wrapper {
  overflow: hidden;
  position: relative;
}

.recommended-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.recommended-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0px;
  aspect-ratio: 16 / 9;
  background: #111;
}

.recommended-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.recommended-card:hover img {
  transform: scale(1.05);
}

.card-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  pointer-events: none;
  z-index: 1;
}

.recommended-card .card-title {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  color: #fff;
  z-index: 2;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .recommended-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-logo-img {
    height: 17px;
  }

  .hero-header {
    padding: 20px;
  }

  .hero-search-container {
    left: 20px;
    right: 20px;
    width: auto;
    bottom: 90px;
  }

  .hero-search-title {
    font-size: 1.2rem;
  }

  .hero-search-input {
    padding: 12px 15px;
    font-size: 14px;
  }

  .hero-search-btn {
    padding: 0 15px;
    font-size: 14px;
  }

  .hero-volume-btn {
    bottom: 40px;
    right: 20px;
  }
}

@media (max-width: 600px) {
  .recommended-track {
    grid-template-columns: 1fr;
  }

  .recommended-card .card-title {
    font-size: 16px;
  }

  .intro-slogan {
    font-size: 20px;
  }

  .intro-desc {
    font-size: 13px;
  }

  .services-fullscreen .service-list li,
  .services-fullscreen .t-list span {
    font-size: 14px;
  }

  .services-fullscreen .service-title {
    font-size: 28px;
  }

  .services-fullscreen {
    height: 300px;
    min-height: 300px;
  }

  .services-pagination {
    bottom: 10px;
  }
}

.trusted-section {
  padding: 40px 0 100px;
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.18), transparent 60%),
    radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.2), transparent 60%),
    var(--color-bg-body);
  position: relative;
  overflow: hidden;
}

.trusted-header {
  text-align: center;
  margin-bottom: 50px;
}

.trusted-desc {
  font-size: 15px;
  color: #6a6a7c;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.marquee-wrapper {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 30px;
  padding: 30px 0;
  margin: -30px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 40px;
  min-width: 100%;
  padding-left: 40px;
  animation: scroll-left 50s linear infinite;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
  transform: scale(0.98) translateX(10px);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.marquee-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  width: max-content;
  min-width: 160px;
}

.marquee-card .card-image-wrapper {
  position: relative;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.marquee-card .card-image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s ease, filter 0.4s ease;
}

.marquee-card .card-hover-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a26;
  font-size: 14px;
  font-weight: 800;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 10px;
  opacity: 0;
  border-radius: 50%;
  transition: opacity 0.3s ease;
  z-index: 2;
  line-height: 1.2;
}

.marquee-card .card-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 150px;
}

.marquee-card .card-title {
  color: #333344;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}

.marquee-wrapper:hover .marquee-card {
  opacity: 0.5;
  filter: grayscale(80%);
}

.marquee-wrapper .marquee-card:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-5px);
  z-index: 10;
}

.marquee-wrapper .marquee-card:hover .card-title {
  color: #1a1a26;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.marquee-wrapper .marquee-card:hover .card-image-wrapper {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.marquee-wrapper .marquee-card:hover img {
  transform: scale(1.1);
}

.marquee-wrapper .marquee-card:hover .card-hover-overlay {
  opacity: 1;
}

.marquee-card:nth-child(5n+1) .card-image-wrapper {
  border-color: rgba(52, 209, 255, 0.35);
}

.marquee-card:nth-child(5n+2) .card-image-wrapper {
  border-color: rgba(42, 229, 199, 0.35);
}

.marquee-card:nth-child(5n+3) .card-image-wrapper {
  border-color: rgba(124, 140, 255, 0.35);
}

.marquee-card:nth-child(5n+4) .card-image-wrapper {
  border-color: rgba(255, 143, 163, 0.35);
}

.marquee-card:nth-child(5n) .card-image-wrapper {
  border-color: rgba(216, 180, 226, 0.35);
}

.marquee-wrapper .marquee-card:nth-child(5n+1):hover .card-image-wrapper {
  border-color: rgba(52, 209, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(52, 209, 255, 0.5), inset 0 0 10px rgba(52, 209, 255, 0.3);
}

.marquee-wrapper .marquee-card:nth-child(5n+1):hover .card-hover-overlay {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(52, 209, 255, 0.45) 100%);
}

.marquee-wrapper .marquee-card:nth-child(5n+2):hover .card-image-wrapper {
  border-color: rgba(42, 229, 199, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(42, 229, 199, 0.5), inset 0 0 10px rgba(42, 229, 199, 0.3);
}

.marquee-wrapper .marquee-card:nth-child(5n+2):hover .card-hover-overlay {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(42, 229, 199, 0.45) 100%);
}

.marquee-wrapper .marquee-card:nth-child(5n+3):hover .card-image-wrapper {
  border-color: rgba(124, 140, 255, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(124, 140, 255, 0.5), inset 0 0 10px rgba(124, 140, 255, 0.3);
}

.marquee-wrapper .marquee-card:nth-child(5n+3):hover .card-hover-overlay {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(124, 140, 255, 0.45) 100%);
}

.marquee-wrapper .marquee-card:nth-child(5n+4):hover .card-image-wrapper {
  border-color: rgba(255, 143, 163, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 143, 163, 0.5), inset 0 0 10px rgba(255, 143, 163, 0.3);
}

.marquee-wrapper .marquee-card:nth-child(5n+4):hover .card-hover-overlay {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 143, 163, 0.45) 100%);
}

.marquee-wrapper .marquee-card:nth-child(5n):hover .card-image-wrapper {
  border-color: rgba(216, 180, 226, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(216, 180, 226, 0.5), inset 0 0 10px rgba(216, 180, 226, 0.3);
}

.marquee-wrapper .marquee-card:nth-child(5n):hover .card-hover-overlay {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(216, 180, 226, 0.45) 100%);
}

@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    margin-top: 80px;
  }

  .hero-carousel-wrapper {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
  }

  .hero-content-wrapper .hero-desc {
    margin: 0 auto 40px;
  }

  .hero-content-wrapper .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .trusted-header h2 {
    font-size: 26px;
  }

  .trusted-desc {
    font-size: 14px;
  }
}

.services-tilted-pop {
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.18), transparent 60%),
    radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.2), transparent 60%),
    var(--color-bg-body);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.container-tilted-layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.box-left {
  flex: 1;
  width: 100%;
}

.box-right {
  flex: 1;
  width: 100%;
}

.tilted-box {
  background: transparent;
  border: none;
  padding: 40px 40px 40px 60px;
  transform: skewX(-15deg);
  transition: transform 0.3s ease;
}

.tilted-box-content {
  transform: skewX(15deg);
}

.tilted-box:hover {
  transform: skewX(-15deg) translate(-5px, -5px);
}

.t-title {
  color: var(--color-text-main);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.tilted-box-yellow .t-title img {
  background-color: #cb8cdc;
  padding: 8px;
  border-radius: 8px;
}

.tilted-box-cyan .t-title img {
  background-color: #2ae5c7;
  padding: 8px;
  border-radius: 8px;
}

.t-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.t-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.t-list span {
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
}

.t-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.list-yellow .t-icon {
  stroke: #cb8cdc;
}

.list-cyan .t-icon {
  stroke: #2ae5c7;
}

.t-legal {
  font-size: 12px !important;
  color: #888899 !important;
  margin-top: 10px !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.btn-t {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  color: #1a1a26;
  border: 3px solid #1a1a26;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.btn-solid-yellow {
  background: #cb8cdc;
  box-shadow: 4px 4px 0px #1a1a26;
}

.btn-solid-yellow:hover {
  background: #cb8cdc;
  box-shadow: 0px 0px 0px #1a1a26;
  transform: translate(4px, 4px);
}

.btn-solid-cyan {
  background: #2ae5c7;
  box-shadow: 4px 4px 0px #1a1a26;
}

.btn-solid-cyan:hover {
  background: #1cccae;
  box-shadow: 0px 0px 0px #1a1a26;
  transform: translate(4px, 4px);
}

.services-test3-pop {
  padding: 30px 0;
  position: relative;
  background: #ffffff;
}

.test3-box {
  padding: 60px 40px;
  border-radius: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.test3-box:hover {
  transform: translateY(-8px);
}

.test3-box-light {
  background-color: #f9fcfd;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.test3-box-light:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.test3-box-dark {
  background-color: #0A0E12;
  box-shadow: 0 10px 30px rgba(10, 14, 18, 0.2);
}

.test3-box-dark:hover {
  box-shadow: 0 20px 40px rgba(10, 14, 18, 0.3);
}

.test3-box-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.t3-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.t3-title img {
  border-radius: 8px;
}

.test3-box-light .t3-title img {
  background-color: #cb8cdc;
  padding: 8px;
}

.test3-box-dark .t3-title img {
  background-color: #2ae5c7;
  padding: 8px;
}

.title-darktext {
  color: #0A0E12;
}

.title-lighttext {
  color: #f9fcfd;
}

.t3-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

.t3-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.t3-list span {
  font-size: 16px;
  color: #4c5864;
  font-weight: 500;
  line-height: 1.6;
}

.test3-box-dark .t3-list span {
  color: #8c9ba8;
}

.t3-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.test3-box-light .t3-icon {
  stroke: #4c5864;
}

.test3-box-dark .t3-icon {
  stroke: #8c9ba8;
}

.btn-t3 {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-solid-darktext {
  background-color: #0A0E12;
  color: #ffffff;
}

.btn-solid-darktext:hover {
  background-color: #4c5864;
  color: #ffffff;
  transform: translateX(4px);
}

.btn-solid-lighttext {
  background-color: #f9fcfd;
  color: #0A0E12;
}

.btn-solid-lighttext:hover {
  background-color: #e0e6e9;
  color: #0A0E12;
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .container-tilted-layout {
    flex-direction: column;
    gap: 40px;
  }

  .box-left,
  .box-right {
    width: 100%;
  }

  .tilted-box {
    transform: skewX(0deg);
    padding: 30px;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.9);
  }

  .tilted-box-content {
    transform: skewX(0deg);
  }
}

.cases-accordion-section {
  /*background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.18), transparent 60%),*/
  /*  radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.2), transparent 60%),*/
  /*  var(--color-bg-body);*/
  background: rgba(129, 140, 248, 0.18);
  /*background: #ff9566;*/
  /*background: rgba(255, 149, 102, 0.18);*/
  /*background: rgba(255, 149, 102, 0.38);*/
  /*background: rgba(255, 149, 102, 0.58);*/
  /*background: rgba(255, 149, 102, 0.78);*/

  padding: 40px 0 0 0;
  position: relative;
}

.container-accordion-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.accordion-header {
  text-align: center;
  margin-bottom: 40px;
}

.accordion-header .t-desc {
  font-size: 18px;
  color: #6a6a7c;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.accordion-carousel {
  position: relative;
  margin-bottom: 0px;
  overflow: hidden;
}

.accordion-carousel-track {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.accordion-item {
  position: relative;
  flex: 0 0 20%;
  flex-shrink: 0;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
  cursor: pointer;
  z-index: 1;
}

.accordion-item:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  z-index: 10;
  border-radius: 4px;
}

.accordion-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
  width: 100%;
}

.accordion-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.accordion-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26, 26, 36, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-dot:hover {
  background: rgba(26, 26, 36, 0.6);
}

.accordion-dot.active {
  width: 24px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--color-primary-from), var(--color-primary-to));
}

#accordion-track-cases:hover .accordion-item:not(:hover) {
  filter: brightness(0.5) grayscale(0.3);
}

.accordion-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.7) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.accordion-item:hover .accordion-content {
  opacity: 1;
  transform: translateY(0);
}

.accordion-content h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 6px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.accordion-content h4 {
  color: #fbbf24;
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
}

.accordion-content p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
  max-width: 600px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.accordion-footer {
  text-align: center;
  margin-top: 40px;
}

.logo-footer {
  margin-bottom: 10px;
}

.btn-solid-dark {
  background: #1a1a26;
  color: #ffffff;
  border: 1px solid #1a1a26;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
  text-transform: uppercase;
}

.btn-solid-dark:hover {
  background: #fbbf24;
  color: #1a1a26;
  border-color: #fbbf24;
  box-shadow: 0 15px 30px rgba(251, 191, 36, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 1150px) {
  .accordion-item {
    flex: 0 0 33.333%;
  }

  .accordion-item:hover {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .accordion-item {
    flex: 0 0 100%;
  }

  .accordion-item:hover {
    flex: 0 0 100%;
    transform: none;
  }

  .accordion-content {
    opacity: 1;
    transform: translateY(0);
    padding: 20px;
    height: auto;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.4) 100%);
  }

  .accordion-content h3 {
    font-size: 20px;
  }
}

.cases-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 8, 22, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow-y: auto;
}

.cases-modal-overlay.active {
  display: block;
}

.cases-modal-content {
  background-color: transparent;
  margin: 5% auto;
  padding: 40px;
  width: 90%;
  max-width: 1400px;
  position: relative;
}

.modal-header {
  text-align: center;
  margin-bottom: 50px;
  color: #ffffff;
}

.modal-header h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.modal-header p {
  color: #a0a0b0;
  font-size: 18px;
  letter-spacing: 1px;
}

.modal-close-btn {
  color: #ffffff;
  position: fixed;
  top: 30px;
  right: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.modal-close-btn svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.modal-close-btn:hover,
.modal-close-btn:focus {
  color: #fbbf24;
  background: rgba(255, 255, 255, 0.2);
}

.modal-close-btn:hover svg,
.modal-close-btn:focus svg {
  transform: rotate(90deg);
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px 0;
}

.modal-card {
  position: relative;
  background-color: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  aspect-ratio: 2/3;
  cursor: pointer;
}

.modal-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(251, 191, 36, 0.3);
}

.modal-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.modal-card:hover .modal-card-img {
  transform: scale(1.05);
}

.modal-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px 20px;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, rgba(10, 10, 15, 0.8) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.modal-card:hover .modal-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.modal-card-text {
  color: #ffffff;
}

.modal-card-text h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.modal-card-text h4 {
  font-size: 13px;
  color: #fbbf24;
  font-weight: 600;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-card-text p {
  font-size: 12px;
  color: #a0a0b0;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .cases-modal-content {
    padding: 20px 15px;
    width: 95%;
    margin: 10% auto;
  }

  .modal-close-btn {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 32px;
  }

  .modal-header h2 {
    font-size: 28px;
  }

  .modal-gallery {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
  }

  .modal-card-overlay {
    opacity: 1;
    transform: translateY(0);
    padding: 40px 15px 15px;
  }

  .modal-card-text h3 {
    font-size: 16px;
  }
}

.realtime-awards-section {
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.18), transparent 60%),
    radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.2), transparent 60%),
    var(--color-bg-body);
  padding: 40px 0 80px 0;
  position: relative;
  overflow: hidden;
  color: #1a1a26;
  border-top: 1px solid #e0e0e5;
}

.awards-header {
  text-align: center;
  margin-bottom: 60px;
}

.awards-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #1a1a26;
}

.t-gold {
  color: #fbbf24;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(42, 229, 199, 0.1);
  color: var(--color-primary-to, #2ae5c7);
  border: 1px solid rgba(42, 229, 199, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-primary-to, #2ae5c7);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(42, 229, 199, 0.4);
  animation: pulse-cyan 1.5s infinite;
}

@keyframes pulse-cyan {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(42, 229, 199, 0.4);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(42, 229, 199, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(42, 229, 199, 0);
  }
}

.awards-showcase-container {
  display: flex;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
  padding: 0 40px;
  height: 820px;
}

.festival-tabs-wrapper {
  flex: 0 0 320px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0e0e5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.festival-tabs {
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  flex: 1;
  padding: 20px 0;
}

.festival-tabs::-webkit-scrollbar {
  width: 4px;
}

.festival-tabs::-webkit-scrollbar-thumb {
  background: #e0e0e5;
  border-radius: 4px;
}

.festival-tabs-footer {
  padding: 20px;
  border-top: 1px solid #f0f0f5;
  background: #ffffff;
  margin-top: auto;
}

.btn-view-more {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

.btn-view-more:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(168, 85, 247, 0.4);
}


.festival-tab {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  margin-bottom: 5px;
  border-left-color: #c084fc;
}

.festival-tab.active {
  background: linear-gradient(90deg, rgba(192, 132, 252, 0.35) 0%, transparent 100%);
  border-left-color: #a855f7;
}

.festival-tab:hover:not(.active) {
  background: #f8f9fa;
}

.tab-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e0e0e5;
  transition: all 0.3s ease;
  background: #fff;
}

.festival-tab.active .tab-logo {
  border-color: #c084fc;
}

.tab-name {
  font-size: 15px;
  font-weight: 600;
  color: #6a6a7c;
  transition: color 0.3s ease;
  flex: 1;
}

.festival-tab.active .tab-name {
  color: #1a1a26;
  font-weight: 800;
}

.festival-content-wrapper {
  flex: 1;
  min-width: 0;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0e0e5;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow-y: auto;
}

.festival-content-wrapper::-webkit-scrollbar {
  width: 4px;
}

.festival-content-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.festival-content-wrapper::-webkit-scrollbar-thumb {
  background: #e0e0e5;
  border-radius: 4px;
}

.festival-content-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f5;
  animation: fadeIn 0.4s ease-out;
  flex-shrink: 0;
}

.festival-header-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e0e0e5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  background: #fff;
}

.festival-header-info h3 {
  font-size: 28px;
  color: #1a1a26;
  margin: 0 0 8px 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.festival-header-info p {
  color: #a0a0b0;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
}

.festival-films-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  animation: fadeInUp 0.6s ease-out;
}

.festival-films-grid::-webkit-scrollbar {
  width: 6px;
}

.festival-films-grid::-webkit-scrollbar-track {
  background: #f0f0f5;
  border-radius: 4px;
}

.festival-films-grid::-webkit-scrollbar-thumb {
  background: #c0c0d0;
  border-radius: 4px;
}

.festival-films-grid::-webkit-scrollbar-thumb:hover {
  background: #a0a0b0;
}

.rt-film-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.rt-film-link {
  display: block;
  width: 100%;
}

.rt-film-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #c084fc;
}

.rt-film-img-wrapper {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #1a1a26;
  width: 100%;
}

.rt-film-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rt-film-card:hover .rt-film-img {
  transform: scale(1.05);
}

.rt-film-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 15px 15px;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, rgba(10, 10, 15, 0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.rt-film-card:hover .rt-film-overlay {
  opacity: 1;
  transform: translateY(0);
}

.rt-film-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 4px 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.rt-film-award {
  font-size: 15px;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1024px) {
  .awards-showcase-container {
    flex-direction: column;
    padding: 0 20px;
  }

  .festival-tabs-wrapper {
    flex: none;
    width: 100%;
  }

  .festival-tabs {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .festival-tabs::-webkit-scrollbar {
    height: 4px;
  }

  .festival-tabs::-webkit-scrollbar-thumb {
    background: #c0c0d0;
    border-radius: 4px;
  }

  .festival-tab {
    flex: 0 0 250px;
    border-left: none;
    border-bottom: 3px solid #2ae5c7;
    margin-bottom: 0;
    margin-right: 5px;
  }

  .festival-tab.active {
    background: linear-gradient(0deg, rgba(216, 180, 254, 0.15) 0%, transparent 100%);
    border-bottom-color: #c084fc;
  }

  .festival-films-grid {
    max-height: 600px;
  }
}

@media (max-width: 768px) {
  .awards-header h2 {
    font-size: 28px;
  }

  .festival-content-header {
    flex-direction: column;
    text-align: center;
  }

  .festival-films-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    max-height: 500px;
  }

  .rt-film-overlay {
    opacity: 1;
    transform: translateY(0);
    padding: 20px 10px 10px;
  }

  .rt-film-title {
    font-size: 14px;
  }

  .rt-film-award {
    font-size: 11px;
  }
}

.section-stats {
  position: relative;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.3), transparent 60%), radial-gradient(circle at bottom right, rgba(79, 70, 229, 0.4), transparent 60%), var(--color-bg-dark-soft);
  color: #e5e7eb;
  overflow: hidden;
  padding: 80px 0;
}

.section-stats * {
  box-sizing: inherit;
}

.stats-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.stats-inner {
  position: relative;
  z-index: 2;
  max-width: var(--stats-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
}

.stats-copy {
  flex: 0 0 45%;
}

.stats-copy h2 {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.stats-copy p {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 0 0 10px;
}

.stats-grid {
  flex: 0 0 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 15px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
}

.stat-card {
  border-radius: 18px;
  padding: 14px 14px 12px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.stat-card p {
  font-size: 13px;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .stats-inner {
    flex-direction: column;
    gap: 50px;
  }

  .stats-copy,
  .stats-grid {
    flex: 1 1 auto;
    width: 100%;
  }

  .stats-copy {
    text-align: center;
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .section-stats {
    padding: 60px 0;
  }

  .stats-copy h2 {
    font-size: 28px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card {
    align-items: center;
    text-align: center;
  }
}

.footer-color-stripe {
  height: 3px;
  background: linear-gradient(90deg, #f97316, #eab308, #22c55e, #06b6d4, #6366f1, #ec4899);
}

.site-footer {
  background: linear-gradient(90deg, rgba(5, 8, 22, 1), rgba(5, 8, 22, 0.95));
  color: #cbd5e1;
  padding: 60px 0 0 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 50px;
}

.footer-col-left {
  flex: 1;
  max-width: 400px;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7D7D7D;
  line-height: 1.5;
}

.footer-contact-list svg {
  color: #7D7D7D;
  flex-shrink: 0;
}

.footer-col-right {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-end;
}

.footer-nav a {
  color: #7D7D7D;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--color-primary-to, #2ae5c7);
}

.footer-social-box {
  display: flex;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
}

.footer-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 0px;
}

.footer-qr-container img {
  width: 100px;
  height: 110px;
  display: block;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  color: #7D7D7D;
  font-size: 13px;
}

.footer-bottom-bar p {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  white-space: normal;
  line-height: 1.6;
}

.legal-divider {
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.2);
}

.legal-item {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 992px) {
  .footer-main-row {
    flex-direction: column;
    gap: 50px;
  }

  .footer-col-left {
    max-width: 100%;
  }

  .footer-col-right {
    align-items: flex-start;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-bottom-bar p {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .legal-divider {
    display: none;
  }

  .legal-item {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom-bar {
    font-size: 12px;
  }

  .legal-divider {
    display: none;
  }

  .footer-bottom-bar p {
    gap: 8px;
  }

  .footer-col-right {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px 30px;
    width: 100%;
  }

  .footer-social-box {
    width: 100%;
    justify-content: flex-start;
    margin-top: 20px;
  }
}