footer {
    background-color: black;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow-x: hidden;
}
.footer-section-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-section-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: .8rem 0;
  background: #000;
}

.footer-section-bottom a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #00ffe7;
  transition: all 0.25s ease;
}

.footer-section-bottom a:active {
  animation: glowEffect 0.8s ease forwards;
}

@keyframes glowEffect {
  0% {
    text-shadow: none;
  }
  50% {
    text-shadow: 0 0 8px #00ffe7,
                 0 0 16px #00ffe7,
                 0 0 24px #00ffe7;
  }
  100% {
    text-shadow: none;
  }
} 
.brand-logo-inline {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.brand-logo-inline img {
  display: inline-block;
  vertical-align: middle;
}
.footer-section-brandSlogan {
    font-size: 0.875rem;
    font-weight: 100;
    margin-top: 0.25rem;
}
.footer-section-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-top: 2rem;
    font-family: "Times New Roman", Times, serif;
    font-size: 0.875rem;
    font-weight: 600;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
}
.footer-section-bottom p {
    margin: 0.25rem 1rem;
}
.footer-section-bottom a {
    text-decoration: none;
    position: relative;
}
.footer-section-bottom a::after {
    content: "";
    width: 0;
    height: 0.125rem;
    left: 0;
    bottom: 0;
    transition: width 0.4s ease;
    position: absolute;
}
.footer-section-bottom a:hover::after {
    width: 100%;
}
.footer-copyright {
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 1rem 0;
    background-color: black;
    z-index: 1;
}
.footer-copyright p {
    font-family: "Times New Roman", Times, serif;
    font-size: 0.95rem;
    font-weight: 600;
    background-image: linear-gradient(-90deg, #ff0000, rgb(166,246,86), rgb(85,246,246), rgb(166, 85, 246), rgb(246,85,85));
    background-size: 200%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    animation: animate 2.5s linear infinite;
    margin: 0;
}
.footer-copyright a {
	font-size: 0.9rem;
    color: #00ffe7;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}
.footer-copyright a::after {
    content: "";
    width: 0;
    height: 0.125rem;
    background-color: #00ffe7;
    position: absolute;
    left: 0;
    bottom: -2px;
    transition: width 0.4s ease;
}
.footer-copyright a:hover::after {
    width: 100%;
}
.style a,
.privacy-policy a,
.cookie-policy a {
    color: #00ffe7;
}
.style a:focus,
.privacy-policy a:focus,
.cookie-policy a:focus {
    color: #00ffe7;
}
.style a::after,
.privacy-policy a::after,
.cookie-policy a::after {
    background: #00ffe7;
}
.main-menu {
  position: fixed;
  top: -20%;
  left: -50%;
  height: 200%;
  width: 200%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  visibility: hidden;
  z-index: 3;
  transform: rotate(-15deg) translate3d(0, 0, 0);
}
.main-menu::before,
.main-menu::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: black;
  transform-origin: center center;
  transition: all 500ms ease;
  will-change: transform;
  z-index: -1;
}
.main-menu::before {
  top: 51%;
  transform: translate(100%, -100%) translate3d(0, 0, 0);
}
.main-menu::after {
  top: 49%;
  transform: translate(-150%, 0%) translate3d(0, 0, 0);
  transition-delay: 100ms;
}
.main-menu .nav {
  position: relative;
  display: inline-block;
  padding: 0px;
  transform: rotate(15deg);
}
.main-menu .nav__item {
  list-style: none;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(-15px) translate3d(0, 0, 0);
  transition: all 100ms ease 100ms;
  user-select: none;
}
.main-menu .nav__item a {
  color: #00ffe7;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
}
.main-menu.open {
  visibility: visible;
}
.main-menu.open::before {
  animation: menu-in-left 500ms ease;
  transform: translate(-50%, -100%) translate3d(0, 0, 0);
  transition-duration: 0ms;
}
.main-menu.open::after {
  animation: menu-in-right 500ms ease 100ms;
  transform: translate(-50%, 0%) translate3d(0, 0, 0);
  transition-duration: 0ms;
}
.main-menu.open .nav__item {
  opacity: 1;
  transform: translateX(0px) translate3d(0, 0, 0);
  transition: all 250ms ease;
}
.main-menu.open .nav__item:nth-child(0n) {
  transition-delay: 250ms;
}
.main-menu.open .nav__item:nth-child(1n) {
  transition-delay: 300ms;
}
.main-menu.open .nav__item:nth-child(2n) {
  transition-delay: 350ms;
}
.main-menu.open .nav__item:nth-child(3n) {
  transition-delay: 400ms;
}
.main-menu.open .nav__item:nth-child(4n) {
  transition-delay: 450ms;
}
.main-menu.open .nav__item:nth-child(5n) {
  transition-delay: 500ms;
}
.main-menu.open .nav__item:nth-child(6n) {
  transition-delay: 550ms;
}
.main-menu.open .nav__item:nth-child(7n) {
  transition-delay: 600ms;
}
.main-menu.open .nav__item:nth-child(8n) {
  transition-delay: 650ms;
}
.main-menu.open .nav__item:nth-child(9n) {
  transition-delay: 700ms;
}
.main-menu.open .nav__item:nth-child(10n) {
  transition-delay: 750ms;
}
.main-menu.open .nav__item:nth-child(11n) {
  transition-delay: 800ms;
}
.main-menu.open .nav__item:nth-child(12n) {
  transition-delay: 850ms;
}
.main-menu.open .nav__item:nth-child(13n) {
  transition-delay: 900ms;
}
.main-menu.open .nav__item:nth-child(14n) {
  transition-delay: 950ms;
}
.main-menu.open .nav__item:nth-child(15n) {
  transition-delay: 1000ms;
}
.main-menu.open .nav__item:nth-child(16n) {
  transition-delay: 1050ms;
}
.main-menu.open .nav__item:nth-child(17n) {
  transition-delay: 1100ms;
}
.main-menu.open .nav__item:nth-child(18n) {
  transition-delay: 1150ms;
}
.main-menu.open .nav__item:nth-child(19n) {
  transition-delay: 1200ms;
}
.main-menu.open .nav__item:nth-child(20n) {
  transition-delay: 1250ms;
}
.main-menu.open .nav__item a {
  transition: all 250ms ease;
}
@keyframes menu-in-left {
  0% {
    transform: translate(-150%, -100%) translate3d(0, 0, 0);
  }
  100% {
    transform: translate(-50%, -100%) translate3d(0, 0, 0);
  }
}
@keyframes menu-in-right {
  0% {
    transform: translate(100%, 0%) translate3d(0, 0, 0);
  }
  100% {
    transform: translate(-50%, 0%) translate3d(0, 0, 0);
  }
}
.btn-nav {
  position: absolute;
  top: 15px;
  right: 5px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  line-height: 40px;
  cursor: pointer;
  user-select: none;
  z-index: 4;
}
 .image-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.icon-image {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  border: 2.5px solid transparent;
  background: linear-gradient(white, white) padding-box, conic-gradient(from 0deg, red, orange, yellow, green, blue, indigo, violet, red) border-box;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 0, 255, 0.5);
  transition: all 0.3s ease-in-out;
  animation: rainbowSpin 8s linear infinite;
}
@keyframes rainbowSpin {
  0% {
    background: linear-gradient(white, white) padding-box,
                conic-gradient(from 0deg, red, orange, yellow, green, blue, indigo, violet, red) border-box;
  }
  100% {
    background: linear-gradient(white, white) padding-box,
                conic-gradient(from 360deg, red, orange, yellow, green, blue, indigo, violet, red) border-box;
  }
}
.icon-image:hover {
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 
              0 0 25px rgba(255, 0, 255, 0.7),
              0 0 35px rgba(0, 255, 255, 0.5);
  transform: scale(1.05);
}
