
	
/* ------------------------------------------
HEADER
--------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  padding: 12px;
  z-index: 3;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	background: #252525;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	padding: 0 20px;
	z-index: 3000;
	justify-content: space-between;
}
.logo {
	height: 30px;
	width: 33px;
	transition: transform 0.3s ease; /* Avoid transition on layout */
}
.logo:hover {
	transform: scale(1.05); /* Increase the size by 10% */
}
.menu-container {
	display: flex;
	align-items: center;
	gap: 15px;
}
.menu-toggle {
		font-size: 20px;
		cursor: pointer;
		color: white;
}
.nav-menu {
	position: fixed;
	top: 0;
	right: -250px;
	width: 250px;
	height: 100vh;
	background: #333;
	box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
	transition: right 0.3s ease-in-out;
	padding-top: 60px;
	z-index: 2000;
}
.nav-menu.open {
	right: 0;
}
.nav-menu ul {
	list-style: none;
	padding: 0;
}
.nav-menu li {
	padding: 15px;
	text-align: left;
}
.nav-menu a {
	color: white;
	text-decoration: none;
	display: block;
}

/* ------------------------------------------
UNIVERSAL
--------------------------------------------- */
.page-container {
 width: min(1200px, calc(100% - 24px));
 margin: 0 auto;
 display: flex;
 flex-direction: column;
 flex: 1;
}

.joinButton {
  color: #000;
  font-family: "Futura-Bold", Gotham, Helvetica Neue, Helvetica, Arial," sans-serif";
  font-size: 14px;
  font-weight: 900;
  padding: 8px 18px;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #D3FF00;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  width: 174px;
  border: 1px solid #C8D79E;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 2px 3px 2px rgba(96, 86, 32, 0.2), inset -2px -2px 0 rgba(96, 86, 32, 0.2);
  position: absolute;
  right: 0px;
  bottom: 2px;
}
.joinButton:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), inset -2px -2px 0 rgba(96, 86, 32, 0.43);
}
.centredJoin {
  text-align: center;
  position: relative;
}
.centredJoin .joinButton {
  text-align: center;
  position: relative;
}


.joinTour {
	padding: 14px 0px;
	gap: 14px;
	display: flex;
}
.pinkJoin {
	text-align: center;
	background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 45%), linear-gradient(160deg, #F450A8 1%, #ffc8fc54 40%, #FF3EA5E0 100%);
	width: 50%;
	float: left;
	border-radius: 999px;
	border: 3px solid #F4D4E6;
	backdrop-filter: blur(3px);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.21);
	transition: transform 0.4s ease;
}
.pinkJoin:hover {
	transform: scale(1.02);
}
.pinkJoin a {
	color: #FF3EA5;
	text-decoration: none;
}
.pinkJoin p {
	color: white;;
}
.bigPink {
	text-transform: uppercase;
	font-size: 44px;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.59);
}
.babyPink {
	text-transform: uppercase;
	font-size: 16px;
	padding-bottom: 8px;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.59);
}

.charcoalTour {
	text-align: center;
	background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.35), transparent 45%), linear-gradient(160deg, #1F1F1F 1%, #7357712b 40%, #0F070BE0 100%);
	width: 50%;
	float: left;
	border-radius: 999px;
	border: 3px solid #C1B7BD;
	backdrop-filter: blur(3px);
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.21);
	transition: transform 0.4s ease;
}
.charcoalTour:hover {
	transform: scale(1.02);
}
.charcoalTour a {
	color: #252525;
	text-decoration: none;
}

.bigCharcoal {
	text-transform: uppercase;
	font-size: 44px;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.59);
}
.babyCharcoal {
	text-transform: uppercase;
	font-size: 16px;
	padding-bottom: 8px;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.59);
}

/* MOBILE */
@media (max-width: 768px) {
	.joinButton {
		font-size: 10px;
		width: 100px;
		bottom: -2px;
		padding: 8px 8px;
	}
	.bigPink {
		font-size: 24px;
	}
	.babyPink {
		font-size: 10px;
		padding-bottom: 8px;
	}
	.bigCharcoal {
		font-size: 24px;
	}
	.babyCharcoal {
		font-size: 10px;
		padding-bottom: 8px;
	}
	
}



/* ------------------------------------------
SPIN SLIDES
--------------------------------------------- */

.spin-slideshow--info {
    width: min(100%, 1100px);
    margin: 0 auto;
}

.spin-slideshow {
    width: min(100%, 1200px);
    margin: 0 auto;
}

.spin-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 2;
    perspective: 1300px;
    overflow: hidden;
    border-radius: 24px;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 45%), linear-gradient(160deg, #FF3EA5 14%, #ffc8fc 40%, #FF3EA5 120%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
	border: 3px solid #FF3EA55C;
	padding: 4px;
}

.update-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    perspective: 1300px;
    overflow: hidden;
    border-radius: 24px;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 45%), linear-gradient(160deg, #FF3EA5 14%, #ffc8fc 40%, #FF3EA5 120%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
	border: 3px solid #FF3EA55C;
	padding: 4px;
}

.girls-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    perspective: 1300px;
    overflow: hidden;
    border-radius: 24px;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 45%), linear-gradient(160deg, #FF3EA5 14%, #ffc8fc 40%, #FF3EA5 120%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
	border: 3px solid #FF3EA55C;
	padding: 4px;
}

.spin-flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 1.45s cubic-bezier(0.19, 0.9, 0.22, 1);
    will-change: transform;
}

.spin-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}

.spin-face a {
    display: block;
    width: 100%;
    height: 100%;
}

.spin-front {
    transform: rotateY(0deg);
	border-radius: 18px;
}

.spin-back {
    transform: rotateY(180deg);
	border-radius: 18px;
}

.spin-face img {
    width: 100%;
    height: 100%;
    display: block;
	border-radius: 18px;
	border: 3px solid #fff9;
}

.spin-face::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.12),
        rgba(0, 0, 0, 0.02) 22%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(0, 0, 0, 0.02) 78%,
        rgba(0, 0, 0, 0.12)
    )
}

.spin-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0,0,0,0.70) 0%,
            rgba(0,0,0,0.52) 24%,
            rgba(0,0,0,0.28) 44%,
            rgba(0,0,0,0.08) 66%,
            rgba(0,0,0,0.00) 100%);
    pointer-events: none;
}

.spin-copy {
    position: absolute;
    top: 0;
    left: 0;
    width: min(70%, 760px);
    height: 100%;
    padding: 34px 28px 28px 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    color: white;
    z-index: 2;
}

.spin-cat-copy {
    position: absolute;
    top: 0;
    left: 0;
    width: min(70%, 760px);
    height: 100%;
    padding: 34px 28px 28px 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    color: white;
    z-index: 2;
}

.spin-title {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 0.95;
    font-weight: 700;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow:
        0 1px 2px rgba(0,0,0,0.85),
        0 0 10px rgba(0,0,0,0.45);
}

.spin-girl-name {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 0.95;
    font-weight: 700;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow:
        0 1px 2px rgba(0,0,0,0.85),
        0 0 10px rgba(0,0,0,0.45);
}

.spin-cat-title {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 0.95;
    font-weight: 700;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow:
        0 1px 2px rgba(0,0,0,0.85),
        0 0 10px rgba(0,0,0,0.45);
}
.spin-meta {
    margin-bottom: 12px;
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 600;
    color: #f0d7e6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.spin-desc {
    margin: 0 0 16px;
    font-size: clamp(13px, 1.2vw, 12px);
    line-height: 1.45;
    max-width: 100%;
    text-shadow: 0 1px 2px rgba(0,0,0,0.85);
}
.spin-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.spin-details span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.20);
    backdrop-filter: blur(4px);
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.65);
}

.spin-bio {
    margin: 0 0 16px;
    font-size: clamp(13px, 1.2vw, 12px);
    line-height: 1.45;
    max-width: 100%;
    text-shadow: 0 1px 2px rgba(0,0,0,0.85);
}

.spin-catDescription {
    margin: 0 0 16px;
    font-size: clamp(13px, 1.2vw, 12px);
    line-height: 1.45;
    max-width: 100%;
    text-shadow: 0 1px 2px rgba(0,0,0,0.85);
}

/* MOBILE */
@media (max-width: 768px) {
	.spin-copy {
		padding: 14px 18px 18px 14px;
	}
	
	.spin-cat-copy {
		padding: 14px 18px 0px 14px;
	}
	.spin-title {
		margin: 0px;
		font-size: clamp(18px, 4vw, 18px);
		line-height: 1.0;
		font-weight: 700;
		text-transform: uppercase;
		text-wrap: balance;
		text-shadow:
        0 1px 2px rgba(0,0,0,0.85),
        0 0 10px rgba(0,0,0,0.45);
	}
	
	.spin-girl-name {
		margin: 0px;
		font-size: 14px;
		line-height: 1.0;
		font-weight: 700;
		text-transform: uppercase;
		text-wrap: balance;
		text-shadow:
        0 1px 2px rgba(0,0,0,0.85),
        0 0 10px rgba(0,0,0,0.45);
	}
	
	.spin-cat-title {
		margin: 0px;
		font-size: 14px;
		line-height: 1.0;
		font-weight: 700;
		text-transform: uppercase;
		text-wrap: balance;
		text-shadow:
        0 1px 2px rgba(0,0,0,0.85),
        0 0 10px rgba(0,0,0,0.45);
	}
	
	.spin-meta {
		margin: 0px;
		font-size: clamp(9px, 1.4vw, 9px);
		font-weight: 600;
		color: #f0d7e6;
		text-shadow: 0 1px 2px rgba(0,0,0,0.8);
	}
	.spin-desc {
		margin-top: -10px;
		font-size: clamp(8px, 1.2vw, 8px);
		line-height: 1.0;
	}
	.spin-details {
		margin-top: -10px;
		gap: 6px;
	}
	.spin-details span {
		min-height: 20px;
		padding: 0 6px;
		font-size: 9px;
	}
	
	.spin-bio {
		margin-top: 10px;
		font-size: 7px;
		line-height: 0.95;
		font-weight: 100;
	}
	
	.spin-catDescription {
		margin-top: 10px;
		font-size: 7px;
		line-height: 0.95;
		font-weight: 100;
	}
	
}

/* ------------------------------------------
IMAGE GALLERY MODAL
--------------------------------------------- */
.modal {
		display: none;
		position: fixed;
		z-index: 9999;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	
		align-items: center;
		justify-content: center;
		animation: fadeIn 0.5s forwards;
		background-color: black;
	  border-top: 2px solid rgba(255,255,255, 0.381);
	  backdrop-filter: blur(10px);
	}

	.modal-content {
		max-width: 90%;
		max-height: 90%;
		border-radius: 24px;
		box-shadow: 0 0 20px rgba(0,0,0,0.7);
		opacity: 0;
		animation: fadeInImage 0.6s forwards;
	}

	.close {
		position: absolute;
		top: 20px;
		right: 30px;
		color: white;
		font-size: 32px;
		cursor: pointer;
		z-index: 10000;
	}

	@keyframes fadeIn {
		from { opacity: 0; }
		to { opacity: 1; }
	}

	@keyframes fadeInImage {
		from { opacity: 0; transform: scale(0.95); }
		to { opacity: 1; transform: scale(1); }
	}

	body.modal-open #gallery {
		opacity: 0;
		transition: opacity 0.4s ease;
		pointer-events: none;
	}

/* ------------------------------------------
CAROUSELS
--------------------------------------------- */
.carousel-container {
	position: relative;
	width: 100%;
	overflow: visible; /* allow pink highlight to show */
	display: flex;
	justify-content: center;
	align-items: flex-start;
	user-select: none;
	touch-action: pan-y; /* prevents vertical scrolling from killing swipe */
	padding-bottom: 40px; /* space for scaled card bottom */
}

.clipCarousel-container {
	position: relative;
	width: 100%;
	overflow: visible; /* allow pink highlight to show */
	display: flex;
	justify-content: center;
	align-items: flex-start;
	user-select: none;
	touch-action: pan-y; /* prevents vertical scrolling from killing swipe */
	padding-bottom: 40px; /* space for scaled card bottom */
	height: 450px;
}
.girlCarousel-container {
	position: relative;
	width: 100%;
	overflow: visible; /* allow pink highlight to show */
	display: flex;
	justify-content: center;
	align-items: flex-start;
	user-select: none;
	touch-action: pan-y; /* prevents vertical scrolling from killing swipe */
	padding-bottom: 40px; /* space for scaled card bottom */
	height: 800px;
}
.tourCarousel-container {
	position: relative;
	width: 100%;
	overflow: visible; /* allow pink highlight to show */
	display: flex;
	justify-content: center;
	align-items: flex-start;
	user-select: none;
	touch-action: pan-y; /* prevents vertical scrolling from killing swipe */
	padding-bottom: 40px; /* space for scaled card bottom */
	height: 350px;
}
.carousel-track {
	display: flex;
	transition: transform 0.55s cubic-bezier(0.25, 1, 0.35, 1);
	overflow: visible;
}
/* Base card */
.plan-card {
	width: 280px;
	margin: 0 20px;
	padding: 0;
	border-radius: 20px;
	background: #fefefe;
	text-align: center;
	cursor: pointer;

	/* smoother transitions */
	transition:
		transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
		opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
		background 0.45s cubic-bezier(0.16, 1, 0.3, 1);

	position: relative;
	opacity: 0.4; /* fade for side cards */
}

/* Centre card pops fully visible */
.plan-card.centered {
	opacity: 1 !important;
	transform: scale(1.12);
	background: #FF3EA542;
	padding: 3px;
	box-shadow: 0 3px 12px rgba(255, 0, 100, 0.10);
}

.plan-card.centered .plan-inner {
	border-color: white;
}

.plan-card.centered .plan-banner {
	display: block;
}

/* Banner (inside the pink box) */
.plan-banner {
	color: #877d7d;
	font-weight: bold;
	font-size: 14px;
	padding: 8px 0;
	border-radius: 20px 20px 0 0;
	display: none; /* shown only when centred */
	z-index: 5;
}

/* Inner content box */
.plan-inner {
	border-radius: 20px;
	padding: 8px;
	background: white;
	position: relative;
	z-index: 3;
}

.plan-image {	

}
.plan-image img{	
	width: 100%;
	object-fit: cover;
	border-radius: 23px;
	max-height: 300px;
	border: 3px solid #d4d4d454;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.18);
}

.girl-plan-image {	

}
.girl-plan-image img{	
	width: 100%;
	object-fit: cover;
	border-radius: 23px;
	border: 3px solid #d4d4d454;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.18);
}

/* Base card */
.tour-card {
	width: 160px;
	margin: 0 14px;
	padding: 0;
	border-radius: 20px;
	background: #fefefe;
	text-align: center;
	cursor: pointer;

	/* smoother transitions */
	transition:
		transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
		opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
		background 0.45s cubic-bezier(0.16, 1, 0.3, 1);

	position: relative;
	opacity: 0.4; /* fade for side cards */
}

/* Centre card pops fully visible */
.tour-card.centered {
	opacity: 1 !important;
	transform: scale(1.12);
	background: #FF3EA542;
	padding: 3px;
	box-shadow: 0 3px 12px rgba(255, 0, 100, 0.10);
}

.tour-card.centered .tour-inner {
	border-color: white;
}

.tour-card.centered .tour-banner {
	display: block;
}
.tour-plan-image {	

}
.tour-plan-image img{	
	width: 100%;
	object-fit: cover;
	border-radius: 23px;
	border: 3px solid #d4d4d454;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.18);
  	object-position: top center; /* top 640x640 crop feel */
	height: 220px;
}

/* Typography */
.plan-title {
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 8px;
	text-align: left;
	padding-left: 8px;
}

.plan-clip-title {
	font-size: 13px;
	color: #252525;
	position: relative;
    bottom: 20px;
    text-align: center;
}

.plan-add-date {
	font-size: 10px;
	color: #FF3EA5;
    text-align: center;
	margin-top: -15px;
}

.plan-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.94);
    color: var(--pink);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    transition: opacity 0.28s ease, transform 0.28s ease;
	position: relative;
	bottom: 30px;
    font-size: 24px;
    text-align: center;
    padding-left: 2px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.18);
}
.plan-icon:hover {
    transform: scale(1.2);
}
.plan-icon a {
    color: #FF3EA5;
}

.plan-price {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 8px;
	text-align: left;
	padding-left: 8px;
}

.plan-term {
	font-size: 14px;
	font-weight: normal;
}

.plan-slogan {
	font-size: 18px;
	font-weight: normal;
	color: #FF3EA5;
	margin-bottom: 15px;
	text-align: left;
	padding-left: 8px;
}

.plan-row {
	display: grid;
	grid-template-columns: 100px auto; /* fixed label column */
	align-items: center;
	margin-bottom: 8px;
	padding-left: 8px;
}

.plan-label {
	font-size: 14px;
	font-weight: bold;
	text-align: left;
}

.plan-reward {
	font-size: 12px;
	font-weight: normal;
	text-align: left;
}

.plan-detail {
	font-size: 10px;
	font-weight: normal;
	color: #FF3EA5;
	margin-bottom: 15px;
	text-align: left;
	padding-left: 8px;
}

.btn-upgrade {
	display: inline-block;
	padding: 10px 20px;
	background: #FF3EA5;
	color: white;
	border-radius: 10px;
	margin-bottom: 15px;
	text-decoration: none;
	font-weight: bold;
	width: 80%;
}
.btn-upgrade a {
	color: white;
}
.btn-upgrade a:visited {
	color: white;
}
.btn-upgrade.disabled {
  border: 2px solid #FF3EA557;
  pointer-events: none;
  background: white;
  color: #ee8fac;
  opacity: 0.5;
  cursor: not-allowed;
}

/* MOBILE */
@media (max-width: 768px) {
	.clipCarousel-container {
		height: 280px;
	}
	.plan-card {	
		width: 180px;
	}
	.plan-inner {	
		padding: 0px;
	}
	.plan-image img{	
		max-height: 180px;
		border-radius: 20px
	}
	.plan-clip-title {	
		font-size: 10px;
		padding: 0px 4px;
	}
	.plan-add-date {
		font-size: 8px;
		margin-top: -19px;
  		padding-bottom: 10px;
	}
	.plan-icon {	
		width: 32px;
		height: 32px;
		bottom: 25px;
	}
}

/* ------------------------------------------
INDEX
--------------------------------------------- */


.indexHeader H1{
	font-size: 18px;
}
.splashHeader {
	color: #FF3EA5;
	text-align:right;
	margin-right: 5px;
	margin-top: 0px;
	position: relative;
}
.index-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9.15;
    overflow: hidden;
    border-radius: 36px;
    background-color: #f0c9e508;
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
	border: 3px solid #FF3EA55C;
	padding: 4px;
}
.index-stage video {
	width: inherit;
	padding: 4px 4px 0px 4px;
	border-radius: 28px;
}
.indexContainer{
	border: 3px solid rgba(255,255,255, 0.381);
	border-radius: 23px;
	width: 100%;
	background-color: #f0c9e508;
    backdrop-filter: blur(10px);
}
.indexItem {
	padding: 20px;
	border-bottom: 1px solid #ffffffb5;
}
.indexItem H2{
	color: #FF3EA5;
	font-size: 18px;	
	text-transform: none;
}
.indexItem p{
	color: #252525;
	font-size: 14px;
}
.indexItem H3{
	color: #252525;
	font-size: 14px;
}
.indexItem ul{
	color: #252525;
	font-size: 14px;
	list-style: disc;
}
.indexItem li{
	padding: 8px;
}
.indexItem img{
	position: relative;
	bottom: -4px;
	width: 120px;
}
.enterPink {
	text-transform: uppercase;
	font-size: 90px;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.59);
	padding: 10px;
}

.exitCharcoal {
	text-transform: uppercase;
	font-size: 90px;
	text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.59);
	padding: 10px;
}

@media (max-width: 768px) {
	.indexHeader H1{
		font-size: 16px;
	}
	
	.index-stage {		
		border-radius: 20px;
	}
	.index-stage video {
		width: inherit;
		padding: 0px;
		border-radius: 16px;
	}
	.enterPink {
		font-size: 40px;
		padding: 5px;
	}
	.exitCharcoal {
		font-size: 40px;
		padding: 5px;
	}

	
}

/* ------------------------------------------
CONTACT
--------------------------------------------- */


.contact-usHeader H1{
	font-size: 18px;
}
.contactHeader {
	color: #FF3EA5;
	text-align:right;
	margin-right: 5px;
	margin-top: 0px;
	position: relative;
}

.contactContainer{
	border: 3px solid rgba(255,255,255, 0.381);
	border-radius: 23px;
	width: 100%;
	background-color: #f0c9e508;
    backdrop-filter: blur(10px);
}

.contactTable{
	width: 100%;
}

.contactForm{
	padding: 10px;
}
.contact-alert {
	color: #FF3EA5;
	text-align: center;
	font-size: 18px;
}
.contact-name-box {
	position: relative;
	margin-top: 20px;
}
.contact-name-box input {
	width: 400px;
	padding: 17px 13px;
	border: 2px solid #FF3EA5;
	outline: none;
	border-radius: 14px;
}
.contact-name-box label{
	position: absolute;
	top: 15px;
	left: 13px;
	color: #252525;
	transition: 0.3s;
}
.contact-name-box input:focus+label,
.contact-name-box input:valid+label
{
	top: -9px;
	color: white;
	background-color: #FF3EA5;
	padding: 2px 7px;
	border-radius: 12px;
	font-size: 13px;
}

.contact-email-box {
	position: relative;
	margin-top: 20px;
}
.contact-email-box input {
	width: 400px;
	padding: 17px 13px;
	border: 2px solid #FF3EA5;
	outline: none;
	border-radius: 14px;
}
.contact-email-box label{
	position: absolute;
	top: 15px;
	left: 13px;
	color: #252525;
	transition: 0.3s;
}
.contact-email-box input:focus+label,
.contact-email-box input:valid+label
{
	top: -9px;
	color: white;
	background-color: #FF3EA5;
	padding: 2px 7px;
	border-radius: 12px;
	font-size: 13px;
}


.contact-message-box {
	position: relative;
	margin-top: 20px;
}
.contact-message-box textarea {
	padding: 17px 13px;
	border: 2px solid #FF3EA5;
	outline: none;
	border-radius: 14px;
	width: 100%;
	min-height: 200px;
}

.contact-message-box label{
	position: absolute;
	top: 15px;
	left: 13px;
	color: #252525;
	transition: 0.3s;
}
.contact-message-box textarea:focus+label,
.contact-message-box textarea:valid+label
{
	top: -9px;
	color: white;
	background-color: #FF3EA5;
	padding: 2px 7px;
	border-radius: 12px;
	font-size: 13px;
}

.contact-button {
	margin-top: 10px;
	max-width: 200px;
	text-align: center;
}

@media (max-width: 768px) {
	.contact-usHeader H1{
		font-size: 16px;
	}
	
}


/* ------------------------------------------
LOGIN / PASS REMIND / PASS RESET / FREE ACCOUNT REGISTRATION PAGE: 
--------------------------------------------- */

/* Base card */
.login-card {
	width: 280px;
	margin: 0 20px;
	padding: 3px;
	border-radius: 20px;
	background: #DDD;
	cursor: pointer;
	transition:
		transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
		opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
		background 0.45s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	opacity: 1 !important;
	transform: scale(1.12);
	box-shadow: 0 3px 12px rgba(255, 0, 100, 0.10);
	align-items: center;
}
/* Banner (inside the pink box) */
.login-banner {
	color: #FF3EA5;
	font-weight: bold;
	font-size: 14px;
	padding: 8px 8px 8px 8px;
	border-radius: 20px 20px 0 0;
	text-align: center;
}
.login-inner {
	border-radius: 20px;
	padding: 8px 8px 60px 0px;
	background: white;
	position: relative;
	z-index: 3;
}
.login-errors {
	color: red;
	background: white;
	position: relative;
	width: 270px;
}
.error-notice {
  font-size: 22px;
  position: relative;
  top: 224px;
  color: red;
  justify-items: center;
  display: grid;
}
.error-notice i{
  position: relative;
  font-size: 24px;
  top: 2px;
  padding: 8px;
  border-radius: 50%;
  border: 3px solid red;
}
.login-creds {
	border-radius: 20px;
	padding: 0px 0px 0px 22px;
	background: white;
	position: relative;
	width: 270px;
}
.login-button {
	margin-top: 220px;
	text-align: center;
}
.login-forgot {
	font-size: 10px;
	margin-top: 20px;
	text-align: center;
}
.email-box {
	position: absolute;
	margin-top: 20px;
}
.email-box input {
	width: 230px;
	padding: 17px 13px;
	border: 2px solid #FF3EA5;
	outline: none;
	border-radius: 14px;
}
.email-box label{
	position: absolute;
	top: 15px;
	left: 13px;
	color: #252525;
	transition: 0.3s;
}
.email-box input:focus+label,
.email-box input:valid+label
{
	top: -9px;
	color: white;
	background-color: #FF3EA5;
	padding: 2px 7px;
	border-radius: 12px;
	font-size: 13px;
}
.user-box {
	position: absolute;
	margin-top: 80px;
}
.user-box input {
	width: 230px;
	padding: 17px 13px;
	border: 2px solid #FF3EA5;
	outline: none;
	border-radius: 14px;
}
.user-box label{
	position: absolute;
	top: 15px;
	left: 13px;
	color: #252525;
	transition: 0.3s;
}
.user-box input:focus+label,
.user-box input:valid+label
{
	top: -9px;
	color: white;
	background-color: #FF3EA5;
	padding: 2px 7px;
	border-radius: 12px;
	font-size: 13px;
}
.user-checks {
	color: #C2C2C2;
	display: grid;
	grid-template-columns: 100px auto; /* fixed label column */
	position: relative;
	top: 138px;
	font-size: 10px;
	padding: 0px 0px 0px 18px;
}
.user-checks i{
	font-size: 20px;
	position: relative;
	top: 5px;
}
.pass-box {
	position: absolute;
	margin-top: 140px;
}
.pass-box input {
	width: 230px;
	padding: 17px 13px;
	border: 2px solid #FF3EA5;
	outline: none;
	border-radius: 14px;
}
.pass-box label{
	position: absolute;
	left: 13px;
	top: -9px;
	color: white;
	background-color: #FF3EA5;
	padding: 2px 7px;
	border-radius: 12px;
	font-size: 13px;
}
.pass-box i{
	position: relative;
	top: -47px;
	left: 180px;
	padding: 8px;
	border-radius: 50%;
	border: 2px solid #252525;
	font-size: 20px;
	cursor: pointer;
	transition: 0.4s ease;
}
.pass-box i:hover{
	background: white;
	color: #252525;
	transform: scale(1.1);
}
.pass-checks {
	color: #C2C2C2;
	display: grid;
	grid-template-columns: 100px auto; /* fixed label column */
	position: relative;
	top: 200px;
	font-size: 10px;
	padding: 0px 0px 0px 18px;
}
.pass-checks i{
	font-size: 20px;
	position: relative;
	top: 5px;
}
.check-valid {
  color: #10B40B !important;
}
.check-inbox {
  	font-size: 22px;
	position: relative;
	top: 5px;
	color: #FF3EA5;
}
.free-verified {
  	font-size: 22px;
	position: relative;
	top: 5px;
	color: #10B40B;
}
.free-verified i{
	position: relative;
  	font-size: 34px;
	top: 6px;
}
.free-invalid {
  	font-size: 22px;
	position: relative;
	top: 5px;
	color: red;
}
.free-invalid i{
	position: relative;
  	font-size: 34px;
	top: 6px;
	padding: 8px;
	border-radius: 50%;
	border: 2px solid red;
}
.info-card {
  display: grid;
  justify-items: center;
  text-align: center;
}
.free-button {
	margin-top: 180px;
	text-align: center;
}
.free-resub {
	font-size: 10px;
	margin-top: 20px;
	text-align: center;
	color: #FF3EA5;
}
.free-notice {
	border-radius: 20px;
	padding: 60px 0px 60px 0px;
	background: white;
	position: relative;
	z-index: 3;
	min-height: 500px;
	font-size: 14px;
	color: #FF3EA5;
}
.verify-email {
	position: absolute;
	margin-top: 55px;
}
.verify-email input {
	width: 230px;
	padding: 17px 13px;
	border: 2px solid #FF3EA5;
	outline: none;
	border-radius: 14px;
}
.verify-email label{
	position: absolute;
	top: 15px;
	left: 13px;
	color: #252525;
	transition: 0.3s;
}
.verify-email input:focus+label,
.verify-email input:valid+label
{
	top: -9px;
	color: white;
	background-color: #FF3EA5;
	padding: 2px 7px;
	border-radius: 12px;
	font-size: 13px;
}

.remind-email {
	position: absolute;
	margin-top: 50px;
}
.remind-email input {
	width: 230px;
	padding: 17px 13px;
	border: 2px solid #FF3EA5;
	outline: none;
	border-radius: 14px;
}
.remind-email label{
	position: absolute;
	top: 15px;
	left: 13px;
	color: #252525;
	transition: 0.3s;
}
.remind-email input:focus+label,
.remind-email input:valid+label
{
	top: -9px;
	color: white;
	background-color: #FF3EA5;
	padding: 2px 7px;
	border-radius: 12px;
	font-size: 13px;
}
.remind-notice {
  font-size: 12px;
  position: relative;
  top: 134px;
  color: #252525;
  text-align: center;
  display: grid;
}
.remind-alert {
  font-size: 22px;
  position: relative;
  top: 134px;
  color: #252525;
  text-align: center;
  display: grid;
}
.remind-alert i{
  position: relative;
  font-size: 24px;
  top: 2px;
  padding: 8px;
  border-radius: 50%;
  border: 3px solid red;
}
.remind-button {
	margin-top: 160px;
	text-align: center;
}
.reset-box {
	position: absolute;
	margin-top: 40px;
}
.reset-box input {
	width: 230px;
	padding: 17px 13px;
	border: 2px solid #FF3EA5;
	outline: none;
	border-radius: 14px;
}
.reset-box label{
	position: absolute;
	left: 13px;
	top: -9px;
	color: white;
	background-color: #FF3EA5;
	padding: 2px 7px;
	border-radius: 12px;
	font-size: 13px;
}
.reset-box i{
	position: relative;
	top: -47px;
	left: 180px;
	padding: 8px;
	border-radius: 50%;
	border: 2px solid #252525;
	font-size: 20px;
	cursor: pointer;
	transition: 0.4s ease;
}
.reset-box i:hover{
	background: white;
	color: #252525;
	transform: scale(1.1);
}
.reset-checks {
	color: #C2C2C2;
	display: grid;
	grid-template-columns: 100px auto; /* fixed label column */
	position: relative;
	top: 100px;
	font-size: 10px;
	padding: 0px 0px 0px 18px;
}
.reset-checks i{
	font-size: 20px;
	position: relative;
	top: 5px;
}
.reset-button {
	margin-top: 200px;
	text-align: center;
}
.confirm-box {
	position: absolute;
	margin-top: 140px;
}
.confirm-box input {
	width: 230px;
	padding: 17px 13px;
	border: 2px solid #FF3EA5;
	outline: none;
	border-radius: 14px;
}
.confirm-box label{
	position: absolute;
	left: 13px;
	top: -9px;
	color: white;
	background-color: #FF3EA5;
	padding: 2px 7px;
	border-radius: 12px;
	font-size: 13px;
}
.confirm-box i{
	position: relative;
	top: -47px;
	left: 180px;
	padding: 8px;
	border-radius: 50%;
	border: 2px solid #252525;
	font-size: 20px;
	cursor: pointer;
	transition: 0.4s ease;
}
.confirm-box i:hover{
	background: white;
	color: #252525;
	transform: scale(1.1);
}
.confirm-checks {
	color: #C2C2C2;
	display: grid;
	grid-template-columns: 100px auto; /* fixed label column */
	position: relative;
	top: 200px;
	font-size: 10px;
	padding: 0px 0px 0px 18px;
}
.confirm-checks i{
	font-size: 20px;
	position: relative;
	top: 5px;
}
.alert-info {
position: relative;
  top: 210px;
  font-size: 14px;
  text-align: center;
  color: #FF3EA5;
}

/* ------------------------------------------
HOME
--------------------------------------------- */

.homeHeader H1{
	font-size: 18px;
}
.slidesHeader {
	color: #FF3EA5;
	text-align:right;
	margin-right: 5px;
	margin-top: 0px;
	position: relative;
}

	
.homeDetails H2{
	color: #252525;
	text-transform: none;
	text-align: center;	
}

.homeDetails H3{
	color: #252525;
	text-align: center;	
}

.homeDetails p{
	color: #FF3EA5;
	text-align: center;	
}

@media (max-width: 768px) {
	.homeHeader H1{
		font-size: 16px;
	}
}


/* ------------------------------------------
TOUR
--------------------------------------------- */

.tourDetails H2{
	color: #252525;
	text-transform: none;
	text-align: center;	
	font-size: 36px;
}
.tourDetails H3{
	color: #252525;
	text-transform: none;
	text-align: center;	
	font-size: 16px;
	margin-bottom: 72px;
}

.tourDetails p{
	color: #252525;
	text-align: center;	
	margin-bottom: 52px;
}
.tourDetails ul{
	font-size: 22px;
	color: #FF3EA5;
	text-align: center;	
	list-style: none;
}

.tourDetails li{
	margin-bottom: 12px;
}

.tourHooks H2{
	color: #252525;
	text-transform: none;
	text-align: center;	
	font-size: 36px;
}
.tourHooks p{
	color: #FF3EA5;
	text-align: center;	
	margin-bottom: 22px;
}
.tour-audio__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.94);
    color: white;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    font-size: 22px;
    flex: 0 0 42px;
	transition: opacity 0.28s ease, transform 0.28s ease;
	position: relative;
	bottom: 8px;
}

.tour-audio__icon:hover {
	transform: scale(1.2);
}

@media (max-width: 768px) {

	.tourDetails H2{
		font-size: 16px;
	}
	.tourDetails H3{
		font-size: 16px;
		margin-bottom: 56px;
	}
	.tourDetails p{
		font-size: 12px;
	}
	.tourHooks H2{
		font-size: 18px;
	}
	.tourHooks p{
		font-size: 10px;
		color: #FF3EA5;
		margin-bottom: 0px;
	}
	.tour-audio__icon {
		width: 22px;
		height: 22px;
		bottom: 2px;
		font-size: 14px;
	}

}

/* ------------------------------------------
CLIPS
--------------------------------------------- */

.clipHeader H1{
	font-size: 18px;
}
.media-split {
    --gap: 14px;
    --collapsed: 62px;
    --radius: 30px;
    --pink: #FF3EA5;
    --dark: #252525;
    --soft: #f5d7e0;

    width: min(100%, 1200px);
    display: flex;
    gap: var(--gap);
    align-items: stretch;
    margin: 0 auto;
}

.media-panel {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    transition:
        flex-basis 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 28px rgba(0,0,0,0.16);
    isolation: isolate;
	max-height: 674px;
}

.media-panel:focus-visible {
    outline: 3px solid rgba(234, 4, 75, 0.45);
    outline-offset: 2px;
}

.media-split.video-open .media-panel--video {
    flex: 1 1 auto;
	width: 100%;
    height: 100%;
	border: 3px solid #FF3EA55C;
	background: white;
}

.media-split.video-open .media-panel--details {
    flex: 0 0 var(--collapsed);
	height: inherit;
}

.media-split.details-open .media-panel--video {
    flex: 0 0 var(--collapsed);
	height: 600px;
}

.media-split.details-open .media-panel--details {
    flex: 1 1 auto;
	height: 600px;
}

/* VIDEO PANEL */
.media-panel--video {
    background: white;
}

.media-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;

}

.media-split.video-open .media-panel--video .media-video {
    pointer-events: auto;
}

.media-panel video {
	width: inherit;
	padding: 4px 4px 0px 4px;
	border-radius: 28px;
	object-fit: cover;
}
.media-panel__shade {

}

/* DETAILS PANEL */
.media-panel--details {
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 45%), linear-gradient(160deg, #FF3EA5 14%, #ffc8fc 40%, #FF3EA5 120%);
    color: #FF3EA5
}

.media-details {
    position: absolute;
    inset: 0;
    padding: 14px 14px 90px 14px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}

.media-details__inner {
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border: 2px solid #FF3EA55C;
    border-radius: 24px;
    padding: 14px;
    transition: opacity 0.28s ease, transform 0.28s ease;
	font-size: 16px;
}

.media-details__inner h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.05;
	color: #252525;
}
.media-details__inner a {
	color: #FF3EA5;
	font-size: 16px;
}
.media-details__inner .media-badge__icon{
   position: relative;
   left: 10px;
   bottom: 2px;
   transition: 0.4s ease;
}
.media-details__inner .media-badge__icon:hover{
   transform: scale(1.2);
}

.media-details__inner p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.5;
}
.members-meta {
	margin-top: 20px;
	margin-bottom: 20px;
}

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

.media-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #FF3EA536;
    border: 1px solid #0000005C;
    font-size: 13px;
    font-weight: 600;
	color: #252525;
}


#clip_fav {
	font-size: 23px;
	color: #252525;
	transition: color 0.2s ease, transform 0.2s ease;
}

#clip_fav:hover {
  transform: scale(1.2);
}

#clip_fav.is-favourite {
  color: #FF3EA5;
}


/* BOTTOM LEFT BADGES */
.media-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.28s ease, transform 0.28s ease;
}
.media-badge:hover {
    transform: scale(1.2);
}

.media-badge__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.94);
    color: var(--pink);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    font-size: 22px;
    flex: 0 0 42px;
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.media-badge__icon:hover {
	transform: scale(1.2);
}

.media-badge__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.media-badge__text strong {
    font-size: 16px;
    font-weight: 700;
}

.media-badge__text span {
    font-size: 13px;
    opacity: 0.92;
}

.media-panel--video .media-badge__text {
    color: #fff;
}

.media-panel--details .media-badge__text {
    color: #fff;
}

/* VIDEO TEXT */
.media-video-copy {
    position: absolute;
    left: 72px;
    bottom: 8px;
    z-index: 3;
    color: #fff;
    transition: opacity 0.28s ease, transform 0.28s ease;	
	background: #FF3EA561;
	padding: 3px 20px 3px 20px;
	border-radius: 23px;
	backdrop-filter: blur(4px);
}

.media-video-copy h3 {
    margin: 0 0 4px;
    font-size: 18px;
    line-height: 1;
	color: #fff;
	text-shadow: 2px 2px 2px rgb(0, 0, 0);
}

.media-video-copy p {
    margin: 0;
    font-size: 14px;
    text-shadow: 2px 2px 2px rgb(0, 0, 0);
}

/* HIDE FULL CONTENT WHEN COLLAPSED */
.media-split.details-open .media-panel--video .media-video-copy,
.media-split.details-open .media-panel--video .media-badge__text {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.media-split.video-open .media-panel--details .media-details__inner,
.media-split.video-open .media-panel--details .media-badge__text {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

/* MAKE COLLAPSED CARD FEEL LIKE A THIN PILL */
.media-split.video-open .media-panel--details,
.media-split.details-open .media-panel--video {
    border-radius: 999px;
}


.previewHeader {
	color: #FF3EA5;
	text-align:right;
	margin-right: 5px;
	margin-top: 0px;
	position: relative;
}

.clip-description {
    max-height: 260px;
    overflow: hidden;
    position: relative;
    line-height: 1.4em;
    mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 90%);
}

.members-clip-description {
    max-height: 86%;
    position: relative;
    line-height: 1.4em;
	overflow-x: hidden;
}

.ClipFormats-icons {
  position: relative;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  padding: 5px;
}

.ClipDL-icons {
	position: relative;
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	padding: 5px;
	transition: opacity 0.28s ease, transform 0.28s ease;
}

.ClipDL-icons:hover {
	transform: scale(1.2);
}

.moreClips {
	font-size: 26px;
	color: #252525;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 38px;
}

.limitAlert {
	font-size: 18px;
	color: #FF3EA5;
	text-align: center;
}

.overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1.0; /* Adjust this value for desired opacity */
    pointer-events: none; /* Ensures the overlay doesn't block video interaction */
}
	
.overlay-image:hover {
    opacity: 0.5; /* Adjust this value for desired opacity */
}	

.dl-modal[hidden] {
  display: none !important;
}

.dl-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.dl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
}

.dl-modal__panel {
  position: relative;
  width: min(420px, calc(100% - 24px));
  margin: 20vh auto 0;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  text-align: center;
}

.dl-modal__panel h3 {
  margin: 0 0 10px;
  color: #FF3EA5;
  font-size: 24px;
}

.dl-modal__panel p {
  margin: 0 0 18px;
  color: #252525;
  font-size: 15px;
  line-height: 1.45;
}

.dl-modal__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dl-btn {
  min-width: 120px;
  padding: 11px 16px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
}

.dl-btn--ghost {
  background: #f3f3f3;
  color: #252525;
  transition: opacity 0.28s ease, transform 0.4s ease;
}
.dl-btn--ghost:hover {
  transform: scale(1.1);
}

.dl-btn--primary {
  background: #FF3EA5;
  color: white;
  transition: opacity 0.28s ease, transform 0.4s ease;
}

.dl-btn--primary:hover {
	transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 768px) {
	.clipHeader H1{
		font-size: 16px;
	}
	.media-split {
		--gap: 8px;
		--collapsed: 30px;
		--radius: 18px;
		--pink: #FF3EA5;

		width: min(100%, 1200px);
		display: flex;
		gap: var(--gap);
		align-items: stretch;
		margin: 0 auto;
	}
	.media-panel video{
		border-radius: 16px
	}
	.media-video-copy{
		left: 32px;
		bottom: 4px;
	}
	.media-video-copy H3{
		font-size: 10px;
		line-height: 0.4;
	}
	.media-video-copy p{
		font-size: 8px;
		line-height: 1;
	}
	.media-badge {
		position: absolute;
		left: 4px;
		bottom: 4px;
		z-index: 3;
		display: flex;
		align-items: center;
		gap: 10px;
		transition: opacity 0.28s ease, transform 0.28s ease;
	}
	.media-badge__icon {
		width: 22px;
		height: 22px;
		border-radius: 50%;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: rgba(255,255,255,0.94);
		color: var(--pink);
		box-shadow: 0 6px 18px rgba(0,0,0,0.18);
		font-size: 16px;
		flex: 0 0 22px;
	}
	.clip-description {
		font-size: 12px;	
	}
	.media-meta span {
		display: inline-flex;
		align-items: center;
		min-height: 26px;
		padding: 0 6px;
		border-radius: 999px;
		background: #FF3EA536;
		border: 1px solid #0000005C;
		font-size: 10px;
		font-weight: 300;
		color: #252525;
	}
	
	#clip_fav {
		font-size: 18px;
	}
	.ClipFormats-icons {
		width: 24px;
  		height: 24px;
		padding: 0px 2px;
	}
	.ClipDL-icons {
		width: 24px;
  		height: 24px;
		padding: 0px 2px;
		transition: opacity 0.28s ease, transform 0.28s ease;
	}

	.ClipDL-icons:hover {
		transform: scale(1.2);
	}
	
	.media-details {
		padding: 6px 6px 90px 6px;
	}
	.media-details__inner {
		font-size: 12px;
		border-radius: 14px;
	}
	.media-details__inner h3 {
		margin: 0 0 12px;
		font-size: 16px;
		line-height: 1.05;
		color: #252525;
	}
	.media-details__inner p {
		margin: 0 0 18px;
		font-size: 12px;
		line-height: 1.5;
	}

	.media-details__inner a {
		font-size: 12px;
	}
	.media-details__inner .media-badge__icon{
	   position: relative;
	   left: 5px;
	   bottom: -1px;
	}
	
	.moreClips {
		font-size: 16px;
	}
}

/* ------------------------------------------
UPDATES
--------------------------------------------- */

.updatesHeader H1{
	font-size: 18px;
}
.latestHeader {
	color: #FF3EA5;
	text-align:right;
	margin-right: 5px;
	margin-top: 0px;
	position: relative;
}

.favHeader H2{
	font-size: 26px;
	color: #252525;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 54px;
}

.updatesDetails H2{
	text-align: center;
	text-transform: none;
	color: #252525;
	font-size: 18px;
	margin-top: 32px;
 	margin-bottom: 46px;
}


.clip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  margin: 20px 0;
}

.clip-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 22px;
  background: rgba(242, 57, 187, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.clip-item {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.38s ease,
    transform 0.38s ease,
    box-shadow 0.2s ease;
}

.clip-item--enter {
  opacity: 0;
  transform: translateY(14px);
}

.clip-load-more.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.clip-item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 28px rgba(0,0,0,0.14);
}

.clip-avatars {
  position: relative;
  width: 72px;
  min-height: 108px;
}

.clip-avatar {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.16);
  background: #f3f3f3;
}

.clip-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center; /* top 640x640 crop feel */
}

.clip-avatar--1 {
  top: 0;
  left: 0;
  z-index: 3;
}

.clip-avatar--2 {
  top: 26px;
  left: 10px;
  z-index: 2;
}

.clip-avatar--3 {
  top: 52px;
  left: 20px;
  z-index: 1;
}

.clip-info {
  min-width: 0;
}

.clip-title {
  margin: 0 0 6px;
  color: #252525;
  font-size: 18px;
  line-height: 1.15;
}

.clip-models {
  margin: 0 0 6px;
  color: #FF3EA5;
  font-size: 14px;
}

.clip-date {
  margin: 0;
  color: #6d6d6d;
  font-size: 13px;
}

.clip-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0 14px;
  flex-wrap: wrap;
}

.clip-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid rgba(37,37,37,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  color: #252525;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.18s ease;
}

.clip-filter-toggle:hover {
  transform: scale(1.2);
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

.clip-filter-clear {
  color: #FF3EA5;
  font-size: 14px;
  font-weight: 700;
}

.clip-toolbar-count {
  margin-left: auto;
  color: #6d6d6d;
  font-size: 13px;
}

.clip-filter-panel {
  display: none;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.08);
}

.clip-filter-panel.is-open {
  display: block;
}

.filter-group {
  border-top: 1px solid rgba(37,37,37,0.08);
  padding: 12px 0;
}

.filter-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.filter-group summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #252525;
}

.filter-group summary::-webkit-details-marker {
  display: none;
}

.filter-plus::before {
  content: '+';
  font-size: 22px;
  line-height: 1;
  color: #FF3EA5;
}

.filter-group[open] .filter-plus::before {
  content: '–';
}

.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 14px;
}

.filter-chip {
  display: inline-block;
}

.filter-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.filter-chip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(37,37,37,0.10);
  color: #252525;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}

.filter-chip input:checked + span {
  background: #FF3EA5;
  border-color: #FF3EA5;
  color: #fff;
  box-shadow: 0 8px 18px rgba(234, 4, 75, 0.18);
}

.filter-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.filter-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #FF3EA5;
  color: white;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(234, 4, 75, 0.18);
  transition: all 0.4s ease;
}

.filter-apply:hover {
	transform: scale(1.2);
	box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

.filter-reset {
  color: #6d6d6d;
  font-size: 14px;
  font-weight: 700;
}

.clip-empty-state {
  grid-column: 1 / -1;
  padding: 26px;
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  text-align: center;
  color: #6d6d6d;
}

.clip-load-more-wrap {
  display: flex;
  justify-content: center;
  margin: 22px 0 8px;
}

.clip-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(37,37,37,0.10);
  color: #252525;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}
.clip-load-more:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
	.updatesHeader H1{
		font-size: 16px;
	}

	.clip-toolbar-count {
		width: 100%;
		margin-left: 0;
	}

	.filter-actions {
		flex-wrap: wrap;
	}

	.clip-grid {
		grid-template-columns: 1fr;
	}

	.clip-toolbar-count {
		width: 100%;
		margin-left: 0;
	}

	.filter-actions {
		flex-wrap: wrap;
	}
}


/* ------------------------------------------
GIRLS
--------------------------------------------- */

	.girlsHeader H1{
		font-size: 18px;
	}
	.girlfriendsHeader {
		color: #FF3EA5;
		text-align:right;
		margin-right: 5px;
		margin-top: 0px;
		position: relative;
	}
	.girlsDetails H2{
		color: #252525;
		text-transform: none;
		text-align: center;	
	}

	.girlsDetails H3{
		color: #252525;
		text-transform: none;
		text-align: center;	
		font-size: 16px;
	}

	.girlsDetails p{
		color: #252525;
		text-align: center;	
		margin-bottom: 72px;
	}

@media (max-width: 768px) {
	.girlsHeader H1{
		font-size: 16px;
	}
	
	.girlsDetails H2{
		font-size: 16px;
	}
	
	.girlsDetails H3{
		font-size: 16px;
	}
	.girlsDetails p{
		font-size: 12px;
		margin-bottom: 56px;
	}

}


/* ------------------------------------------
GIRL
--------------------------------------------- */

	.girlHeader H1{
		font-size: 18px;
	}
	.modelHeader {
		color: #FF3EA5;
		text-align:right;
		margin-right: 5px;
		margin-top: 0px;
		position: relative;
	}
	.girlDetails H2{
		color: #252525;
		text-transform: none;
		text-align: center;	
	}
	.girlDetails H3{
		color: #252525;
		text-transform: none;
		text-align: center;	
		font-size: 16px;
		margin-bottom: 72px;
	}

	.girlDetails p{
		color: #252525;
		text-align: center;	
		margin-bottom: 22px;
	}

@media (max-width: 768px) {
	.girlHeader H1{
		font-size: 16px;
	}
	
	.girlDetails H2{
		font-size: 16px;
	}
	.girlDetails H3{
		font-size: 16px;
		margin-bottom: 56px;
	}

	.girlDetails p{
		font-size: 12px;
	}

}

/* ------------------------------------------
POLICIES
--------------------------------------------- */
.policyHeader H1{
	font-size: 18px;
	}
.policies{
	border: 3px solid rgba(255,255,255, 0.381);
	border-radius: 23px;
	width: 100%;
	background-color: #f0c9e508;
    backdrop-filter: blur(10px);
}
.policyItem {
	padding: 20px;
	border-bottom: 1px solid #ffffffb5;
}
.policyItem H2{
	color: #FF3EA5;
	font-size: 18px;	
	text-transform: none;
}
.policyItem p{
	color: #252525;
	font-size: 14px;
}
.policyItem H3{
	color: #252525;
	font-size: 14px;
}
.policyItem ul{
	color: #252525;
	font-size: 14px;
}
.policyItem img{
	position: relative;
	bottom: -4px;
	width: 120px;
}
.ageItem {
	padding: 20px;
	border-bottom: 1px solid #ffffffb5;
}
.ageItem H2{
	text-align: center;
	color: #FF3EA5;
	font-size: 18px;	
	text-transform: none;
}
.ageItem p{
	text-align: center;
	color: #252525;
	font-size: 14px;
}
.ageItem H3{
	text-align: center;
	color: #252525;
	font-size: 14px;
}
.docDate {
	padding: 20px;
}
.docDate H2{
	color: #252525;
	font-size: 18px;
	text-transform: none;
}
.policyCo {
	text-align: center;
}
.policyCo img {
	width: 45%;
}
.USC2257Co {
	text-align: left;
}
.USC2257Co img {
	width: 45%;
	margin-left: -4px;
}
.docDate p{
	color: #252525;
	font-size: 14px;
}
.policyButton {
	margin-top: 60px;
	text-align: center;
}
.policyButton button{
  color: #ECECEC;
  font-family: "Futura-Bold", Gotham, Helvetica Neue, Helvetica, Arial," sans-serif";
  font-size: 14px;
  font-weight: bold;
  padding: 10px 20px;
  margin-bottom: 15px;
  text-decoration: none;
  text-transform: uppercase;
  background: #FF3EA5;
  border: 2px solid #FF3EA557;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  width: 80%;
  max-width: 200px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 2px 3px 2px rgb(234, 4, 75, 0.2), inset -2px -2px 0 rgba(248, 124, 162, 0.43);
}
.policyButton button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), inset -2px -2px 0 rgba(248, 124, 162, 0.43);
}

@media (max-width: 768px) {
	.policyCo img {
		width: 85%;
	}
	.USC2257Co img {
		width: 100%;
	}

}
/* ------------------------------------------
COOKIE CONSENT
--------------------------------------------- */
:root {
  --cookie-pink: #FF3EA5;
  --cookie-pink-soft: #f5d7e0;
  --cookie-green: #10B40B;
  --cookie-bg: rgba(255, 255, 255, 0.88);
  --cookie-bg-strong: rgba(255, 255, 255, 0.96);
  --cookie-text: #252525;
  --cookie-muted: #6d6d6d;
  --cookie-border: rgba(255, 255, 255, 0.42);
  --cookie-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.cookie-consent,
.cookie-prefs {
  font-family: "Exo", Gotham, Helvetica Neue, Helvetica, Arial, sans-serif;
  color: var(--cookie-text);
}

.cookie-consent[hidden],
.cookie-prefs[hidden],
.cookie-settings-button[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9998;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-consent__card {
  width: min(980px, 100%);
  background: var(--cookie-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--cookie-border);
  border-radius: 22px;
  box-shadow: var(--cookie-shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  pointer-events: auto;
}

.cookie-consent__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--cookie-pink);
  margin-bottom: 6px;
}

.cookie-consent__text {
  margin: 0;
  line-height: 1.45;
  font-size: 14px;
  color: var(--cookie-text);
}

.cookie-consent__actions,
.cookie-prefs__footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  min-width: 132px;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn--primary {
  background: var(--cookie-pink);
  color: #fff;
  box-shadow: 0 10px 20px rgba(234, 4, 75, 0.22);
}

.cookie-btn--secondary {
  background: #fff;
  color: var(--cookie-pink);
  border: 1px solid rgba(234, 4, 75, 0.22);
}

.cookie-btn--ghost {
  background: transparent;
  color: var(--cookie-text);
  border: 1px solid rgba(37, 37, 37, 0.15);
}

.cookie-prefs {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.cookie-prefs__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 18, 0.55);
  backdrop-filter: blur(4px);
}

.cookie-prefs__panel {
  position: relative;
  width: min(640px, calc(100% - 24px));
  margin: 48px auto;
  background: var(--cookie-bg-strong);
  border: 1px solid var(--cookie-border);
  border-radius: 24px;
  box-shadow: var(--cookie-shadow);
  padding: 22px;
}

.cookie-prefs__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cookie-prefs__header h2 {
  margin: 0;
  font-size: 24px;
  color: var(--cookie-pink);
}

.cookie-prefs__close {
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--cookie-text);
}

.cookie-prefs__intro {
  margin: 12px 0 18px;
  color: var(--cookie-muted);
  line-height: 1.45;
  font-size: 14px;
}

.cookie-toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(37, 37, 37, 0.08);
}

.cookie-toggle--locked {
  opacity: 0.92;
}

.cookie-toggle__title {
  font-weight: 700;
  margin-bottom: 4px;
}

.cookie-toggle__text {
  font-size: 13px;
  color: var(--cookie-muted);
  line-height: 1.4;
}

.switch {
  position: relative;
  width: 54px;
  height: 32px;
  display: inline-block;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch__slider {
  position: absolute;
  inset: 0;
  background: #d9d9de;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.switch__slider::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
  transition: transform 0.2s ease;
}

.switch input:checked + .switch__slider {
  background: var(--cookie-green);
}

.switch input:checked + .switch__slider::before {
  transform: translateX(22px);
}

.cookie-settings-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9997;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(37, 37, 37, 0.88);
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}

@media (max-width: 760px) {
  .cookie-consent__card {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions,
  .cookie-prefs__footer {
    justify-content: stretch;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-prefs__panel {
    margin: 20px auto;
    max-height: calc(100vh - 40px);
    overflow: auto;
  }
}

/* ------------------------------------------
FOOTER
--------------------------------------------- */
footer {
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 10px 10px;
  background-color: #f0c9e508;
  border-top: 2px solid rgba(255,255,255, 0.381);
  backdrop-filter: blur(10px);
  align-items: center;
  color: #252525;
}
.footContainer{
  display: grid;
  max-width: 900px;
  grid-template-columns: repeat(2, 1fr);	
  margin: 0 auto;              /* center the whole footer container */
  align-items: center;
}
.footLinks{
	display: flex;
	flex-direction: column;
	gap: 1em;
	color: #252525;	
}
.footLinks ul{
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 0;                  /* removes default left indent */
    margin: 0;
	list-style: none;
}
.footLinks ul a{
	color:#252525;
	font-size: 16px;
	opacity: 0.6;
	transition: 0.3s ease;
}
.footLinks ul a:hover{
	opacity: 1.0;
}
.footContact{
	display: flex;
	flex-direction: column;
	gap: 1.2em;
	color: #252525;	
	font-size: 16px;
	margin-right: 0px;
}
.footContact ul{
	display: flex;
	flex-direction:row;
	opacity: 0.6;
	transition: 0.3s ease;
	cursor: pointer;
}
.footContact ul:hover{
	display: flex;
	flex-direction: column;
	opacity: 1;
	transition: 0.3s ease;
}
.footContact ul a{
	color: #252525;	
}
.footContact .footIcons{
	display: flex;
	gap: 1em;
	justify-content: right;
	padding-top: 90px;
}
.footContact .footIcons a{
	color: #252525;	
}
.footContact .footIcons i{
	padding: 8px;
	border-radius: 50%;
	border: 2px solid #252525;
	font-size: 20px;
	cursor: pointer;
	transition: 0.4s ease;
}
.footContact .footIcons i:hover{
	background: white;
	color: black;
	transform: scale(1.2);
}

/* ------------------------------------------
RECAPTCHA
--------------------------------------------- */
.g-recaptcha {
  color: #ECECEC;
  font-family: "Futura-Bold", Gotham, Helvetica Neue, Helvetica, Arial," sans-serif";
  font-size: 14px;
  font-weight: bold;
  padding: 10px 20px;
  margin-bottom: 15px;
  text-decoration: none;
  text-transform: uppercase;
  background: #FF3EA5;
  border: 2px solid #FF3EA557;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  width: 80%;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 2px 3px 2px rgb(234, 4, 75, 0.2), inset -2px -2px 0 rgba(248, 124, 162, 0.43);
}
.g-recaptcha:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), inset -2px -2px 0 rgba(248, 124, 162, 0.43);
}
.g-recaptcha:disabled {
  border: 2px solid #FF3EA557;
  pointer-events: none;
  background: white;
  color: #ee8fac;
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none;
}
.grecaptcha-badge {
  visibility: hidden !important;
}
.recaptcha-notice {
  font-size: 12px;
  color: #252525;
  text-align: center;
  margin: 16px auto 24px;
}
.recaptcha-notice a {
  color: #FF3EA5;
  text-decoration: none;
}
.footText {
  font-size: 10px;
  color: #252525;
  text-align: center;
  margin: 16px auto 24px;
}
.footText a {
  color: #FF3EA5;
  text-decoration: none;
}


