/*------------------- Scenes icons -------------------*/


/*default*/
.GSS_default {
	height: 27vh;
	width: 27vh;
	border-radius: 10%;
	margin: 3vh;
	margin-left: 4.5vh;
	margin-right: 4.5vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	transition-duration: 0.3s;
	transition-property: transform;
}
.GSS_default:hover:not(.GSS_locked),
.GSS_default:focus:not(.GSS_locked),
.GSS_default:active:not(.GSS_locked) {
transform: scale(1.1) rotate(4deg);
cursor: pointer;
}
.GSS_default > img {
	position: absolute;
	z-index: 1;
	border-radius: 10%;
	height: 97%;
	width: 97%;
	object-fit: contain;
	background-color: rgb(29, 29, 29);
}
.GSS_default.GSS_locked > img {
	filter: blur(0.2vh) grayscale(100%);
}
.GSS_default.GSS_transition > img{
	width: calc(100% - 1vh);
	height: calc(100% - 1vh);
}

/*types*/
.GSS_secondary {
	border: solid 0.5vh grey;
}
.GSS_main {
	border: solid 0.5vh var(--theme-color);
	box-shadow:0 0 4vh var(--theme-color);
	animation: GSS_glowGold 0.5s ease-in-out infinite alternate;
}
.GSS_transition {
	position: relative;
	height: calc(26vh + 1vh);
	width: calc(26vh + 1vh);
}

.GSS_bossFight {
	border-radius: 100%;
	overflow: hidden;
}

.GSS_bonus > img {
    clip-path: polygon(50% 0,
        calc(50%*(1 + sin(.4turn))) calc(50%*(1 - cos(.4turn))),
        calc(50%*(1 - sin(.2turn))) calc(50%*(1 - cos(.2turn))),
        calc(50%*(1 + sin(.2turn))) calc(50%*(1 - cos(.2turn))),
        calc(50%*(1 - sin(.4turn))) calc(50%*(1 - cos(.4turn))) 
    );
}
.GSS_christmas {
	border-radius: 10vh;
	border: none;
}

.GSS_christmas img {
	height: 80%;
}

.GSS_christmas_crown {
	height: 30vh;
	z-index: 50;
}

.GSS_christmas_crown img {
	height: 100%;
	object-fit: contain;

}

.GSS_bonus-box-glow {
	filter: drop-shadow(0vh 0vh 2vh  white);
	opacity: 0.3;
	transition: opacity 1.555s ease-in-out;
}

.GSS_bonus-box-glow.fade-in {
    opacity: 1;
  }

.GSS_HERO {
    filter: drop-shadow(0 0 2.5vh rgba(234, 172, 0, 1));
}

/* .GSS_HERO .GSS_default {
} */

.GSS_EXEC {
    filter: drop-shadow(0 0 2.5vh rgba(0, 109, 234, 1));
}

/* .GSS_EXEC .GSS_default {
} */

.GSS_HOE {
	filter: drop-shadow(0 0 2.5vh rgba(203, 0, 234, 1));
}

/* .GSS_HOE .GSS_default {
} */


/*locked*/
.GSS_lock_icon {
	height: 100%;
	width: 100%;
	position: absolute;
	display: flex;
	align-content: center;
	justify-content: center;
	align-items: center;
	z-index: 5;
}
.GSS_lock_icon:hover {
	cursor: default;
}
.GSS_lock_icon > img {
	height: 40%;
	object-fit: contain;
}

/*shadow*/
.GSS_shadow_1 {
	height: 100%;
	width: 100%;
	border-radius: 10%;
	box-shadow: inset 0 0 3vh 2vh #000000;
	z-index: 4;
}
.GSS_transition > .GSS_shadow_1 {
height: calc(100% - 1vh);
width: calc(100% - 1vh);
}

/*(beginning icon etc...)*/
.GSS_mech_icons {
	height: 6vh;
	position: absolute;
	top: 10%;
	left: 10%;
	z-index: 5;
	border-radius: 1vh;
    overflow: hidden;
}
.GSS_mech_icons img {
	height: 100%;
	object-fit: contain;
}

.GSS_mech_icons2 {
	height: 9vh;
	position: absolute;
	top: 2%;
	left: 2%;
	z-index: 5;
	border-radius: 1vh;
	overflow: hidden;
}

.GSS_mech_icons2 img {
	height: 100%;
	object-fit: contain;
}

/*Effects*/
.GSS_transition-box, .GSS_transition-box-glow{
	--GSS_glow-color: rgba(255, 215, 0, 1);
	height: 100%;
	width: 100%;
	position: absolute;
	overflow: hidden;
	z-index: 0;
	border-radius: 10%;
}
.GSS_transition-box-glow{
	overflow: hidden;
	filter: blur(20px);
}
.GSS_transition-box:before, .GSS_transition-box-glow:before {
	content: '';
	z-index: -2;
	text-align: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(0deg);
	position: absolute;
	width: 99999px;
	height: 99999px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-image: conic-gradient(transparent, var(--GSS_glow-color), transparent, transparent, var(--GSS_glow-color), transparent, transparent);
	animation: GSS_rotate 4s linear infinite;
}
.GSS_transition-box:after {
	content: '';
	position: absolute;
	z-index: -1;
	left: 0.5vh;
	top: 0.5vh;
	width: calc(100% - 1vh);
	height: calc(100% - 1vh);
	background: #292a2e;
	border-radius: 10%;
}
@keyframes GSS_rotate {
	to {transform: translate(-50%, -50%) rotate(1turn)}
}
@keyframes GSS_glowGold {
	0% {box-shadow: 0 0 1.5vh 0.3vh var(--theme-color)}
	to {box-shadow: 0 0 3.5vh 0.6vh var(--theme-color)}
}


/*------------------- Scenes page -------------------*/

/*upper section*/
.scenes_upper_div {
	height: 32vh;
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	align-items: center;
}
#woman_and_scenes_button_scenes {
	height: 20vh;
	aspect-ratio: 1/1;
	border: solid 1vh ;
	border-radius: 125vh;
	background-color: rgba(44, 133, 160, 0);
	transition: all 0.1s ease-in-out;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
    margin-left: -0.5vh;
	border-color: rgb(73, 0, 0);
	position: relative;
}
#woman_and_scenes_button_scenes img {
	height: 65%;
	width: auto;
	display: flex;
}
.parent_upper_mid {
	position: relative;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
	left: 6vh;
}
.parent_upper_right {
	height: 30vh;
	width: 27vh;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: space-around;
	justify-content: center;
	align-items: center;
	margin-right: 5vh;
	position: relative;
}
.parent_counter {
	height: 32vh;
	width: 60vh;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center
}
.scenes_character_image {
	height: 23vh;
	aspect-ratio: 1/1;
	border: solid 1vh var(--theme-color);
	border-radius: 10%;
	background-color: rgba(44, 133, 160, 0);
	transition: all 0.1s ease-in-out;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	position: relative;
	margin-right: 6.5vh;
}
.scenes_character_image img {
	/* border-radius: 10%; */
	/* position: absolute; */
	/* top: 0; */
}
.scenes_fight_button {
	height: 16vh;
	width: 20vh;
	border: solid 0.75vh;
	border-radius: 1vh;
	transition: all 0.1s ease-in-out;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	font-size: 3.5vh;
	cursor: pointer;
	padding-top: 0.5vw;
	border-color: var(--theme-color);
	flex-direction: row;
	text-align: center;
	position: relative;
	top: 2vh;
}
.scenes_fight_button:hover {
	background-color: rgba(44, 43, 43, 0.5);
	border: solid 0.75vh rgb(164, 163, 162);
}
.scenes_fight_button img {
	height: 10vh;
	width: auto;
	display: flex;
	margin-bottom: 1vh;
}
.scenes_fight_button p {
	width: 15vh;
	margin: 0;
}
.scenes_counter {
    width: 100%;
    height: 22vh;
	align-content: flex-end;
	justify-content: center;
	border-radius: 2.5vh;
	border: solid 0.75vh var(--theme-color);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	flex-direction: row;
}
.scenes_counter_type {
    height: 45%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-size: 2.5vh;
    position: relative;
    top: 1vh;
    margin-right: 0.5vh;
    margin-left: 0.5vh;
}
.scenes_counter_type p {
	padding-top: 0.4vh;
	margin-left: 1vh;
}
.scenes_counter_type img {
	height: 47%;
	width: auto;
	margin-right: 1vh;
	display: flex;
	margin-left: 1vh;
	border-radius: 1vh;
}
.scenes_icons {
	height: 25vh;
	width: 25vh;
	border: solid 0.75vh var(--theme-color);
	margin: 1vh;
	border-radius: 3vh;
	margin: 3vh;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
	box-sizing: border-box;
}
.scenes_icons img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	border-radius: 3vh;
}
.scenes_icon_unseen {
	height: 25vh;
	width: 25vh;
	border: solid 0.75vh rgb(60, 59, 59);
	margin: 1vh;
	border-radius: 3vh;
	margin: 3vh;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	position: relative;
	box-sizing: border-box;
}
.scenes_icon_unseen img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	opacity: 0.5;
	filter: blur(0.75vh);
}
.total_scenes_counter {
	background-color: rgb(17, 17, 17);
	height: 8vh;
	width: 18vh;
	border-radius: 1.5vh;
	border: solid 0.75vh var(--theme-color);
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	font-size: 3.5vh;
	position: absolute;
	top: 1vh;
}
.total_scenes_counter img {
	height: 50%;
	width: auto;
	display: flex;
	margin-left: 1vh;
	padding-bottom: 0.5vh;
}
.total_scenes_counter p {
	margin-top: 4.6vh;
}

/*main section*/
.lock_icon {
	height: 100%;
	width: 100%;
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	z-index: 5;
	margin-top: 1vh;
	bottom: 0vh;
}
.lock_icon img {
	height: 100%;
	object-fit: contain;
	opacity: 1;
	filter: blur(0px);
}
.mech_icons {
	height: 6vh;
	width: auto;
	position: absolute;
	bottom: 16vh;
	right: 16vh;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	margin-top: 1vh;
}
.shadow {
	height: 100%;
	width: 100%;
	border-radius: 7%;
	box-shadow: inset 0 0 3vh 2vh #000000;
	z-index: 1;
	position: relative;
}
.shadow_1 {
	height: 100%;
	width: 100%;
	border-radius: 2.5vh;
	box-shadow: inset 0 0 3vh 2vh #000000;
	position: absolute;
	z-index: 4;
}
#scenes_goback_button {
	height: 25%;
	width: 22vh;
	padding-top: 0.5vh;
	position:relative;
	top: -1vh;
	border-radius: 2vh;
	font-size: 5vh;
	border:solid 0.7vh rgba(73, 0, 0, 0.973);
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	font-family: 'Teko', sans-serif;
	transition: all 0.1s ease-in-out;
	cursor: pointer;
	background-color: #3c3c3c;
	left: 10vh;
}

/*arrows*/
.scenes_arrow_left {
	width: 0;
	height: 0;
	margin-left: 8;
	border-bottom: 5vh solid transparent;
	border-top: 5vh solid transparent;
	transition: all 0.1s ease-in-out;
	cursor: pointer;
	border-right: 5vh solid var(--theme-color);
	position: relative;
	right: 1vh;
	bottom: 0.75vh
}
.scenes_arrow_left:hover {
	transform: translatey(0.375vh);
	border-color: transparent rgba(255, 255, 255, 0.509) transparent transparent;
}
.scenes_arrow_right {
	width: 0;
	height: 0;
	margin-left: 8;
	border-bottom: 5vh solid transparent;
	border-top: 5vh solid transparent;
	transition: all 0.1s ease-in-out;
	cursor: pointer;
	border-left: 5vh solid var(--theme-color);
	position: relative;
	left: 1vh;
	bottom: 0.75vh
}
.scenes_arrow_right:hover {
	transform: translatey(0.375vh);
	border-color: transparent transparent transparent rgba(255, 255, 255, 0.509);
}
/*containers*/
.scenes_holy_div {
	height: 70vh;
	width: 120vh;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	position: relative;
    align-content: space-around;
    left: 5vh;
}

.scenes_template_container {
    height: 70vh;
    width: 108vh;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-snap-type: x;
    scroll-behavior: smooth;
	position: relative;
}

.scenes_template_container > div {
    scroll-snap-align: center;
}

.scenes_row {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.cheats_parent_bottom {
	height: 70vh;
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	position: relative;
}

/* pas utilisé live maybe?*/
.get_cheats_here {
	height: 15vh;
	width: 15vh;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 26vh;
	left: 8vh;
	border: solid 0.75vh var(--theme-color);
	border-radius: 3vh;
}
.get_cheats_here_txt {
	height: 10vh;
	width: 15vh;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	font-size: 1.6vh;
	text-align: center;
	position: relative;
	top: -1vh;
}
.get_cheats_here_button {
	background-color: #3c3c3c;
	height: 3vh;
	width: 8vh;
	border: solid 0.5vh var(--theme-color);
	border-radius: 1vh;
	transition: all 0.1s ease-in-out;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	font-size: 1.7vh;
	cursor: pointer;
	padding-top: 0.3vh;
	border-color: var(--theme-color);
	flex-direction: row;
	text-align: center;
	position: relative;
	top: -1vh;
}
.get_cheats_here_button:hover {
	transform: translate(0.2vh, -0.2vh);
	box-shadow: -0.25vh 0.25vh 0.5vh rgba(255, 255, 255, 0.5);
}

.scenes-filter-container {
    z-index: 50;
    cursor: pointer;
    background-color: transparent;
	position: absolute;
    bottom: -2.5vh;
}
.scenes-filter-container:hover {
	transform: none;
	transition: none;
}

.fight-filter-container {
    z-index: 50;
    cursor: pointer;
    background-color: transparent;
	position: absolute;
    bottom: -2.5vh;
}
.fight-filter-container:hover {
	transform: none;
	transition: none;
}

.wild-filter-container {
    z-index: 50;
    cursor: pointer;
    background-color: transparent;
	position: absolute;
    bottom: -2.5vh;
}

.group-filter-container {
    z-index: 50;
    cursor: pointer;
    background-color: transparent;
	position: absolute;
    bottom: -2.5vh;
}

/* .scene-filter-button:hover {
	transform: none;
	transition: none;
} */

.scene-filter-button:hover {
	border: outset;
	transform: none;
	transition: none;
}

.scene-filter-button:hover,
.scene-filter-button:hover .scenes-filter-container {
	transform: none;
	transition: none;
}

.scene-filter-button {
	background-color: var(--theme-color) !important;
	border-radius: 1vh;
	margin-left: 0.5vh;
	height: 5vh;
	padding-left: 1vh;
	padding-right: 1vh;
	position: relative;
	border: revert;
}
.scene-filter-button:hover {
	transform: scale(1.1);
}

.fight-filter-button:hover {
	border: outset;
	transform: none;
	transition: none;
}

.fight-filter-button:hover,
.fight-filter-button:hover .scenes-filter-container {
	transform: none;
	transition: none;
}

.fight-filter-button {
	background-color: var(--theme-color) !important;
	border-radius: 1vh;
	margin-left: 0.5vh;
	height: 5vh;
	padding-left: 1vh;
	padding-right: 1vh;
	position: relative;
	border: revert;
}
.fight-filter-button:hover {
	transform: scale(1.1);
}

.wild-filter-button:hover {
	border: outset;
	transform: none;
	transition: none;
}

.wild-filter-button:hover,
.wild-filter-button:hover .scenes-filter-container {
	transform: none;
	transition: none;
}

.wild-filter-button {
	background-color: var(--theme-color) !important;
	border-radius: 1vh;
	margin-left: 0.5vh;
	height: 5vh;
	padding-left: 1vh;
	padding-right: 1vh;
	position: relative;
	color: black;
	border: revert;
}
.wild-filter-button:hover {
	transform: scale(1.1);
}

.group-filter-button:hover {
	border: outset;
	transform: none;
	transition: none;
}

.group-filter-button:hover,
.group-filter-button:hover .scenes-filter-container {
	transform: none;
	transition: none;
}

.group-filter-button {
	background-color: var(--theme-color) !important;
	border-radius: 1vh;
	margin-left: 0.5vh;
	height: 5vh;
	padding-left: 1vh;
	padding-right: 1vh;
	position: relative;
	color: white;
	border: revert;
}
.group-filter-button:hover {
	transform: scale(1.1);
}

/*------------------------------------------------------ scenes CSS ----------------------------------------------------------- */

#woman_and_scenes_button_scenes {
    border: 3px solid var(--theme-color);
    text-shadow: 0px 0px 8px var(--theme-color), 0px 0px 16px var(--theme-color), 0px 0px 24px var(--theme-color);
    box-shadow: inset 0 0 0.5vw var(--theme-color), 0 0 0.5vw var(--theme-color), 0 0 1vw var(--theme-color);
    background-color: rgba(0, 0, 0, 0.8);
    background-image: none;
}
.scenes_character_image {
    border: 3px solid var(--theme-color);
    text-shadow: 0px 0px 8px var(--theme-color), 0px 0px 16px var(--theme-color), 0px 0px 24px var(--theme-color);
    box-shadow: inset 0 0 0.5vw var(--theme-color), 0 0 0.5vw var(--theme-color), 0 0 1vw var(--theme-color);
    background-color: rgba(0, 0, 0, 0.8);
    background-image: none;
	background-size: cover;
}
.scenes_character_image img {
    height: 80%;
}
.shadow {
    border-radius: 10%;
    top: 0;
}
#scenes_goback_button {
    border: 3px solid var(--theme-color);
    text-shadow: 0px 0px 8px var(--theme-color), 0px 0px 16px var(--theme-color), 0px 0px 24px var(--theme-color);
    box-shadow: inset 0 0 0.5vw var(--theme-color), 0 0 0.5vw var(--theme-color), 0 0 1vw var(--theme-color);
    background-color: rgba(0, 0, 0, 0.8);
    background-image: none;
}
#scenes_goback_button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 0 1vw var(--theme-color), 0 0 1vw var(--theme-color), 0 0 1.5vw var(--theme-color), 0 0 2vw var(--theme-color);
    text-shadow: 0 0 1vw var(--theme-color), 0 0 1.5vw var(--theme-color), 0 0 2vw var(--theme-color);
}
.total_scenes_counter {
    border: 3px solid var(--theme-color);
    text-shadow: 0px 0px 8px var(--theme-color), 0px 0px 16px var(--theme-color), 0px 0px 24px var(--theme-color);
    box-shadow: inset 0 0 0.5vw var(--theme-color), 0 0 0.5vw var(--theme-color), 0 0 1vw var(--theme-color);
    background-color: rgba(0, 0, 0, 1);
    background-image: none;
}
.scenes_counter {
    border: 3px solid var(--theme-color);
    text-shadow: 0px 0px 8px var(--theme-color), 0px 0px 16px var(--theme-color), 0px 0px 24px var(--theme-color);
    box-shadow: inset 0 0 0.5vw var(--theme-color), 0 0 0.5vw var(--theme-color), 0 0 1vw var(--theme-color);
    background-color: rgba(0, 0, 0, 0.8);
    background-image: none;
}

.scenes_icons {
    border: 3px solid var(--theme-color);
    text-shadow: 0px 0px 8px var(--theme-color), 0px 0px 16px var(--theme-color), 0px 0px 24px var(--theme-color);
    box-shadow: inset 0 0 0.5vw var(--theme-color), 0 0 0.5vw var(--theme-color), 0 0 1vw var(--theme-color);
    background-color: rgba(0, 0, 0, 0.8);
    background-image: none;
}
.scenes_icons:hover {
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: inset 0 0 1vw var(--theme-color), 0 0 1vw var(--theme-color), 0 0 1.5vw var(--theme-color), 0 0 2vw var(--theme-color);
    text-shadow: 0 0 1vw var(--theme-color),  0 0 1.5vw var(--theme-color), 0 0 2vw var(--theme-color);
}
.scenes_icon_unseen {
    border-radius: 2.5vh;
    border: 3px solid var(--theme-color);
    text-shadow: 0px 0px 8px var(--theme-color), 0px 0px 16px var(--theme-color), 0px 0px 24px var(--theme-color);
    box-shadow: inset 0 0 0.5vw var(--theme-color), 0 0 0.5vw var(--theme-color), 0 0 1vw var(--theme-color);
    background-color: rgba(0, 0, 0, 0.8);
    background-image: none;
}

.galleryFilter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vh;
    padding: 1vh;
    margin-top: 1vh;
    flex-direction: column;
	width: 20vh;
	position: relative;
    top: -4vh;
}

.galleryFilterButton {
    width: 20vh;
    height: 7vh;
    border-radius: 1vh;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    border: 3px solid var(--theme-color);
    box-shadow: inset 0 0 0.5vw var(--theme-color), 0 0 0.5vw var(--theme-color), 0 0 1vw var(--theme-color);
	overflow: hidden;
}

.galleryFilterButtonCharacter {
    width: 20vh;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.galleryFilterButtonImage {
	width: 8vh;
	height: 8vh;
	border-radius: 1vh;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	display: flex;
	margin-right: 0.75vh;
	margin-left: 0.75vh;
	margin-bottom: 0.75vh;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.8);
	border: 3px solid var(--theme-color);
	background-size: cover;
}

.galleryFilterButton img {
    height: 150%;
    object-fit: cover;
    border-radius: 0.7vh;
	opacity: 0.5;
}

.galleryFilterButtonImage img {
	height: 100%;
	object-fit: cover;
	border-radius: 0.7vh;
}

.galleryFilterButton p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
	width: 100%;
	text-align: center;
    margin: 0;
    font-size: 2.5vh;
	line-height: 1.1;
    /* white-space: nowrap; */
    color: white;
    text-shadow: 0px 0px 8px var(--theme-color), 0px 0px 16px var(--theme-color);
    z-index: 50;
}

.galleryFilterButton:hover, .galleryFilterButtonImage:hover {
    transform: translate(0.25vh, -0.25vh);
    box-shadow: inset 0 0 1vw var(--theme-color), 0 0 1vw var(--theme-color), 0 0 1.5vw var(--theme-color), 0 0 2vw var(--theme-color);
}

.galleryFilterButton.active, .galleryFilterButtonImage.active {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 1vw var(--theme-color), 0 0 1vw var(--theme-color), 0 0 1.5vw var(--theme-color), 0 0 2vw var(--theme-color);
    transform: translate(0.25vh, -0.25vh);
}

/* Specific styling for character buttons if needed */
.galleryFilterButtonImage {
    overflow: hidden;
}

.scene-filter-button.selected {
    background-color: #808080 !important;
}

.fight-filter-button.selected {
    background-color: #808080 !important;
}

.GSS_glow-effect {
	position: relative;
  }
  
  .GSS_glow-effect::before {
	content: '';
	position: absolute;
	top: -2vh;
	left: -2vh;
	right: -2vh;
	bottom: -2vh;
	z-index: -1;
	filter: blur(2vh);
  }

/* If you need specific colors for different buttons */
.galleryFilterButton.fights { --theme-color: #ff4444; }
.galleryFilterButton.solo { --theme-color: #44ff44; }
.galleryFilterButton.group { --theme-color: #4444ff; }
.galleryFilterButton.wild { --theme-color: #ffff44; }