#fw-section-custom-html-8ac069fc-2f5a-4085-94ee-8df0ecce7da4 {

/* 1. Container */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* 2. Track for slides */
.carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.carousel__track::-webkit-scrollbar {
  display: none;
}

/* 3. Individual slides */
.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}
.carousel__slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 4. Nav buttons */
.carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,0.4);
  color: white;
  font-size: 2rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  opacity: 0.7;
  transition: opacity .2s;
}
.carousel__nav:hover {
  opacity: 1;
}
.carousel__nav--prev { left: 1rem; }
.carousel__nav--next { right: 1rem; }

}





#fw-section-donations-1687100087 {

.donations__inner {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

.donations__inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.radio-button {
  border-radius: 1rem;
}

.radio-button:hover {
  box-shadow: var(--style-raise-shadow);
  transform: var(--style-raise-transform);
  transition: var(--style-raise-transition);
}

.button.button--primary.button--expand:hover {
  background-color: var(--btn-glow-color);
  box-shadow: var(--btn-glow-shadow);
  transform: var(--btn-glow-transform);
  transition: var(--btn-glow-transition);
}
.donations .donations__inner {
  display: flex;
  align-items: center;
  justify-content: center;  /* ← centers the flex items as a group */
  gap: 1.5rem;              /* space between image & form */
  max-width: 80rem;         /* optional: cap the width of the group */
  margin: 0 auto;           /* centers the group within its parent */
}

/* pull in your image on the left */
.donations .donations__inner::before {
  content: "";
  display: block;
  flex: none;
  width: 30rem;  /* tweak as needed */
  height: 30rem; /* tweak as needed */
  background: url("https://imgproxy.fourthwall.com/H7vst3XDHE-5JX216sxNBnEglADPzbn4peDSm8nhkGY/w:1400/sm:1/enc/Yjc2Mzk4MjZiNTQx/MGYxN2F7R5DaFaKj/p29-GJdK1b0D1gqS/PBA1fDNBtHm1LDpi/OJf1rZTkpXJbMU3j/2X_fhOqpgu-PuNfm/8hBGn6VHOhpGqhh_/JDHLW9Jusn0w3e1k/BGO1vCCt0EdqZtfq/CvLuDOTQfXstnr4z/DHte4EDlencyHLYN/C6Zp-Sz7zoYsYg87/2nKr-fNlXWhv1Dny/ojGhwBL9SvKUVHHy/8ADo68J1AbmbAz3J/R14GGDtNpPXiReZg.webp") 
              no-repeat center center;
  background-size: contain;
  border-radius: 2rem;
}

/* hide the image on portrait‐oriented/mobile screens */
@media (max-width: 600px), (orientation: portrait) {
  .donations .donations__inner::before {
    display: none;
    /* or content: none; if you prefer */
  }
}

}
#fw-section-header {
--color-primary: #ff86bd;
--color-primary-rgb: 255, 134, 189;
--color-background: #f2e9d9;
--color-background-rgb: 242, 233, 217;
--color-on-primary: #000000;
--color-on-primary-rgb: 0, 0, 0;
--color-on-background: #181818;
--color-on-background-rgb: 24, 24, 24;
--color-product-image-background: #181818;
--color-background-brightness: 234;
background-color: var(--color-background);
color: var(--color-on-background);
.header {
  height: 2rem;
  background-color: #181818;
}

.header__nav .header__list-item {
  top: 0.13rem;
}

.header__icons .header__list-item {
  top: 0.1rem;
}

.header__grid {
background-color: rgba(242, 233, 217, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.8rem;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    max-width: 100vw;
    height: 2rem;
    position: fixed;
    top: -0.2rem;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
} 

.header__logo-container {
  height: 1.4rem;
}

.header__logo-image {
  height: 1.4rem;
  align-items: center;
}

.header__list svg {
    height: 0.8rem;
}

.header__link-icon {
  color: transparent;
  width: 0;
}

.header__logo-container  { order: 1; }
.header__nav-container   { order: 2; }
.header__icons           { order: 3; }


.header__icons .header__list.list--horizontal {
  display: flex ;
  align-items: center ;
}

.header__icons .header__list.list--horizontal > li:nth-child(1) {
  order: 3 
  ;  
}
.header__icons .header__list.list--horizontal > li:nth-child(2) {
  order: 1 ; 
}
.header__icons .header__list.list--horizontal > li:nth-child(3) {
  order: 2 ; 
}



/* 1) Make the dropdown inner UL a wrapping grid */
.header__dropdown-inner {
  gap: 0.5rem !important;
  padding: 0.5rem !important;
  max-height: none;
}

/* 2) Style each item as a centered flex-cell (flag + code) */
.header__dropdown-inner 
  a.header__dropdown-link {
  display: flex !important;
  align-items: center !important;
  justify-content: left !important;
  gap: 0.3rem !important;
  text-decoration: none !important;
  padding: 0 !important;
}

/* 3) Force every injected flag <img> to fill its circle */
.header__dropdown-inner 
  a.header__dropdown-link img.currency-flag--dropdown {
  width: 1rem !important;      /* match your cell min-width */
  height: 1rem !important;
  border-radius: 50% !important;
  object-fit: cover !important;   /* fill the circle without distortion */
}

/* 4) Adjust the code label under the flag */
.header__dropdown-inner 
  a.header__dropdown-link .currency-code {
  font-size: 0.8rem;
  color: var(--color-text) !important;
}



}
#fw-section-custom-html-9b72e605-eb8f-46b2-8f61-ae66a76aed89 {
--color-primary: #ffd580;
--color-primary-rgb: 255, 213, 128;
--color-background: #181818;
--color-background-rgb: 24, 24, 24;
--color-on-primary: #181818;
--color-on-primary-rgb: 24, 24, 24;
--color-on-background: #f2e9d9;
--color-on-background-rgb: 242, 233, 217;
--color-product-image-background: #181818;
--color-background-brightness: 24;
background-color: var(--color-background);
color: var(--color-on-background);
.hero-banner {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out,
              transform 1s ease-out;
}

/* when JS adds .visible, it fades & slides up */
.hero-banner.visible {
  opacity: 1;
  transform: translateY(0);
}
 


/* Hero Banner */
.hero-banner.minimal {
  background: transparent;
  padding: 1rem;
  text-align: center;
  color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.hero-content h1 {
  margin-bottom: 0.5rem;
}
.hero-content p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--color-light);
}
.hero-buttons .btn {
  display: inline-block;
  margin: 0 0.3rem;
  padding: 0.5rem 1.2rem;
  border-radius: 9999px;  
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.btn.primary {
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-dark);
}
.btn.primary:hover {
  background: var(--color-primary);
}
.btn.secondary {
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}
.btn.secondary:hover {
  background: var(--color-primary);
  color: var(--color-dark);
}

/* Twitch Embed Layout & Fade */
/* hide completely until .visible is toggled */
.twitch-container {
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 1rem 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.twitch-container.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.videos-container {
  flex: 1 1 65%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
#live-info {
  flex: 0 0 300px;
  max-width: 350px;
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
#live-info.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Embedded player frames */
#twitch-embed-andilippi,
#twitch-embed-andistone {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 0 20px rgba(145, 70, 255, 0.25);
  transition: box-shadow 0.3s ease;
  position: relative;
}
#twitch-embed-andilippi iframe,
#twitch-embed-andistone iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
  box-shadow: 0 0 30px rgba(145, 70, 255, 0.5);
}

/* Watch Now / Interact buttons */
#live-info .btn {
  display: block;
  margin: 10px 0;
  padding: 10px 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}
#watch-now-btn {
  background: #9146FF;
  color: #fff;
}
#live-info a.btn:not(#watch-now-btn) {
  background: #444;
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .twitch-container {
    flex-direction: column;
    gap: 0.5rem;
  }
  #live-info {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

}

#fw-section-custom-html-0d2e1f03-3abd-44f0-809a-202d7bb63ffa {

#commissions-intro {
  background: #141414;
  padding: 3rem 1rem;
  text-align: center;
  border-radius: 24px;
}

#commissions-intro h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

#commissions-intro .subhead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.5rem;
}

#commissions-intro .features {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0 0 2rem;
  padding: 0;
}

/* Primary buttons */
#commissions-intro .btn {
  display: inline-block;
  background: #e94e77;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 1.5rem;
}

/* More-info button now its own block */
#commissions-intro .btn-secondary {
  display: block;
  margin: 0 auto 1rem;
  background: transparent;
  border: 2px solid #e94e77;
  color: #e94e77;
}

/* Place “Get Started” beneath the More-info toggle */
#commissions-intro #more-info-btn + #get-started-btn {
  display: block;
  margin: 0 auto;
}

/* Animated detail block */
/* start hidden with zero height + invisible */
#more-info-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity    0.3s ease;
}

/* when open, expand & fade in */
#more-info-content.open {
  max-height: 1000px; /* big enough for full content */
  opacity: 1;
  transition:
    max-height 0.6s ease,
    opacity    0.5s ease;
}

/* Detail block typography */
#more-info-content {
  text-align: left;
  max-width: 600px;
  margin: 1.5rem auto;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

#more-info-content h4 {
  margin-top: 1.5rem;
}

#more-info-content ol {
  text-align: left;
  margin: 0.5rem 0 1rem 1.25rem;
}

/* Hidden iframe container */
#commission-form-container {
  display: none;
  margin-top: 2rem;
}

}
#fw-section-tiers-1687096466 {

/* TIER BOX HIDDEN */
.tiers__inner {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

/* TIER BOX SHOW */
.tiers__inner.visible {
  opacity: 1;
  transform: translateY(0);
}

/* TIER BOX HOVER */
.tiers__tier:hover {
  box-shadow: 0 0 15px #ffd58040;
  transform: translateY(-4px);
  /* only animate these two, with no delay from above: */
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* BUTTON GLOW */
.button.button--primary.button--small.button--expand:hover {
  background-color: #ffcc66 !important;
  box-shadow: 0 0 10px #ffd580aa;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

}















#fw-section-custom-html-1dedb567-ad35-4685-9f78-f5da5dca0783 {

#doras-blog-rss-feed, .blog-header {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out,
              transform 1s ease-out;
}

/* when JS adds .visible, it fades & slides up */
#doras-blog-rss-feed.visible,
.blog-header.visible{
  opacity: 1;
  transform: translateY(0);
}
}

#fw-section-recent-videos-1fcccee7-cfad-4fde-9e39-72e025c065ac {

/*--------------------------------------
  Wrapper needs a positioning context + fade‑in
--------------------------------------*/
.recent-videos__grid {
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.recent-videos__grid.visible {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------
  1. Horizontal scroll container
--------------------------------------*/
.container.wrapper .recent-videos__grid .grid.grid--waffle {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 2rem 0;

  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

  cursor: grab;
  user-select: none;

  scrollbar-width: none;
}

.container.wrapper .recent-videos__grid .grid.grid--waffle::-webkit-scrollbar {
  display: none;
}

/* Add space at beginning and end */
.container.wrapper .recent-videos__grid .grid.grid--waffle::before,
.container.wrapper .recent-videos__grid .grid.grid--waffle::after {
  content: "";
  flex: 0 0 calc(50% - 20%);
  min-width: calc(50% - 20%);
}

/* Grab‑and‑drag cursor state */
.container.wrapper .recent-videos__grid .grid.grid--waffle:active {
  cursor: grabbing;
}

/*--------------------------------------
  2. Slides
--------------------------------------*/
.container.wrapper .recent-videos__grid .grid.grid--waffle > .grid__column {
  flex: 0 0 40%;
  min-width: 40%;
  scroll-snap-align: center;

  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: #ffd5802c solid 1px;
  background: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* only the centered slide gets the glow */
.container.wrapper .recent-videos__grid .grid.grid--waffle > .grid__column.in-center {
  transform: translateY(-10px);
  box-shadow: 0 0 12px rgba(255, 213, 128, 0.2);
  z-index: 2;
}

/*--------------------------------------
  3. Thumbnails + overlays
--------------------------------------*/
.container.wrapper .recent-videos__grid .grid.grid--waffle > .grid__column img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;

  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

/* subtle dark overlay on hover/focus */
.container.wrapper .recent-videos__grid .grid.grid--waffle > .grid__column:hover::after,
.container.wrapper .recent-videos__grid .grid.grid--waffle > .grid__column:focus-within::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  border-radius: 16px;
}



/*--------------------------------------
  5. Titles & meta
--------------------------------------*/
.container.wrapper .recent-videos__grid .grid.grid--waffle > .grid__column a,
.container.wrapper .recent-videos__grid .grid.grid--waffle > .grid__column h3,
.container.wrapper .recent-videos__grid .grid.grid--waffle > .grid__column p {
  margin: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  flex-grow: 1;
}
.container.wrapper .recent-videos__grid .grid.grid--waffle > .grid__column a:hover,
.container.wrapper .recent-videos__grid .grid.grid--waffle > .grid__column h3:hover,
.container.wrapper .recent-videos__grid .grid.grid--waffle > .grid__column p:hover {
  text-decoration: underline;
}

/*--------------------------------------
  6. Responsive tweaks
--------------------------------------*/
@media (max-width: 600px) {
  .container.wrapper .recent-videos__grid .grid.grid--waffle > .grid__column {
    flex: 0 0 80%;
    min-width: 80%;
  }
}
@media (max-width: 400px) {
  .container.wrapper .recent-videos__grid .grid.grid--waffle > .grid__column {
    flex: 0 0 90%;
    min-width: 90%;
  }
}


/*-------------------------------------------------
  Tighten up the YouTube slide “cards”
-------------------------------------------------*/
/* 1) Make the column itself a snug flex‑box with a bit of padding */
.container.wrapper
  .recent-videos__grid
  .grid.grid--waffle
  > .grid__column {
  display: inline-flex;            /* shrink‑wrap the content */
  flex-direction: column;
  padding: 0.5rem;                 /* small inset */
  background: transparent;
}

/* 2) Remove the big title margins and shrink the gap to the thumb */
.container.wrapper
  .recent-videos__grid
  .grid.grid--waffle
  > .grid__column h3,
.container.wrapper
  .recent-videos__grid
  .grid.grid--waffle
  > .grid__column a,
.container.wrapper
  .recent-videos__grid
  .grid.grid--waffle
  > .grid__column p {
  margin: 0.5rem 0 0;               /* only vertical margin, no left/right */
  font-size: 0.95rem;              /* optionally slightly smaller */
}

/* 3) Shrink the gap between thumbnail and title */
.container.wrapper
  .recent-videos__grid
  .grid.grid--waffle
  > .grid__column img {
  margin-bottom: 0.5rem;
}

/* 5) (Optional) if you want just enough width for content, reduce flex-basis */
@media (min-width: 800px) {
  .container.wrapper
    .recent-videos__grid
    .grid.grid--waffle
    > .grid__column {
    flex: 0 0 auto;               /* auto shrink‑wrap rather than fixed 40% */
  }
}


}
#fw-section-donations-0 {

.donations__inner {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

.donations__inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.radio-button {
  border-radius: 1rem;
}

.radio-button:hover {
  box-shadow: var(--style-raise-shadow);
  transform: var(--style-raise-transform);
  transition: var(--style-raise-transition);
}

.button.button--primary.button--expand:hover {
  background-color: var(--btn-glow-color);
  box-shadow: var(--btn-glow-shadow);
  transform: var(--btn-glow-transform);
  transition: var(--btn-glow-transition);
}
.donations .donations__inner {
  display: flex;
  align-items: center;
  justify-content: center;  /* ← centers the flex items as a group */
  gap: 1.5rem;              /* space between image & form */
  max-width: 80rem;         /* optional: cap the width of the group */
  margin: 0 auto;           /* centers the group within its parent */
}

/* pull in your image on the left */
.donations .donations__inner::before {
  content: "";
  display: block;
  flex: none;
  width: 30rem;  /* tweak as needed */
  height: 30rem; /* tweak as needed */
  background: url("https://imgproxy.fourthwall.com/H7vst3XDHE-5JX216sxNBnEglADPzbn4peDSm8nhkGY/w:1400/sm:1/enc/Yjc2Mzk4MjZiNTQx/MGYxN2F7R5DaFaKj/p29-GJdK1b0D1gqS/PBA1fDNBtHm1LDpi/OJf1rZTkpXJbMU3j/2X_fhOqpgu-PuNfm/8hBGn6VHOhpGqhh_/JDHLW9Jusn0w3e1k/BGO1vCCt0EdqZtfq/CvLuDOTQfXstnr4z/DHte4EDlencyHLYN/C6Zp-Sz7zoYsYg87/2nKr-fNlXWhv1Dny/ojGhwBL9SvKUVHHy/8ADo68J1AbmbAz3J/R14GGDtNpPXiReZg.webp") 
              no-repeat center center;
  background-size: contain;
  border-radius: 2rem;
}

/* hide the image on portrait‐oriented/mobile screens */
@media (max-width: 600px), (orientation: portrait) {
  .donations .donations__inner::before {
    display: none;
    /* or content: none; if you prefer */
  }
}

}