/* variables */

:root {
  /* --- Sizes --- */
  --site-padding: 20px;
  --container-width: calc(1340px + (var(--site-padding) * 2));
  --section-padding: 50px;
  --header-height: 144px;
  /* --- Colors --- */
  --body-bg-color: #000000;
  --body-text-color: #ffffff;
  --color-gray: #1a1a1a;
  --transition: cubic-bezier(0.53, 0.04, 0.16, 0.98);
  /* --- Fonts --- */
  --font-sans-serif:
    system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Helvetica Neue',
    'Noto Sans', 'Liberation Sans', Arial, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --ff-heading: 'Inter', var(--font-sans-serif);
  --ff-body: 'Inter', var(--font-sans-serif);
  --heading-font-weight: 600;
  --body-font-weight: 400;
  --fs-base: 16px;
  --fs-h1: 1.25em;
  --fs-h2: 1.2em;
  --fs-h3: 1.125em;
  --fs-h4: 1em;
  --fs-h5: 0.9em;
  --fs-h6: 0.86em;
}

#CybotCookiebotDialog,
#CybotCookiebotDialogBody,
#CybotCookiebotDialogBodyContent,
#CybotCookiebotDialogBodyContentText {
  contain: layout style paint;
}

#site-wrapper {
  overflow: clip;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.syndct-app-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
}

.syndct-app-btn img {
  position: relative;
  z-index: 1;
}

@media (hover: hover) {
  .syndct-app-btn:hover > span {
    transform: translateY(-10px) rotate(5deg);
  }

  .syndct-app-btn:hover > span:before {
    border-color: rgba(4, 254, 7, 0.23);
  }

  .syndct-app-btn:hover > span:after {
    opacity: 1;
  }
}

.syndct-app-btn > span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: inherit;
  padding: 4px 16px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(
    254.52deg,
    rgba(57, 255, 12, 0.2) 6.19%,
    rgba(13, 71, 0, 0.29) 100.82%
  );
  transition:
    background-color 0.35s ease,
    transform 0.35s ease;
}

.syndct-app-btn > span:before {
  content: '';
  display: block;
  position: absolute;
  inset: 0px;
  border: 1px solid rgba(153, 153, 153, 0.23);
  border-radius: inherit;
  pointer-events: none;
}

.syndct-app-btn > span:after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    254.52deg,
    rgba(57, 255, 12, 0.399) 6.19%,
    rgba(13, 71, 0, 0.3895) 100.82%
  );
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
/* --- Syndicate Custom Select Block --- */

.sndct-select-block {
  margin: 20px 0;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.wp-block-sndct-custom-select {
  width: 100%;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wp-block-sndct-custom-select:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

.wp-block-sndct-custom-select:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(57, 255, 12, 0.5);
  box-shadow: 0 0 0 2px rgba(57, 255, 12, 0.1);
}

.wp-block-sndct-custom-select option {
  background-color: #101010;
  color: #fff;
  padding: 8px;
}

.wp-block-sndct-custom-select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
