/* Set first section to have padding-top equal to navbar height */
.section-first {
  margin-top: 128px;
}

.card-team {
  border-radius: 16px;
  background: var(--bg-l2, #211838);
}

/* Set first section to have padding-top equal to navbar height */

#mc_embed_signup form {
  margin: 0 !important;
}

#mc_embed_signup {
  clear: left;
  font-family: "Poppins", sans-serif;
}

#mc_embed_signup .mc-field-group input {
  padding: 6px 16px;
  border-radius: 24px;
  border: 2px solid rgba(253, 248, 255, 0.72);
  font-size: 12px;
  line-height: 24px;
  width: 100% !important;
  background: transparent;
}

#mc_embed_signup .mc-field-group input:focus-visible {
  border: 2px solid #ac9fff !important;
}

#mc_embed_signup .submit-button {
  border-radius: 16px;
  transition: all 0.23s ease-in-out 0s;
  width: fit-content;
  width: -moz-fit-content;
}

#mc_embed_signup .mc-field-group {
  clear: left;
  position: relative;
  width: 100%;
  min-height: auto;
  display: grid;
}

#mc_embed_signup .mc-field-group label {
  padding-left: 24px;
  font-style: normal;
  font-weight: 500;
  font-size: 9px;
  line-height: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0 !important;
  color: rgba(253, 248, 255, 0.66);
}

#mc_embed_signup .mc-field-group .mce_inline_error {
  background-color: transparent !important;
  font-size: 12px !important;
}

#mc-embedded-subscribe {
  margin: 0;
}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  margin: 0 !important;
  padding-left: 16px;
  color: #fe8a7e;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 166.667% */
  letter-spacing: 0.25px;
}

#mce-success-response {
  margin: 0;
  padding: 8px;
  font-weight: bold;
  float: left;
  z-index: 1;
  width: 100%;
  font-size: 12px;
  color: #55bf85;
  /* Common Typescale/Body/Small/Default */
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 166.667% */
  letter-spacing: 0.25px;
}

#mc_embed_signup div#mce-responses {
  float: left;
  padding: 0;
  overflow: hidden;
  width: 100%;
  margin: 0;
  clear: both;
}

.mce_inline_error {
  background-color: transparent !important;
  font-size: 12px !important;
}

#mc_embed_signup input.mce_inline_error {
  border: 2px solid #fe8a7e !important;
}

* {
  cursor: url('/src/img/custom-logo.png'), auto !important;
}

@keyframes shake {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(-10deg); }
  20% { transform: rotate(10deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
  50% { transform: rotate(-10deg); }
  60% { transform: rotate(10deg); }
  70% { transform: rotate(-10deg); }
  80% { transform: rotate(10deg); }
  90% { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

a, button, [role="button"], input[type="submit"], input[type="button"], input[type="reset"] {
  cursor: url('/src/img/pointer-cursor.png'), pointer !important;
}

/* Remove the hover animation from buttons */
a:hover, button:hover, [role="button"]:hover, input[type="submit"]:hover, input[type="button"]:hover, input[type="reset"]:hover {
  animation: none;
}

/* Add a custom animated cursor class that we'll use with JavaScript */
.cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 9999;
  display: none;
  background-image: url('/src/img/pointer-cursor.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.cursor.active {
  display: block;
}

.cursor.shake {
  animation: shake 1s ease infinite;
}

.cursor.pulse {
  animation: pulse 1s ease infinite;
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(-30px);
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
  transition-duration: 300ms;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.exit {
  transition-duration: 150ms;
  opacity: 0;
  transform: translateY(-15px);
}

.reveal.out-of-view {
  opacity: 0;
  transform: translateY(-30px);
  transition-duration: 150ms;
}

/* Different delay classes for staggered animations */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }
.delay-700 { transition-delay: 700ms; }
.delay-800 { transition-delay: 800ms; }
.delay-900 { transition-delay: 900ms; }
.delay-1000 { transition-delay: 1000ms; }

/* Enhanced hover effects for cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Typography enhancements */
.text-gradient {
  background: linear-gradient(90deg, #FF8C42 0%, #FFB347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Button enhancements */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon svg {
  transform: translateX(3px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(24, 27, 7, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 140, 66, 0.5);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 140, 66, 0.8);
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid #FF8C42;
  outline-offset: 2px;
}

/* Custom selection color */
::selection {
  background: rgba(255, 140, 66, 0.3);
  color: inherit;
}

.icon-row {
  grid-template-columns: 1fr minmax(0px, 24px);
}

.iframe-state {
  height: 320px;
  width: 720px;
 }

@media (max-width: 960px) {
  .iframe-state {
    height: calc(100vh - 48px);
    width: calc(100vw - 48px);
   }
}
