#ux-features {
  position: relative;
  margin-bottom: 7rem;
  overflow: visible;
  font-family: 'Manrope', sans-serif;
}


#ux-features .ux-f-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

#ux-features .ux-f-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.75rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: #8b5cf6;
}

#ux-features .ux-f-badge svg {
  width: 12px;
  height: 12px;
}

#ux-features .ux-f-title {
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}

#ux-features .ux-f-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  max-width: 550px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

#ux-features .ux-f-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 640px) {
  #ux-features .ux-f-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  #ux-features .ux-f-card-top {
    grid-column: span 2;
  }
  #ux-features .ux-f-card-bottom {
    grid-column: span 3;
  }
  #ux-features .ux-f-title {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  #ux-features .ux-f-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  #ux-features .ux-f-card-top {
    grid-column: span 2;
  }
  #ux-features .ux-f-card-bottom {
    grid-column: span 3;
  }
  #ux-features .ux-f-title {
    font-size: 2rem;
  }
}

#ux-features .ux-f-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#ux-features .ux-f-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.03);
}

#ux-features .ux-f-card-visual {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#ux-features .ux-f-card-info {
  padding: 1rem 1.25rem;
  width: 100%;
}

#ux-features .ux-f-card-info-title {
  color: #8b5cf6;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

#ux-features .ux-f-card-info-desc {
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
}

#globe-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  overflow: hidden;
}

#shield-animation-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 30%, transparent 65%);
}

.shield-icon {
  position: relative;
  z-index: 2;
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
  animation: ux-f-shield-pulse 3s ease-in-out infinite;
}

.ux-f-delivery-visual {
  align-items: flex-start !important;
  justify-content: center;
  padding-top: 0;
  overflow: hidden;
}

@keyframes ux-f-shield-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.25)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.35)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.15));
  }
}

.wave-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.wave {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  animation: ux-f-wave-expand 5s ease-out infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 1.25s; }
.wave-3 { animation-delay: 2.5s; }

@keyframes ux-f-wave-expand {
  0% { width: 40px; height: 40px; opacity: 0.7; }
  40% { opacity: 0.4; }
  100% { width: 350px; height: 350px; opacity: 0; }
}

#ux-features .ux-f-delivery {
  width: 80%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: 'Manrope', sans-serif;
}

#ux-features .ux-f-delivery-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px 10px 0 0;
  border-bottom: none;
}

#ux-features .ux-f-delivery-order-id {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 400;
}

#ux-features .ux-f-delivery-status {
  color: #8b5cf6;
  font-size: 0.78rem;
  font-weight: 600;
}

#ux-features .ux-f-delivery-bar {
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.04);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 6px;
  padding-bottom: 6px;
}

#ux-features .ux-f-delivery-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

#ux-features .ux-f-delivery-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #a78bfa, #8b5cf6);
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(139, 92, 246, 0.4);
  animation: ux-f-progress-fill 7s ease-in-out infinite;
}

@keyframes ux-f-progress-fill {
  0% { width: 0%; }
  60% { width: 100%; }
  80% { width: 100%; }
  100% { width: 0%; }
}

#ux-features .ux-f-delivery-details {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0 0 10px 10px;
  border-top: none;
}

#ux-features .ux-f-delivery-details-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
}

#ux-features .ux-f-delivery-details-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

#ux-features .ux-f-delivery-details-title {
  color: rgba(139, 92, 246, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
}

#ux-features .ux-f-delivery-details-sub {
  color: rgba(139, 92, 246, 0.45);
  font-size: 0.7rem;
  font-weight: 400;
}

#ux-features .ux-f-support-text {
  text-align: center;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#ux-features .ux-f-support-text span {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 0%, #d4d4d4 50%, #666666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

#ux-features .ux-f-menu-outer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 2rem 0;
  box-sizing: border-box;
}

#ux-features .ux-f-menu {
  width: 60%;
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  gap: 0;
  overflow: hidden;
  background: rgba(10, 12, 25, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#ux-features .ux-f-menu-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  cursor: pointer;
}

#ux-features .ux-f-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

#ux-features .ux-f-menu-icon.ux-f-menu-icon-active {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

#ux-features .ux-f-menu-icon.ux-f-menu-icon-hidden {
  visibility: hidden;
}

#ux-features .ux-f-menu-label {
  flex: 1;
  color: rgba(139, 92, 246, 0.75);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  min-width: 0;
}

#ux-features .ux-f-toggle {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

#ux-features .ux-f-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

#ux-features .ux-f-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: background 0.3s ease;
}

#ux-features .ux-f-toggle-slider::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease, background 0.3s ease;
}

#ux-features .ux-f-toggle input:checked + .ux-f-toggle-slider {
  background: rgba(255, 255, 255, 0.3);
}

#ux-features .ux-f-toggle input:checked + .ux-f-toggle-slider::after {
  transform: translateX(18px);
  background: #ffffff;
}

#ux-features .ux-f-range {
  width: 120px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
}

#ux-features .ux-f-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

#ux-features .ux-f-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
}

.ux-f-graph-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.ux-f-graph-visual canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.ux-f-console-visual {
  padding: 28px 28px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.ux-console {
  width: 100%;
  max-width: 340px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px 12px 8px 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), 0 1px 6px rgba(0, 0, 0, 0.15);
}

.ux-console-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ux-console-dots {
  display: flex;
  gap: 6px;
}

.ux-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.ux-dot-red { background: #ff5f57; }
.ux-dot-yellow { background: #febc2e; }
.ux-dot-green { background: #28c840; }

.ux-console-filename {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.25);
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  letter-spacing: 0.02em;
}

.ux-console-body {
  padding: 12px 0 14px;
  flex: 1;
  overflow: hidden;
}

.ux-code-line {
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-family: 'JetBrains Mono', 'SF Mono', monospace;
  font-size: 0.62rem;
  line-height: 1.8;
  min-height: 1.8em;
}

.ux-line-num {
  color: rgba(255, 255, 255, 0.1);
  width: 18px;
  text-align: right;
  margin-right: 16px;
  flex-shrink: 0;
  font-size: 0.55rem;
  user-select: none;
}

.ux-code-kw { color: #c792ea; }
.ux-code-fn { color: #82aaff; }
.ux-code-var { color: rgba(238, 255, 255, 0.85); }
.ux-code-op { color: rgba(255, 255, 255, 0.3); }
.ux-code-str { color: #c3e88d; }
.ux-code-bool { color: #f78c6c; }
.ux-code-comment { color: rgba(255, 255, 255, 0.18); font-style: italic; }

.ux-code-indent {
  display: inline-block;
  width: 18px;
}

.ux-cursor {
  display: inline-block;
  width: 1.5px;
  height: 1em;
  background: rgba(255, 255, 255, 0.7);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: ux-blink 1.2s step-end infinite;
}

@keyframes ux-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.ux-f-marquee-visual {
  overflow: hidden;
  padding: 0;
}

.ux-f-belt-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 60px 0 56px;
  width: 100%;
  overflow: hidden;
}

.ux-f-belt {
  overflow: hidden;
}

.ux-f-belt__strip {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
}

.ux-f-belt--left {
  animation: ux-belt-scroll 25s linear infinite;
}

.ux-f-belt--right {
  animation: ux-belt-scroll-r 25s linear infinite;
}

@keyframes ux-belt-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

@keyframes ux-belt-scroll-r {
  from { transform: translateX(calc(-50% - 7px)); }
  to { transform: translateX(0); }
}

.ux-f-belt__strip img {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px;
  display: block;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.02);
}

#ux-features .ux-f-card-pay {
  align-self: start;
}

#ux-features .ux-f-card-pay .ux-f-card-visual {
  height: 240px;
  min-height: 240px;
  max-height: 240px;
}

.ux-f-paycols-visual {
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}

.ux-f-pay-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem;
  gap: 0.85rem;
  min-width: 0;
  z-index: 3;
}

.ux-f-pay-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 0.4rem;
}

.ux-f-pay-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #8b5cf6;
  letter-spacing: -0.01em;
}

.ux-f-pay-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
  max-width: 220px;
}

.ux-f-paycols-visual::before,
.ux-f-paycols-visual::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 50px;
  pointer-events: none;
  z-index: 2;
}
.ux-f-paycols-visual::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,1) 0%, rgba(10,10,10,0) 100%);
}
.ux-f-paycols-visual::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0) 100%);
}

.ux-f-paycols {
  display: flex;
  gap: 14px;
  padding: 0 32px 0 0;
  height: 100%;
  align-items: stretch;
}

.ux-f-paycol {
  width: 78px;
  overflow: hidden;
  position: relative;
}

.ux-f-paycol-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  will-change: transform;
}

.ux-f-paycol--up .ux-f-paycol-track {
  animation: ux-paycol-up 18s linear infinite;
}

.ux-f-paycol--down .ux-f-paycol-track {
  animation: ux-paycol-down 18s linear infinite;
}

@keyframes ux-paycol-up {
  from { transform: translateY(0); }
  to { transform: translateY(calc(-50% - 4px)); }
}

@keyframes ux-paycol-down {
  from { transform: translateY(calc(-50% - 4px)); }
  to { transform: translateY(0); }
}

.ux-f-paycol-track img {
  width: 78px;
  height: 52px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  padding: 4px;
  display: block;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .ux-f-paycols { padding: 0 20px 0 0; gap: 10px; }
  .ux-f-paycol { width: 64px; }
  .ux-f-paycol-track img { width: 64px; height: 42px; }
}

#ux-features .ux-f-menu-outer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem 2rem 0;
  box-sizing: border-box;
}

#ux-features .ux-f-menu-outer--side {
  width: auto;
  flex: 0 0 56%;
  max-width: 56%;
  align-items: center;
  padding: 1.25rem 1.5rem 1.25rem 0;
  margin-left: auto;
}

#ux-features .ux-f-menu-outer--side .ux-f-menu {
  width: 100%;
}

#ux-features .ux-f-easy-img-wrap {
  flex: 0 0 44%;
  max-width: 44%;
  height: 100%;
  margin-left: auto;
  padding: 1.25rem 1rem 1.25rem 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#ux-features .ux-f-easy-img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: right center;
  display: block;
  image-rendering: auto;
}

#ux-features .ux-f-menu {
  width: 70%;
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  gap: 0;
  overflow: hidden;
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#ux-features .ux-f-menu-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  cursor: pointer;
}

#ux-features .ux-f-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

#ux-features .ux-f-menu-icon.ux-f-menu-icon-active {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

#ux-features .ux-f-menu-icon.ux-f-menu-icon-hidden {
  visibility: hidden;
}

#ux-features .ux-f-menu-label {
  flex: 1;
  color: rgba(139, 92, 246, 0.75);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  min-width: 0;
}

#ux-features .ux-f-toggle {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

#ux-features .ux-f-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

#ux-features .ux-f-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: background 0.3s ease;
}

#ux-features .ux-f-toggle-slider::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease, background 0.3s ease;
}

#ux-features .ux-f-toggle input:checked + .ux-f-toggle-slider {
  background: rgba(255, 255, 255, 0.25);
}

#ux-features .ux-f-toggle input:checked + .ux-f-toggle-slider::after {
  transform: translateX(18px);
  background: #ffffff;
}

#ux-features .ux-f-range {
  width: 120px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
}

#ux-features .ux-f-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

#ux-features .ux-f-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
}

@media (max-width: 639px) {
  #notification-container .notification {
    width: calc(100% - 20px);
  }
  #ux-features .ux-f-title {
    font-size: 1.3rem;
  }
  #ux-features .ux-f-card-visual {
    height: 180px;
  }
  #ux-features .ux-f-card-visual img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
  }
}