body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* MobilePreorderView.css */
.mobile-preorder-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-between; */
  min-height: 100vh; /* Ensure it takes at least the full height of the viewport */
  min-width: 100vw; /* Ensure it takes at least the full width of the viewport */
  /* padding: 5%;  */
  box-sizing: border-box;
  margin-top: 5vh;
}

.preorder-title {
  font-size: 5.5vw;
  font-weight: bold;
  margin-bottom: 2vw;
  text-align: center; 
}

/* .image-container { */
  /* width: 100%;  */
  /* Set width relative to the viewport */
  /* margin: auto;  */
  /* Center the image container */
/* } */

.preorder-image-container img {
  width: 100%; /* Make image responsive */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove any extra space below the image */
}

.preorder-button {
  padding: .5em 1em; /* Responsive based on the font size of the element */
  font-size: calc(1.5vw + 1vh); /* Responsive font size based on viewport */
  color: #FFFFFF;
  background: linear-gradient(45deg, #FFA500, #FF4500);
  border: none;
  border-radius: 0.25em; /* Responsive border radius */
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.preorder-button:hover {
  background: linear-gradient(45deg, #e69500, #e63e00); /* Slightly darker gradient for hover */
}

/* Stripe Elements Styling to match hologram theme */
.stripe-element-wrapper {
  background-color: rgba(0, 20, 40, 0.6);
  border: 1px solid rgba(0, 221, 255, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 221, 255, 0.1);
}

.stripe-element-wrapper:focus-within {
  border-color: rgba(0, 221, 255, 0.8);
  box-shadow: 0 0 15px rgba(0, 221, 255, 0.3);
}

/* Style Stripe input fields */
.stripe-element-wrapper input,
.stripe-element-wrapper select {
  background-color: rgba(0, 20, 40, 0.8) !important;
  color: #ffffff !important;
  border: 1px solid rgba(0, 221, 255, 0.3) !important;
  border-radius: 4px !important;
  padding: 8px !important;
}

.stripe-element-wrapper input:focus,
.stripe-element-wrapper select:focus {
  border-color: rgba(0, 221, 255, 0.8) !important;
  box-shadow: 0 0 10px rgba(0, 221, 255, 0.3) !important;
  outline: none !important;
}

/* Style Stripe labels */
.stripe-element-wrapper label {
  color: #00ffff !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* Update title animation for "Preorder Now" */
.title[data-text="Preorder Now"],
.title[data-text="More Info"],
.title[data-text="Demo Videos"] {
  -webkit-animation: preorderTitleMorph 10s infinite !important;
          animation: preorderTitleMorph 10s infinite !important;
  text-align: center !important;
  width: 100% !important;
  white-space: nowrap !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: 18px !important;
  letter-spacing: 1px !important;
}

.title[data-text="Preorder Now"]::before,
.title[data-text="More Info"]::before,
.title[data-text="Demo Videos"]::before {
  -webkit-animation: preorderTitleGlitch 10s infinite !important;
          animation: preorderTitleGlitch 10s infinite !important;
  text-align: center !important;
}

@-webkit-keyframes preorderTitleMorph {
  0%, 45%, 100% {
    opacity: 1;
    -webkit-filter: brightness(1);
            filter: brightness(1);
    text-shadow: 
        0 0 10px rgba(0, 255, 255, 0.5),
        0 0 20px rgba(0, 255, 255, 0.3);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  46%, 47% {
    opacity: 0.7;
    -webkit-filter: brightness(1.5) contrast(2);
            filter: brightness(1.5) contrast(2);
    text-shadow: 
        0 0 15px rgba(0, 255, 255, 0.8),
        0 0 25px rgba(0, 255, 255, 0.6);
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  48%, 52% {
    opacity: 0.9;
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
    text-shadow: 
        0 0 12px rgba(0, 255, 255, 0.7),
        0 0 22px rgba(0, 255, 255, 0.5);
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  53%, 54% {
    opacity: 0.7;
    -webkit-filter: brightness(1.5) contrast(2);
            filter: brightness(1.5) contrast(2);
    text-shadow: 
        0 0 15px rgba(0, 255, 255, 0.8),
        0 0 25px rgba(0, 255, 255, 0.6);
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
}

@keyframes preorderTitleMorph {
  0%, 45%, 100% {
    opacity: 1;
    -webkit-filter: brightness(1);
            filter: brightness(1);
    text-shadow: 
        0 0 10px rgba(0, 255, 255, 0.5),
        0 0 20px rgba(0, 255, 255, 0.3);
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  46%, 47% {
    opacity: 0.7;
    -webkit-filter: brightness(1.5) contrast(2);
            filter: brightness(1.5) contrast(2);
    text-shadow: 
        0 0 15px rgba(0, 255, 255, 0.8),
        0 0 25px rgba(0, 255, 255, 0.6);
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
  48%, 52% {
    opacity: 0.9;
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
    text-shadow: 
        0 0 12px rgba(0, 255, 255, 0.7),
        0 0 22px rgba(0, 255, 255, 0.5);
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  53%, 54% {
    opacity: 0.7;
    -webkit-filter: brightness(1.5) contrast(2);
            filter: brightness(1.5) contrast(2);
    text-shadow: 
        0 0 15px rgba(0, 255, 255, 0.8),
        0 0 25px rgba(0, 255, 255, 0.6);
    -webkit-transform: translateX(-1px);
            transform: translateX(-1px);
  }
}

@-webkit-keyframes preorderTitleGlitch {
  0%, 45%, 100% {
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  46%, 47% {
    opacity: 0.8;
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
    -webkit-filter: brightness(1.5) contrast(2);
            filter: brightness(1.5) contrast(2);
  }
  48%, 52% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
  53%, 54% {
    opacity: 0.8;
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
    -webkit-filter: brightness(1.5) contrast(2);
            filter: brightness(1.5) contrast(2);
  }
}

@keyframes preorderTitleGlitch {
  0%, 45%, 100% {
    opacity: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  46%, 47% {
    opacity: 0.8;
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
    -webkit-filter: brightness(1.5) contrast(2);
            filter: brightness(1.5) contrast(2);
  }
  48%, 52% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
  53%, 54% {
    opacity: 0.8;
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
    -webkit-filter: brightness(1.5) contrast(2);
            filter: brightness(1.5) contrast(2);
  }
}

/* Custom scrollbar styling to match hologram theme */
.preorder-scroll-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 221, 255, 0.5) rgba(0, 20, 40, 0.3);
}

/* Ensure all interactive elements within containers inherit pointer events from parent */
.preorder-scroll-container * {
  pointer-events: inherit;
}

/* Interactive elements should be clickable when parent container allows it */
.preorder-scroll-container input,
.preorder-scroll-container select,
.preorder-scroll-container textarea,
.preorder-scroll-container button,
.preorder-scroll-container a,
.preorder-scroll-container [role="button"],
.preorder-scroll-container .video-icon-container {
  pointer-events: inherit;
}

.preorder-scroll-container::-webkit-scrollbar {
  width: 6px;
}

.preorder-scroll-container::-webkit-scrollbar-track {
  background: rgba(0, 20, 40, 0.3);
  border-radius: 3px;
}

.preorder-scroll-container::-webkit-scrollbar-thumb {
  background: rgba(0, 221, 255, 0.5);
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0, 221, 255, 0.3);
}

.preorder-scroll-container::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 221, 255, 0.7);
  box-shadow: 0 0 8px rgba(0, 221, 255, 0.5);
}

/* Digital Arrow Styling */
.digital-arrow-left,
.digital-arrow-right {
  transition: all 0.3s ease;
  -webkit-animation: arrowPulse 2s ease-in-out infinite;
          animation: arrowPulse 2s ease-in-out infinite;
}

.digital-arrow-left:hover svg,
.digital-arrow-right:hover svg {
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 255, 255, 1)) drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
          filter: drop-shadow(0 0 10px rgba(0, 255, 255, 1)) drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
}

.digital-arrow-left:active svg,
.digital-arrow-right:active svg {
  -webkit-filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.9)) drop-shadow(0 0 15px rgba(0, 255, 255, 0.7));
          filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.9)) drop-shadow(0 0 15px rgba(0, 255, 255, 0.7));
}

.digital-arrow-left svg,
.digital-arrow-right svg {
  transition: all 0.3s ease;
}

@-webkit-keyframes arrowPulse {
  0%, 100% {
    opacity: 0.8;
    -webkit-filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
            filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
  }
  50% {
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 8px rgba(0, 255, 255, 1)) drop-shadow(0 0 15px rgba(0, 255, 255, 0.7));
            filter: drop-shadow(0 0 8px rgba(0, 255, 255, 1)) drop-shadow(0 0 15px rgba(0, 255, 255, 0.7));
  }
}

@keyframes arrowPulse {
  0%, 100% {
    opacity: 0.8;
    -webkit-filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
            filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.8)) drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
  }
  50% {
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 8px rgba(0, 255, 255, 1)) drop-shadow(0 0 15px rgba(0, 255, 255, 0.7));
            filter: drop-shadow(0 0 8px rgba(0, 255, 255, 1)) drop-shadow(0 0 15px rgba(0, 255, 255, 0.7));
  }
}

/* Video Icon Animations */
@-webkit-keyframes videoIconPulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes videoIconPulse {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.6;
  }
  50% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    opacity: 0;
  }
}

.video-icon-container {
  position: relative;
  cursor: pointer;
  z-index: 5 !important;
  pointer-events: auto !important;
}

.video-icon-container video,
.video-icon-container .video-icon-overlay {
  pointer-events: none !important;
}

.video-icon-container:hover {
  border-color: rgba(0, 221, 255, 0.8) !important;
  box-shadow: 0 0 25px rgba(0, 221, 255, 0.4) !important;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.video-icon-container:hover .video-icon-pulse {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.video-icon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.video-icon-overlay .digital-rain {
  opacity: 0.3;
}

.video-icon-overlay .glitch-overlay {
  opacity: 0.2;
  -webkit-animation: glitch 3s infinite;
          animation: glitch 3s infinite;
}
/* SuccessView.module.css */

.successContainer {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 400px;
    margin: auto;
    text-align: center;
    color: black;
  }
  
  .headerContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .checkMark {
    margin-right: 8px;
  }
  
  .productImage {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
  }
  
  .copyButton {
    font-size: 22px;
    background: linear-gradient(45deg, #FFA500, #FF4500);
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    -webkit-transform: translate(0, 5px);
            transform: translate(0, 5px);
    cursor: pointer;
    width: 100%;
    margin: 10px 0;
  }
  
.order-summary {
    font-family: 'Orbitron', sans-serif;
    max-width: 100%;
    margin: 0 auto;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
  }
  
  .line-item {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
    padding: 0.8em;
    background-color: rgba(0, 20, 40, 0.6);
    border: 1px solid rgba(0, 221, 255, 0.3);
    border-radius: 8px;
    flex: 0 1 auto;
    min-width: 0;
    box-shadow: 0 0 10px rgba(0, 221, 255, 0.1);
    transition: all 0.3s ease;
  }

  .line-item:hover {
    border-color: rgba(0, 221, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 221, 255, 0.2);
  }

  .line-item span {
    display: block;
    color: #00ffff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5em;
  }
  
  .quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
  }
  
  .quantity-selector button {
    background-color: rgba(0, 255, 255, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.6);
    padding: 0.4em 0.6em;
    margin: 0;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.8);
    width: 2em;
    height: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
  }

  .quantity-selector button:hover {
    background-color: rgba(0, 255, 255, 0.9);
    border-color: rgba(0, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }

  .quantity-selector button:active {
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
  }
  
  .quantity-selector button:disabled {
    background-color: rgba(0, 255, 255, 0.4);
    border-color: rgba(0, 255, 255, 0.3);
    cursor: not-allowed;
    opacity: 0.6;
  }
  
  .quantity-selector input[type="number"] {
    width: 3em;
    margin: 0 0.5em;
    text-align: center;
    border: 1px solid rgba(0, 221, 255, 0.3);
    border-radius: 8px;
    padding: 0.4em;
    font-size: 1em;
    background-color: rgba(0, 20, 40, 0.8);
    color: #ffffff;
  }

  .quantity-selector input[type="number"]:focus {
    outline: none;
    border-color: rgba(0, 221, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 221, 255, 0.3);
  }
  
  .total-cost {
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 1em;
    color: #00ffff;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  }

    button:focus,
    input:focus {
      outline: none;
      border-color: rgba(0, 221, 255, 0.8);
      box-shadow: 0 0 10px rgba(0, 221, 255, 0.3);
    }
    
    button,
    input {
      font-family: 'Orbitron', sans-serif;
    }
  
  .quantity-display {
    padding: 0.4em 0.8em;
    border: 1px solid rgba(0, 221, 255, 0.3);
    border-radius: 8px;
    margin: 0 0.5em;
    display: inline-block;
    width: 2.5em;
    text-align: center;
    background-color: rgba(0, 20, 40, 0.8);
    color: #ffffff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
  }
  
/* MobileorderView.css */
.mobile-order-view {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-between; */
    min-height: 100vh; /* Ensure it takes at least the full height of the viewport */
    min-width: 100vw; /* Ensure it takes at least the full width of the viewport */
    /* padding: 5%;  */
    box-sizing: border-box;
    margin-top: 5vh;
  }
  
  .order-title {
    font-size: 4vw;
    font-weight: bold;
    margin-bottom: 2vw;
    text-align: center; 
  }
  
  /* .image-container { */
    /* width: 100%;  */
    /* Set width relative to the viewport */
    /* margin: auto;  */
    /* Center the image container */
  /* } */
  
  .order-image-container img {
    width: 80%; /* Make image responsive */
    height: 50%; /* Maintain aspect ratio */
    display: block; /* Remove any extra space below the image */
    margin: auto; /* Center the image */
  }
  
  .order-button {
    margin-top: .25em;
    /* padding: .125em .25em; Responsive based on the font size of the element */
    font-size: calc(1.5vw + 1vh); /* Responsive font size based on viewport */
    color: #FFFFFF;
    background: linear-gradient(45deg, #FFA500, #FF4500);
    border: none;
    border-radius: 0.25em; /* Responsive border radius */
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }
  
  .order-button:hover {
    background: linear-gradient(45deg, #e69500, #e63e00); /* Slightly darker gradient for hover */
  }
  

.model-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    color: white;
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 16px; /* Spacing between this and the next row */
  }
  
  /* Rest of the existing .order-summary and .line-item styles... */
  
  /* Style for the plus and minus buttons */
  .quantity-button {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    -webkit-user-select: none;
            user-select: none;
  }
  
  .quantity-button:active {
    background-color: #e0e0e0;
  }
  
  /* Button container to group them together */
  .button-container {
    display: flex;
  }
  
  /* Optional: spacing between buttons */
  .quantity-button:not(:last-child) {
    margin-right: 4px;
  }
/* DeviceOrderSummary.css */

.device-order-summary {
    font-family: 'Arial', sans-serif;
    /* max-width: 350px; */
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 16px;
    /* margin: 16px; */
    background-color: #fff;
  }
  
  .device-line-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    color: black;
  }
  
  .device-line-item span {
    display: block;
  }
  
  .total-before-tax,
  .device-order-total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #ddd;
    font-weight: 600;
  }
  
  .device-order-total {
    color: black;
  }
  
  /* This is to specifically style the "Calculating..." text */
  .device-line-item span.calculating {
    font-style: italic;
    color: #999;
  }
  

  .device-order-summary a {
    color: #0073e6; /* Example link color */
    text-decoration: none;
  }
  
  .device-order-summary a:hover {
    text-decoration: underline;
  }
@-webkit-keyframes hologramFlicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.97;
  }
}

@keyframes hologramFlicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.97;
  }
}

@-webkit-keyframes scanline {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes scanline {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@-webkit-keyframes glitch {
  0% {
    -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
            clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
  }
  20% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
            clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }
  40% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
            clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  60% {
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
            clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
  }
  80% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
            clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }
  100% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
            clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }
}

@keyframes glitch {
  0% {
    -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
            clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
  }
  20% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
            clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }
  40% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
            clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  60% {
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
            clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
  }
  80% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
            clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }
  100% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
            clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }
}

@-webkit-keyframes digitalRain {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@keyframes digitalRain {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@-webkit-keyframes hexCodeFloat {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
}

@keyframes hexCodeFloat {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
}

@-webkit-keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes colorShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-webkit-keyframes buttonGlow {
    0%, 100% {
        border-color: rgba(0, 221, 255, 0.6);
        box-shadow: 
            0 0 10px rgba(0, 221, 255, 0.3),
            0 0 20px rgba(0, 221, 255, 0.2),
            inset 0 0 15px rgba(0, 221, 255, 0.2),
            0 0 5px rgba(0, 221, 255, 0.4);
    }
    50% {
        border-color: rgba(0, 221, 255, 0.8);
        box-shadow: 
            0 0 15px rgba(0, 221, 255, 0.4),
            0 0 30px rgba(0, 221, 255, 0.3),
            inset 0 0 20px rgba(0, 221, 255, 0.3),
            0 0 10px rgba(0, 221, 255, 0.5);
    }
}

@keyframes buttonGlow {
    0%, 100% {
        border-color: rgba(0, 221, 255, 0.6);
        box-shadow: 
            0 0 10px rgba(0, 221, 255, 0.3),
            0 0 20px rgba(0, 221, 255, 0.2),
            inset 0 0 15px rgba(0, 221, 255, 0.2),
            0 0 5px rgba(0, 221, 255, 0.4);
    }
    50% {
        border-color: rgba(0, 221, 255, 0.8);
        box-shadow: 
            0 0 15px rgba(0, 221, 255, 0.4),
            0 0 30px rgba(0, 221, 255, 0.3),
            inset 0 0 20px rgba(0, 221, 255, 0.3),
            0 0 10px rgba(0, 221, 255, 0.5);
    }
}

@-webkit-keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(0, 221, 255, 0.15),
            inset 0 0 8px rgba(0, 221, 255, 0.15);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(0, 221, 255, 0.25),
            inset 0 0 12px rgba(0, 221, 255, 0.25);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 
            0 0 10px rgba(0, 221, 255, 0.15),
            inset 0 0 8px rgba(0, 221, 255, 0.15);
    }
    50% {
        box-shadow: 
            0 0 15px rgba(0, 221, 255, 0.25),
            inset 0 0 12px rgba(0, 221, 255, 0.25);
    }
}

@-webkit-keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 5px #00ffff,
                     0 0 10px #00ffff,
                     0 0 20px #00ffff,
                     0 0 40px #00ffff;
    }
    50% {
        text-shadow: 0 0 10px #00ffff,
                     0 0 20px #00ffff,
                     0 0 30px #00ffff,
                     0 0 60px #00ffff;
    }
}

@keyframes neonPulse {
    0%, 100% {
        text-shadow: 0 0 5px #00ffff,
                     0 0 10px #00ffff,
                     0 0 20px #00ffff,
                     0 0 40px #00ffff;
    }
    50% {
        text-shadow: 0 0 10px #00ffff,
                     0 0 20px #00ffff,
                     0 0 30px #00ffff,
                     0 0 60px #00ffff;
    }
}

@-webkit-keyframes neonBorder {
    0%, 100% {
        border-color: rgba(0, 221, 255, 0.8);
        box-shadow: 
            0 0 5px rgba(0, 221, 255, 0.6),
            0 0 10px rgba(0, 221, 255, 0.4),
            0 0 15px rgba(0, 221, 255, 0.2),
            inset 0 0 5px rgba(0, 221, 255, 0.6),
            inset 0 0 10px rgba(0, 221, 255, 0.4);
    }
    50% {
        border-color: rgba(0, 221, 255, 1);
        box-shadow: 
            0 0 10px rgba(0, 221, 255, 0.8),
            0 0 20px rgba(0, 221, 255, 0.6),
            0 0 30px rgba(0, 221, 255, 0.4),
            inset 0 0 10px rgba(0, 221, 255, 0.8),
            inset 0 0 20px rgba(0, 221, 255, 0.6);
    }
}

@keyframes neonBorder {
    0%, 100% {
        border-color: rgba(0, 221, 255, 0.8);
        box-shadow: 
            0 0 5px rgba(0, 221, 255, 0.6),
            0 0 10px rgba(0, 221, 255, 0.4),
            0 0 15px rgba(0, 221, 255, 0.2),
            inset 0 0 5px rgba(0, 221, 255, 0.6),
            inset 0 0 10px rgba(0, 221, 255, 0.4);
    }
    50% {
        border-color: rgba(0, 221, 255, 1);
        box-shadow: 
            0 0 10px rgba(0, 221, 255, 0.8),
            0 0 20px rgba(0, 221, 255, 0.6),
            0 0 30px rgba(0, 221, 255, 0.4),
            inset 0 0 10px rgba(0, 221, 255, 0.8),
            inset 0 0 20px rgba(0, 221, 255, 0.6);
    }
}

@-webkit-keyframes neonGlow {
    0%, 100% {
        background: linear-gradient(45deg, 
            rgba(0, 255, 255, 0.1),
            rgba(0, 255, 255, 0.2),
            rgba(0, 255, 255, 0.1)
        );
    }
    50% {
        background: linear-gradient(45deg, 
            rgba(0, 255, 255, 0.2),
            rgba(0, 255, 255, 0.3),
            rgba(0, 255, 255, 0.2)
        );
    }
}

@keyframes neonGlow {
    0%, 100% {
        background: linear-gradient(45deg, 
            rgba(0, 255, 255, 0.1),
            rgba(0, 255, 255, 0.2),
            rgba(0, 255, 255, 0.1)
        );
    }
    50% {
        background: linear-gradient(45deg, 
            rgba(0, 255, 255, 0.2),
            rgba(0, 255, 255, 0.3),
            rgba(0, 255, 255, 0.2)
        );
    }
}

@-webkit-keyframes digitalPulse {
    0%, 100% {
        background: linear-gradient(135deg, 
            rgba(0, 255, 255, 0.1) 0%,
            rgba(0, 255, 255, 0.2) 50%,
            rgba(0, 255, 255, 0.1) 100%
        );
    }
    50% {
        background: linear-gradient(135deg, 
            rgba(0, 255, 255, 0.2) 0%,
            rgba(0, 255, 255, 0.3) 50%,
            rgba(0, 255, 255, 0.2) 100%
        );
    }
}

@keyframes digitalPulse {
    0%, 100% {
        background: linear-gradient(135deg, 
            rgba(0, 255, 255, 0.1) 0%,
            rgba(0, 255, 255, 0.2) 50%,
            rgba(0, 255, 255, 0.1) 100%
        );
    }
    50% {
        background: linear-gradient(135deg, 
            rgba(0, 255, 255, 0.2) 0%,
            rgba(0, 255, 255, 0.3) 50%,
            rgba(0, 255, 255, 0.2) 100%
        );
    }
}

@-webkit-keyframes electricBorder {
    0%, 100% {
        border-image: linear-gradient(45deg, 
            #00ffff 0%,
            #00ffff 50%,
            #00ffff 100%
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            #00ffff 0%,
            #00ffff 25%,
            #00ffff 75%,
            #00ffff 100%
        ) 1;
    }
}

@keyframes electricBorder {
    0%, 100% {
        border-image: linear-gradient(45deg, 
            #00ffff 0%,
            #00ffff 50%,
            #00ffff 100%
        ) 1;
    }
    50% {
        border-image: linear-gradient(45deg, 
            #00ffff 0%,
            #00ffff 25%,
            #00ffff 75%,
            #00ffff 100%
        ) 1;
    }
}

@-webkit-keyframes electricText {
    0%, 100% {
        text-shadow: 
            0 0 5px #00ffff,
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 40px #00ffff;
    }
    50% {
        text-shadow: 
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            0 0 60px #00ffff;
    }
}

@keyframes electricText {
    0%, 100% {
        text-shadow: 
            0 0 5px #00ffff,
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 40px #00ffff;
    }
    50% {
        text-shadow: 
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            0 0 60px #00ffff;
    }
}

@-webkit-keyframes electricFlicker {
    0%, 100% {
        opacity: 1;
        -webkit-filter: brightness(1);
                filter: brightness(1);
    }
    50% {
        opacity: 0.95;
        -webkit-filter: brightness(1.2);
                filter: brightness(1.2);
    }
}

@keyframes electricFlicker {
    0%, 100% {
        opacity: 1;
        -webkit-filter: brightness(1);
                filter: brightness(1);
    }
    50% {
        opacity: 0.95;
        -webkit-filter: brightness(1.2);
                filter: brightness(1.2);
    }
}

@-webkit-keyframes electricArc {
    0%, 100% {
        -webkit-clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
                clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
    }
    25% {
        -webkit-clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
                clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
    }
    50% {
        -webkit-clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
                clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
    }
    75% {
        -webkit-clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
                clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
    }
}

@keyframes electricArc {
    0%, 100% {
        -webkit-clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
                clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
    }
    25% {
        -webkit-clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
                clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
    }
    50% {
        -webkit-clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
                clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
    }
    75% {
        -webkit-clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
                clip-path: polygon(
            0 0,
            100% 0,
            100% 100%,
            0 100%
        );
    }
}

@-webkit-keyframes electricGlow {
    0%, 100% {
        box-shadow: 
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            inset 0 0 10px #00ffff,
            inset 0 0 20px #00ffff;
    }
    50% {
        box-shadow: 
            0 0 15px #00ffff,
            0 0 30px #00ffff,
            0 0 45px #00ffff,
            inset 0 0 15px #00ffff,
            inset 0 0 30px #00ffff;
    }
}

@keyframes electricGlow {
    0%, 100% {
        box-shadow: 
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            inset 0 0 10px #00ffff,
            inset 0 0 20px #00ffff;
    }
    50% {
        box-shadow: 
            0 0 15px #00ffff,
            0 0 30px #00ffff,
            0 0 45px #00ffff,
            inset 0 0 15px #00ffff,
            inset 0 0 30px #00ffff;
    }
}

@-webkit-keyframes hologramShift {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes hologramShift {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@-webkit-keyframes dataStream {
    0% {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
    }
}

@keyframes dataStream {
    0% {
        -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
    }
}

@-webkit-keyframes matrixRain {
    0% {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
    }
}

@keyframes matrixRain {
    0% {
        -webkit-transform: translateY(-100%);
                transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
    }
}

@-webkit-keyframes glitchSlice {
    0% {
        -webkit-clip-path: inset(50% 0 30% 0);
                clip-path: inset(50% 0 30% 0);
        -webkit-transform: translate(-5px, 5px);
                transform: translate(-5px, 5px);
    }
    10% {
        -webkit-clip-path: inset(20% 0 60% 0);
                clip-path: inset(20% 0 60% 0);
        -webkit-transform: translate(5px, -5px);
                transform: translate(5px, -5px);
    }
    20% {
        -webkit-clip-path: inset(40% 0 40% 0);
                clip-path: inset(40% 0 40% 0);
        -webkit-transform: translate(-5px, 5px);
                transform: translate(-5px, 5px);
    }
    30% {
        -webkit-clip-path: inset(80% 0 5% 0);
                clip-path: inset(80% 0 5% 0);
        -webkit-transform: translate(5px, -5px);
                transform: translate(5px, -5px);
    }
    40% {
        -webkit-clip-path: inset(10% 0 85% 0);
                clip-path: inset(10% 0 85% 0);
        -webkit-transform: translate(-5px, 5px);
                transform: translate(-5px, 5px);
    }
    50% {
        -webkit-clip-path: inset(30% 0 55% 0);
                clip-path: inset(30% 0 55% 0);
        -webkit-transform: translate(5px, -5px);
                transform: translate(5px, -5px);
    }
    60% {
        -webkit-clip-path: inset(50% 0 30% 0);
                clip-path: inset(50% 0 30% 0);
        -webkit-transform: translate(-5px, 5px);
                transform: translate(-5px, 5px);
    }
    70% {
        -webkit-clip-path: inset(70% 0 20% 0);
                clip-path: inset(70% 0 20% 0);
        -webkit-transform: translate(5px, -5px);
                transform: translate(5px, -5px);
    }
    80% {
        -webkit-clip-path: inset(80% 0 15% 0);
                clip-path: inset(80% 0 15% 0);
        -webkit-transform: translate(-5px, 5px);
                transform: translate(-5px, 5px);
    }
    90% {
        -webkit-clip-path: inset(90% 0 10% 0);
                clip-path: inset(90% 0 10% 0);
        -webkit-transform: translate(5px, -5px);
                transform: translate(5px, -5px);
    }
    100% {
        -webkit-clip-path: inset(70% 0 30% 0);
                clip-path: inset(70% 0 30% 0);
        -webkit-transform: translate(0);
                transform: translate(0);
    }
}

@keyframes glitchSlice {
    0% {
        -webkit-clip-path: inset(50% 0 30% 0);
                clip-path: inset(50% 0 30% 0);
        -webkit-transform: translate(-5px, 5px);
                transform: translate(-5px, 5px);
    }
    10% {
        -webkit-clip-path: inset(20% 0 60% 0);
                clip-path: inset(20% 0 60% 0);
        -webkit-transform: translate(5px, -5px);
                transform: translate(5px, -5px);
    }
    20% {
        -webkit-clip-path: inset(40% 0 40% 0);
                clip-path: inset(40% 0 40% 0);
        -webkit-transform: translate(-5px, 5px);
                transform: translate(-5px, 5px);
    }
    30% {
        -webkit-clip-path: inset(80% 0 5% 0);
                clip-path: inset(80% 0 5% 0);
        -webkit-transform: translate(5px, -5px);
                transform: translate(5px, -5px);
    }
    40% {
        -webkit-clip-path: inset(10% 0 85% 0);
                clip-path: inset(10% 0 85% 0);
        -webkit-transform: translate(-5px, 5px);
                transform: translate(-5px, 5px);
    }
    50% {
        -webkit-clip-path: inset(30% 0 55% 0);
                clip-path: inset(30% 0 55% 0);
        -webkit-transform: translate(5px, -5px);
                transform: translate(5px, -5px);
    }
    60% {
        -webkit-clip-path: inset(50% 0 30% 0);
                clip-path: inset(50% 0 30% 0);
        -webkit-transform: translate(-5px, 5px);
                transform: translate(-5px, 5px);
    }
    70% {
        -webkit-clip-path: inset(70% 0 20% 0);
                clip-path: inset(70% 0 20% 0);
        -webkit-transform: translate(5px, -5px);
                transform: translate(5px, -5px);
    }
    80% {
        -webkit-clip-path: inset(80% 0 15% 0);
                clip-path: inset(80% 0 15% 0);
        -webkit-transform: translate(-5px, 5px);
                transform: translate(-5px, 5px);
    }
    90% {
        -webkit-clip-path: inset(90% 0 10% 0);
                clip-path: inset(90% 0 10% 0);
        -webkit-transform: translate(5px, -5px);
                transform: translate(5px, -5px);
    }
    100% {
        -webkit-clip-path: inset(70% 0 30% 0);
                clip-path: inset(70% 0 30% 0);
        -webkit-transform: translate(0);
                transform: translate(0);
    }
}

@-webkit-keyframes scanningHologram {
    0% {
        background-position: 0% 0%;
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        background-position: 0% 100%;
        opacity: 0;
    }
}

@keyframes scanningHologram {
    0% {
        background-position: 0% 0%;
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        background-position: 0% 100%;
        opacity: 0;
    }
}

@-webkit-keyframes pixelShift {
    0%, 100% {
        -webkit-transform: translate(0);
                transform: translate(0);
    }
    20% {
        -webkit-transform: translate(2px, -2px);
                transform: translate(2px, -2px);
    }
    40% {
        -webkit-transform: translate(-2px, 2px);
                transform: translate(-2px, 2px);
    }
    60% {
        -webkit-transform: translate(1px, 1px);
                transform: translate(1px, 1px);
    }
    80% {
        -webkit-transform: translate(-1px, -1px);
                transform: translate(-1px, -1px);
    }
}

@keyframes pixelShift {
    0%, 100% {
        -webkit-transform: translate(0);
                transform: translate(0);
    }
    20% {
        -webkit-transform: translate(2px, -2px);
                transform: translate(2px, -2px);
    }
    40% {
        -webkit-transform: translate(-2px, 2px);
                transform: translate(-2px, 2px);
    }
    60% {
        -webkit-transform: translate(1px, 1px);
                transform: translate(1px, 1px);
    }
    80% {
        -webkit-transform: translate(-1px, -1px);
                transform: translate(-1px, -1px);
    }
}

@-webkit-keyframes chromaticAberration {
    0%, 100% {
        text-shadow: 
            -1px 0 2px rgba(255,0,0,0.5),
            1px 0 2px rgba(0,255,255,0.5);
    }
    25% {
        text-shadow: 
            -2px 0 3px rgba(255,0,0,0.5),
            2px 0 3px rgba(0,255,255,0.5);
    }
    50% {
        text-shadow: 
            -3px 0 4px rgba(255,0,0,0.5),
            3px 0 4px rgba(0,255,255,0.5);
    }
    75% {
        text-shadow: 
            -2px 0 3px rgba(255,0,0,0.5),
            2px 0 3px rgba(0,255,255,0.5);
    }
}

@keyframes chromaticAberration {
    0%, 100% {
        text-shadow: 
            -1px 0 2px rgba(255,0,0,0.5),
            1px 0 2px rgba(0,255,255,0.5);
    }
    25% {
        text-shadow: 
            -2px 0 3px rgba(255,0,0,0.5),
            2px 0 3px rgba(0,255,255,0.5);
    }
    50% {
        text-shadow: 
            -3px 0 4px rgba(255,0,0,0.5),
            3px 0 4px rgba(0,255,255,0.5);
    }
    75% {
        text-shadow: 
            -2px 0 3px rgba(255,0,0,0.5),
            2px 0 3px rgba(0,255,255,0.5);
    }
}

@-webkit-keyframes digitalWarp {
    0%, 15%, 85%, 100% {
        -webkit-transform: scale(1, 1) skew(0deg, 0deg);
                transform: scale(1, 1) skew(0deg, 0deg);
        -webkit-filter: none;
                filter: none;
    }
    16% {
        -webkit-transform: scale(1.03, 0.97) skew(-2deg, 0deg);
                transform: scale(1.03, 0.97) skew(-2deg, 0deg);
        -webkit-filter: hue-rotate(-10deg) brightness(1.2);
                filter: hue-rotate(-10deg) brightness(1.2);
    }
    18% {
        -webkit-transform: scale(0.98, 1.02) skew(1deg, 1deg);
                transform: scale(0.98, 1.02) skew(1deg, 1deg);
        -webkit-filter: hue-rotate(5deg) brightness(0.9);
                filter: hue-rotate(5deg) brightness(0.9);
    }
    20% {
        -webkit-transform: scale(1, 1) skew(0deg, 0deg);
                transform: scale(1, 1) skew(0deg, 0deg);
        -webkit-filter: none;
                filter: none;
    }
    45% {
        -webkit-transform: scale(1.02, 0.98) skew(0deg, -1deg);
                transform: scale(1.02, 0.98) skew(0deg, -1deg);
        -webkit-filter: hue-rotate(15deg) brightness(1.1);
                filter: hue-rotate(15deg) brightness(1.1);
    }
    47% {
        -webkit-transform: scale(0.97, 1.03) skew(-1deg, 0deg);
                transform: scale(0.97, 1.03) skew(-1deg, 0deg);
        -webkit-filter: hue-rotate(-5deg) brightness(0.95);
                filter: hue-rotate(-5deg) brightness(0.95);
    }
    50% {
        -webkit-transform: scale(1, 1) skew(0deg, 0deg);
                transform: scale(1, 1) skew(0deg, 0deg);
        -webkit-filter: none;
                filter: none;
    }
}

@keyframes digitalWarp {
    0%, 15%, 85%, 100% {
        -webkit-transform: scale(1, 1) skew(0deg, 0deg);
                transform: scale(1, 1) skew(0deg, 0deg);
        -webkit-filter: none;
                filter: none;
    }
    16% {
        -webkit-transform: scale(1.03, 0.97) skew(-2deg, 0deg);
                transform: scale(1.03, 0.97) skew(-2deg, 0deg);
        -webkit-filter: hue-rotate(-10deg) brightness(1.2);
                filter: hue-rotate(-10deg) brightness(1.2);
    }
    18% {
        -webkit-transform: scale(0.98, 1.02) skew(1deg, 1deg);
                transform: scale(0.98, 1.02) skew(1deg, 1deg);
        -webkit-filter: hue-rotate(5deg) brightness(0.9);
                filter: hue-rotate(5deg) brightness(0.9);
    }
    20% {
        -webkit-transform: scale(1, 1) skew(0deg, 0deg);
                transform: scale(1, 1) skew(0deg, 0deg);
        -webkit-filter: none;
                filter: none;
    }
    45% {
        -webkit-transform: scale(1.02, 0.98) skew(0deg, -1deg);
                transform: scale(1.02, 0.98) skew(0deg, -1deg);
        -webkit-filter: hue-rotate(15deg) brightness(1.1);
                filter: hue-rotate(15deg) brightness(1.1);
    }
    47% {
        -webkit-transform: scale(0.97, 1.03) skew(-1deg, 0deg);
                transform: scale(0.97, 1.03) skew(-1deg, 0deg);
        -webkit-filter: hue-rotate(-5deg) brightness(0.95);
                filter: hue-rotate(-5deg) brightness(0.95);
    }
    50% {
        -webkit-transform: scale(1, 1) skew(0deg, 0deg);
                transform: scale(1, 1) skew(0deg, 0deg);
        -webkit-filter: none;
                filter: none;
    }
}

@-webkit-keyframes scanlineWarp {
    0%, 100% {
        -webkit-transform: scale(1) skew(0deg);
                transform: scale(1) skew(0deg);
        -webkit-clip-path: none;
                clip-path: none;
        opacity: 1;
    }
    15% {
        -webkit-transform: scale(1.01, 1) skew(0.5deg);
                transform: scale(1.01, 1) skew(0.5deg);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 20%, 0 20%, 0 40%, 100% 40%, 100% 60%, 0 60%, 0 80%, 100% 80%, 100% 100%, 0 100%);
                clip-path: polygon(0 0, 100% 0, 100% 20%, 0 20%, 0 40%, 100% 40%, 100% 60%, 0 60%, 0 80%, 100% 80%, 100% 100%, 0 100%);
        opacity: 0.92;
    }
    15.5% {
        -webkit-transform: scale(0.99, 1) skew(-1deg);
                transform: scale(0.99, 1) skew(-1deg);
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 30%, 0 30%, 0 50%, 100% 50%, 100% 70%, 0 70%, 0 90%, 100% 90%, 100% 100%, 0 100%);
                clip-path: polygon(0 10%, 100% 10%, 100% 30%, 0 30%, 0 50%, 100% 50%, 100% 70%, 0 70%, 0 90%, 100% 90%, 100% 100%, 0 100%);
        opacity: 0.95;
    }
    16% {
        -webkit-transform: scale(1) skew(0deg);
                transform: scale(1) skew(0deg);
        -webkit-clip-path: none;
                clip-path: none;
        opacity: 1;
    }
}

@keyframes scanlineWarp {
    0%, 100% {
        -webkit-transform: scale(1) skew(0deg);
                transform: scale(1) skew(0deg);
        -webkit-clip-path: none;
                clip-path: none;
        opacity: 1;
    }
    15% {
        -webkit-transform: scale(1.01, 1) skew(0.5deg);
                transform: scale(1.01, 1) skew(0.5deg);
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 20%, 0 20%, 0 40%, 100% 40%, 100% 60%, 0 60%, 0 80%, 100% 80%, 100% 100%, 0 100%);
                clip-path: polygon(0 0, 100% 0, 100% 20%, 0 20%, 0 40%, 100% 40%, 100% 60%, 0 60%, 0 80%, 100% 80%, 100% 100%, 0 100%);
        opacity: 0.92;
    }
    15.5% {
        -webkit-transform: scale(0.99, 1) skew(-1deg);
                transform: scale(0.99, 1) skew(-1deg);
        -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 30%, 0 30%, 0 50%, 100% 50%, 100% 70%, 0 70%, 0 90%, 100% 90%, 100% 100%, 0 100%);
                clip-path: polygon(0 10%, 100% 10%, 100% 30%, 0 30%, 0 50%, 100% 50%, 100% 70%, 0 70%, 0 90%, 100% 90%, 100% 100%, 0 100%);
        opacity: 0.95;
    }
    16% {
        -webkit-transform: scale(1) skew(0deg);
                transform: scale(1) skew(0deg);
        -webkit-clip-path: none;
                clip-path: none;
        opacity: 1;
    }
}

@-webkit-keyframes scanlineResonance {
    0%, 100% {
        background-position: 0 0;
        opacity: 0.1;
    }
    15% {
        background-position: 0 -10px;
        opacity: 0.3;
    }
    15.5% {
        background-position: 0 10px;
        opacity: 0.2;
    }
    16% {
        background-position: 0 0;
        opacity: 0.1;
    }
}

@keyframes scanlineResonance {
    0%, 100% {
        background-position: 0 0;
        opacity: 0.1;
    }
    15% {
        background-position: 0 -10px;
        opacity: 0.3;
    }
    15.5% {
        background-position: 0 10px;
        opacity: 0.2;
    }
    16% {
        background-position: 0 0;
        opacity: 0.1;
    }
}

@-webkit-keyframes intenseScanline {
    0% {
        -webkit-transform: translateY(-100%) skewY(0deg) scaleY(1);
                transform: translateY(-100%) skewY(0deg) scaleY(1);
        opacity: 0.7;
        -webkit-filter: blur(0.5px) brightness(1.1);
                filter: blur(0.5px) brightness(1.1);
    }
    15% {
        -webkit-transform: translateY(-50%) skewY(0.8deg) scaleY(1.02);
                transform: translateY(-50%) skewY(0.8deg) scaleY(1.02);
        opacity: 0.85;
        -webkit-filter: blur(0.3px) brightness(1.15);
                filter: blur(0.3px) brightness(1.15);
    }
    30% {
        -webkit-transform: translateY(0) skewY(-0.4deg) scaleY(0.99);
                transform: translateY(0) skewY(-0.4deg) scaleY(0.99);
        opacity: 0.75;
        -webkit-filter: blur(0.4px) brightness(1.1);
                filter: blur(0.4px) brightness(1.1);
    }
    45% {
        -webkit-transform: translateY(50%) skewY(0.6deg) scaleY(1.01);
                transform: translateY(50%) skewY(0.6deg) scaleY(1.01);
        opacity: 0.9;
        -webkit-filter: blur(0.2px) brightness(1.2);
                filter: blur(0.2px) brightness(1.2);
    }
    60% {
        -webkit-transform: translateY(100%) skewY(-0.8deg) scaleY(1.03);
                transform: translateY(100%) skewY(-0.8deg) scaleY(1.03);
        opacity: 0.8;
        -webkit-filter: blur(0.5px) brightness(1.1);
                filter: blur(0.5px) brightness(1.1);
    }
    75% {
        -webkit-transform: translateY(50%) skewY(0.4deg) scaleY(0.98);
                transform: translateY(50%) skewY(0.4deg) scaleY(0.98);
        opacity: 0.85;
        -webkit-filter: blur(0.3px) brightness(1.15);
                filter: blur(0.3px) brightness(1.15);
    }
    90% {
        -webkit-transform: translateY(0) skewY(-0.6deg) scaleY(1.02);
                transform: translateY(0) skewY(-0.6deg) scaleY(1.02);
        opacity: 0.75;
        -webkit-filter: blur(0.4px) brightness(1.1);
                filter: blur(0.4px) brightness(1.1);
    }
    100% {
        -webkit-transform: translateY(-100%) skewY(0deg) scaleY(1);
                transform: translateY(-100%) skewY(0deg) scaleY(1);
        opacity: 0.7;
        -webkit-filter: blur(0.5px) brightness(1.1);
                filter: blur(0.5px) brightness(1.1);
    }
}

@keyframes intenseScanline {
    0% {
        -webkit-transform: translateY(-100%) skewY(0deg) scaleY(1);
                transform: translateY(-100%) skewY(0deg) scaleY(1);
        opacity: 0.7;
        -webkit-filter: blur(0.5px) brightness(1.1);
                filter: blur(0.5px) brightness(1.1);
    }
    15% {
        -webkit-transform: translateY(-50%) skewY(0.8deg) scaleY(1.02);
                transform: translateY(-50%) skewY(0.8deg) scaleY(1.02);
        opacity: 0.85;
        -webkit-filter: blur(0.3px) brightness(1.15);
                filter: blur(0.3px) brightness(1.15);
    }
    30% {
        -webkit-transform: translateY(0) skewY(-0.4deg) scaleY(0.99);
                transform: translateY(0) skewY(-0.4deg) scaleY(0.99);
        opacity: 0.75;
        -webkit-filter: blur(0.4px) brightness(1.1);
                filter: blur(0.4px) brightness(1.1);
    }
    45% {
        -webkit-transform: translateY(50%) skewY(0.6deg) scaleY(1.01);
                transform: translateY(50%) skewY(0.6deg) scaleY(1.01);
        opacity: 0.9;
        -webkit-filter: blur(0.2px) brightness(1.2);
                filter: blur(0.2px) brightness(1.2);
    }
    60% {
        -webkit-transform: translateY(100%) skewY(-0.8deg) scaleY(1.03);
                transform: translateY(100%) skewY(-0.8deg) scaleY(1.03);
        opacity: 0.8;
        -webkit-filter: blur(0.5px) brightness(1.1);
                filter: blur(0.5px) brightness(1.1);
    }
    75% {
        -webkit-transform: translateY(50%) skewY(0.4deg) scaleY(0.98);
                transform: translateY(50%) skewY(0.4deg) scaleY(0.98);
        opacity: 0.85;
        -webkit-filter: blur(0.3px) brightness(1.15);
                filter: blur(0.3px) brightness(1.15);
    }
    90% {
        -webkit-transform: translateY(0) skewY(-0.6deg) scaleY(1.02);
                transform: translateY(0) skewY(-0.6deg) scaleY(1.02);
        opacity: 0.75;
        -webkit-filter: blur(0.4px) brightness(1.1);
                filter: blur(0.4px) brightness(1.1);
    }
    100% {
        -webkit-transform: translateY(-100%) skewY(0deg) scaleY(1);
                transform: translateY(-100%) skewY(0deg) scaleY(1);
        opacity: 0.7;
        -webkit-filter: blur(0.5px) brightness(1.1);
                filter: blur(0.5px) brightness(1.1);
    }
}

@-webkit-keyframes rapidGlitch {
    0% {
        -webkit-clip-path: inset(40% 0 61% 0);
                clip-path: inset(40% 0 61% 0);
        -webkit-transform: translate(-10px) scale(1.1);
                transform: translate(-10px) scale(1.1);
        -webkit-filter: hue-rotate(10deg) brightness(1.2);
                filter: hue-rotate(10deg) brightness(1.2);
    }
    10% {
        -webkit-clip-path: inset(92% 0 1% 0);
                clip-path: inset(92% 0 1% 0);
        -webkit-transform: translate(10px) scale(0.9);
                transform: translate(10px) scale(0.9);
        -webkit-filter: hue-rotate(-10deg) brightness(0.8);
                filter: hue-rotate(-10deg) brightness(0.8);
    }
    20% {
        -webkit-clip-path: inset(43% 0 1% 0);
                clip-path: inset(43% 0 1% 0);
        -webkit-transform: translate(3px, -4px) scale(1.05);
                transform: translate(3px, -4px) scale(1.05);
        -webkit-filter: hue-rotate(5deg) brightness(1.1);
                filter: hue-rotate(5deg) brightness(1.1);
    }
    30% {
        -webkit-clip-path: inset(25% 0 58% 0);
                clip-path: inset(25% 0 58% 0);
        -webkit-transform: translate(-5px, 6px) scale(0.95);
                transform: translate(-5px, 6px) scale(0.95);
        -webkit-filter: hue-rotate(-5deg) brightness(0.9);
                filter: hue-rotate(-5deg) brightness(0.9);
    }
    40% {
        -webkit-clip-path: inset(75% 0 23% 0);
                clip-path: inset(75% 0 23% 0);
        -webkit-transform: translate(7px, -8px) scale(1.15);
                transform: translate(7px, -8px) scale(1.15);
        -webkit-filter: hue-rotate(15deg) brightness(1.3);
                filter: hue-rotate(15deg) brightness(1.3);
    }
    50% {
        -webkit-clip-path: inset(10% 0 85% 0);
                clip-path: inset(10% 0 85% 0);
        -webkit-transform: translate(-8px, 4px) scale(0.85);
                transform: translate(-8px, 4px) scale(0.85);
        -webkit-filter: hue-rotate(-15deg) brightness(0.7);
                filter: hue-rotate(-15deg) brightness(0.7);
    }
    60% {
        -webkit-clip-path: inset(60% 0 35% 0);
                clip-path: inset(60% 0 35% 0);
        -webkit-transform: translate(5px, -6px) scale(1.1);
                transform: translate(5px, -6px) scale(1.1);
        -webkit-filter: hue-rotate(8deg) brightness(1.2);
                filter: hue-rotate(8deg) brightness(1.2);
    }
    70% {
        -webkit-clip-path: inset(85% 0 10% 0);
                clip-path: inset(85% 0 10% 0);
        -webkit-transform: translate(-3px, 7px) scale(0.9);
                transform: translate(-3px, 7px) scale(0.9);
        -webkit-filter: hue-rotate(-8deg) brightness(0.8);
                filter: hue-rotate(-8deg) brightness(0.8);
    }
    80% {
        -webkit-clip-path: inset(15% 0 80% 0);
                clip-path: inset(15% 0 80% 0);
        -webkit-transform: translate(6px, -5px) scale(1.05);
                transform: translate(6px, -5px) scale(1.05);
        -webkit-filter: hue-rotate(12deg) brightness(1.1);
                filter: hue-rotate(12deg) brightness(1.1);
    }
    90% {
        -webkit-clip-path: inset(70% 0 25% 0);
                clip-path: inset(70% 0 25% 0);
        -webkit-transform: translate(-7px, 3px) scale(0.95);
                transform: translate(-7px, 3px) scale(0.95);
        -webkit-filter: hue-rotate(-12deg) brightness(0.9);
                filter: hue-rotate(-12deg) brightness(0.9);
    }
    100% {
        -webkit-clip-path: inset(40% 0 61% 0);
                clip-path: inset(40% 0 61% 0);
        -webkit-transform: translate(-10px) scale(1.1);
                transform: translate(-10px) scale(1.1);
        -webkit-filter: hue-rotate(10deg) brightness(1.2);
                filter: hue-rotate(10deg) brightness(1.2);
    }
}

@keyframes rapidGlitch {
    0% {
        -webkit-clip-path: inset(40% 0 61% 0);
                clip-path: inset(40% 0 61% 0);
        -webkit-transform: translate(-10px) scale(1.1);
                transform: translate(-10px) scale(1.1);
        -webkit-filter: hue-rotate(10deg) brightness(1.2);
                filter: hue-rotate(10deg) brightness(1.2);
    }
    10% {
        -webkit-clip-path: inset(92% 0 1% 0);
                clip-path: inset(92% 0 1% 0);
        -webkit-transform: translate(10px) scale(0.9);
                transform: translate(10px) scale(0.9);
        -webkit-filter: hue-rotate(-10deg) brightness(0.8);
                filter: hue-rotate(-10deg) brightness(0.8);
    }
    20% {
        -webkit-clip-path: inset(43% 0 1% 0);
                clip-path: inset(43% 0 1% 0);
        -webkit-transform: translate(3px, -4px) scale(1.05);
                transform: translate(3px, -4px) scale(1.05);
        -webkit-filter: hue-rotate(5deg) brightness(1.1);
                filter: hue-rotate(5deg) brightness(1.1);
    }
    30% {
        -webkit-clip-path: inset(25% 0 58% 0);
                clip-path: inset(25% 0 58% 0);
        -webkit-transform: translate(-5px, 6px) scale(0.95);
                transform: translate(-5px, 6px) scale(0.95);
        -webkit-filter: hue-rotate(-5deg) brightness(0.9);
                filter: hue-rotate(-5deg) brightness(0.9);
    }
    40% {
        -webkit-clip-path: inset(75% 0 23% 0);
                clip-path: inset(75% 0 23% 0);
        -webkit-transform: translate(7px, -8px) scale(1.15);
                transform: translate(7px, -8px) scale(1.15);
        -webkit-filter: hue-rotate(15deg) brightness(1.3);
                filter: hue-rotate(15deg) brightness(1.3);
    }
    50% {
        -webkit-clip-path: inset(10% 0 85% 0);
                clip-path: inset(10% 0 85% 0);
        -webkit-transform: translate(-8px, 4px) scale(0.85);
                transform: translate(-8px, 4px) scale(0.85);
        -webkit-filter: hue-rotate(-15deg) brightness(0.7);
                filter: hue-rotate(-15deg) brightness(0.7);
    }
    60% {
        -webkit-clip-path: inset(60% 0 35% 0);
                clip-path: inset(60% 0 35% 0);
        -webkit-transform: translate(5px, -6px) scale(1.1);
                transform: translate(5px, -6px) scale(1.1);
        -webkit-filter: hue-rotate(8deg) brightness(1.2);
                filter: hue-rotate(8deg) brightness(1.2);
    }
    70% {
        -webkit-clip-path: inset(85% 0 10% 0);
                clip-path: inset(85% 0 10% 0);
        -webkit-transform: translate(-3px, 7px) scale(0.9);
                transform: translate(-3px, 7px) scale(0.9);
        -webkit-filter: hue-rotate(-8deg) brightness(0.8);
                filter: hue-rotate(-8deg) brightness(0.8);
    }
    80% {
        -webkit-clip-path: inset(15% 0 80% 0);
                clip-path: inset(15% 0 80% 0);
        -webkit-transform: translate(6px, -5px) scale(1.05);
                transform: translate(6px, -5px) scale(1.05);
        -webkit-filter: hue-rotate(12deg) brightness(1.1);
                filter: hue-rotate(12deg) brightness(1.1);
    }
    90% {
        -webkit-clip-path: inset(70% 0 25% 0);
                clip-path: inset(70% 0 25% 0);
        -webkit-transform: translate(-7px, 3px) scale(0.95);
                transform: translate(-7px, 3px) scale(0.95);
        -webkit-filter: hue-rotate(-12deg) brightness(0.9);
                filter: hue-rotate(-12deg) brightness(0.9);
    }
    100% {
        -webkit-clip-path: inset(40% 0 61% 0);
                clip-path: inset(40% 0 61% 0);
        -webkit-transform: translate(-10px) scale(1.1);
                transform: translate(-10px) scale(1.1);
        -webkit-filter: hue-rotate(10deg) brightness(1.2);
                filter: hue-rotate(10deg) brightness(1.2);
    }
}

@-webkit-keyframes fluidWaveSystem {
    0% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 221, 255, 0.02) 3px,
                rgba(0, 221, 255, 0.02) 4px,
                transparent 5px
            );
        -webkit-transform: translateY(-100%) scaleY(1.618) skewY(0deg);
                transform: translateY(-100%) scaleY(1.618) skewY(0deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.4;
    }
    15% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 3px,
                rgba(0, 221, 255, 0.04) 4px,
                rgba(0, 221, 255, 0.04) 5px,
                transparent 6px
            );
        -webkit-transform: translateY(-50%) scaleY(1.382) skewY(0.5deg);
                transform: translateY(-50%) scaleY(1.382) skewY(0.5deg);
        -webkit-filter: blur(0.4px) brightness(1.2);
                filter: blur(0.4px) brightness(1.2);
        opacity: 0.6;
    }
    30% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 4px,
                rgba(0, 221, 255, 0.06) 5px,
                rgba(0, 221, 255, 0.06) 6px,
                transparent 7px
            );
        -webkit-transform: translateY(0) scaleY(1.618) skewY(-0.5deg);
                transform: translateY(0) scaleY(1.618) skewY(-0.5deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.8;
    }
    45% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 5px,
                rgba(0, 221, 255, 0.08) 6px,
                rgba(0, 221, 255, 0.08) 7px,
                transparent 8px
            );
        -webkit-transform: translateY(50%) scaleY(1.382) skewY(0.5deg);
                transform: translateY(50%) scaleY(1.382) skewY(0.5deg);
        -webkit-filter: blur(0.4px) brightness(1.2);
                filter: blur(0.4px) brightness(1.2);
        opacity: 0.6;
    }
    60% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 4px,
                rgba(0, 221, 255, 0.06) 5px,
                rgba(0, 221, 255, 0.06) 6px,
                transparent 7px
            );
        -webkit-transform: translateY(100%) scaleY(1.618) skewY(-0.5deg);
                transform: translateY(100%) scaleY(1.618) skewY(-0.5deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.4;
    }
    75% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 3px,
                rgba(0, 221, 255, 0.04) 4px,
                rgba(0, 221, 255, 0.04) 5px,
                transparent 6px
            );
        -webkit-transform: translateY(50%) scaleY(1.382) skewY(0.5deg);
                transform: translateY(50%) scaleY(1.382) skewY(0.5deg);
        -webkit-filter: blur(0.4px) brightness(1.2);
                filter: blur(0.4px) brightness(1.2);
        opacity: 0.6;
    }
    90% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 221, 255, 0.02) 3px,
                rgba(0, 221, 255, 0.02) 4px,
                transparent 5px
            );
        -webkit-transform: translateY(0) scaleY(1.618) skewY(-0.5deg);
                transform: translateY(0) scaleY(1.618) skewY(-0.5deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.8;
    }
    100% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 221, 255, 0.02) 3px,
                rgba(0, 221, 255, 0.02) 4px,
                transparent 5px
            );
        -webkit-transform: translateY(-100%) scaleY(1.618) skewY(0deg);
                transform: translateY(-100%) scaleY(1.618) skewY(0deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.4;
    }
}

@keyframes fluidWaveSystem {
    0% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 221, 255, 0.02) 3px,
                rgba(0, 221, 255, 0.02) 4px,
                transparent 5px
            );
        -webkit-transform: translateY(-100%) scaleY(1.618) skewY(0deg);
                transform: translateY(-100%) scaleY(1.618) skewY(0deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.4;
    }
    15% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 3px,
                rgba(0, 221, 255, 0.04) 4px,
                rgba(0, 221, 255, 0.04) 5px,
                transparent 6px
            );
        -webkit-transform: translateY(-50%) scaleY(1.382) skewY(0.5deg);
                transform: translateY(-50%) scaleY(1.382) skewY(0.5deg);
        -webkit-filter: blur(0.4px) brightness(1.2);
                filter: blur(0.4px) brightness(1.2);
        opacity: 0.6;
    }
    30% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 4px,
                rgba(0, 221, 255, 0.06) 5px,
                rgba(0, 221, 255, 0.06) 6px,
                transparent 7px
            );
        -webkit-transform: translateY(0) scaleY(1.618) skewY(-0.5deg);
                transform: translateY(0) scaleY(1.618) skewY(-0.5deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.8;
    }
    45% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 5px,
                rgba(0, 221, 255, 0.08) 6px,
                rgba(0, 221, 255, 0.08) 7px,
                transparent 8px
            );
        -webkit-transform: translateY(50%) scaleY(1.382) skewY(0.5deg);
                transform: translateY(50%) scaleY(1.382) skewY(0.5deg);
        -webkit-filter: blur(0.4px) brightness(1.2);
                filter: blur(0.4px) brightness(1.2);
        opacity: 0.6;
    }
    60% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 4px,
                rgba(0, 221, 255, 0.06) 5px,
                rgba(0, 221, 255, 0.06) 6px,
                transparent 7px
            );
        -webkit-transform: translateY(100%) scaleY(1.618) skewY(-0.5deg);
                transform: translateY(100%) scaleY(1.618) skewY(-0.5deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.4;
    }
    75% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 3px,
                rgba(0, 221, 255, 0.04) 4px,
                rgba(0, 221, 255, 0.04) 5px,
                transparent 6px
            );
        -webkit-transform: translateY(50%) scaleY(1.382) skewY(0.5deg);
                transform: translateY(50%) scaleY(1.382) skewY(0.5deg);
        -webkit-filter: blur(0.4px) brightness(1.2);
                filter: blur(0.4px) brightness(1.2);
        opacity: 0.6;
    }
    90% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 221, 255, 0.02) 3px,
                rgba(0, 221, 255, 0.02) 4px,
                transparent 5px
            );
        -webkit-transform: translateY(0) scaleY(1.618) skewY(-0.5deg);
                transform: translateY(0) scaleY(1.618) skewY(-0.5deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.8;
    }
    100% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(0, 221, 255, 0.02) 3px,
                rgba(0, 221, 255, 0.02) 4px,
                transparent 5px
            );
        -webkit-transform: translateY(-100%) scaleY(1.618) skewY(0deg);
                transform: translateY(-100%) scaleY(1.618) skewY(0deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.4;
    }
}

@-webkit-keyframes waveDissipation {
    0% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 3px,
                rgba(0, 221, 255, 0.01) 4px,
                rgba(0, 221, 255, 0.01) 5px,
                transparent 6px
            );
        -webkit-transform: translateY(-100%) scaleY(1.382) skewY(0deg);
                transform: translateY(-100%) scaleY(1.382) skewY(0deg);
        -webkit-filter: blur(0.2px) brightness(1.05);
                filter: blur(0.2px) brightness(1.05);
        opacity: 0.2;
    }
    33% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 4px,
                rgba(0, 221, 255, 0.03) 5px,
                rgba(0, 221, 255, 0.03) 6px,
                transparent 7px
            );
        -webkit-transform: translateY(-33%) scaleY(1.618) skewY(0.3deg);
                transform: translateY(-33%) scaleY(1.618) skewY(0.3deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.4;
    }
    66% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 5px,
                rgba(0, 221, 255, 0.05) 6px,
                rgba(0, 221, 255, 0.05) 7px,
                transparent 8px
            );
        -webkit-transform: translateY(33%) scaleY(1.382) skewY(-0.3deg);
                transform: translateY(33%) scaleY(1.382) skewY(-0.3deg);
        -webkit-filter: blur(0.2px) brightness(1.05);
                filter: blur(0.2px) brightness(1.05);
        opacity: 0.2;
    }
    100% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 3px,
                rgba(0, 221, 255, 0.01) 4px,
                rgba(0, 221, 255, 0.01) 5px,
                transparent 6px
            );
        -webkit-transform: translateY(100%) scaleY(1.618) skewY(0deg);
                transform: translateY(100%) scaleY(1.618) skewY(0deg);
        -webkit-filter: blur(0.2px) brightness(1.05);
                filter: blur(0.2px) brightness(1.05);
        opacity: 0.2;
    }
}

@keyframes waveDissipation {
    0% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 3px,
                rgba(0, 221, 255, 0.01) 4px,
                rgba(0, 221, 255, 0.01) 5px,
                transparent 6px
            );
        -webkit-transform: translateY(-100%) scaleY(1.382) skewY(0deg);
                transform: translateY(-100%) scaleY(1.382) skewY(0deg);
        -webkit-filter: blur(0.2px) brightness(1.05);
                filter: blur(0.2px) brightness(1.05);
        opacity: 0.2;
    }
    33% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 4px,
                rgba(0, 221, 255, 0.03) 5px,
                rgba(0, 221, 255, 0.03) 6px,
                transparent 7px
            );
        -webkit-transform: translateY(-33%) scaleY(1.618) skewY(0.3deg);
                transform: translateY(-33%) scaleY(1.618) skewY(0.3deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.4;
    }
    66% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 5px,
                rgba(0, 221, 255, 0.05) 6px,
                rgba(0, 221, 255, 0.05) 7px,
                transparent 8px
            );
        -webkit-transform: translateY(33%) scaleY(1.382) skewY(-0.3deg);
                transform: translateY(33%) scaleY(1.382) skewY(-0.3deg);
        -webkit-filter: blur(0.2px) brightness(1.05);
                filter: blur(0.2px) brightness(1.05);
        opacity: 0.2;
    }
    100% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 3px,
                rgba(0, 221, 255, 0.01) 4px,
                rgba(0, 221, 255, 0.01) 5px,
                transparent 6px
            );
        -webkit-transform: translateY(100%) scaleY(1.618) skewY(0deg);
                transform: translateY(100%) scaleY(1.618) skewY(0deg);
        -webkit-filter: blur(0.2px) brightness(1.05);
                filter: blur(0.2px) brightness(1.05);
        opacity: 0.2;
    }
}

@-webkit-keyframes wavePulse {
    0% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 4px,
                rgba(0, 221, 255, 0.02) 5px,
                rgba(0, 221, 255, 0.02) 6px,
                transparent 7px
            );
        -webkit-transform: translateY(-100%) scaleY(1.618) skewY(0deg);
                transform: translateY(-100%) scaleY(1.618) skewY(0deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.3;
    }
    50% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 5px,
                rgba(0, 221, 255, 0.04) 6px,
                rgba(0, 221, 255, 0.04) 7px,
                transparent 8px
            );
        -webkit-transform: translateY(0) scaleY(1.382) skewY(0.5deg);
                transform: translateY(0) scaleY(1.382) skewY(0.5deg);
        -webkit-filter: blur(0.4px) brightness(1.2);
                filter: blur(0.4px) brightness(1.2);
        opacity: 0.5;
    }
    100% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 4px,
                rgba(0, 221, 255, 0.02) 5px,
                rgba(0, 221, 255, 0.02) 6px,
                transparent 7px
            );
        -webkit-transform: translateY(100%) scaleY(1.618) skewY(0deg);
                transform: translateY(100%) scaleY(1.618) skewY(0deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.3;
    }
}

@keyframes wavePulse {
    0% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 4px,
                rgba(0, 221, 255, 0.02) 5px,
                rgba(0, 221, 255, 0.02) 6px,
                transparent 7px
            );
        -webkit-transform: translateY(-100%) scaleY(1.618) skewY(0deg);
                transform: translateY(-100%) scaleY(1.618) skewY(0deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.3;
    }
    50% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 5px,
                rgba(0, 221, 255, 0.04) 6px,
                rgba(0, 221, 255, 0.04) 7px,
                transparent 8px
            );
        -webkit-transform: translateY(0) scaleY(1.382) skewY(0.5deg);
                transform: translateY(0) scaleY(1.382) skewY(0.5deg);
        -webkit-filter: blur(0.4px) brightness(1.2);
                filter: blur(0.4px) brightness(1.2);
        opacity: 0.5;
    }
    100% {
        background: 
            repeating-linear-gradient(
                0deg,
                transparent,
                transparent 4px,
                rgba(0, 221, 255, 0.02) 5px,
                rgba(0, 221, 255, 0.02) 6px,
                transparent 7px
            );
        -webkit-transform: translateY(100%) scaleY(1.618) skewY(0deg);
                transform: translateY(100%) scaleY(1.618) skewY(0deg);
        -webkit-filter: blur(0.3px) brightness(1.1);
                filter: blur(0.3px) brightness(1.1);
        opacity: 0.3;
    }
}

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

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

@-webkit-keyframes borderPulse {
    0%, 100% {
        border-color: #00ddff;
        box-shadow: 
            0 0 10px #00ddff,
            0 0 20px #00ddff,
            0 0 30px #00ddff,
            inset 0 0 15px rgba(0, 221, 255, 0.5);
    }
    50% {
        border-color: #00ffff;
        box-shadow: 
            0 0 15px #00ffff,
            0 0 30px #00ffff,
            0 0 45px #00ffff,
            inset 0 0 20px rgba(0, 255, 255, 0.7);
    }
}

@keyframes borderPulse {
    0%, 100% {
        border-color: #00ddff;
        box-shadow: 
            0 0 10px #00ddff,
            0 0 20px #00ddff,
            0 0 30px #00ddff,
            inset 0 0 15px rgba(0, 221, 255, 0.5);
    }
    50% {
        border-color: #00ffff;
        box-shadow: 
            0 0 15px #00ffff,
            0 0 30px #00ffff,
            0 0 45px #00ffff,
            inset 0 0 20px rgba(0, 255, 255, 0.7);
    }
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes spin {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

.hologram-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    background-color: rgba(0, 20, 40, 0.6);
    border-radius: 12px;
}

.hologram-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    mix-blend-mode: screen;
    opacity: 0.15;
}

.hologram-container::before {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-animation: fluidWaveSystem 8.3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: fluidWaveSystem 8.3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  mix-blend-mode: overlay;
  pointer-events: none !important;
  z-index: 1;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: transform, background, opacity;
}

.hologram-container::after {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-animation: waveDissipation 6.7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: waveDissipation 6.7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  -webkit-animation-delay: -2.1s;
          animation-delay: -2.1s;
  mix-blend-mode: screen;
  pointer-events: none !important;
  z-index: 1;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: transform, background, opacity;
}

.hologram-container .wave-pulse {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-animation: wavePulse 7.3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: wavePulse 7.3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  -webkit-animation-delay: -4.1s;
          animation-delay: -4.1s;
  mix-blend-mode: overlay;
  pointer-events: none;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  will-change: transform, background, opacity;
}

.digital-rain {
  display: none;
}

.digital-rain::before {
  display: none;
}

.glitch-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 221, 255, 0.03);
  -webkit-animation: rapidGlitch 0.3s steps(1) infinite;
          animation: rapidGlitch 0.3s steps(1) infinite;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 2;
}

.glitch-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 0, 0, 0.02);
  -webkit-animation: rapidGlitch 0.2s steps(1) infinite;
          animation: rapidGlitch 0.2s steps(1) infinite;
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
  mix-blend-mode: screen;
}

.glitch-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 255, 255, 0.02);
  -webkit-animation: rapidGlitch 0.25s steps(1) infinite;
          animation: rapidGlitch 0.25s steps(1) infinite;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
  mix-blend-mode: screen;
}

.glitch-overlay .glitch-block {
  position: absolute;
  background: rgba(0, 221, 255, 0.02);
  -webkit-animation: glitchBlock 0.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
          animation: glitchBlock 0.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  mix-blend-mode: screen;
  border-radius: 2px;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}

.glitch-overlay .glitch-block:nth-child(1) {
  top: 5%;
  left: 10%;
  width: 12%;
  height: 15%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.glitch-overlay .glitch-block:nth-child(2) {
  top: 25%;
  right: 15%;
  width: 18%;
  height: 12%;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.glitch-overlay .glitch-block:nth-child(3) {
  bottom: 15%;
  left: 20%;
  width: 15%;
  height: 18%;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.glitch-overlay .glitch-block:nth-child(4) {
  top: 45%;
  right: 25%;
  width: 22%;
  height: 8%;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.glitch-overlay .glitch-block:nth-child(5) {
  top: 65%;
  left: 30%;
  width: 14%;
  height: 16%;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.glitch-overlay .glitch-block:nth-child(6) {
  top: 85%;
  right: 35%;
  width: 20%;
  height: 10%;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.glitch-overlay .glitch-block:nth-child(7) {
  top: 15%;
  left: 45%;
  width: 16%;
  height: 14%;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.glitch-overlay .glitch-block:nth-child(8) {
  top: 55%;
  right: 40%;
  width: 19%;
  height: 11%;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.glitch-overlay .glitch-block:nth-child(9) {
  bottom: 25%;
  left: 55%;
  width: 13%;
  height: 17%;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.glitch-overlay .glitch-block:nth-child(10) {
  top: 75%;
  right: 45%;
  width: 21%;
  height: 9%;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

@-webkit-keyframes glitchBlock {
  0% {
    -webkit-transform: translate(0, 0) scale(1) rotate(0deg);
            transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.1;
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  25% {
    -webkit-transform: translate(3px, -2px) scale(1.05) rotate(1deg);
            transform: translate(3px, -2px) scale(1.05) rotate(1deg);
    opacity: 0.15;
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
  50% {
    -webkit-transform: translate(-2px, 2px) scale(0.98) rotate(-0.5deg);
            transform: translate(-2px, 2px) scale(0.98) rotate(-0.5deg);
    opacity: 0.12;
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  75% {
    -webkit-transform: translate(2px, -3px) scale(1.02) rotate(0.8deg);
            transform: translate(2px, -3px) scale(1.02) rotate(0.8deg);
    opacity: 0.18;
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
  100% {
    -webkit-transform: translate(0, 0) scale(1) rotate(0deg);
            transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.1;
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
}

@keyframes glitchBlock {
  0% {
    -webkit-transform: translate(0, 0) scale(1) rotate(0deg);
            transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.1;
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  25% {
    -webkit-transform: translate(3px, -2px) scale(1.05) rotate(1deg);
            transform: translate(3px, -2px) scale(1.05) rotate(1deg);
    opacity: 0.15;
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
  50% {
    -webkit-transform: translate(-2px, 2px) scale(0.98) rotate(-0.5deg);
            transform: translate(-2px, 2px) scale(0.98) rotate(-0.5deg);
    opacity: 0.12;
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
  75% {
    -webkit-transform: translate(2px, -3px) scale(1.02) rotate(0.8deg);
            transform: translate(2px, -3px) scale(1.02) rotate(0.8deg);
    opacity: 0.18;
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
  100% {
    -webkit-transform: translate(0, 0) scale(1) rotate(0deg);
            transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.1;
    -webkit-filter: brightness(1.1);
            filter: brightness(1.1);
  }
}

.hex-codes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.hex-codes .hex-code {
  -webkit-animation: 
      chromaticAberration 5.3s infinite,
      pixelShift 3.7s steps(3) infinite;
          animation: 
      chromaticAberration 5.3s infinite,
      pixelShift 3.7s steps(3) infinite;
  opacity: 0.2;
}

.hex-code {
  position: absolute;
  color: rgba(0, 255, 255, 0.3);
  font-family: monospace;
  font-size: 12px;
  -webkit-animation: hexCodeFloat 4s linear infinite;
          animation: hexCodeFloat 4s linear infinite;
  pointer-events: none;
}

.color-shift-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(0, 255, 255, 0.05) 25%,
    rgba(0, 255, 255, 0.03) 50%,
    transparent 75%
  );
  background-size: 200% 200%;
  -webkit-animation: colorShift 5s ease infinite;
          animation: colorShift 5s ease infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hologram-countdown {
  color: #00ffff;
  text-align: center;
  font-family: monospace;
  text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
  margin: 10px 0;
  position: relative;
  z-index: 1;
}

.hologram-radio {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    -webkit-user-select: none;
            user-select: none;
    position: relative;
    z-index: 1;
}

.hologram-radio-circle {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 221, 255, 0.5);
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}

.hologram-radio-circle.selected {
    background-color: rgba(0, 221, 255, 0.3);
    border-color: rgba(0, 221, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 221, 255, 0.4);
}

.hologram-radio-circle.selected::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: rgba(0, 221, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 221, 255, 0.6);
}

.hologram-input {
    background-color: #001428;
    border: 1px solid rgba(0, 221, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    padding: 8px 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 221, 255, 0.1);
    position: relative;
    z-index: 1;
}

.hologram-input:focus {
    outline: none;
    border-color: rgba(0, 221, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 221, 255, 0.3);
    background-color: #001428;
}

.hologram-input:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #001428;
}

.buttonContainer {
    position: relative !important;
    z-index: 5 !important;
    overflow: visible !important;
    display: flex !important;
    gap: 20px !important;
    margin: 20px auto !important;
    isolation: isolate !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 300px !important;
}

.animated-button {
    background: rgba(0, 255, 255, 0.8) !important;
    border: 2px solid rgba(0, 255, 255, 0.6) !important;
    color: rgba(0, 0, 0, 0.8) !important;
    padding: 8px 8px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    font-family: 'Orbitron', 'Rajdhani', sans-serif !important;
    cursor: pointer !important;
    min-width: 80px !important;
    width: 120px !important;
    height: auto !important;
    position: relative !important;
    overflow: visible !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5) !important;
    box-shadow: 
        0 0 10px rgba(0, 255, 255, 0.4),
        0 0 20px rgba(0, 255, 255, 0.2),
        0 0 30px rgba(0, 255, 255, 0.1),
        inset 0 0 15px rgba(255, 255, 255, 0.3) !important;
    -webkit-animation: neonGlowIntense 3s infinite !important;
            animation: neonGlowIntense 3s infinite !important;
    z-index: 10 !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-backdrop-filter: blur(2px) !important;
            backdrop-filter: blur(2px) !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

@-webkit-keyframes neonGlowIntense {
    0%, 100% {
        border-color: rgba(0, 255, 255, 0.6) !important;
        box-shadow: 
            0 0 10px rgba(0, 255, 255, 0.4),
            0 0 20px rgba(0, 255, 255, 0.2),
            0 0 30px rgba(0, 255, 255, 0.1),
            inset 0 0 15px rgba(255, 255, 255, 0.3) !important;
        background: rgba(0, 255, 255, 0.8) !important;
    }
    50% {
        border-color: rgba(0, 255, 255, 0.8) !important;
        box-shadow: 
            0 0 15px rgba(0, 255, 255, 0.5),
            0 0 30px rgba(0, 255, 255, 0.3),
            0 0 45px rgba(0, 255, 255, 0.2),
            inset 0 0 20px rgba(255, 255, 255, 0.4) !important;
        background: rgba(0, 255, 255, 0.9) !important;
    }
}

@keyframes neonGlowIntense {
    0%, 100% {
        border-color: rgba(0, 255, 255, 0.6) !important;
        box-shadow: 
            0 0 10px rgba(0, 255, 255, 0.4),
            0 0 20px rgba(0, 255, 255, 0.2),
            0 0 30px rgba(0, 255, 255, 0.1),
            inset 0 0 15px rgba(255, 255, 255, 0.3) !important;
        background: rgba(0, 255, 255, 0.8) !important;
    }
    50% {
        border-color: rgba(0, 255, 255, 0.8) !important;
        box-shadow: 
            0 0 15px rgba(0, 255, 255, 0.5),
            0 0 30px rgba(0, 255, 255, 0.3),
            0 0 45px rgba(0, 255, 255, 0.2),
            inset 0 0 20px rgba(255, 255, 255, 0.4) !important;
        background: rgba(0, 255, 255, 0.9) !important;
    }
}

.animated-button:hover, .animated-button:disabled:hover {
    -webkit-transform: translateY(-1px) !important;
            transform: translateY(-1px) !important;
    background: rgba(0, 255, 255, 0.9) !important;
    border-color: rgba(0, 255, 255, 0.8) !important;
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.5),
        0 0 30px rgba(0, 255, 255, 0.3),
        0 0 45px rgba(0, 255, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.4) !important;
    cursor: pointer !important;
    color: #ffffff !important;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.7),
        0 0 10px rgba(255, 255, 255, 0.5) !important;
}

.animated-button:active, .animated-button:disabled:active {
    -webkit-transform: translateY(1px) !important;
            transform: translateY(1px) !important;
    background: rgba(0, 255, 255, 0.8) !important;
    box-shadow: 
        0 0 10px rgba(0, 255, 255, 0.4),
        0 0 20px rgba(0, 255, 255, 0.2),
        0 0 30px rgba(0, 255, 255, 0.1),
        inset 0 0 15px rgba(255, 255, 255, 0.3) !important;
}

.animated-button:disabled {
    opacity: 1 !important;
    cursor: pointer !important;
    background: rgba(0, 255, 255, 0.8) !important;
    border-color: rgba(0, 255, 255, 0.6) !important;
    color: rgba(0, 0, 0, 0.8) !important;
    box-shadow: 
        0 0 10px rgba(0, 255, 255, 0.4),
        0 0 20px rgba(0, 255, 255, 0.2),
        0 0 30px rgba(0, 255, 255, 0.1),
        inset 0 0 15px rgba(255, 255, 255, 0.3) !important;
    -webkit-animation: neonGlowIntense 3s infinite !important;
            animation: neonGlowIntense 3s infinite !important;
    pointer-events: auto !important;
}

.title {
    font-size: 24px !important;
    font-weight: bold !important;
    margin-bottom: 40px !important;
    margin-top: 20px !important;
    color: #00ffff !important;
    font-family: 'Orbitron', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    position: relative !important;
    text-shadow: 
        0 0 10px rgba(0, 255, 255, 0.5),
        0 0 20px rgba(0, 255, 255, 0.3) !important;
    -webkit-animation: titleMorph 10s infinite !important;
            animation: titleMorph 10s infinite !important;
}

.title::before {
    content: attr(data-text);
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    -webkit-filter: blur(1px) !important;
            filter: blur(1px) !important;
    -webkit-transform: translateZ(0) !important;
            transform: translateZ(0) !important;
    -webkit-animation: titleGlitch 10s infinite !important;
            animation: titleGlitch 10s infinite !important;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 255, 255, 0.2) 50%,
        transparent 100%
    ) !important;
    background-size: 200% 100% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

@-webkit-keyframes titleMorph {
    0%, 45%, 100% {
        content: "Create Your Character";
        opacity: 1;
        -webkit-filter: brightness(1);
                filter: brightness(1);
        text-shadow: 
            0 0 10px rgba(0, 255, 255, 0.5),
            0 0 20px rgba(0, 255, 255, 0.3);
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    46%, 47% {
    opacity: 0.7;
        -webkit-filter: brightness(1.5) contrast(2);
                filter: brightness(1.5) contrast(2);
    text-shadow: 
            0 0 15px rgba(0, 255, 255, 0.8),
            0 0 25px rgba(0, 255, 255, 0.6);
        -webkit-transform: translateX(-2px);
                transform: translateX(-2px);
    }
    48%, 52% {
        content: "⟟⋏⎎⟟⋏⟟⏁⊬";
        opacity: 0.9;
        -webkit-filter: brightness(1.2);
                filter: brightness(1.2);
        text-shadow: 
            0 0 12px rgba(0, 255, 255, 0.7),
            0 0 22px rgba(0, 255, 255, 0.5);
        -webkit-transform: translateX(2px);
                transform: translateX(2px);
    }
    53%, 54% {
        opacity: 0.7;
        -webkit-filter: brightness(1.5) contrast(2);
                filter: brightness(1.5) contrast(2);
        text-shadow: 
            0 0 15px rgba(0, 255, 255, 0.8),
            0 0 25px rgba(0, 255, 255, 0.6);
        -webkit-transform: translateX(-1px);
                transform: translateX(-1px);
    }
}

@keyframes titleMorph {
    0%, 45%, 100% {
        content: "Create Your Character";
        opacity: 1;
        -webkit-filter: brightness(1);
                filter: brightness(1);
        text-shadow: 
            0 0 10px rgba(0, 255, 255, 0.5),
            0 0 20px rgba(0, 255, 255, 0.3);
        -webkit-transform: translateX(0);
                transform: translateX(0);
    }
    46%, 47% {
    opacity: 0.7;
        -webkit-filter: brightness(1.5) contrast(2);
                filter: brightness(1.5) contrast(2);
    text-shadow: 
            0 0 15px rgba(0, 255, 255, 0.8),
            0 0 25px rgba(0, 255, 255, 0.6);
        -webkit-transform: translateX(-2px);
                transform: translateX(-2px);
    }
    48%, 52% {
        content: "⟟⋏⎎⟟⋏⟟⏁⊬";
        opacity: 0.9;
        -webkit-filter: brightness(1.2);
                filter: brightness(1.2);
        text-shadow: 
            0 0 12px rgba(0, 255, 255, 0.7),
            0 0 22px rgba(0, 255, 255, 0.5);
        -webkit-transform: translateX(2px);
                transform: translateX(2px);
    }
    53%, 54% {
        opacity: 0.7;
        -webkit-filter: brightness(1.5) contrast(2);
                filter: brightness(1.5) contrast(2);
        text-shadow: 
            0 0 15px rgba(0, 255, 255, 0.8),
            0 0 25px rgba(0, 255, 255, 0.6);
        -webkit-transform: translateX(-1px);
                transform: translateX(-1px);
    }
}

@-webkit-keyframes titleGlitch {
    0%, 45%, 100% {
        opacity: 0;
        -webkit-transform: translateX(0);
                transform: translateX(0);
        content: "Create Your Character";
    }
    46%, 47% {
        opacity: 0.8;
        -webkit-transform: translateX(-2px);
                transform: translateX(-2px);
        content: "⟟⋏⎎⟟⋏⟟⏁⊬";
        -webkit-filter: brightness(1.5) contrast(2);
                filter: brightness(1.5) contrast(2);
    }
    48%, 52% {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
        content: "⎅⟒⌇⏁⟟⋏⊬";
        -webkit-filter: brightness(1.2);
                filter: brightness(1.2);
    }
    53%, 54% {
        opacity: 0.8;
        -webkit-transform: translateX(2px);
                transform: translateX(2px);
        content: "⟒⏁⟒⍀⋏⟟⏁⊬";
        -webkit-filter: brightness(1.5) contrast(2);
                filter: brightness(1.5) contrast(2);
    }
}

@keyframes titleGlitch {
    0%, 45%, 100% {
        opacity: 0;
        -webkit-transform: translateX(0);
                transform: translateX(0);
        content: "Create Your Character";
    }
    46%, 47% {
        opacity: 0.8;
        -webkit-transform: translateX(-2px);
                transform: translateX(-2px);
        content: "⟟⋏⎎⟟⋏⟟⏁⊬";
        -webkit-filter: brightness(1.5) contrast(2);
                filter: brightness(1.5) contrast(2);
    }
    48%, 52% {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0);
        content: "⎅⟒⌇⏁⟟⋏⊬";
        -webkit-filter: brightness(1.2);
                filter: brightness(1.2);
    }
    53%, 54% {
        opacity: 0.8;
        -webkit-transform: translateX(2px);
                transform: translateX(2px);
        content: "⟒⏁⟒⍀⋏⟟⏁⊬";
        -webkit-filter: brightness(1.5) contrast(2);
                filter: brightness(1.5) contrast(2);
    }
} 
/* dark-theme.css */
@font-face {
  font-family: 'RobotRenegades';
  src: url(/static/media/robot-renegades.df879af43cd1d271a9a1.woff) format('woff');
  font-weight: normal;
  font-style: normal;
}

/* Set the body background to pure black */
body {
    background-color: #000000 !important;
    color: #ffffff !important; /* Ensure text is white for readability */
  }
  
  /* Override Ant Design's default background colors */
  .ant-layout {
    background: #000000 !important;
  }
  
  .ant-table {
    background-color: #000000 !important;
    color: #ffffff !important;
  }
  
  .ant-picker {
    background-color: #000000 !important;
    color: #ffffff !important;
  }
  
  /* Customize dropdown menus */
  .ant-dropdown-menu {
    background-color: #000000 !important;
    color: #ffffff !important;
  }
  
  .ant-dropdown-menu-item:hover {
    background-color: #1a1a1a !important; /* Slightly lighter for hover effect */
  }
  
  /* Customize input fields */
  .ant-input,
  .ant-input-password,
  .ant-input-search,
  .ant-input-number {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border-color: #333333 !important;
  }
  
  .ant-input::-webkit-input-placeholder {
    color: #bfbfbf !important;
  }
  
  .ant-input::placeholder {
    color: #bfbfbf !important;
  }
  
  /* Customize buttons */
  /* .ant-btn-primary {
    background-color: #1890ff !important;
    border-color: #1890ff !important;
  }
  
  .ant-btn-primary:hover,
  .ant-btn-primary:focus {
    background-color: #40a9ff !important;
    border-color: #40a9ff !important;
  } */
  
  .ant-btn-primary {
    background: linear-gradient(45deg, #1E90FF, #00BFFF) !important; /* Blue gradient */
    border: none !important; /* Remove border to emphasize gradient */
    color: white !important; /* Ensure text is readable */
    box-shadow: none !important; /* Remove default box-shadow for a cleaner look */
  }
  
  .ant-btn-primary:hover,
  .ant-btn-primary:focus {
    background: linear-gradient(45deg, #1C86EE, #009ACD) !important; /* Slightly darker blue on hover/focus */
    border: none !important; /* Maintain no border */
    color: white !important; /* Maintain text color */
    box-shadow: none !important; /* Remove box-shadow */
  }

  button {
    background: linear-gradient(45deg, #4A90E2, #357ABD) !important; /* Muted blue gradient */
    border: none !important; /* Remove border to emphasize gradient */
    color: white !important; /* Ensure text is readable */
    box-shadow: none !important; /* Remove default box-shadow for a cleaner look */
    transition: background 0.3s ease, -webkit-transform 0.2s ease;
    transition: background 0.3s ease, transform 0.2s ease;
    transition: background 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease; /* Smooth transition for hover effects */
  }

  button:hover,
  button:focus {
    background: linear-gradient(45deg, #357ABD, #2A6FA9) !important; /* Slightly darker muted blue on hover/focus */
    border: none !important; /* Maintain no border */
    color: white !important; /* Maintain text color */
    box-shadow: none !important; /* Remove box-shadow */
    -webkit-transform: translateY(-2px) !important;
            transform: translateY(-2px) !important; /* Slight lift on hover */
  }

  /* Customize table headers */
  .ant-table-thead > tr > th {
    background-color: #000000 !important;
    color: #ffffff !important;
  }
  
  /* Customize table cells */
  .ant-table-tbody > tr > td {
    background-color: #000000 !important;
    color: #ffffff !important;
  }
  
 

  /* Ant Design Calendar */
.ant-fullcalendar {
  background-color: #2c2c2c !important;
  border-radius: 10px !important;
}

.ant-fullcalendar-header {
  background-color: #2c2c2c !important;
  color: #ffffff !important;
}

.ant-fullcalendar-date {
  background-color: #1e1e1e !important;
  color: #ffffff !important;
}

.ant-fullcalendar-selected-date .ant-fullcalendar-date-value {
  background-color: #4A90E2 !important;
  color: #ffffff !important;
}




   .rightSideContainer {
    width: 50%;
    display: flex;
    flex-direction: column; /* Corrected from flexDirection */
    align-items: center; /* Center items horizontally */
    margin-left: 10px;
    margin-top: 20px;
    padding: 10px;
    gap: 20px; /* Added for spacing between items */
  }
  
  .productImage {
    width: 200px;
    height: 150px;
    margin-bottom: 10px; /* Adjusted bottom margin */
  }
  
  .orderSummaryComponent {
    width: 100%; /* Ensure it takes full width of the container */
    margin-top: 10px; /* Adjusted top margin */
  }
  
  .placeOrderButton {
    font-size: 22px;
    background: linear-gradient(45deg, #FFA500, #FF4500);
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px; /* Corrected from borderRadius */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    -webkit-transform: translate(0, 5px);
            transform: translate(0, 5px);
    align-self: stretch; /* Make the button stretch to fit container width */
  }
  

  .placeOrderButton :disabled {
    font-size: 22px;
    /* Grey-scale gradient to maintain the visual effect but indicate non-activity */
    background: linear-gradient(45deg, #CBCBCB, #A8A8A8);
    color: #FFFFFF; /* Keeping the text white for contrast */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    /* Reduced box-shadow intensity to give a "flatter" appearance */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    -webkit-transform: none;
            transform: none; /* Remove the translate to avoid "pressed" look */
    align-self: stretch;
    cursor: not-allowed; /* Cursor indicates the button is disabled */
    pointer-events: none; /* Prevents interaction with the button */
    opacity: 0.7; /* Optional: slightly transparent to indicate it's not active */
  }

/* Stripe Elements Styling for hologram theme */
.stripe-element-wrapper {
  background-color: rgba(0, 20, 40, 0.6);
  border: 1px solid rgba(0, 221, 255, 0.3);
  border-radius: 8px;
  padding: 8px 12px;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 221, 255, 0.1);
  margin-bottom: 0.5em;
}

.stripe-element-wrapper:focus-within {
  border-color: rgba(0, 221, 255, 0.8);
  box-shadow: 0 0 15px rgba(0, 221, 255, 0.3);
}

/* Target Stripe's internal input elements */
.stripe-element-wrapper input,
.stripe-element-wrapper select,
.stripe-element-wrapper iframe {
  background-color: rgba(0, 20, 40, 0.8) !important;
  color: #ffffff !important;
}

/* Style Stripe input fields when focused */
.stripe-element-wrapper input:focus,
.stripe-element-wrapper select:focus {
  border-color: rgba(0, 221, 255, 0.8) !important;
  box-shadow: 0 0 10px rgba(0, 221, 255, 0.3) !important;
  outline: none !important;
}

/* Style Stripe labels and text */
.stripe-element-wrapper label,
.stripe-element-wrapper .Label,
.stripe-element-wrapper p {
  color: #00ffff !important;
  font-family: 'Orbitron', sans-serif !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
}

/* Style Stripe iframe containers */
.stripe-element-wrapper iframe {
  border: none !important;
  background: transparent !important;
}

/* Ensure Stripe elements are visible */
.stripe-element-wrapper * {
  color: #ffffff !important;
}

.stripe-element-wrapper input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.stripe-element-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
  
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	-webkit-filter: inherit;
	        filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	transition:         -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	transition:         transform 0.25s cubic-bezier(0,0,0.25,1), -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

/* To solve Next.js issues source from https://github.com/Leaflet/Leaflet.markercluster/blob/master/dist/MarkerCluster.css */
.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
	transition: opacity 0.3s ease-in, -webkit-transform 0.3s ease-out;
	transition: transform 0.3s ease-out, opacity 0.3s ease-in;
	transition: transform 0.3s ease-out, opacity 0.3s ease-in, -webkit-transform 0.3s ease-out;
}

.leaflet-cluster-spider-leg {
	/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
	transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}
/* To solve Next.js issues source from https://github.com/Leaflet/Leaflet.markercluster/blob/master/dist/MarkerCluster.Default.css */
.marker-cluster-small {
	background-color: rgba(181, 226, 140, 0.6);
	}
.marker-cluster-small div {
	background-color: rgba(110, 204, 57, 0.6);
	}

.marker-cluster-medium {
	background-color: rgba(241, 211, 87, 0.6);
	}
.marker-cluster-medium div {
	background-color: rgba(240, 194, 12, 0.6);
	}

.marker-cluster-large {
	background-color: rgba(253, 156, 115, 0.6);
	}
.marker-cluster-large div {
	background-color: rgba(241, 128, 23, 0.6);
	}

	/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
	background-color: rgb(181, 226, 140);
	}
.leaflet-oldie .marker-cluster-small div {
	background-color: rgb(110, 204, 57);
	}

.leaflet-oldie .marker-cluster-medium {
	background-color: rgb(241, 211, 87);
	}
.leaflet-oldie .marker-cluster-medium div {
	background-color: rgb(240, 194, 12);
	}

.leaflet-oldie .marker-cluster-large {
	background-color: rgb(253, 156, 115);
	}
.leaflet-oldie .marker-cluster-large div {
	background-color: rgb(241, 128, 23);
}

.marker-cluster {
	background-clip: padding-box;
	border-radius: 20px;
	}
.marker-cluster div {
	width: 30px;
	height: 30px;
	margin-left: 5px;
	margin-top: 5px;

	text-align: center;
	border-radius: 15px;
	font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
	}
.marker-cluster span {
	line-height: 30px;
	}
/* ScheduleDemoViewOverrides.css */

/* Override Button background color */
.custom-time-button {
    background-color: transparent !important;
  }
  
  .custom-time-button.selected {
    background: #4A90E2 !important;
    color: #ffffff !important;
    border: none !important;
  }
  
  .custom-time-button.unselected {
    background: #a0a0a0 !important;
    color: #ffffff !important;
    border: 1px solid #a0a0a0 !important;
  }
  
  /* Similarly, override other components as needed */
  
