html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 6px;
  transition: all 200ms ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #06b6d4 0%, #7c3aed 100%);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

/* Firefox Scrollbar */
* {
  scrollbar-color: linear-gradient(180deg, #06b6d4 0%, #7c3aed 100%)
    rgba(0, 0, 0, 0.5);
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #06b6d4 0%, #7c3aed 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
}

.back-to-top svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 768px) {
  .back-to-top {
    width: 2.5rem;
    height: 2.5rem;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .back-to-top svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.animated-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to bottom,
      #340a0aff 0%,
      #171111ff 40%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(to right, #030725ff, #5f29c7);
  position: relative;
  overflow: hidden;
}

.animated-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, #ccc 1px, transparent 1px);
  background-size: 50px 100%;
  pointer-events: none;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
}

.w-90 {
  width: 90%;
}

.logo {
  height: 2.5rem;
  width: auto;
  margin-right: 0.75rem;
}

.bg-darkGrayl {
  background-color: rgba(0, 2, 6, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 28px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: greenyellow;
  box-shadow: 0 0 0 2px greenyellow;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: greenyellow;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: greenyellow;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px greenyellow;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

.bg-grid-pattern {
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.glow-button {
  position: relative;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.75rem;
  color: black;
  background-color: #fcd34d;
  transition: all 0.3s ease;
  overflow: hidden;
}

.glow-button-white {
  position: relative;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.75rem;
  color: black;
  background-color: white;
  transition: all 0.3s ease;
  overflow: hidden;
}

.hero-grid-deeper {
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px, 60px 60px;
}

.device {
  width: min(1100px, 90%);
  max-width: 1100px;
  margin: 2rem auto 0;
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 30px 80px rgba(34, 0, 102, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.device-abs {
  position: relative;
  transform: none;
  bottom: auto;
  margin-top: 1rem;
  margin-bottom: -12rem;
  width: min(1050px, 92%);
  max-width: 1050px;
  padding: 10px;
}

@media (min-width: 1024px) {
  .device-abs {
    margin-bottom: -16rem;
  }
}

@media (max-width: 768px) {
  .device-abs {
    position: static;
    transform: none;
    bottom: auto;
    margin-top: 1.5rem;
  }
}

.device-screen {
  border-radius: 12px;
  overflow: hidden;
}

.device-screen img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateZ(0);
}

.hero-star {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  filter: blur(0.6px);
  opacity: 0.9;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.hero-subtle {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
  .text-6xl {
    font-size: 2.25rem;
  }

  .text-7xl {
    font-size: 2.5rem;
  }

  .device {
    margin-top: 1rem;
  }
}

.feature-card-base {
  background: linear-gradient(135deg, rgb(21 17 51 / 90%), rgb(1 8 8 / 90%));
  border: 2px solid rgb(17 17 59 / 60%);
  border-radius: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
  transition: transform 350ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 350ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 350ms ease,
    background 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card-base:hover {
  background: linear-gradient(135deg, rgb(12 12 24 / 95%), rgb(5 22 40 / 95%));
  border-color: rgba(56, 56, 131, 0.7);
  box-shadow: 0 10px 40px -10px rgba(5, 27, 136, 0.6);
  transform: translateY(-5px);
}

.feature-icon {
  background: rgb(13 4 29 / 80%);
  border: 2px solid rgb(51 52 111 / 70%);
  color: #751bef;
}

.integrate-section {
  background: transparent;
}

.lang-marquee-wrapper {
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}

.lang-marquee-wrapper::before,
.lang-marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.lang-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.lang-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.lang-marquee {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem 0;
}

.lang-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 96px;
  flex: 0 0 auto;
}

.lang-badge {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #0b0a27, #411177);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
  font-size: 18px;
  overflow: hidden;
}

.lang-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.lang-label {
  margin-top: 0.5rem;
  color: #cbd5e1;
  font-size: 0.875rem;
}

.lang-marquee {
  will-change: transform;
  animation: marquee 30s linear infinite;
}

.lang-marquee-wrapper:hover .lang-marquee {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.card {
  --white: hsl(0, 0%, 100%);
  --black: hsl(240, 15%, 9%);
  --paragraph: hsl(0, 0%, 83%);
  --line: hsl(240, 9%, 17%);
  --primary: hsl(266, 92%, 58%);

  position: relative;

  display: flex;
  flex-direction: column;
  gap: 1rem;

  padding: 1rem;
  width: 100%;
  background-color: hsla(240, 15%, 9%, 1);
  background-image: radial-gradient(
      at 88% 40%,
      hsla(240, 15%, 9%, 1) 0px,
      transparent 85%
    ),
    radial-gradient(at 49% 30%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 0% 64%, hsla(263, 93%, 56%, 1) 0px, transparent 85%),
    radial-gradient(at 41% 94%, hsla(284, 100%, 84%, 1) 0px, transparent 85%),
    radial-gradient(at 100% 99%, hsla(306, 100%, 57%, 1) 0px, transparent 85%);

  border-radius: 1rem;
  box-shadow: 0px -16px 24px 0px rgba(255, 255, 255, 0.25) inset;
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.card .card__border {
  overflow: hidden;
  pointer-events: none;

  position: absolute;
  z-index: -10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-image: linear-gradient(
    0deg,
    hsl(0, 0%, 100%) -50%,
    hsl(0, 0%, 40%) 100%
  );

  border-radius: 1rem;
}

.card .card__border::before {
  content: "";
  pointer-events: none;

  position: fixed;
  z-index: 200;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%), rotate(0deg);
  transform-origin: left;

  width: 200%;
  height: 10rem;
  background-image: linear-gradient(
    0deg,
    hsla(0, 0%, 100%, 0) 0%,
    hsl(277, 95%, 60%) 40%,
    hsl(277, 95%, 60%) 60%,
    hsla(0, 0%, 40%, 0) 100%
  );

  animation: rotate 8s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.card .card_title__container .card_title {
  font-size: 1rem;
  color: var(--white);
}

.card .card_title__container .card_paragraph {
  margin-top: 0.25rem;
  width: 65%;

  font-size: 0.5rem;
  color: var(--paragraph);
}

.card .line {
  width: 100%;
  height: 0.1rem;
  background-color: var(--line);

  border: none;
}

.card .card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card .card__list .card__list_item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card .card__list .card__list_item .check {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 1rem;
  height: 1rem;
  background-color: var(--primary);

  border-radius: 50%;
}

.card .card__list .card__list_item .check .check_svg {
  width: 0.75rem;
  height: 0.75rem;

  fill: var(--black);
}

.card .card__list .card__list_item .list_text {
  font-size: 0.75rem;
  color: var(--white);
}

.card .button {
  cursor: pointer;

  padding: 0.5rem;
  width: 100%;
  background-image: linear-gradient(
    0deg,
    rgba(94, 58, 238, 1) 0%,
    rgba(197, 107, 240, 1) 100%
  );

  font-size: 0.75rem;
  color: var(--white);

  border: 0;
  border-radius: 9999px;
  box-shadow: inset 0 -2px 25px -4px var(--white);
}

.speed-section {
  padding: 4rem 1rem;
}

.speed-card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background-color: hsl(240deg 36.84% 3.37%);
  background-image: radial-gradient(
      at 88% 40%,
      hsla(240, 15%, 9%, 1) 0px,
      transparent 85%
    ),
    radial-gradient(at 49% 30%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 0% 64%, hsla(263, 93%, 56%, 1) 0px, transparent 85%),
    radial-gradient(at 41% 94%, hsla(284, 100%, 84%, 1) 0px, transparent 85%),
    radial-gradient(at 100% 99%, hsla(306, 100%, 57%, 1) 0px, transparent 85%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  display: flex;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.speed-left {
  flex: 1;
  min-width: 0;
}

.speed-right {
  width: 260px;
  text-align: center;
  flex-shrink: 0;
}

.speed-badge {
  display: inline-block;
  padding: 8px 14px;
  background: linear-gradient(90deg, #06b6d4, #7c3aed);
  color: white;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}

.speed-title {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-top: 0.75rem;
  font-weight: 700;
}

.speed-desc {
  color: #a8b8d8;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.tiny-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  margin-right: 10px;
  fill: currentColor;
  opacity: 0.9;
}

.speed-bullet {
  display: flex;
  align-items: flex-start;
  color: #e6eef8;
  margin-bottom: 0.5rem;
}

.speed-bullet .text {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.speed-cta-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.speed-avatars {
  display: flex;
  gap: -10px;
  margin-top: 1.5rem;
  align-items: center;
}

.speed-avatars .avatar {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.15);
  margin-left: -8px;
}

.speed-avatars .avatar:first-child {
  margin-left: 0;
}

.speed-avatars .avatar.small {
  width: 32px;
  height: 32px;
  font-size: 0.75rem;
}

.speed-avatars .label {
  margin-left: 12px;
  color: #a8b8d8;
  font-size: 0.9rem;
  font-weight: 500;
}

.speed-stat {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(90deg, #0ea5a4, #7c3aed);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

.speed-small {
  font-size: 0.95rem;
  color: #a8b8d8;
  margin-top: 0.5rem;
  font-weight: 500;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .speed-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .speed-right {
    width: 100%;
  }

  .speed-avatars {
    justify-content: center;
  }

  .speed-title {
    font-size: 1.5rem;
  }
}

.cta-section {
  padding: 5rem 1rem;
  background: linear-gradient(
      to bottom,
      #2d354b 0%,
      #000a8a 40%,
      rgb(61 69 227 / 0%) 100%
    ),
    linear-gradient(to right, #c187f3, #5f29c7);
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, #ccc 1px, transparent 1px);
  background-size: 50px 100%;
  pointer-events: none;
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 70%
  );
}

.cta-card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  box-shadow: none;
}

.cta-card h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: white;
}

@media (max-width: 768px) {
  .cta-section {
    padding: 3rem 1rem;
  }

  .cta-card h2 {
    font-size: 1.75rem;
  }
}

.setup-section {
  padding: 5rem 1rem;
  background: black;
}

.setup-container {
  max-width: 1100px;
  margin: 0 auto;
}

.setup-header {
  text-align: center;
  margin-bottom: 3rem;
}

.setup-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}

.setup-header p {
  color: #a8b8d8;
  font-size: 1.1rem;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.setup-card {
  padding: 2rem;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.setup-card:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.1);
}

.setup-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(90deg, #06b6d4, #7c3aed);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.setup-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.setup-card p {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .setup-header h2 {
    font-size: 1.75rem;
  }

  .setup-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.footer-section {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(20, 20, 40, 0.95) 100%
  );
  border-top: 1px solid rgba(6, 182, 212, 0.2);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.1) 0%,
    transparent 70%
  );
  top: -50px;
  right: -100px;
  pointer-events: none;
}

.footer-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.08) 0%,
    transparent 70%
  );
  bottom: -50px;
  left: -50px;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-column h4 {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.875rem;
}

.footer-column a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-brand h4 {
  color: #06b6d4;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: #9ca3af;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(6, 182, 212, 0.3),
    transparent
  );
  margin: 3rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-bottom-text {
  color: #6b7280;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-column h4 {
    font-size: 1rem;
  }

  .footer-column a {
    font-size: 0.9rem;
  }

  .footer-brand h4 {
    font-size: 1.25rem;
  }
}

/* Custom Dropdown Fallback */
.custom-dropdown-group:hover .custom-dropdown-menu {
  display: block !important;
}

.custom-dropdown-icon {
  transition: transform 0.2s ease;
}

.custom-dropdown-group:hover .custom-dropdown-icon {
  transform: rotate(180deg);
}

/* Large screens: Increase dashboard size */
@media (min-width: 1600px) {
  .device-abs {
    width: min(1300px, 95%);
    max-width: 1300px;
    margin-bottom: -18rem;
  }
}

@media (min-width: 1920px) {
  .device-abs {
    width: min(1500px, 95%);
    max-width: 1500px;
    margin-bottom: -24rem;
  }
}
