/*
 * Reset
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio[controls],
canvas,
video {
  display: inline-block;
}
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
  -ms-text-size-adjust: 100%;
}
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
ul,
li,
ol,
a,
em,
img,
strong,
fieldset,
form,
label,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
  list-style: none;
}
:focus {
  outline: 0;
}
img {
  vertical-align: middle;
  outline: 0;
}
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  border: none;
}
html,
body,
textarea,
input {
  -webkit-text-size-adjust: none;
}
html {
  overflow-x: hidden;
}
body {
  text-align: left;
  overflow: hidden;
}

/* Styles intended only for the front.*/
html {
	scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {

	html {
		scroll-behavior: auto;
	}
}

body {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

/*
 * Variables
 */
:root {
    --accent-color: #FA1861;
    --alt-color: #A513FF;
    --alt-light-color: #B97EE8; 
    --bg-color: #FAFAFA;
    --bg-color-80: rgba(250,250,250,.8);
    --text-color: #4A4A4A;
    --heading-color: #0E0D0F;
    --header-bg: #FFFFFF;
    --header-drop-bg: rgba(255, 255, 255, 0.65);
    --header-text: #0E0D0F;
    --light-bg: #FFFFFF;
    --tripple-gradient: linear-gradient(135deg, #fa1861 0%, #A513FF 51.5%, #55108c 96.5%);
    --double-gradient: linear-gradient(135deg, #FA1861 0%, #A513FF 100%);
    --divider-main: rgba(0, 0, 0, 0.12);
    --background-2: rgba(250, 250, 250, 0.02);
    --shadow-24: rgba(14, 13, 15, 0.08);
    --pink-16: rgba(250, 24, 97, 0.16);
    --secondary-4: rgba(14, 13, 15, 0.04);
}
.dark-mode-style {
    --accent-color: #FA1861;
    --alt-color: #9535E1;
    --alt-light-color: #B97EE8; 
    --bg-color: #0E0D0F;
    --bg-color-80: rgba(21, 18, 18, 0.8);
    --text-color: rgba(255,255,255,.7);
    --heading-color: #FFF;
    --header-bg: #0A090A;
    --header-drop-bg: rgba(15, 12, 12, 0.65);
    --header-text: #FFFFFF;
    --light-bg: #0E0D0F;
    --tripple-gradient: linear-gradient(135deg, #fa1861 0%, #A513FF 51.5%, #55108c 96.5%);
    --double-gradient: linear-gradient(135deg, #FA1861 0%, #A513FF 100%);
    --divider-main: rgba(255, 255, 255, 0.12);
    --background-2: rgba(14, 13, 15, 0.02);
    --shadow-24: rgba(0, 0, 0, 0.48);
    --pink-16: rgba(250, 24, 97, 0.16);
    --secondary-4: rgba(250, 250, 250, 0.04);
}
.element-dark-style,
body.dark-mode-style .element-light-style {
    display: none;
}
body.dark-mode-style .element-dark-style {
    display: block;
}
:root :where(body) {
  color: var(--text-color);
  background: var(--bg-color);
}
/*
 * General
*/
body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--text-color);
    background: var(--bg-color);
}
h1,h2,h3,h4,h5,h6 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-style: normal;
}
h1 {
    font-size: clamp(1.88rem, 1.48rem + 1.97vw, 3.38rem);;
}
h2 {
    font-size: clamp(1.75rem, 1.49rem + 1.31vw, 2.75rem);
}
h3 {
    font-size: clamp(1.65rem, 1.49rem + 1.31vw, 2.45rem);
}
h4 {
    font-size: clamp(1.45rem, 1.49rem + 1.31vw, 2.25rem);
}
h5 {
    font-size: clamp(1.35rem, 1.49rem + 1.31vw, 2.15rem);
}
h6 {
    font-size: clamp(1.25rem, 1.49rem + 1.31vw, 2.05rem);
}
.font-one {
    font-family: "Lato", sans-serif;
}
.font-two {
    font-family: "Ubuntu", sans-serif;
}
.wrapper {
    max-width: 1540px;
    margin-left: auto;
    margin-right: auto;
}
.simple-link {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.button-link,
.stream-button {
    background: var(--double-gradient, #FA1861);
    padding-left: 20px;
    padding-right: 20px;
    height: 36px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    position: relative;
    transition: all 0ms ease;
    letter-spacing: 0.15em;
}
.button-link:hover,
.stream-button:hover {
    transition: all 0ms ease;
    background: linear-gradient(134deg, var(--accent-color) 0%, var(--accent-color) 100%);
}
.button-link > span,
.stream-button > span {
    position: relative;
    z-index: 1;
}
.button-link::before,
.stream-button::before {
    content: "";
    display: block;
    position: absolute;
    top:2px;
    left:2px;
    border-radius: 30px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: var(--bg-color);
    z-index: 0;
}
.stream-button {
    height: 60px;
    width: fit-content;
    padding-left: 32px;
    padding-right: 32px;
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
}
.alt-button {
  border-radius: 30px;
  position: relative;
  transition: all 0ms ease;
  letter-spacing: 0.15em;
  height: 60px;
  width: fit-content;
  padding-left: 32px;
  padding-right: 32px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--heading-color);
  color: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.alt-button:hover {
  background: var(--accent-color);
  transition: all 200ms ease-in-out;
}
.stream-button span {
    background: var(--double-gradient, #FA1861);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stream-button:hover span {
    background: var(--accent-color);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fill-button::before {
    display: none;
}
.fill-button span {
    background: unset;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: #FFF;
}
.fill-button:hover span {
    background: unset;
    background-clip: unset;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    color: #FFF;
}
.stream-title {
    color: var(--heading-color);
    width: fit-content;
    font-weight: 700;
    margin-bottom: clamp(0.31rem, calc(-0.66rem + 4.86vw), 2.5rem);
    line-height: 1.3;
}
.stream-title span,
.stream-title strong {
  background: var(--double-gradient, #FA1861);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tutorials Styles */
.tutorial-heading {
    background: linear-gradient(90deg, #fbf6ff 0%, #fff 100%);
    padding-top: clamp(2.5rem, calc(1.52rem + 4.88vw), 5rem);
    padding-bottom: clamp(2.5rem, calc(1.52rem + 4.88vw), 5rem);
    position: relative;
    margin-bottom: clamp(3.75rem, 2.77rem + 4.92vw, 7.5rem);
}
.dark-mode-style .tutorial-heading {
    background: linear-gradient(90deg, #000 0%, #0F0C0C 100%);
}
.tutorial-heading::after {
    content: "";
    width: 100%;
    height: 5px;
    display: block;
    background: var(--double-gradient, #FA1861);
    position: absolute;
    bottom: 0;
    left: 0;
}
.tutorial-heading h2 {
    color: var(--heading-color);
    font-size: clamp(1.88rem, 1.48rem + 1.97vw, 3.38rem);
    line-height: 1.2;
}
.custom-tutorials-template {
    margin-bottom: clamp(3.75rem, 2.77rem + 4.92vw, 7.5rem);
}
.post-type-archive-tutorial .tutorial-main {
    padding: 0; 
}
.post-type-archive-tutorial .tutorial-main .wp-block-post {
    border-radius: 10px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
    background: var(--light-bg);
    padding: 40px;
    box-sizing: border-box;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}
.post-type-archive-tutorial .tutorial-main .wp-block-post .wp-block-post-featured-image {
    width: 290px;
    min-width: 290px;
    height: 160px;
    background: linear-gradient(135deg, #b97ee8 0%, #9535e1 51.5%, #fa1861 96.5%);
    padding: 5px;
    box-sizing: border-box;
}
.post-type-archive-tutorial .tutorial-main .wp-block-post .wp-block-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-type-archive-tutorial .tutorial-main .wp-block-post .wp-block-post-title,
.post-type-archive-tutorial .tutorial-main .wp-block-post .wp-block-post-title a {
    font-size: clamp(1.5rem, 1.34rem + 0.82vw, 2.13rem);
    color: var(--heading-color);
    margin-bottom: 0;
    line-height: 1.2;
    text-decoration: none;
}
.post-type-archive-tutorial .tutorial-main .wp-block-post .wp-block-post-title {
    margin-bottom: 15px;
}
.post-type-archive-tutorial .tutorial-main .wp-block-post .wp-block-post-excerpt__excerpt{
    font-size: clamp(1rem, 0.93rem + 0.33vw, 1.25rem);
    line-height:1.7;
    margin-bottom: 15px;
    max-height: 5rem;
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    overflow: hidden!important;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.post-type-archive-tutorial .tutorial-main .wp-block-post .wp-block-post-excerpt__more-text {
    margin: 0;
    display: flex;
    height: 36px;
    width: fit-content;
    border-radius: 30px;
    background: var(--double-gradient, #FA1861);
    position: relative;
}
.post-type-archive-tutorial .tutorial-main .wp-block-post .wp-block-post-excerpt__more-text::before {
    display: block;
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    top:2px;
    left:2px;
    position: absolute;
    background: var(--light-bg);
    border-radius: 30px;
}
.post-type-archive-tutorial .tutorial-main .wp-block-post .wp-block-post-excerpt__more-text .wp-block-post-excerpt__more-link {
    padding-left: 20px;
    padding-right: 20px;
    display: block;
    height: 100%;
    line-height: 36px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--double-gradient, #FA1861);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
    font-family: "Ubuntu", sans-serif;
    font-weight: bold;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 10px;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers .page-numbers {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    background: var(--double-gradient, #FA1861);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    font-family: "Ubuntu", sans-serif;
}
.wp-block-query-pagination .wp-block-query-pagination-numbers span.page-numbers {
    background: var(--header-text);
    color: var(--header-text);
}
.wp-block-query-pagination .wp-block-query-pagination-numbers a.page-numbers {
    color: var(--accent-color);
}
.wp-block-query-pagination .wp-block-query-pagination-numbers span::before,
.wp-block-query-pagination .wp-block-query-pagination-numbers a:before {
    position: absolute;
    content: "";
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    display: block;
    background: var(--bg-color);
    top:2px;
    left:2px;
    border-radius: 100%;
    z-index: -1;
}
@media (max-width:840px){ 
    .post-type-archive-tutorial .tutorial-main .wp-block-post {
        flex-wrap: wrap;
        gap: 20px;
    }
    .post-type-archive-tutorial .tutorial-main .wp-block-post .wp-block-post-featured-image {
        width: 100%;
    }
}

/* Movies Styles */


/* Other Styles */
.wp-site-blocks {
  position: relative;
}
header.site-header {
    z-index: 99;
}
body.home header.site-header,
body.page-with-absolute-header header.site-header {
    position: absolute;
    top:0;
    left:0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 99;
    background: rgba(0,0,0,0.6);
}
body.home header.site-header .inner-header .wp-block-navigation .wp-block-navigation__container .wp-block-navigation__submenu-container,
body.page-with-absolute-header header.site-header .inner-header .wp-block-navigation .wp-block-navigation__container .wp-block-navigation__submenu-container {
    background: rgba(0,0,0,0.6);
    color: #FFFFFF;
}
body.home header.site-header .wp-block-navigation__container,
body.page-with-absolute-header header.site-header .wp-block-navigation__container {
    color: #FFFFFF;
}
header.site-header .wp-block-navigation li {
    background: transparent;
}
.border_style {
  border: 1px solid var(--divider-main, rgba(14, 13, 15, 0.08));
  border-radius: 24px;
  padding: 48px;
}

/* Pricing switcher css styles */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -24px;
  }
  
  .toggle-wrapper {
    display: inline-flex;
    background-color: #f3f4f6;
    border-radius: 9999px;
    padding: 4px;
    position: relative;
  }
  
  .toggle-option {
    padding: 14px 30px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: transparent;
    z-index: 1;
    position: relative;
  }
  
  .toggle-option.active {
    color: white;
  }
  
  .toggle-option:not(.active) {
    color: #4b5563;
  }
  
  .toggle-wrapper::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    width: calc(50% - 4px);
    background-color: #111827;
    border-radius: 9999px;
    transition: transform 0.3s ease;
  }
  
  .toggle-wrapper.switched::after {
    transform: translateX(100%);
  }
  
  .hidden-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }