/*
 Theme Name:   Twin Cities Film Fest - Campaign DEV
 Theme URI:    https://generatepress.com
 Description:  TCFF - CHILD theme of GeneratePress | DEV VERSION with Private Screening + Campaign Email System
 Author:       Noah Morrow
 Author URI:   https://clubhausagency.com
 Template:     generatepress
 Version:      0.3-dev
*/
:root {
  --primary: #651973;
  --movie-page-border: 7px solid #651973;
}

p {
  line-height:150%;
  font-weight:400;
  font-size:16px;
}

body h5 {
  font-size:20px;
  line-height:120%;
  margin-top:0px;
  font-weight:600;
}

body h4 {
  font-size:24px;
  line-height:120%;
  margin-top:0px;
}

.is-style-banner-paragraph,
.banner-paragraph {
  font-size: 28px;
  line-height: 150%;
}

.is-style-lead-paragraph,
.lead-paragraph {
  font-size: 20px;
  line-height: 150%;
}

.is-style-small-paragraph,
.small-paragraph {
  font-size: 14px;
  line-height: 150%;
}

.inside-header {
  padding: 9px 40px;
}

.wc-block-components-address-form__address_2-toggle {
  color: black;
}
#generate-slideout-menu {
  background:black;
}
#generate-slideout-menu.main-navigation ul ul.toggled-on {
  background:var(--tcff-purple-dark);
}
li a {
  text-decoration: none;
}

.form_top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
}

.fest-filter-nav {
  display: flex;
  gap: 10px;
}

body .fc-icon {
  line-height:.8;
}

body .fc select {
  background: #eaeaea;
  border-radius: 8px;
}

.fc .fc-list-sticky .fc-list-day>* {
  z-index:2;
}

body .fc .fc-list-event-title a {
  font-weight:600;
}

.fest-filter-nav a {
  padding: 8px 16px;
  color: white;
  background: var(--tiff-grey);
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
}

.fest-filter-nav a:hover {
  background: var(--tcff-grey-dark);
  color: white;
  text-decoration: none;
}

.festival-filter-title {
  display: flex;
  gap: 10px;
  align-items: self-end;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.festival-filter-title h1 {
  margin: 0px;
  font-family: Open Sans, sans-serif;
  font-weight: 600;
  color: var(--tcff-purple-dark)
}

.festival-filter-title span {
  padding-bottom: 2px;
}

.testimonial-slider .owl-stage {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
}

.sticky-enabled .main-navigation.is_stuck {
  background:black;
}

.testimonial-slider .owl-carousel,
.testimonial-slider .owl-item div {
  height: 100%;
}

.testimonial-slider .owl-item div {
  display: flex;
  flex-direction: column;
}

.testimonial-slider .owl-item div p:first-child {
  flex-grow: 1;
}


.testimonial-slider .owl-nav {
  position: absolute;
    top: 0;
    /* transform: translate(-50%, -50%); */
    width: 100%;
    height: 100%;
}

.testimonial-slider .owl-prev {
  width: 20px;
  position: absolute;
  top: 40%;
  left: -25px;
}

.testimonial-slider .owl-next {
  width: 20px;
  position: absolute;
  top: 40%;
  right: -25px;
}

.owl-carousel .owl-stage-outer {
  z-index:2;
}
/* START -- fix generatepress's weird use of fullwidth. gp CSS was targeting ALL alignwide classes, rather than just the direct child of the wrapper*/

.entry-content .alignwide,
body:not(.no-sidebar) .entry-content .alignfull {
  margin-left: unset !Important;
  width: 100% !important;
  max-width: 100% !Important;
}

.inner-movie-wrapper {
  margin:0px !Important;
}
.inner-movie-wrapper  > div{
  padding:0px !Important;

}

.synopsis {
  padding-right:8px;
}

@media (max-width: 768px) {

  

  .radio-toolbar {
    padding-bottom:8px;
  }
  .container .site-content .content-area {
    width: 100%;
  }

  .mobile-hide {
    display: none;
  }

  body .fc .fc-toolbar-title {
    font-size: 16px;
  }
}

.editor-styles-wrapper .block-editor-block-list__layout.alignfull>div {
  max-width: 100%;
}
/* -- fullwidth does nto take into account global body padding. in this case, 16px. Because of this we must modify the margins to inlclude this padding devided by 2 (16px padding set, so 8px added to each). */

.no-sidebar .entry-content .alignfull {
  margin-right: unset;
  margin-left: unset;
}

.no-sidebar .entry-content>.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
}

@media screen and (min-width: 769px) {
.no-sidebar .entry-content>.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2 + 8px);
  margin-right: calc(-100vw / 2 + 100% / 2 + 8px);
}
}
/* END -- fix generatepress's weird use of fullwidth*/

.overflow-hidden {
  overflow: hidden;
}

ol,
ul {
  padding-left: 30px;
}

.gb-grid-wrapper {
  margin: auto;
}

.site-content {
  flex-wrap: wrap;
}

.radio-toolbar {
  display: flex;
  gap: 10px;
  overflow-x: auto;

}

.radio-toolbar input[type="radio"] {
  opacity: 0;
  position: fixed;
  width: 0;
}

.radio-toolbar label {
  padding: 3px 15px;
  font-family: sans-serif, Arial;
  font-size: 16px;
  border: 2px solid var(--tiff-grey);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.radio-toolbar input[type="radio"]:checked+label {
  background-color: var(--tcff-purple);
  border-color: var(--tcff-purple);
  color: white;
}


.radio-toolbar input[type="radio"]:focus+label {
  border: 2px dashed #444;
}


.radio-toolbar label:hover {
  background-color: var(--tcff-purple-light);
  border-color: var(--tcff-purple-light);
  color: white;
}

.filter_form {
  width: 100%;
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.movie-tiles {
  margin-top: 20px;
}

.form_wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.form_wrap select {
  max-width: 380px;
}

.form_wrap>* {
  flex-grow: 1;
}

.form_wrap input,
.form_wrap select {
  border-radius: 8px;
}

.form_wrap select {
  background: #eaeaea;
}

.movie-seach input {
  width: 100%;
}

.movie-type {
  display: flex;
  flex-wrap: wrap;
  max-width: 255px;
  gap: 5px;
}

.movie-type>div {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 2px;
  font-size: 15px;
  border: 1px solid gray;
  flex-grow: 1;
}

.movie-type>div.active {
  color: rgb(29, 5, 43);
  background: rgb(228, 187, 255);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(180deg);
  }
}

.loading-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 400px;
  margin-bottom: 500px;
}

.loading-section img {
  max-width: 155px;
  display: block;
  margin: auto;
  animation: rotate 2s linear infinite;
}

.film-view-type {
  margin-bottom: 8px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  padding: 5px 10px;
  border: 2px solid var(--tiff-grey);
  border-radius: 20px;
  width: fit-content;
  font-weight: 600;
  background: white;
}
.film-view-type-wrapper {
  display: flex;
    gap: 8px;
}

body .swiper-wrapper {
  flex-wrap:nowrap !important;
}


.searchandfilter > div {
  display:flex;
  justify-content: center;
  align-items: center;
}

.movie-tiles {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-left: 0px;
  row-gap:32px;
  justify-content:flex-start;
}

.movie-tiles .stream-item {
  width: calc(33.33% - 16px);
  padding-top: 10px;
  border-top: 7px solid var(--tcff-purple);
}


.stream-item .movie-still {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center center;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.stream-item .movie-still .indicator {
  height: 100%;
  background: purple;
  width: 50px;
  position: absolute;
  transition: .2s;
  right: -50px;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

body .missing-still {
  background-size: contain !important;
    background-repeat: no-repeat;
}


.indicator:after {
  font-family: FontAwesome;
  content: "\f061";
  color: white;
  font-size: 28px;
  font-weight: 100;
  color: #d8a8ff;
}

.stream-item .movie-still:hover .indicator {
  right: 0px;
}

.stream-item .list-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 8px;
  margin-top: 16px;
  position: relative;
  display: block;
  font-family: Open Sans, sans-serif;
}
.list-title a {
  color: var(--tcff-purple);
  width:100%;
  display:block;
}
.genre-length {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.list-title a:hover {
  color:var(--tcff-purple);
}

.genre-length .length {
  margin: 0px;
  padding: 5px 10px;
  border: 2px solid var(--tcff-purple);
  font-size: 14px;
  font-weight: 600;
  border-radius: 19px;
  background: var(--tcff-purple-light);
  color: white;
  white-space: nowrap;
}

.genre-length .genre {
  background-color: var(--tcff-grey-light);
  color: black;
    padding: 5px 10px;
  border-radius: 20px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--tiff-grey);
  white-space: nowrap;
  overflow: hidden;
}


.ticket-price {
  top: 0px;
    left: 0;
    height: 100%;
    display: flex
;
    background: #1a071d7d;
    position: absolute;
    min-width: 44px;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.date-time {
  background: var(--tcff-purple);
  color: white;
  padding: 8px 16px;
  padding-left:50px;
  position:relative;
  display: block;
  font-weight: 600;
  width: fit-content;
  font-size: 16px;
  border-radius: 8px;
}

.date-time:hover {
  background: var(--tcff-purple-dark);
  color: white;
  text-decoration: none;
}

.movie-desc {
  margin-top: 8px;
}
.item-tickets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


.item-streaming-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.item-purchase-wrapper {
  flex-direction: column;
  display: flex;
  gap: 16px;
  margin-top:16px;
}

.movie-desc p {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 0px;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.movie-seach {
  display: flex;
}



@media screen and (max-width: 1150px) {
  .movie-tiles .stream-item {
    width: calc(50% - 16px);
  }
}

@media screen and (max-width: 900px) {
  .movie-tiles .stream-item {
    width: 100%;
  }
}

.featured {
  position:relative;
}


#more_posts,
#loading_gif {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 24px;
  font-weight:600;
  background: var(--primary);
  padding: 8px 16px;
  color: white;
  max-width: fit-content;
  margin: auto;
  cursor: pointer;
  border-radius:8px;
  line-height: 150%;
}

#more_posts:hover {
  background-color: var(--tcff-purple-dark);
}

.stream-price {
  display: flex;
  width: auto;
  max-width: fit-content;
  padding: 8px 16px;
  background: var(--tiff-grey);
  color: white;
  border-radius: 8px;
  min-width: 72px;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
}

.stream-price:hover {
  background: var(--tcff-grey-dark);
  color: white;
  text-decoration: none;
}

/* // ------------- BEGIN SINGLE FILM PAGE STYLING  */

.movie-nav {
  padding: 8px 16px;
  background: var(--tcff-purple);
  text-align: center;
  border-radius: 8px;
  margin-left: 25px;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  margin-top: 20px !important;
  font-weight: bold;
  color: white;
  margin-top: 120px;
  font-size:20px;
  font-weight:600;
  line-height:150%;
}

.movie-nav:hover {
  background:var(--tcff-purple-dark)
}

.movie-header {
  margin-top: 0px;
  background-size: auto;
  background-size: 65%;
  background-position: center;
  background-position: 100% 30%;
  display: flex;
  position: relative;
  min-height: 540px;
  height: auto;
  overflow: hidden;
  background-repeat: no-repeat;

}

.synopsis p {
  margin: 0 0 8px;
}

.movie-header:after {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 17%) 64%, rgb(183 183 183 / 45%) 72%, rgb(255 255 255 / 79%) 86%, rgb(255 255 255) 100%);
}

.single-movie-container {
  max-width: 1400px;
  margin: auto !important;
}

.purchase-wrapper {
  margin-bottom: -2px;
  background: white;
  width: 100%;
  margin-top: 0px;
  padding-bottom: 20px;

}

.inner-purchase-wrapper {
  max-width: 1100px;
  margin: auto;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: var(--movie-page-border);
}
.inner-purchase-wrapper  h5 {
  margin-bottom:8px;
  
}

.movie-sponsors h3 {
  color: black;
  position: relative;
  overflow: hidden;
  font-weight: bold;
}

.movie-sponsors {
  border-top: var(--movie-page-border);
  margin-top: 16px;
  padding-top:16px;
}


.inner-purchase-wrapper>div {
  justify-content: flex-start;
  align-items: flex-start;
}

.purchase-wrapper .base-btn {
  margin-top: 0px;
}

.social-share-wrapper {
  display: flex;
  gap: 10px;
}

.inner-movie-header {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.fme_upload_file_custom_upload {
  display: none;
}

.fme_upload_file_custom_upload {
  background-color: red !important;
  color: white !important;
}
.cast-crew {
  gap: 8px;
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.cast-crew>div {
  font-weight: bold;
  font-size: 16px;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.cast-crew>div>span {
  font-weight: 400;
  font-size: 16px;
}

.movie_trailer {
  background: -webkit-linear-gradient(#0693e3, #9b51e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%);
  font-size: 195px;
}

.movie-title {
  width: 100%;
  padding-left: 20px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
  gap: 16px;
}

.movie-title h1 {
  font-weight: 600;
  font-size: 48px;
  width: 100%;
  margin-bottom: 5px;
  line-height: 1;
  color: white;
  margin-top: 0px;
  filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, .64))
}



.movie-title h2 {
  color: #1c89e3;
  margin-top: 0px;
  margin-bottom: 0px;
}

.movie-content {
  margin-top: 0px;
  background: white;
}

.synopsis {
  color: black;
  margin-bottom: 16px;
}

.movie-content>.container>.other-info {
  margin-top: 0px;
}

.inline-trailer {
  padding-top: 16px;
  border-top: var(--movie-page-border);
  padding-bottom: 32px;
  border-bottom: var(--movie-page-border);
}

.inline-trailer iframe {
  max-height: 245px !important;
  border-radius: 8px;
background:black;
}

.log_in_note {
  max-width: 500px;
  text-align: center;
  margin: auto;
  flex-wrap: wrap;
  color: white;
  font-size: 30px;
  font-variant: all-petite-caps;
  min-height: calc(100vh - 65px);
}

.log_in_note .log_account {
  margin: auto;
  margin-top: 40px;
  max-width: 200px;
}

.movie_trailer {
  position: absolute;
  height: auto;
  flex-grow: 1;
  display: block;
  right: 0px;
  transition: .2s;
  cursor: pointer;
  width: fit-content;
  left: auto;
  top: 210px;
}

.trailer-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: calc(100vh);
  width: 100vw;
  justify-content: center;
  align-items: center;
  display: none;
  margin: auto;
}

.trailer-wrapper .overlay {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, .65);
  z-index: 1;
  position: absolute;
}

.trailer-on {
  display: flex;
}

.trailer-wrapper .video {
  z-index: 2;
}

.trailer-wrapper video {
  width: calc(100vw - 300px);
  max-width: 800px;
}

.movie_trailer svg {
  height: 300px;
  background: rgba(255, 255, 255, .6);
  border-radius: 100%;
  width: 300px;
}

.movie_trailer svg polygon {
  fill: black;
}

.inner-movie-wrapper {
  border-top: var(--movie-page-border);
  color: black;
  padding-top: 15px;
}

.single-film-fest-movie-wrapper {
  width: 100%;
}

.single-film-fest-movie-wrapper .container {
  background-color: unset;
}

.film-fest-movie-template-default #page {
  padding: 0px;
}

.event-date {
  margin: 0px;
  color: white;
  background: var(--primary);
  padding: 6px;
  font-size: 18px;
  width: fit-content;
  margin-bottom: 10px;
}



.movie-cats {
  display: flex;
}

.movie-cats .genre {
  background-color: var(--tcff-grey-light);
  color: black;

}

.sub-movie-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.movie-cats p,
.movie-cats div {
  font-weight: 600;
}

.movie-cat.runtime {
  background: white;
  border: 1px solid black;
  color: black;
}

.base-btn {
  background: white;
  padding: 10px;
  color: black;
  display: block;
  max-width: 200px;
  text-align: center;
  font-size: 16px;
  border: 1px solid black;
}



/* // ------------- END SINGLE FILM PAGE STYLING  */


.show-featured,
.show-featured .gb-post-template-wrapper {
  flex-wrap: nowrap !important;
  overflow-x: auto;
  display: flex !important;
  /* padding-left: 20px !important; */
  gap: 32px;
}

.show-featured {
  position: relative;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  transition: all 0.2s;
  transform: scale(0.98);
  will-change: transform;
  user-select: none;
  cursor: pointer;
  padding-top: 16px;
  margin-left: 0px !important;
}

.show-featured>div {
  padding-left: 0px !important;
  position: relative;
}

.show-featured img {
  pointer-events: none;
}

.show-featured figure a {
  display: flex;
  height: 100%;
  user-select: none;
  max-height: 420px;
}

.show-featured.active a {
  cursor: grabbing;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  pointer-events: none;

}

.show-featured.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
  transform: scale(1);
}


.hit {
  background: rgba(0, 0, 0, 0);
  width: 100%;
  height: 440px;
  position: absolute;
  top: 0px;
  left: 0px;
}

.site-content {
  min-height: 100dvh;
}


.owned_movie_list {
  max-width: 100% !important;
}

.um-page-user .entry-header {
  display: none;
}

.um-page-user,
.woocommerce-account {

  .movie-desc,
  .genre-length,
  .film-view-type,
  .date-time,
  .item-tickets {
    display: none;
  }

}

#loading_gif {
  display: none;
}

.movie-desc p a {
  color: var(--tcff-purple-dark);
  font-weight: 600;
  text-decoration: underline;
  font-size: 16px;
}

/* Define the keyframes for the fadeInUp animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    /* Fade to fully visible */
    transform: translateY(0);
    /* Move to original position */
  }
}

.editor-visual-editor.is-iframed {
  overflow: visible !important;
}

.home .site-content {
  padding-top: 0px;
}

.news-nav-slider {
  z-index: 0;
  position: relative;
}

.news-nav-slider .current .gb-button {
  background: var(--tcff-purple);
  font-weight: bolder;
  border-radius: 8px;
}

.news-nav-slider .gb-button {
  cursor: pointer;
  border-radius: 8px;
}

.news-nav-slider .gb-button:hover {
  background: var(--tcff-purple-light);
  color: white !Important;
}

.news-slider .owl-nav {
  max-width: 1100px;
  margin: auto;
  position: relative;
  bottom: -32px;
  left: 0;
  right: 0;
}

.news-slider {
  z-index: 2 !important;
}

/* .editor-styles-wrapper .wp-block {
  max-width:inherit !important;
} */

/* .editor-styles-wrapper .alignfull .wp-block {
  max-width:inherit !important;
} */

.editor-styles-wrapper .wp-block.alignwide {
  margin: auto !important;
}

.wp-block-generateblocks-query-loop {
  max-width: 100% !Important;
}

.item .txt h2 a {
  text-wrap: wrap;
}

.item .gb-block-image {
  filter: brightness(64%) drop-shadow(0 0 0 rgba(0, 0,0,0));
  transition:.3s;
  
}
.item .gb-block-image:hover {
  filter: brightness(100%) drop-shadow(0 0 0 rgba(0, 0,0,.64));

}

.item .txt h2 {
  position: relative;
  z-index: 1;
}



.item img {
  transition:.3s;
}




.show-featured::-webkit-scrollbar {
  background-color: rgba(0, 0, 0, 0.418)AA4;
  width: 5px;
  border-radius: 10px;
  height: 7px;
}

.show-featured::-webkit-scrollbar-track {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.336);
}

.show-featured::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #9b6aa493;
}

.is-style-banner-paragraph {}

.editor-styles-wrapper {
  background-color: WHITE !important;
}


.editor-styles-wrapper .alignfull .wp-block-generateblocks-query-loop .wp-block-generateblocks-grid {
  max-width: 100%;
}


#um_account_submit_movies {
  display: none;
}



.movie-scroll-wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.movie-sponsors img {
  max-width: 200px ! Important;
  width: auto ! Important;
}


@media (max-width: 950px) {
  .movie-scroll-wrapper {
    overflow-x: scroll;
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
  }

  .movie-cats {
    flex-wrap: wrap;
  }
}

.festival-page {
  width: 100%;
  position: relative;
  display: block;
}

.global-footer .wp-block-page-list,
.global-footer .wp-block-list {
  margin: 0px;
  padding: 0px;
  list-style: none;
  row-gap: 10px;
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}

.one-aspect {
  aspect-ratio: 1 / 1;
}


.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
.uk-heading-2xlarge,
.uk-heading-3xlarge,
.uk-heading-large,
.uk-heading-medium,
.uk-heading-small,
.uk-heading-xlarge,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Open Sans, sans-serif;
}

.stream-item h5,
.inner-purchase-wrapper h5 {
  font-family: Open Sans, sans-serif;
  font-weight: 600;
  margin: 0px;
  font-size: 20px;
}

.single-film-fest-movie-wrapper>* {
  font-family: Open Sans, sans-serif;
  line-height: 150%;
}

.single-film-fest-movie-wrapper .uk-icon {
  display: flex;
}


.search-modal-fields {
  display: flex;
  background: white;
  border-radius: 8px;
}


.tickets-av-soon {
  color: white;
  background: var(--tcff-purple);
  border-radius: 8px;
  padding: 5px 10px;
  font-weight: 600;
  text-align: center;
  max-width: fit-content;
  font-size: 16px;
  justify-content: center;
  align-items: center;
}

/* ULTIMATE MEMBER PROFILE PAGE STYLING BELOW: */

body .um a.um-button,
body .um a.um-button.um-disabled:active,
body .um a.um-button.um-disabled:focus,
body .um a.um-button.um-disabled:hover,
body .um input[type=submit].um-button,
body .um input[type=submit].um-button:focus {
  background: var(--tcff-purple);
  font-weight: 600;
}

body .um a.um-button:hover,
body .um input[type=submit].um-button:hover {
  background: var(--tcff-purple-dark);
}

body .um .um-button.um-alt,
body .um input[type=submit].um-button.um-alt {
  color: white;
  background: var(--tiff-grey);
}

body .um .um-button.um-alt:hover,
body .um input[type=submit].um-button.um-alt:hover {
  background: var(--tcff-grey-dark);
}

.um-page-login .um-form,
.um-page-register .um-form {
  padding: 30px 15px;
  border: 2px solid var(--tcff-purple);
  border-radius: 8px;
}

.um-page-login .um-form:before,
.um-page-register .um-form:before {
  content: '';
  width: 150px;
  height: 150px;
  background-image: url('/wp-content/uploads/2024/07/TCFF_logo_H-01-1-edited.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  margin: auto;
}

.um-account-side ul {
  border-radius: 8px;
  border: 2px solid var(--tcff-purple);
  overflow: hidden;
}

.um-account-side li a.current {
  background: var(--tcff-purple-dark) !important;
}

.um-account-side li a.current span,
.um-account-side li a.current span i,
.um-account-side li:hover a.current span,
.um-account-side li:hover a.current span i {
  color: white !important;

}

body .um-account-side li {
  margin-bottom: 0px !important;
  background: white !important;
  border-bottom: 2px solid var(--tcff-purple);
}

.um-account-side li:last-child {
  border-bottom: none !Important;
}

.um-page-account .entry-content {
  margin-top: 1em !important;
}

.um-page-account .um-account-name {
  display: none !important;
}

.um-page-account .um-field .select2.select2-container .select2-selection,
.um-page-account .um-search-filter .select2.select2-container .select2-selection,
.um-page-account .um .um-form input[type=password],
.um-page-account .um .um-form input[type=search],
.um-page-account .um .um-form input[type=tel],
.um-page-account .um .um-form input[type=text],
.um-page-account .um .um-form textarea,
.um-page-account .um .um-form input[type=text] {
  border-radius: 8px;
  border: 2px solid var(--tcff-grey-dark) !important;
}

.um-field-label label {
  color: black;
}

.um-page-account .um .um-form input[type=text]:focus {
  border: 2px solid var(--tcff-purple) !important;
}

.um-page-account .um-request-button,
.um-page-account .um a.um-button,
.um-page-account .um a.um-button.um-disabled:active,
.um-page-account .um a.um-button.um-disabled:focus,
.um-page-account .um a.um-button.um-disabled:hover,
.um-page-account .um input[type=submit].um-button,
.um-page-account .um input[type=submit].um-button:focus {
  background: var(--tcff-purple);
}

.um-page-account .um-request-button:hover,
.um-page-account .um a.um-button:hover,
.um-page-account .um input[type=submit].um-button:hover {
  background: var(--tcff-purple-dark);
}

.um-page-account .um-account-side li a span.um-account-title {
  color: var(--tcff-grey-dark);
  font-weight: 600;
}

.um-page-account .um-account-meta {
  display: none;
}

.um-page-account .um-account-side {
  width: 25%;
}

.um-page-account .um-account-main {
  width: 75%;
}

.account-intro {
  margin-bottom: 20px;
  border-bottom: 2px solid var(--tcff-purple);
}

.account-intro h3 {
  margin-bottom: 10px;
  text-transform: capitalize;
}

.um-page-account .um-account-tab-movies .um-account-heading {
  display: none;
}

/* --------- END  */


.fc-event,
.fc-event-dot {
  background-color: var(--tcff-purple);
}

body .fc-daygrid-event-dot {
  border: calc(var(--fc-daygrid-event-dot-width)/2) solid white;
}

body .fc-daygrid-dot-event.fc-event-mirror,
body .fc-daygrid-dot-event:hover {
  background: var(--tcff-purple-dark);
}

li[aria-owns="sub-accordion-section-festival_dates_section"] h3 {
  color: white !Important;
  background: var(--tcff-purple) !important;
}

li[aria-owns="sub-accordion-section-festival_dates_section"]:hover h3 {
  background: var(--tcff-purple-dark) !important;
}


/* Button Pill */
.has-button-small-font-size>div,
.has-button-small-font-size>a {
  font-size:14px !important;
}

.has-button-medium-font-size>div,
.has-button-medium-font-size>a {
  font-size:20px !important;
}

.has-button-large-font-size>div,
.has-button-large-font-size>a {
  font-size:28px !important;
}



.editor-styles-wrapper .is-style-button-pill, 
.editor-styles-wrapper .is-style-button-pill, 
.editor-styles-wrapper .is-style-button-pill .wp-block-button__link:not(.has-background) {
  border-radius: 32px ;
  border-width: 2px;
  background-color:transparent;
  font-size:14px;
  color: var(--tcff-purple);
}  

body .editor-styles-wrapper .block-editor-block-list__layout .wp-block-button .wp-block-button__link {
  font-size:20px;
}
body .fc .fc-button {
  line-height:1;
}
body .fc .fc-button-primary {
  background-color:var(--tcff-purple);
}

body .fc .fc-button-primary:hover {
  background-color:var(--tcff-purple-dark);
}

body .piecal-controls {
  max-width: 188px;
  gap: 0px;
  margin-bottom: 8px;
  align-self: self-end;
}

/* /// ---- begin calendar customization */

.fc-daygrid-event-dot {
  display:none;
}

.fc .fc-daygrid-dot-event {
  flex-wrap:wrap;
  padding-left:5px;
}


.fc .fc-event-time {
  width:100%;
}

.fc .fc-daygrid-event {
  padding-left: 5px;
  white-space: normal;
  width: 98%;
  border-radius: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 3px;
}

body .piecal-popover__inner {
padding:16px;
}

.piecal-popover__inner::-webkit-scrollbar {
  width: 6px;
}

.piecal-popover__inner::-webkit-scrollbar-thumb {
  background-color: var(--tcff-purple-light);
  border-radius: 8px;
}

.piecal-popover__inner::-webkit-scrollbar-track {
  background-color: #c5c5c5; /* Optional: To style the track background */
  border-radius: 8px;
}

.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
  margin-bottom: 1em;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

body .fc .fc-list-event:hover td,  body .fc .fc-list-event:hover{
  background-color:var(--tcff-purple-dark);
}

/* ----------end  */




.comments-area {
  display:none !Important;
}

.site-footer h5 {
  color:white;
  font-size: 20px;
  line-height: 120%;
  margin-top: 0px;
  font-weight: 600;
}

.site-footer a:hover, .site-footer a:hover span {
  color: var(--tcff-purple-light);
}


/* Cinema Tooltip Styling */
.cinema-tooltip {
    position: relative;
    display: inline-block;
    color: #000;
    text-decoration: none;
    text-decoration-style: none;
    text-decoration-thickness: 1px;
     cursor: pointer;
    font-weight: 600;
    padding: 1px 2px;
    border-radius: 3px;
    transition: all 0.15s ease;
    font-size: 17px;
}

.cinema-tooltip:hover {
    background: rgba(59, 130, 246, 0.08);
    text-decoration-style: solid;
}

.cinema-tooltip:focus {
    outline: 1px solid #3b82f6;
    outline-offset: 1px;
    background: rgba(59, 130, 246, 0.08);
}

/* Tooltip content */
.cinema-tooltip::after {
    content: attr(data-address);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.95) translateY(6px);
    
    background: rgba(31, 41, 55, 0.95);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 10px;
    line-height: 1.4;
    min-width: 160px;
    max-width: 240px;
    width: max-content;
    white-space: pre-line;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    text-align: left;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    /* Hidden by default */
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease;
    pointer-events: none;
}

/* Tooltip arrow */
.cinema-tooltip::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(31, 41, 55, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.15s ease;
    z-index: 1001;
}

/* Show tooltip on hover and focus */
.cinema-tooltip:hover::after,
.cinema-tooltip:hover::before,
.cinema-tooltip:focus::after,
.cinema-tooltip:focus::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1) translateY(0);
    pointer-events: auto;
}


.theater-location-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 9px;
    padding-left: 9px;
    border-left: 3px solid #401049;
    padding-bottom: 9px;
}

.item-tickets h5 {
  margin: 0px;
    font-weight: 700;
    color: #510f5e;
}
.theater-location-group h6 {
  margin-bottom:0px;
}

/* Responsive positioning for small screens */
@media (max-width: 768px) {
    .cinema-tooltip::after {
        left: 0;
        transform: scale(0.95) translateY(6px);
        min-width: 140px;
        max-width: 200px;
    }
    
    .cinema-tooltip::before {
        left: 16px;
        transform: none;
    }
    
    .cinema-tooltip:hover::after,
    .cinema-tooltip:focus::after {
        transform: scale(1) translateY(0);
    }
    
    .cinema-tooltip:hover::before,
    .cinema-tooltip:focus::before {
        transform: none;
    }
}

/* Purchase Success Popup Styles */
.tcff-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tcff-popup-overlay.tcff-popup-show {
    opacity: 1;
}

.tcff-popup-container {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    padding: 40px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.tcff-popup-overlay.tcff-popup-show .tcff-popup-container {
    transform: translateY(0);
}

.tcff-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.tcff-popup-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

.tcff-popup-content {
    text-align: center;
}

.tcff-popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--tcff-purple, #9b59b6) 0%, var(--tcff-purple-dark, #8e44ad) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: tcff-popup-icon-bounce 0.5s ease 0.3s;
}

.tcff-popup-icon svg {
    width: 45px;
    height: 45px;
    stroke-width: 3;
}

@keyframes tcff-popup-icon-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.tcff-popup-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}

.tcff-popup-message {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 30px 0;
}

.tcff-popup-button {
    background: linear-gradient(135deg, var(--tcff-purple, #9b59b6) 0%, var(--tcff-purple-dark, #8e44ad) 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

.tcff-popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
    background: var(--tcff-purple-dark, #8e44ad);
}

.tcff-popup-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .tcff-popup-container {
        padding: 35px 25px;
        max-width: 90%;
    }
    
    .tcff-popup-title {
        font-size: 24px;
    }
    
    .tcff-popup-message {
        font-size: 15px;
    }
    
    .tcff-popup-icon {
        width: 70px;
        height: 70px;
    }
    
    .tcff-popup-icon svg {
        width: 40px;
        height: 40px;
    }
}


/* ============================================================================
   PRIVATE SCREENING STYLES
   ============================================================================ */

/* Gate Container - Full viewport with background image */
.tcff-private-screening-gate {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1a071d; /* Fallback if no image */
}

/* Purple Overlay */
.tcff-ps-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(101, 25, 115, 0.85) 0%, 
        rgba(45, 10, 53, 0.9) 50%, 
        rgba(26, 7, 29, 0.95) 100%
    );
    z-index: 1;
}

.tcff-ps-gate-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 2;
}

/* Content Box */
.tcff-ps-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 40px 35px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tcff-ps-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--tcff-purple-dark, #2d0a35);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.tcff-ps-subtitle {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin: 0 0 30px 0;
}

/* Messages */
.tcff-ps-message {
    padding: 20px 0;
}

.tcff-ps-message h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0 10px 0;
    color: #333;
}

.tcff-ps-message p {
    font-size: 16px;
    color: #666;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.tcff-ps-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--tcff-purple, #651973) 0%, var(--tcff-purple-dark, #4a1055) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.tcff-ps-icon svg {
    width: 35px;
    height: 35px;
}

.tcff-ps-message-info .tcff-ps-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.tcff-ps-message-ended .tcff-ps-icon,
.tcff-ps-message-expired .tcff-ps-icon {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
}

.tcff-ps-message-error .tcff-ps-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.tcff-ps-date-highlight {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 10px;
}

.tcff-ps-expired-time {
    font-size: 14px;
    color: #999;
}

/* Auth Buttons */
.tcff-ps-auth-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Buttons */
.tcff-ps-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    min-width: 140px;
}

.tcff-ps-btn-primary {
    background: linear-gradient(135deg, var(--tcff-purple, #651973) 0%, var(--tcff-purple-dark, #4a1055) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(101, 25, 115, 0.3);
}

.tcff-ps-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 25, 115, 0.4);
    color: white;
    text-decoration: none;
}

.tcff-ps-btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.tcff-ps-btn-secondary:hover {
    background: #e5e7eb;
    color: #1f2937;
    text-decoration: none;
}

.tcff-ps-hint {
    font-size: 13px;
    color: #999;
    margin-top: 20px;
}

/* Code Form */
.tcff-ps-code-form-container h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0 10px 0;
    color: #333;
}

.tcff-ps-code-form-container p {
    font-size: 15px;
    color: #666;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.tcff-ps-code-form {
    margin-top: 20px;
}

.tcff-ps-input-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.tcff-ps-input-group input[type="text"] {
    flex: 1;
    min-width: 200px;
    padding: 14px 18px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    text-transform: uppercase;
    transition: all 0.2s ease;
    background: #f9fafb;
}

.tcff-ps-input-group input[type="text"]:focus {
    outline: none;
    border-color: var(--tcff-purple, #651973);
    background: white;
    box-shadow: 0 0 0 3px rgba(101, 25, 115, 0.1);
}

.tcff-ps-input-group input[type="text"]::placeholder {
    color: #9ca3af;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: none;
}

/* Error & Success Messages */
.tcff-ps-error,
.tcff-ps-success {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.tcff-ps-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.tcff-ps-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.tcff-ps-screening-window {
    font-size: 13px;
    color: #999;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

/* Spinner Animation */
.tcff-ps-spinner {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    animation: tcff-ps-spin 1s linear infinite;
}

@keyframes tcff-ps-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tcff-ps-btn-loading {
    display: inline-flex;
    align-items: center;
}

/* Access Notice Banner (shown when user has active access) */
.tcff-ps-access-notice {
    background: linear-gradient(90deg, var(--tcff-purple, #651973) 0%, var(--tcff-purple-dark, #4a1055) 100%);
    color: white;
    padding: 12px 20px;
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

.tcff-ps-access-notice-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    text-align: center;
}

.tcff-ps-access-icon {
    font-size: 24px;
}

.tcff-ps-access-text {
    font-size: 15px;
    font-weight: 500;
}

.tcff-ps-access-expires {
    font-size: 13px;
    opacity: 0.85;
    padding-left: 15px;
    border-left: 1px solid rgba(255,255,255,0.3);
}

/* Responsive */
@media (max-width: 600px) {
    .tcff-ps-content {
        padding: 30px 20px;
    }
    
    .tcff-ps-title {
        font-size: 24px;
    }
    
    .tcff-ps-input-group {
        flex-direction: column;
    }
    
    .tcff-ps-input-group input[type="text"] {
        min-width: 100%;
    }
    
    .tcff-ps-btn {
        width: 100%;
    }
    
    .tcff-ps-auth-buttons {
        flex-direction: column;
    }
    
    .tcff-ps-access-notice-inner {
        flex-direction: column;
        gap: 8px;
    }
    
    .tcff-ps-access-expires {
        padding-left: 0;
        border-left: none;
    }
}

/* Film fest movie page - remove footer margin */
.film-fest-movie-template-default.single .global-footer {
    margin-top: 0 !important;
}

/* ============================================================================
   PRIVATE SCREENING - MY MOVIES SECTION
   ============================================================================ */

.tcff-ps-my-movies-section {
    width: 100%;
    margin-bottom: 30px;
}

.tcff-ps-section-header {
    background: linear-gradient(90deg, var(--tcff-purple, #651973) 0%, var(--tcff-purple-dark, #4a1055) 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.tcff-ps-section-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.tcff-ps-section-header p {
    margin: 5px 0 0 0;
    font-size: 14px;
    opacity: 0.9;
}

.tcff-ps-films {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
    background: #f8f4f9;
    border-radius: 0 0 12px 12px;
    border: 2px solid var(--tcff-purple, #651973);
    border-top: none;
}

.tcff-ps-film-card {
    flex: 0 0 calc(33.33% - 11px);
    min-width: 280px;
    max-width: 100%;
}

.tcff-ps-countdown-bar {
    background: linear-gradient(90deg, var(--tcff-purple, #651973) 0%, var(--tcff-purple-dark, #4a1055) 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 8px 8px 0 0;
    font-size: 13px;
    font-weight: 600;
}

/* Reset stream-item styles when inside ps-film-card to prevent nesting issues */
.tcff-ps-film-card > .stream-item {
    border-radius: 0 0 8px 8px;
    margin: 0;
    width: 100%;
}

/* Hide unnecessary elements for private screening cards */
.tcff-ps-film-card .genre-length,
.tcff-ps-film-card .movie-desc,
.tcff-ps-film-card .stream-link,
.tcff-ps-film-card .item-purchase-wrapper,
.tcff-ps-film-card .stream-toolbar {
    display: none !important;
}

/* Responsive adjustments for private screening cards */
@media (max-width: 992px) {
    .tcff-ps-film-card {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 600px) {
    .tcff-ps-film-card {
        flex: 0 0 100%;
    }
    
    .tcff-ps-films {
        padding: 15px;
        gap: 12px;
    }
    
    .tcff-ps-section-header {
        padding: 12px 15px;
    }
    
    .tcff-ps-section-header h3 {
        font-size: 18px;
    }
}