:root {
  --card-bg: rgba(15, 20, 54, 0.7);
  --font-heading: "Orbitron", sans-serif;
  --font-body: "Roboto", sans-serif;
  --border-opacity: 0.5;
  --border-blur: 4px;
  --main-padding: 2rem;
  --main-font-size: 2rem;
  --color-bg1: #386385;
  --color-bg2: #00325a;
  --color1: 47, 93, 182;
  --color2: 82, 132, 198;
  --color3: 82, 108, 197;
  --color4: 67, 88, 169;
  --color5: 51, 96, 170;
  --color6: 43, 89, 150;
  --color-interactive: 151, 171, 225;
  --circle-size: 80%;
  --blending: hard-light;
}

#instagram-error {
  text-align: center;
  padding: 40px 20px;
  color: #ff6b6b;
  font-size: 20px;
  font-weight: 600;
  display: none;
}

#instagram-error .box {
  display: inline-block;
  padding: 20px 30px;
  border-radius: 12px;
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.35);
}

/* Masonry Grid */
.instagram-feed {
  column-count: 4;
  column-gap: 20px;
  padding: 20px;
}

@media (max-width: 1200px) {
  .instagram-feed { column-count: 3; }
}

@media (max-width: 768px) {
  .instagram-feed { column-count: 2; }
}

@media (max-width: 480px) {
  .instagram-feed { column-count: 1; }
}

/* Masonry item */
.insta-card {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
  break-inside: avoid;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.insta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

/* Media */
.insta-media img,
.insta-media video {
  width: 100%;
  display: block;
  border-bottom: 1px solid #222;
}

/* Caption */
.insta-caption {
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.5;
  color: white;
}

/* Loader Shimmer */
/* .loader {
  width: 100%;
  height: 60px;
  margin: 20px auto;
  border-radius: 10px;
  background: linear-gradient(90deg, #222, #333, #222);
  background-size: 200%;
  animation: shimmer 1.4s infinite;
} */

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}


/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  /* outline: 2px solid red; */
  border: 0;
  font-size: 100%;
  box-sizing: border-box;
  font-family: var(--font-body);
  vertical-align: baseline;
}
body {
  overflow-x: hidden;
  font-family: var(--font-body);
  color: beige;
}
button:not(:disabled) {
  cursor: pointer;
}
.site-logo .tagline {
  width: 111px;
}
.info p {
  font-size: var(--main-font-size);
  font-weight: 300;
  font-family: var(--font-body);
}
.section {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  /* padding-left: 6rem;
    padding-right: 6rem; */
  /* padding-top: 5rem; */
  /* gap: 1rem; */
  /* padding-bottom: 1rem; */
  opacity: 1;
}
.section h1 {
  font-weight: 400;
  line-height: 4rem;
  font-family: var(--font-body);
  font-size: 4rem;
  /* margin-top: 17px; */
}
.content-wrap {
  /* max-width: 800px; */
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 4rem 0 3rem 0;
}
.hero-subhead {
  font-style: italic;
  font-size: 4rem;
  margin-bottom: 28px;
  font-weight: 400;
  /* width: 100vw; */
}
.hero-info {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 100%;
  /* letter-spacing: 1.28px; */
}
.Copyright {
  font-size: 14px;
}
.bottom {
  margin-top: 1.5rem;
  color: #fff;
  padding: 0.5rem 0;
  text-align: center;
  gap: 1rem;
  font-size: 1.75rem;
}
.cardfooter {
  /* margin-top: 0.5rem; */
  color: #fff;
  padding: 0.5rem 0;
  text-align: center;
  gap: 1rem;
  font-size: 1.75rem;
}
.logo img {
  height: 101px;
  width: auto;
  display: block;
}
.foot i {
  animation: up 1s ease-in-out infinite;
}
.bottom i {
  animation: up 1s ease-in-out infinite;
}
@keyframes up {
  100% {
    transform: translateY(-20px);
  }
}

.foot {
  /* margin-top: 4rem; */
  left: 50%;
  color: #fff;
  padding: 0.5rem 0;
  text-align: center;
  z-index: 10;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem !important;
  font-size: 1.5rem;
}

.foot i {
  /* animation: bounce 1s infinite; */
  font-size: 2rem;
}
.cardfooter i {
  transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  color: white;
  top: 72px;
}

.scrollup {
  width: 35px;
  height: 35px;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.info h1 {
  font-weight: 400;
  /* line-height: 5rem; */
  font-size: 56px;
}
/* .section3 > footer {
  bottom: 34px !important;
} */
/* .cta1 a {
    text-decoration: none;
    color: #c2bfbf;
} */
.video-info h1 {
  font-size: 40px;
  margin-bottom: 0;
  font-weight: 400;
  font-family: Roboto, sans-serif;
}
.video-info h1 img {
  width: 120px;
}
.vsc-controller {
  display: none !important;
}
.video-row {
  height: 300px;
  /* min-height: 300px; */
}

.owl-stage {
  transform: translate3d(0px, 0px, 0px);
  transition: 0.8s;
  width: 2134px;
}
.owl-nav button.disabled {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.owl-carousel .item .fa-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #fff;
  opacity: 0.8;
  display: block;
  height: 45px;
  width: 45px;
}

.owl-carousel .item:hover .fa-play {
  display: block;
}

.video-preview-card video {
  border-radius: 1rem;
  object-fit: cover;
}
.owl-next:hover,
.owl-prev:hover {
  opacity: 0.5;
}
.section3 {
  padding-left: 6rem;
  padding-right: 6rem;
  /* padding-top:2rem; */
  padding-bottom: 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  /* padding-bottom: 40px; */
  position: relative;
  min-height: 100dvh;
}
.video-glass-box {
  box-shadow: 5px 5px 16.6px 0 rgba(255, 255, 255, 0.25) inset,
    0 1.197px 29.915px 0 rgba(69, 42, 124, 0.1);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  max-height: 100%;
  /* padding-top: 17px; */
  overflow: auto;
  transition: transform 0.3s ease;
}
.video-glass-box h5 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.item img {
  border-radius: 12px;
  height: 100%;
  object-fit: inherit;
  display: block;
  width: 100%;
}

.owl-next {
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  z-index: 1000;
  transition: all 0.3s ease;
}

.bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.owl-prev {
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%) rotate(180deg);
  z-index: 1000;
  transition: all 0.3s ease;
}
.owl-carousel .item {
  padding: 16px 0 16px 0;
}

.video-item {
  /* height: 216px; */
  display: flex;
}
.card-item {
  display: flex;
  justify-content: center;
}
.owl__link__svg {
  width: 65px;
  height: 65px;
  fill: #f5f5f5;
  stroke: #f5f5f5;
}
/* .owl-next:hover,
.owl-prev:hover {
    opacity: 0.5;
} */
.owl-nav button {
  position: absolute;
  top: 50%;
  background-color: #000;
  color: #fff;
  margin: 0;
  transition: all 0.3s ease-in-out;
}
.owl-nav button.owl-prev {
  left: -30px;
}
.owl-nav button.owl-next {
  right: -30px;
}
.owl-dots {
  text-align: center;
  /* padding-top: 15px; */
}
.owl-dots button.owl-dot {
  /* width: 15px;
	height: 15px; */
  border-radius: 50%;
  display: inline-block;
  /* background: #ccc; */
  margin: 0 3px;
}

.owl-dots button.owl-dot:focus {
  outline: none;
}
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.owl-nav button:focus {
  outline: 0;
}
.owl-hero-smiley {
  position: absolute;
  z-index: 10;
  float: left;
  right: -13px;
  top: 0px;
}
.item {
  width: 100%;
}

.owl-carousel .item i.fa-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #fff;
  opacity: 0.8;
}
.owl-carousel .item:hover i.fa-play {
  display: block;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  color: #fff;
  margin: 0 !important;
  background: none !important;
  text-decoration: none;
}
.owl-theme .owl-nav [class*="owl-"] {
  margin: 0 !important;
}
.owl-theme .owl-nav {
  margin-top: 0;
}
.video-summary {
  visibility: hidden;
}
.second {
  width: 100%;
}
.second h1 {
  color: #fffaf6;
  padding-top: 3%;
  margin-top: 5%;
  font-family: "Bruno Ace", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
}
.page-break {
  padding-left: 6rem;
  display: flex;
  padding-top: 2rem;
  /* padding-bottom:4rem; */
  justify-content: space-evenly;
  align-items: center;
  flex-direction: column;
  min-height: 100dvh;
  padding-right: 6rem;
  position: relative;
  transform: scale(1);
}
.video-active-hover {
  box-shadow: 0 0 6px #64fffe, 0 0 6px #64fffe, 0 0 12px #64fffe;
}
.cardfooter {
  /* margin-top: 1.5rem; */
  left: 50%;
  color: #fff;
  padding: 0.5rem 0;
  text-align: center;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem !important;
  font-size: 1.75rem;
  border-radius: 10px;
  /* backdrop-filter: blur(8px); */
}
.site-logo .main-logo {
  width: 108px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.site-logo {
  position: fixed;
  top: 0;
  left: 19px;
}
#appmenu {
  transform: scaleX(-1);
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  cursor: default;
}
.cus-nav {
  height: 120px;
  position: fixed;
}
.main-menu {
  height: 100vh;
  opacity: 0;
  position: absolute;
  z-index: 100;
  transform: translateX(-100%);
  transition: opacity 250ms, transform 250ms;
  transition-delay: 0.3s;
  width: 0;
  overflow: hidden;
}
.main-menu .menu-background-wrapper {
  height: 100vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 18vh;
  z-index: 1;
}

.main-menu .menu-background {
  background-color: #5d99fc;
  border-bottom-right-radius: 100%;
  border-top-right-radius: 100%;
  box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.15);
  height: 200vh;
  position: absolute;
  right: 0;
  top: -50vh;
  width: 200vh;
}
.main-menu.toggled .menu-background:before {
  transform: translate(-50%, -50%);
  transition-delay: 200ms;
}
.main-menu .menu-background:before {
  background-color: #357ffb;
  border-bottom-right-radius: 100%;
  border-top-right-radius: 100%;
  content: "";
  height: 120%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
  transition: transform 250ms;
  width: 120%;
  z-index: -1;
}
.main-menu .menu-quick-options {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 40vh;
  justify-content: space-around;
  position: absolute;
  top: 50%;
  transform: translate(100%, -50%);
  width: 6vh;
  z-index: 3;
  text-align: center;
}
.socialicons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem 0;
  transform: scaleX(-1);
}
.main-menu .menu-full-options {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  left: 23vh;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20vh;
  z-index: 2;
  gap: 6vh;
}
.main-menu .menu-full-option {
  align-items: center;
  background-color: transparent;
  border: none;
  border-radius: 0.5vh;
  display: flex;
  flex-direction: column;
  gap: 1vh;
  opacity: 0;
  text-decoration: none;
  transform: translateX(-2vh);
  transition: opacity 150ms, transform 150ms;
  text-align: center;
}
/* .main-menu .menu-full-option:first-of-type {
    transform: translateX(-8vh);
}
.main-menu .menu-full-option:last-of-type {
    transform: translateX(-7vh);
}
.main-menu .menu-full-option:nth-of-type(2),
.main-menu .menu-full-option:nth-of-type(4) {
    transform: translateX(-3vh);
}
.main-menu .menu-full-option > div {
    transform: scaleX(-1);
} */
.main-menu .menu-full-option h3 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
}
.main-menu .menu-full-option img {
  width: 42px;
  margin-bottom: 10px;
}

.main-menu .menu-full-option img[alt="Contact us"] {
  width: 32px;
}
.mainMenu-toggle {
  background-color: transparent;
  border: none;
  border-radius: 50%;
  left: 20px;
  top: 10px;
  position: absolute;
  align-self: flex-start;
  height: 48px;
  width: 48px;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clicked {
  left: 1px;
  top: 10px;
}
.mainMenu-toggle i {
  color: #235c93;
  font-size: 24px;
}
.main-menu.toggled {
  opacity: 1;
  transform: translateX(0%);
  transition-delay: 0ms;
  width: 40vh;
}
.main-menu.toggled .menu-background:before {
  transform: translate(-50%, -50%);
  transition-delay: 200ms;
}
.main-menu .menu-background-wrapper {
  height: 100vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 18vh;
  z-index: 1;
}
/* .main-menu .menu-background {
    background-color: #739bdd;
    border-bottom-right-radius: 100%;
    border-top-right-radius: 100%;
    box-shadow: 0 0 20px 4px rgba(0, 0, 0, 0.15);
    height: 200vh;
    position: absolute;
    right: 0;
    top: -50vh;
    width: 200vh;
} */
.main-menu .menu-background:before {
  background-color: #357ffb;
  border-bottom-right-radius: 100%;
  border-top-right-radius: 100%;
  content: "";
  height: 120%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
  transition: transform 250ms;
  width: 120%;
  z-index: -1;
}
.socialicons-wrapper img {
  width: 30px;
}
.width100 {
  width: 100% !important;
}

#summary-text {
  color: #f5f5f5;
  font-size: 1.2rem;
}

.nav-but-wrap {
  position: relative;
  display: block;
  float: right;
  margin-top: 0.1rem;
  transition: all 0.3s ease-out;
}
.menu-icon {
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: block;
}
.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: #fff;
  margin-bottom: 7px;
  cursor: pointer;
  -webkit-transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.5s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.5s ease;
  transition: transform 0.2s ease, background-color 0.5s ease,
    -webkit-transform 0.2s ease;
}
.menu-icon__line-left {
  width: 16.5px;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu-icon__line-right {
  width: 16.5px;
  float: right;
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  transition: all 200ms linear;
}
.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
  width: 30px;
}

.menu-icon.active .menu-icon__line-left {
  transform: rotate(45deg) translate(7px, 7px);
  width: 30px;
}
.menu-icon.active .menu-icon__line-right {
  transform: rotate(-45deg) translate(5px, -5px);
  width: 30px;
}
.menu-icon.active .menu-icon__line:nth-child(2) {
  opacity: 0;
}
.main-menu.toggled .menu-full-option {
  opacity: 1;
  transform: translateX(-3vh);
}
.main-menu .menu-full-option {
  align-items: center;
  background-color: transparent;
  border: none;
  border-radius: 0.5vh;
  /* cursor: pointer;
	*/
  display: flex;
  flex-direction: column;
  gap: 1vh;
  opacity: 0;
  text-decoration: none;
  transform: translateX(-2vh);
  transition: opacity 150ms, transform 150ms;
  text-align: center;
}
/* .main-menu .menu-full-option:first-of-type {
	transform: translateX(-11vh);
}
.main-menu .menu-full-option:last-of-type {
	transform: translateX(-8vh);
}
.main-menu .menu-full-option:nth-of-type(2),.main-menu .menu-full-option:nth-of-type(4) {
	transform: translateX(-4vh);
}
.main-menu .menu-full-option > div {
	transform: scaleX(-1);
} */
.main-menu .menu-full-option:first-of-type {
  transform: translateX(-7vh);
}
.main-menu .menu-full-option:last-of-type {
  transform: translateX(-7vh);
}
.main-menu .menu-full-option:nth-of-type(2) {
  transform: translateX(-3vh);
}
.main-menu .menu-full-option:nth-of-type(4) {
  transform: translateX(-4vh);
}
.main-menu .menu-full-option > div {
  transform: scaleX(-1);
}
.link {
  /* width: 10rem;
	*/
  /* height: 10rem;
	*/
  display: inline-block;
  font: 300 1.55rem/1.4 "Josefin Sans";
  text-transform: uppercase;
  letter-spacing: 0.1175em;
  word-spacing: 0.3em;
  text-decoration: none;
  /* position: absolute;
	top: 107px;
	bottom: 9px;
	left: 48px;
	right: 0px;
	*/
}
.link__svg {
  width: 120px;
  height: 120px;
  transform-box: fill-box;
  fill: #f5f5f5;
  stroke: #f5f5f5;
  stroke-width: 0.05em;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.link__cloud {
  transform-origin: 50% 50%;
  /* -webkit-animation: rotate normal infinite 60s linear;
	animation: rotate normal infinite 60s linear; */
  fill: #f98012;
}
.link__face,
.link__arrow {
  transform-origin: 50% 50%;
  transition: transform 0.15s cubic-bezier(0.32, 0, 0.67, 0);
}
.link:hover .link__face,
.link:hover .link__arrow {
  transform: scale(1.1);
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}
.link__arrow {
  stroke-width: 0.075em;
}
.link__text {
  -webkit-animation: stickerrotate normal infinite 20s linear;
  animation: stickerrotate normal infinite 20s linear;
  transform-origin: 50% 50%;
}
.link:hover .link__text {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.link--alt {
  /* font-size: 1.15rem; */
  letter-spacing: 0;
  word-spacing: 0;
}
.cta2 {
  width: 140px;
  height: auto;
  animation: ctarotate normal infinite 30s linear;
}
@keyframes ctarotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes stickerrotate {
  to {
    transform: rotate(360deg);
  }
}
/* @-webkit-keyframes rotateReverse {
	to {
	transform: rotate(-360deg);
	}
} */

.smiley {
  position: absolute;
  z-index: 10;
  top: -48px;
  bottom: 14px;
  left: -48px;
  right: 0px;
  animation: rotate normal infinite 60s linear;
  width: 10vw !important;
  /* height: 4vw !important;
	*/
  transform-origin: 50% 50%;
}
.hero-smiley {
  position: absolute;
  z-index: 10;
  float: left;
  right: -18px;
  top: -51px;
}
.video-sticker {
  position: absolute;
  left: 40px;
  width: 8rem;
  height: auto;
  top: 94px;
  animation: rotate normal infinite 60s linear;
  bottom: 10px;
  right: 10px;
}
.Copyright {
  font-weight: 100;
  font-size: 16px;
  color: #c2bfbf;
  margin-bottom: 12px;
}
.loader-wrapper {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 100vw;
	height: 100vh;
	*/
  overflow: hidden;
}
.loader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  text-align: center;
  box-shadow: none;
  border: 6px solid rgba(100, 255, 254, 0.8);
  border-radius: 100%;
  /* animation: shadow 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) infinite; */
}
.loader #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 0px 2px #0300cc);
}
.loader:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  box-shadow: inset 0px 0px 20px 4px #0300cc;
  border-radius: 100%;
}
.loader:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  box-shadow: inset 0px 0px 0px 8px rgba(18, 17, 142, 0.38);
  border-radius: 100%;
}
.loader canvas {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 100%;
}
.loader--face {
  position: absolute;
  width: 81px;
  height: 81px;
}
.loader--face--eyes {
  position: absolute;
  top: 40%;
  left: 50%;
  display: flex;
  margin: auto;
  transform: translateX(-50%);
}
.loader--face--eyes span {
  margin-right: 10px;
  margin-left: 10px;
  width: 8px;
  height: 8px;
  background-color: #64fffe;
  box-shadow: 0px 0px 40px 5px #0300cc;
  border-radius: 100%;
}
.loader--face--smile {
  transform-origin: center center;
  /* animation: rotate 2s linear infinite; */
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
}
.loader--face--smile circle {
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-dasharray: 150, 200;
  stroke-dashoffset: -10;
  stroke-linecap: round;
}
@keyframes shadow {
  0% {
    box-shadow: 0px 0px 20px 4px #0300cc;
  }
  50% {
    box-shadow: 0px 0px 20px 0 #0300cc;
  }
  100% {
    box-shadow: 0px 0px 20px 4px #0300cc;
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}

.expand {
  animation: cursorAnim3 0.5s forwards;
  border: 1px solid red;
}
.video-play-button {
  position: fixed;
  /* z-index: 10; */
  cursor: pointer;
  bottom: 6%;
  right: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* transform: translateX(-50%) translateY(-50%);
	*/
  box-sizing: content-box;
  width: 25px;
  height: 25px;
  /* background: #fa183d;
	*/
  border-radius: 50%;
}
.video-play-button.alt-gradient::before,
.video-play-button.alt-gradient::after {
  background: radial-gradient(circle, #739bdd 60%, #739bdd 100%);
}

.video-play-button-disable {
  background: radial-gradient(circle, #739bdd 60%, #739bdd 100%);
}
.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 65px;
  height: 65px;
  background: radial-gradient(
    circle,
    rgba(134, 134, 134, 1) 0%,
    rgba(233, 233, 233, 1) 100%
  );
  border-radius: 50%;
  /* -webkit-animation: pulse-border 1500ms ease-out infinite;
	animation: pulse-border 1500ms ease-out infinite;   */
}
@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 65px;
  height: 65px;
  background: radial-gradient(
    circle,
    rgba(134, 134, 134, 1) 0%,
    rgba(233, 233, 233, 1) 100%
  );
  border-radius: 50%;
  transition: all 200ms;
}
.video-play-button.animate::before {
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}
.video-play-button:hover:after {
  /* background-color: #020308; */
}
.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: 100%;
  height: auto;
}
.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: 100%;
  height: auto;
}
.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}
.card-mobile {
  display: none;
}

@-webkit-keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotateReverse {
  to {
    transform: rotate(-360deg);
  }
}

.owl-carousel.owl-height {
  min-height: 500px !important;
}
/*video section footer*/
.pulse {
  box-shadow: 0 0 0 0 rgba(249, 128, 18, 0.6);
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.pulse:hover {
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  animation: none;
}

.um-cta {
  background: #ff7900;
  border: medium none;
  border-radius: 5px;
  color: #ffffff !important;
  font-size: 20px;
  text-decoration: none;
  padding: 15px 20px !important;
  border: 2px solid white;
  width: 100% !important;
  border-radius: 99px;
}

@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
  }
}

@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
  }
}

@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 10px rgba(232, 76, 61, 0);
  }
}

.cards-container {
  grid-row-gap: 2rem;
}

.cards {
  position: relative;
  /* width: 320px; */
  height: 350px;
  /* background: var(--card-bg); */
  border-radius: 20px;
  box-shadow: inset 0 0 16px var(--glow, #fff);
  overflow: visible;
  backdrop-filter: blur(5px);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  z-index: 1;
  perspective: 1500px;
  cursor: pointer;
  border: 2px solid var(--glow);
}

.cards:hover {
  /* box-shadow: 0 0 20px var(--glow, rgba(123, 0, 255, 0.5)); */
  /* border: 1px solid var(--glow, rgba(123, 0, 255, 0.7)); */
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  border-radius: inherit;
  transform-origin: center center;
  perspective: 1000px;
}

.cards.flipped .card-inner {
  transform: rotateY(180deg);
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 5px 15px var(--glow, rgba(123, 0, 255, 0.6)); */
}

.cards.flipped .card-front {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.cards.flipped .card-back {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transform: rotateY(0deg);
  /* box-shadow: 0 0 30px var(--glow, rgba(123, 0, 255, 0.5));  */
}

.cards.flipped .secret-content {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.5s 0.2s, transform 0.5s 0.2s, visibility 0s;
}

.cards.flipping {
  z-index: 100;
  /* box-shadow: 0 0 70px var(--glow, rgba(123, 0, 255, 0.7)); */
}

.cards.flipping::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0);
  /* box-shadow: 0 0 30px 15px var(--glow, rgba(123, 0, 255, 0.8)); */
  /* animation: flip-pulse 1.2s ease-out forwards; */
}

@keyframes flip-pulse {
  0% {
    box-shadow: 0 0 30px 15px var(--glow, rgba(123, 0, 255, 0.8));
    opacity: 1;
  }
  40% {
    box-shadow: 0 0 60px 30px var(--glow, rgba(123, 0, 255, 0.9));
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 30px 15px var(--glow, rgba(123, 0, 255, 0.8));
    opacity: 0.5;
  }
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  box-sizing: border-box;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.card-front {
  z-index: 2;
  transform: rotateY(0deg);
  opacity: 1;
  visibility: visible;
}

.card-back {
  transform: rotateY(180deg);
  color: white;
  /* background: linear-gradient(
        135deg,
        rgba(0, 10, 30, 0.8) 0%,
        rgba(0, 10, 40, 0.9) 100%
    ); */
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
  backface-visibility: hidden;
}

.secret-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, transform 0.5s, visibility 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  z-index: 5;
  pointer-events: auto;
}

.secret-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0.5rem 0;
  color: white;
  /* background: linear-gradient(45deg, #ffffff, var(--glow, #7b00ff)); */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 5px var(--glow, rgba(123, 0, 255, 0.3)));
  text-align: center;
  width: 100%;
  transition: all 0.5s ease;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title-first,
.title-second {
  display: block;
  background: linear-gradient(45deg, #ffffff, var(--glow, #7b00ff));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 5px var(--glow, rgba(123, 0, 255, 0.3)));
}

.title-first {
  font-size: 120%;
  margin-bottom: 0.2rem;
}

.title-second {
  font-size: 70%;
  letter-spacing: 0.05em;
}

.cards:nth-child(1) .secret-title {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  filter: none;
}

.cards:nth-child(1) .secret-title .title-first {
  transform: translateY(2px);
}

.cards:nth-child(1) .secret-title .title-second {
  transform: translateY(-2px);
}

.cards.flipped .secret-title {
  opacity: 1;
  transform: scale(1);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.secret-description {
  font-size: 15px;
  line-height: 1.5;
  margin: 0.5rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  width: 100%;
  transition: all 0.5s ease;
  max-width: 90%;
}

.secret-icon {
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
  color: var(--glow, #7b00ff);
  /* filter: drop-shadow(0 0 10px var(--glow, rgba(123, 0, 255, 0.5))); */
  transition: all 0.5s ease;
}

@keyframes cardFlip {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}

@keyframes cardFlipBack {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}

.card-back .btn {
  /* background: var(--glow, rgba(123, 0, 255, 0.7)); */
  color: white;
  /* border: 2px solid rgba(255, 255, 255, 0.3); */
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  /* box-shadow: 0 0 15px var(--glow, rgba(123, 0, 255, 0.5)); */
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.cards.flipped .card-back .btn {
  opacity: 1;
  transform: scale(1);
}
/* 
.card-back .btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 25px var(--glow, rgba(123, 0, 255, 0.8));
    border-color: rgba(255, 255, 255, 0.6);
    animation: back-btn-hover-pulse 1.2s infinite;
} */
.btn:hover {
  background-color: inherit;
}
@keyframes back-btn-hover-pulse {
  0% {
    box-shadow: 0 0 25px var(--glow, rgba(123, 0, 255, 0.8));
  }
  50% {
    box-shadow: 0 0 40px var(--glow, rgba(123, 0, 255, 1));
  }
  100% {
    box-shadow: 0 0 25px var(--glow, rgba(123, 0, 255, 0.8));
  }
}

/* .card-back .btn:active {
    transform: scale(0.95);
} */

.magical-circle {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid var(--glow, rgba(123, 0, 255, 0.3));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 0 20px var(--glow, rgba(123, 0, 255, 0.3)),
    inset 0 0 20px var(--glow, rgba(123, 0, 255, 0.2));
  opacity: 0.7;
  pointer-events: none;
}

.cards.flipped .magical-circle {
  animation: rotate 20s linear infinite;
  opacity: 1;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.card-front .card-content {
  z-index: 2;
}
.card-content img {
  width: 60px;
}

.card-front .btn {
  z-index: 50;
  position: relative;
  border-width: 2px;
}

.card-front::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  background-size: cover;
  opacity: 0.1;
  mix-blend-mode: soft-light;
  transition: opacity 0.3s ease;
}

/* .cards:nth-child(1) .card-front::before {
    background-image: url('https://images.unsplash.com/photo-1604076913837-52ab5629fba9?q=80&w=800');
    background-position: center;
}

.cards:nth-child(2) .card-front::before {
    background-image: url('https://images.unsplash.com/photo-1607893378714-007fd47c8719?q=80&w=800');
    background-position: center;
}

.cards:nth-child(3) .card-front::before {
    background-image: url('https://images.unsplash.com/photo-1616628188725-0a07cd22b8da?q=80&w=800');
    background-position: center;
} */

.cards:hover .card-front::before {
  opacity: 0.2;
}

.card-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
        var(--reflective-angle, 135deg),
        rgba(255, 255, 255, 0.02) 0%,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.07) 40%,
        rgba(255, 255, 255, 0.05) 75%,
        rgba(255, 255, 255, 0.02) 100%
    ); */
  border-radius: inherit;
  z-index: 1;
  transition: background 0.5s ease;
  pointer-events: none;
}

.cards::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  /* background: linear-gradient(
        45deg,
        var(--glow, rgba(123, 0, 255, 0.7)) 0%,
        transparent 35%,
        transparent 65%,
        var(--glow, rgba(123, 0, 255, 0.7)) 100%
    ); */
  z-index: -1;
  /* filter: blur(var(--border-blur, 4px)); */
  /* opacity: var(--border-opacity, 0.5); */
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.cards:hover::after {
  opacity: 0.8;
  filter: blur(6px);
}

.cards.active::after {
  opacity: 0.9;
  filter: blur(7px);
}

.cards.active .highlight,
.cards.active .card-glow,
.cards.active .ripple-effect {
  opacity: 1;
}

.card-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  /* background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        var(--glow, #7b00ff) 0%, 
        transparent 70%
    ); */
  filter: blur(20px);
  transition: opacity 0.3s ease;
  pointer-events: none;
  transform: translateZ(0);
  /* animation: pulse-glow 2s ease-in-out infinite alternate; */
}

@keyframes pulse-glow {
  0% {
    filter: blur(20px) brightness(1);
  }
  100% {
    filter: blur(25px) brightness(1.5);
  }
}

.cards.active .card-glow {
  opacity: 0.8;
}

.magnetic-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}

.magnetic-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(0, 0);
  box-shadow: 0 0 4px 2px rgba(255, 255, 255, 0.4);
  transition: opacity 0.5s ease;
  z-index: 2;
  filter: blur(1px);
  /* animation: pulsate 2s ease-in-out infinite alternate; */
}

@keyframes pulsate {
  0% {
    opacity: var(--particle-base-opacity, 0.3);
    filter: blur(1px) brightness(1);
    box-shadow: 0 0 2px 1px var(--glow, rgba(123, 0, 255, 0.4));
  }
  100% {
    opacity: var(--particle-max-opacity, 0.7);
    filter: blur(2px) brightness(1.5);
    box-shadow: 0 0 6px 3px var(--glow, rgba(123, 0, 255, 0.8));
  }
}

.cinematic-flare {
  display: none;
}

.highlight {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.2) 30%,
    transparent 70%
  );
  opacity: 0;
  border-radius: 50%;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: blur(10px);
}

.cards.active .highlight {
  opacity: 0.8;
  animation: highlight-pulse 3s infinite alternate;
}

@keyframes highlight-pulse {
  0% {
    opacity: 0.6;
    filter: blur(10px);
  }
  100% {
    opacity: 0.9;
    filter: blur(15px);
  }
}

.edge-glow {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 25px;
  border: 2px solid var(--glow, #7b00ff);
  /* background: linear-gradient(135deg, var(--glow, #7b00ff), transparent 70%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude; */
  z-index: 0;
  opacity: 0.5;
  filter: blur(3px);
  transition: opacity 0.3s ease;
  animation: pulse-edge 2s ease-in-out infinite;
  box-shadow: 0 0 15px 5px var(--glow, rgba(123, 0, 255, 0.4));
}

.cards.active .edge-glow {
  opacity: 0.9;
  filter: blur(4px);
  box-shadow: 0 0 20px 8px var(--glow, rgba(123, 0, 255, 0.7));
}

@keyframes pulse-edge {
  0% {
    filter: blur(3px) brightness(1);
    box-shadow: 0 0 15px 5px var(--glow, rgba(123, 0, 255, 0.4));
  }
  50% {
    filter: blur(4px) brightness(1.5);
    box-shadow: 0 0 20px 8px var(--glow, rgba(123, 0, 255, 0.7));
  }
  100% {
    filter: blur(3px) brightness(1);
    box-shadow: 0 0 15px 5px var(--glow, rgba(123, 0, 255, 0.4));
  }
}

.ripple-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 11;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  /* background: radial-gradient(
        circle at center,
        var(--glow, rgba(123, 0, 255, 0.2)) 0%,
        transparent 70%
    ); */
  transform: scale(0);
  opacity: 0.6;
}

.cards.active .ripple-effect {
  opacity: 1;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 0.9rem 2rem;
  background: rgba(10, 10, 20, 0.6);
  color: #fff;
  border: 2px solid var(--glow, rgba(123, 0, 255, 0.5));
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1.2);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3),
    0 0 10px var(--glow, rgba(123, 0, 255, 0.3));
  backdrop-filter: blur(4px);
  outline: none;
  z-index: 5;
}

/* .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        var(--glow, rgba(123, 0, 255, 0.8)), 
        var(--glow, rgba(123, 0, 255, 0.6))
    );
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 28px;
} */

.btn:hover {
  /* transform: translateY(-3px) scale(1.05); */
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.3),
                0 0 20px var(--glow, rgba(123, 0, 255, 0.6));
    border-color: var(--glow, rgba(123, 0, 255, 0.8));
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    letter-spacing: 1.5px; */
  /* animation: btn-hover-pulse 1.2s infinite; */
}

@keyframes btn-hover-pulse {
  0% {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3),
      0 0 20px var(--glow, rgba(123, 0, 255, 0.6));
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3),
      0 0 35px var(--glow, rgba(123, 0, 255, 0.9));
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3),
      0 0 20px var(--glow, rgba(123, 0, 255, 0.6));
  }
}

.btn:hover::before {
  width: 100%;
  /* animation: btn-hover-shimmer 1.5s infinite; */
}

@keyframes btn-hover-shimmer {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    opacity: 0.6;
  }
}

:not(.btn-check) + .btn:active,
.btn:active {
  background-color: inherit;
  /* transform: translateY(0) scale(0.95); */
  /* box-shadow: 0 0 30px var(--glow, rgba(123, 0, 255, 0.9)); */
}

/* .btn.flip-btn:active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        var(--glow, rgba(123, 0, 255, 0.8)) 0%,
        transparent 70%
    );
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    animation: btn-pulse 0.5s cubic-bezier(0.1, 0.7, 0.3, 1) forwards;
    z-index: -1;
    opacity: 0.6;
} */

@keyframes btn-pulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
  }
  80% {
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.card-front .btn {
  z-index: 50;
  position: relative;
  border-width: 2px;
}

/* 
.card-back .btn {
    background: var(--glow, rgba(123, 0, 255, 0.7));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 0 15px var(--glow, rgba(123, 0, 255, 0.5));
}

.card-back .btn:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 0 25px var(--glow, rgba(123, 0, 255, 0.8));
    border-color: rgba(255, 255, 255, 0.6);
    animation: back-btn-hover-pulse 1.2s infinite;
}

.card-back .btn:active {
    transform: scale(0.95);
} */

.card-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  height: 100%;
  text-align: center;
  z-index: 10;
  pointer-events: auto;
}

.icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--icon-color, var(--glow, #7b00ff));
  filter: drop-shadow(0 0 10px var(--glow, rgba(123, 0, 255, 0.6)));
  animation: icon-glow 2s ease-in-out infinite alternate;
}

@keyframes icon-glow {
  0% {
    filter: drop-shadow(0 0 10px var(--glow, rgba(123, 0, 255, 0.4)));
  }
  100% {
    filter: drop-shadow(0 0 20px var(--glow, rgba(123, 0, 255, 0.8)));
  }
}

.card-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* filter: drop-shadow(0 0 5px var(--glow, rgba(123, 0, 255, 0.3))); */
  /* animation: title-glow 3s ease-in-out infinite alternate; */
  filter: drop-shadow(0 0 3px #ffffff);
}

@keyframes title-glow {
  0% {
    filter: drop-shadow(0 0 5px var(--glow, rgba(123, 0, 255, 0.3)));
  }
  100% {
    filter: drop-shadow(0 0 15px var(--glow, rgba(123, 0, 255, 0.7)));
  }
}

.card-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

@keyframes card-appear {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* 
.cards:nth-child(1) {
    animation: card-appear 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.cards:nth-child(2) {
    animation: card-appear 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}

.cards:nth-child(3) {
    animation: card-appear 1s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
} */

.card-glow,
.highlight,
.edge-glow,
.ripple-effect,
.magnetic-particles {
  pointer-events: none;
}

/* .cards::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 3px;
    background: linear-gradient(
        135deg,
        var(--glow, #7b00ff) 0%,
        transparent 50%,
        var(--glow, #7b00ff) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: var(--border-opacity, 0.8);
    transition: opacity 0.3s ease;
    z-index: 1;
    filter: blur(var(--border-blur, 1px));
    box-shadow: 0 0 15px var(--glow, rgba(123, 0, 255, 0.8));
} */

.cards:hover::before {
  opacity: 1;
  /* filter: blur(1px) brightness(1.5); */
  /* box-shadow: 0 0 20px var(--glow, rgba(123, 0, 255, 1)); */
}

/* .cards.flip-animation::after,
.cards.flip-back-animation::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 25px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--glow, rgba(123, 0, 255, 0.1)) 25%,
        var(--glow, rgba(123, 0, 255, 0.7)) 50%,
        var(--glow, rgba(123, 0, 255, 0.1)) 75%,
        transparent 100%
    );
    opacity: 0;
    z-index: 10;
    pointer-events: none;
    animation: edge-shine 1.2s ease-in-out forwards;
} */

@keyframes edge-shine {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotateY(0deg);
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotateY(0deg);
  }
}

.cards.flip-animation .card-inner::before,
.cards.flip-back-animation .card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  /* background: radial-gradient(
        circle at center,
        var(--glow, rgba(123, 0, 255, 0.8)) 0%,
        transparent 70%
    ); */
  z-index: 5;
  opacity: 0;
  filter: blur(20px);
  animation: flip-glow 1.2s ease-in-out forwards;
}

@keyframes flip-glow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}

.cards::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  /* background: linear-gradient(
        45deg,
        var(--glow, rgba(123, 0, 255, 0.7)) 0%,
        transparent 35%,
        transparent 65%,
        var(--glow, rgba(123, 0, 255, 0.7)) 100%
    ); */
  z-index: -1;
  filter: blur(var(--border-blur, 4px));
  opacity: var(--border-opacity, 0.5);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.cards.flip-animation {
  z-index: 100;
}

.cards.flip-animation .card-inner {
  animation: card-flip-animation 1.2s cubic-bezier(0.4, 0.2, 0.2, 1) forwards;
  box-shadow: 0 0 50px var(--glow, rgba(123, 0, 255, 0.7));
}

.cards.flip-back-animation {
  z-index: 100;
}

.cards.flip-back-animation .card-inner {
  animation: card-flip-back-animation 1.2s cubic-bezier(0.4, 0.2, 0.2, 1)
    forwards;
  box-shadow: 0 0 50px var(--glow, rgba(123, 0, 255, 0.7));
}

.item a {
  /* cursor: none; */
}
.cards.flipped .secret-title {
  opacity: 1;
  transform: scale(1);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.cards.flipped .secret-description {
  opacity: 1;
  transform: translateY(0);
  /* text-shadow: 0 0 8px rgba(0, 0, 0, 0.7); */
}

.cards.flipped .secret-icon {
  opacity: 1;
  transform: scale(1);
}

.card-front .card-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 1.5rem;
}

.card-back .secret-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  border-radius: inherit;
  transform-origin: center center;
  perspective: 1000px;
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  box-sizing: border-box;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.cards.flipped .card-inner {
  transform: rotateY(180deg);
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 5px 15px var(--glow, rgba(123, 0, 255, 0.6)); */
}

.cards.flipped .card-front {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.cards.flipped .card-back {
  opacity: 1;
  visibility: visible;
  transform: rotateY(0deg);
  z-index: 3;
  /* box-shadow: 0 0 30px var(--glow, rgba(123, 0, 255, 0.5));/ */
}

.cards.flipped .secret-content {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.5s 0.2s, transform 0.5s 0.2s, visibility 0s;
}

/* 
.btn.flip-btn {
    position: relative;
    z-index: 10;
    cursor: pointer;
    transform: translateZ(20px);
    will-change: transform;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn.flip-btn:hover {
    transform: translateZ(30px) scale(1.05) translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4), 0 6px 10px var(--glow, rgba(123, 0, 255, 0.4));
}

.btn.flip-btn:active {
    transform: translateZ(15px) scale(0.95);
}
 */

.secret-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, transform 0.5s, visibility 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  z-index: 5;
}
.cards[data-color="#00ffe1"] .secret-icon {
  font-size: 3rem;
  color: var(--glow, #00ffe1);
  filter: drop-shadow(0 0 10px var(--glow, rgba(0, 255, 225, 0.7)));
  animation: simple-star-pulse 3s infinite alternate;
}

@keyframes simple-star-pulse {
  from {
    filter: drop-shadow(0 0 5px var(--glow, rgba(0, 255, 225, 0.5)));
  }
  to {
    filter: drop-shadow(0 0 15px var(--glow, rgba(0, 255, 225, 0.9)));
  }
}

/* .btn.flip-btn:hover {
    background: rgba(20, 20, 40, 0.7);
    text-shadow: 0 0 10px rgba(255, 255, 255, 1);
    color: white;
}

.btn.flip-btn:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: btn-shine 1.5s infinite;
    border-radius: 30px;
} */

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

.cards:nth-child(1) .secret-title {
  font-size: 1.2rem;
}

.cards:nth-child(1) .secret-title br + * {
  font-size: 1.5rem;
}
.false-btn {
  background: red;
}

.card-emoji {
  width: 25px !important;
}

.lie-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.owl-theme .owl-dots .owl-dot span {
  /* width: 30px;
  height: 14px;
    display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px; 
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6), inset 0 0 6px rgba(255, 255, 255, 0.3);
  transform: scale(1); 
  transition: all 0.3s ease; */
  width: 14px;
  height: 14px;
  margin: 5px 3px;
  background: #d9d9d9;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot {
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-theme .owl-dots .owl-dot.active span {
  background: transparent;
  border: 2px solid #fff;
}
.owl-theme .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-icon{
  width: 50px;
}

.custom-btn {
  color: #fff;
  border-radius: 5px;
  padding: 11px 11px;
  font-size: 18px;
  height: auto;
  font-family: Lato, sans-serif;
  font-weight: 600;
  margin-top: 2rem;
  /* margin-bottom: 2.5rem; */
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  display: inline-block;
  box-shadow: inset 2px 2px 2px 0 rgba(255, 255, 255, 0.5),
    7px 7px 20px 0 rgba(0, 0, 0, 0.1), 4px 4px 5px 0 rgba(0, 0, 0, 0.1);
  outline: 0;
  width: 100%;
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
.gradient-bg {
  width: 100vw;
  min-height: 100vh;
  position: fixed;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.gradient-bg .svgBlur {
  display: none;
}
.gradient-bg .noiseBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: soft-light;
  opacity: 0.3;
}
.gradient-bg .gradients-container {
  filter: url(#goo) blur(40px);
  width: 100%;
  height: 100%;
}
.gradient-bg .g1 {
  position: absolute;
  background: radial-gradient(
      circle at center,
      rgba(var(--color1), 0.8) 0,
      rgba(var(--color1), 0) 50%
    )
    no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  animation: moveVertical 30s ease infinite;
  opacity: 1;
}
.gradient-bg .g2 {
  position: absolute;
  background: radial-gradient(
      circle at center,
      rgba(var(--color2), 0.8) 0,
      rgba(var(--color2), 0) 50%
    )
    no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  animation: moveInCircle 20s reverse infinite;
  opacity: 1;
}
.gradient-bg .g3 {
  position: absolute;
  background: radial-gradient(
      circle at center,
      rgba(var(--color3), 0.8) 0,
      rgba(var(--color3), 0) 50%
    )
    no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
  opacity: 1;
}
.gradient-bg .g4 {
  position: absolute;
  background: radial-gradient(
      circle at center,
      rgba(var(--color4), 0.8) 0,
      rgba(var(--color4), 0) 50%
    )
    no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease infinite;
  opacity: 0.7;
}
.gradient-bg .g5 {
  position: absolute;
  background: radial-gradient(
      circle at center,
      rgba(var(--color5), 0.8) 0,
      rgba(var(--color5), 0) 50%
    )
    no-repeat;
  mix-blend-mode: var(--blending);
  width: calc(var(--circle-size) * 2);
  height: calc(var(--circle-size) * 2);
  top: calc(50% - var(--circle-size));
  left: calc(50% - var(--circle-size));
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  animation: moveInCircle 20s ease infinite;
  opacity: 1;
}
.gradient-bg .interactive {
  position: absolute;
  background: radial-gradient(
      circle at center,
      rgba(var(--color-interactive), 0.8) 0,
      rgba(var(--color-interactive), 0) 50%
    )
    no-repeat;
  mix-blend-mode: var(--blending);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  opacity: 0.7;
}
.glass-btn {
  padding: 14px 37px;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: #009fe333;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: inset -1px -1px 0 rgba(255, 255, 255, 0.9),
    inset 1px 1px 0 rgba(255, 255, 255, 0.9), 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Slim diagonal strokes */
.glass-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px; /* slim stroke thickness */
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.9) 0%,
    /* strong white on TL */ transparent 45%,
    transparent 55%,
    rgba(255, 255, 255, 0.9) 100% /* strong white on BR */
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.glass-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
#tools-btn {
  background-color: #009fe333;
}
#value-btn {
  background-color: #1eb56f33;
}
#ai-btn {
  background-color: #40efff33;
}
#earn-btn {
  background-color: #ea8e0f33;
}

.card-mobile-img {
  width: 60px !important;
  height: 60px !important;
}
.responsive-circle-text {
  width: 60vw;
  max-width: 300px;
  margin: 40px auto;
}

svg {
  width: 100%;
  height: auto;
  display: block;
}
.emoji-icon {
  width: 2em;
  height: 2em;
  vertical-align: middle;
  margin-left: 4px;
}
.custompanel-fixed {
    padding: 18px;
    position: fixed;
    right: 15px;
    bottom: 120px;
    z-index: 9;
    background: #434CDB;
    box-shadow: 0px 4px 6px -4px #26BBD980;
    color: #fff;
    display: flex;
    border-radius: 50%;
}

.custompanel-fixed .accessibility-btn img {
    width: 28px;
    height: 28px;
}

.custompanel-fixed .accessibility-panel {
    position: fixed;
    right: -360px;
    bottom: 60px;
    width: 360px;
    height: 650px;
    background: #101828F2;
    backdrop-filter: blur(20px);
    border-top: 1.5px solid #266ED94D;
    transition: all .35s ease;
    z-index: 99999;
    color: #ffffff;
    overflow-y: auto;
    box-shadow: 0px 25px 50px -12px #00000040;
    border-radius: 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.custompanel-fixed .accessibility-panel::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.custompanel-fixed .accessibility-panel.active {
    right: 20px;
}

.custompanel-fixed .panel-header {
    z-index: 10;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    background: linear-gradient(180deg, #26ACD9 0%, #2635D9 100%);
    padding: 15px 20px;
    color: #fff;
}

.custompanel-fixed .panel-header h3 {
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    margin: 0;
}

.custompanel-fixed .panel-header h3 i {
    padding: 8px;
    background: #FFFFFF33;
    border-radius: 10px;
    margin-right: 10px;
}

.custompanel-fixed .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.custompanel-fixed .panel-section {
    border: 1px solid #CD26D94D;
    background: linear-gradient(135deg, rgba(38, 110, 217, 0.1) 0%, rgba(86, 38, 217, 0.1) 100%);
    border-radius: 14px;
    padding: 15px;
    margin: 15px;
}

.custompanel-fixed .panel-section .hexValue {
    background: #2626264D !important;
    border: 1px solid #364153 !important;
    border-radius: 12px !important;
}

.custompanel-fixed .panel-section .copyHex {
    background: #2626264D;
    border: 1px solid #262626;
    border-radius: 12px;
    margin-left: 10px;
}

.custompanel-fixed .panel-section .copyHex i {
    color: #99A1AF;
}

.custompanel-fixed .panel-section label {
    color: #D1D5DC;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0px;
}

.custompanel-fixed .panel-section select.language {
    background: #1E2939;
    border: 1.5px solid #266ED94D;
    border-radius: 10px;
    height: 40px;
    color: #fff;
    background-position: right 10px center;
    padding: 0 10px;
}

.custompanel-fixed .panel-section select.language option {
    color: #fff;
}

.custompanel-fixed .panel-section .contrast-section i {
    color: #E0528B;
    font-size: 16px;
}

.custompanel-fixed .panel-section .contrast-section label,
.custompanel-fixed .panel-section .bubble-section label {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0px;
}

.custompanel-fixed .panel-section #themeColorPicker {
    height: 16px;
    border-radius: 50%;
    background: #262626;
}

.custompanel-fixed .panel-section .color-range {
    height: 4px;
    border-radius: 10px;
    border: none;
    padding: 0;
    background: linear-gradient(to right, red, yellow, lime, cyan, blue, magenta, red);
}

.custompanel-fixed .panel-section .color-dot {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: var(--theme-color);
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
}

.custompanel-fixed .panel-section .small-input {
    background: #0a1524;
    border: 1px solid #2b3b54;
    color: #fff;
}

.custompanel-fixed .panel-section .adjust-btn {
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    line-height: 1;
    padding: 5px 8px;
    background: #1E2939;
    margin: 2px;
}

.custompanel-fixed .panel-section .value-label {
    background: #a51379;
    padding: 2px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #fff;
}

.custompanel-fixed .panel-section .font-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 5px;
    grid-row-gap: 5px;
}

.custompanel-fixed .panel-section .font-panel .fontsize,
.custompanel-fixed .panel-section .font-panel .lineheight,
.custompanel-fixed .panel-section .font-panel .wordspacing,
.custompanel-fixed .panel-section .font-panel .letterspacing {
    background: #1F2937;
    border-radius: 10px;
    padding: 10px;
    gap: 10px;
}

.custompanel-fixed .panel-section .font-panel .fontsize {
    grid-area: 1 / 1 / 2 / 2;
}

.custompanel-fixed .panel-section .font-panel .lineheight {
    grid-area: 1 / 2 / 2 / 3;
}

.custompanel-fixed .panel-section .font-panel .wordspacing {
    grid-area: 2 / 1 / 3 / 2;
}

.custompanel-fixed .panel-section .font-panel .letterspacing {
    grid-area: 2 / 2 / 3 / 3;
}

.custompanel-fixed .panel-section .font-panel .active {
    background: #CD26D9;
    box-shadow: 0px 4px 8px 0px #CD26D966;
}

.custompanel-fixed .panel-section .custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 20px;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
}

.custompanel-fixed .panel-section .custom-range::-webkit-slider-runnable-track {
    height: 20px;
    border-radius: 10px;
    background: transparent;
}

.custompanel-fixed .panel-section .custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #000;
    border: 1px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    margin-top: 0px;
}

.custompanel-fixed .panel-section .custom-range::-moz-range-track {
    height: 20px;
    background: #262626;
    border-radius: 10px;
}

.custompanel-fixed .panel-section .custom-range::-moz-range-progress {
    height: 20px;
    background: #FAFAFA;
    border-radius: 10px;
}

.custompanel-fixed .panel-section .live-preview-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #d5d8e1;
}

.custompanel-fixed .panel-section .live-preview-box {
    width: 100%;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(217, 86, 38, 0.1) 0%, rgba(217, 145, 38, 0.1) 100%);
    border: 1.5px solid #F269B07F;
    box-shadow: 0px 0px 16px 0px #F269B055;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.custompanel-fixed .panel-section .live-preview-box span.text-light {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
}

.custompanel-fixed .panel-section .preview-indicator {
    width: 16px;
    height: 16px;
    background: #e68a2e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(255, 165, 0, 0.6);
    animation: moveLeft 2s linear infinite;
    position: absolute;
    left: 10px;
}

@keyframes moveLeft {
    0% { left: 10px; }
    50% { left: calc(100% - 20px); }
    100% { left: 10px; }
}

.custompanel-fixed .motion-panel {
    background: linear-gradient(135deg, rgba(217, 86, 38, 0.1) 0%, rgba(217, 145, 38, 0.1) 100%);
}

.custompanel-fixed .panel-section h4 {
    margin-bottom: 10px;
    color: #fff;
    font-family: Arial;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0px;
}

.custompanel-fixed .toggle {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}

.custompanel-fixed .toggle .bl-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.custompanel-fixed .toggle .bl-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.custompanel-fixed .toggle .bl-toggle .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1f1b2e;
    border-radius: 32px;
    transition: 0.3s ease;
}

.custompanel-fixed .toggle .bl-toggle .slider::before {
    content: "";
    position: absolute;
    height: 26px;
    width: 26px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: 0.3s ease;
}

.custompanel-fixed .toggle .bl-toggle input:checked + .slider {
    background-color: #262626;
}

.custompanel-fixed .toggle .bl-toggle input:checked + .slider::before {
    transform: translateX(28px);
}

.custompanel-fixed .panel-sub-head-text {
    font-family: Roboto;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0px;
}

.custompanel-fixed .stop-btn {
    width: 100%;
    padding: 10px;
    background: linear-gradient(90deg, #266ED9 0%, #5626D9 100%);
    box-shadow: 0px 10px 25px 0px #266ED94D;
    border: none;
    border-radius: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0px;
    text-align: center;
    cursor: pointer;
    color: #fff;
}

.custompanel-fixed .motion-panel span {
    font-weight: 400;
    font-size: 12px;
    color: #99A1AF;
    line-height: 18px;
    letter-spacing: 0px;
    text-align: center;
}

.custompanel-fixed .panel-footer {
    background: #1a2433;
    padding: 15px;
    z-index: 10;
    position: sticky;
    bottom: 0;
}

.custompanel-fixed .panel-footer .reset-btn {
    width: 100%;
    padding: 10px;
    background: #2626264D;
    border: 1px solid #266ED94D;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
    text-align: center;
}

.custompanel-fixed .panel-footer .footer-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
}

.custompanel-fixed .panel-footer .footer-text i {
    color: #05DF72;
    font-size: 6px;
    margin-right: 6px;
}

.custompanel-fixed::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 65px;
    height: 65px;
    background: radial-gradient(circle, #fff0 0%, #52C9E0 100%);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

div.moodle-bubble {
    animation: bubbleanimation calc(2000s / var(--animation-speed)) linear infinite;
}

@keyframes bubbleanimation {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateX(40px) translateY(0px) rotate(90deg);
    }
    50% {
        transform: translateX(40px) translateY(40px) rotate(180deg);
    }
    75% {
        transform: translateX(0px) translateY(40px) rotate(270deg);
    }
    100% {
        transform: translateX(0px) translateY(0px) rotate(360deg);
    }
}

.moodle-bubble:nth-child(3n + 1) {
    background-size: 100%;
    background-repeat: no-repeat;
}

.moodle-bubble:nth-child(3n + 2) {
    background-size: 100%;
    background-repeat: no-repeat;
}

.moodle-bubble:nth-child(3n) {
    background-size: 100%;
    background-repeat: no-repeat;
}