/*JAD'S NOTES TO SELF: 
	COLOR PALLET: Glacier Grey - #C5C6C7, Purple Grey - #786F80 or rgb(120, 111, 128), Dark Purple Grey - rgb(72, 67, 77), Cyan - #009097, Light Blue - lightblue*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
h1, h2, h3 {
    font-weight: normal;
    font-family: "Century Gothic";
    margin: 10px;
    padding: 10px;
	text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
h1 {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	transform: scalex(1.5);
	color: lightblue;
}
h2 {
	color: lightblue;
	font-weight: bold;
}
h3 {
	transform: scalex(1.5);
}
.TextArea {
	font-family: "Century Gothic";
	font-size: clamp(20px, 1.1vw, 20px);
	line-height: 1.8;
	text-align: left;
	color: white;
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
	padding: 20px;
}
.TextCenter {
	text-align: center;
}
@keyframes Corruption {
    0% { transform: translate(0, 0); }
    10% { transform: translate(5px, -5px); }
    20% { transform: translate(-5px, 5px); }
    30% { transform: translate(5px, 5px); }
    40% { transform: translate(-5px, -5px); }
    50% { transform: translate(0, 0); }
    100% { transform: translate(0, 0); }
}
.CorruptionEffect {
    animation: Corruption 0.5s infinite;
    background: repeating-linear-gradient(to bottom, rgba(255, 0, 0, 0.1), rgba(0, 255, 0, 0.1), rgba(0, 0, 255, 0.1) 10px);
}
.Page{
    display:none;
}
.Page.Active{
    display:block;
}
.JadContentStyle {
    font-family: "Century Gothic";
    padding: 0;
	color: white;
	text-align: center;
	font-size: 20px;
    margin-left: 10%;
    margin-right: 10%;
}
.JadStyle {
    border: 5px solid white;
    background-color: rgba(0, 0, 0, 0.5);
}
@keyframes DayNightCycle {
    0% { background-image: url('MAP1.png'); }
    35% { background-image: url('MAP2.png'); }
    70% { background-image: url('MAP3.png'); }
    100% { background-image: url('MAP4.png'); }
}
.GWABackground {
    position: relative;
    z-index: 0;
}
.GWABackground::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    background-image: url('MAP1.png');
    background-position: center;
    background-size: cover;
    filter: blur(5px);
	animation: none;
    z-index: -1;
}
body.GwaMapsReady.GWABackground::before {
	animation-name: DayNightCycle;
	animation-duration: 1ms;
	animation-timing-function: linear;
	animation-fill-mode: both;
	animation-timeline: scroll();
}
.PortfolioBackground{
    position: relative;
    z-index: 0;
}
.PortfolioBackground::before{
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("PortfolioBG.png");
    background-size: cover;
    background-position: center;
    filter:
        brightness(var(--brightness,1))
        hue-rotate(calc(var(--hue,0)*1deg))
		blur(5px);
    z-index: -2;
}
.PortfolioBackground::after{
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("PortfolioBGOverlay.png");
    background-size: cover;
    background-position:
        center
        var(--overlayOffset,0px);
    opacity: 0.25;
    filter: blur(2px);
    z-index: -1;
    pointer-events: none;
}
#NavigationBar {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    position: sticky;
    top: 0;
    padding: 10px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#NavigationBar .Left, #NavigationBar .Right {
    display: flex;
    align-items: center;
	flex: 1;
    justify-content: space-evenly;
}
#NavigationBar .RightRight {
    flex: 2;
    justify-content: flex-end;
}
#NavigationBar .RightLeft {
    flex: 5;
	display: grid;
    place-items: center;
}
#NavigationBar .LeftRight {
    flex: 1;
}
#NavigationBar .LeftLeft {
    flex: 5;
	display: flex;
	justify-content: space-evenly;
}
#NavigationBar a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: color 0.6s, text-shadow 0.6s;
	padding: 10px 20px;
	white-space: nowrap;
}
#NavigationBar a:hover, .MusicSegment:hover {
    color: lightblue;
    text-shadow: 0 0 10px lightblue, 0 0 20px lightblue;
}
button {
    background: none;
    border: none;
	cursor: pointer;
    padding: 0 5px 0 5px;
	transition: filter 0.6s;
}
.Right button:hover {
	filter: drop-shadow(0 0 10px lightblue) drop-shadow(0 0 5px lightblue) brightness(3.5) saturate(2);
}
#SettingsList {
    position: relative;
    display: inline-block;
}
.SettingsOptionsClass {
    display: none;
    position: absolute;
    top: 0;
    left: 40px;
    background-color: rgba(72, 67, 77, 0.8);
    border-radius: 10px;
    padding: 10px;
    z-index: 10;
    overflow: hidden;
    transition: height 0.3s ease;
}
#SongTimeline {
    width: 90%;
    height: 10px;
    background: #786F80;
    border-radius: 5px;
    margin-top: 10px;
	overflow: hidden;
}
#SongTimeline p {
	font-size: 7.5px;
	transform-origin: left;
	transform: scalex(2.5);
	position: absolute;
	text-shadow: 0 0 5px black;
	overflow: hidden;
}
#SongProgress {
    height: 100%;
    width: 0%;
    background-color: lightblue;
    transition: width 0.5s ease;
}
#WorldMenu{
    position: relative;
}
#WorldButton{
    color: white;
    font-size: 18px;
    padding: 10px 18px;
    border-radius: 15px;
    background: rgba(120, 111, 128, 0.8);
    transition: all 0.6s ease-in-out;
}
#WorldButton:hover{
    color: lightblue;
    background: rgba(120, 111, 128, 1);
}
#WorldOptions{
    position: absolute;
    top: 50px;
    left: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    background-color: rgba(72, 67, 77, 0.8);
    border-radius: 15px;
    transition: max-height 0.5s ease;
    min-width: 220px;
}
#WorldOptions a{
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    transition: 0.4s;
    cursor: pointer;
}
#WorldOptions a:hover{
    background: rgba(120, 111, 128, 0.8);
    color:lightblue;
}
#Synopsis { 
	background-color: rgba(0, 0, 0, 0.5); 
	border-radius: 20px;
	width: 100%;
	display: grid;
    place-items: center;
	margin: 10px 0 10px 0;
}
#Structure { 
	background-color: rgba(0, 0, 0, 0.5); 
	border-radius: 20px;
	width: 100%;
	display: grid;
    place-items: center;
	margin: 10px 0 10px 0;
}
#ProgressChart {
	background-color: rgba(72, 67, 77, 0.8);
    display: flex;
    flex-direction: column;
    width: 85%;
    margin: 75px auto;
}
.ChapterContainer {
	display: flex;
}
.ChapterSegment {
    background-color: rgba(120, 111, 128, 0.8);
	width: 30%;
    color: white;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
}
.ChapterProgress {
    background-color: rgba(120, 111, 128, 0.8);
	border-radius: 20px;
	width: 0%;
    color: white;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
}
.ProgressPercentage {
    position: absolute;
    bottom: 0px;
    width: auto;
    color: white;
    font-size: 20px;
    opacity: 0;
    transition: all 0.6s ease-in-out;
}
.ChapterContainer:hover .ChapterSegment {
    transform: translateX(-5%);
    background-color: rgba(120, 111, 128, 1);
    height: 75px;
    color: lightblue;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.ChapterContainer:hover .ChapterProgress {
	width: 67.5%;
	transform: translateY(25%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.ChapterContainer:hover .ProgressPercentage {
    bottom: 12.5px;
    opacity: 1;
}
#ChapterProgressBar {
    width: 95%;
    height: 70%;
    background: rgb(72, 67, 77);
    border-radius: 30px;
	overflow: hidden;
}
#ChapterCurrentProgress {
    height: 100%;
    background-color: lightblue;
}
#CharacterInfo { 
	background-color: rgba(0, 0, 0, 0.5); 
	border-radius: 20px;
	width: 100%;
	display: grid;
    place-items: center;
	margin: 10px 0 10px 0;
}
#CharacterChart {
	margin: 10px 0 10px 0;
}
.ChartRows {
	display: flex;
	justify-content: center;
}
.Characters {
	background-color: rgba(120, 111, 128, 0.8);
	border-radius: 20px;
	padding: 15px 15px 0 15px;
	margin: 25px 75px 25px 75px;
	filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.CharacterIcons {
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	transition: all 0.6s ease-in-out;
}
.Sprites {
	position: absolute;
    top: 50%;
    left: 50%;
	opacity: 0;
	transform: translate(-50%, -75%);
	transition: all 0.6s ease-in-out;
	z-index: 100;
}
#Jad:hover .CharacterIcons, .IconActive {
	transform: translateY(-5%);
    filter: brightness(0.5);
	box-shadow: 0 10px 20px (0, 0, 0);
}
#Jad:hover .Sprites {
	transform: translate(-50%, -125%);
    opacity: 1;
}
.SpriteActive {
	opacity: 1;
	transform: translate(-50%, -125%);
	transition: all 0.2s ease-in-out;
}
#Playlist { 
	background-color: rgba(0, 0, 0, 0.5); 
	border-radius: 20px;
	width: 100%;
	display: grid;
    place-items: center;
	margin: 10px 0 10px 0;
}
#PlaylistContainer {
	background-color: rgba(72, 67, 77, 0.8);
    display: flex;
    flex-direction: column;
    width: 85%;
    margin: 75px auto;
}
.MusicSegment {
    background-color: rgba(120, 111, 128, 0.8);
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
}
.MusicSegment:hover {
    transform: translateX(-5%);
    background-color: rgba(120, 111, 128, 1);
    height: 75px;
    color: lightblue;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.MusicTitle {
    position: absolute;
	left: 50%;
	transform: translateX(-50%);
    transition: left 0.6s ease-in-out, transform 0.6s ease-in-out;
}
.MusicDescription {
    position: absolute;
    bottom: 0px;
    right: 20px;
    width: auto;
    color: white;
    font-size: 20px;
    opacity: 0;
    transition: all 0.6s ease-in-out;
}
.MusicSegment:hover .MusicTitle {
    left: 20px;
	transform: translateX(0);
}
.MusicSegment:hover .MusicDescription {
    bottom: 22.5px;
    opacity: 1;
}
#Introduction { 
	background-color: rgba(0, 0, 0, 0.5); 
	border-radius: 20px;
	width: 100%;
	display: grid;
    place-items: center;
	margin: 10px 0 10px 0;
}
#JadStats {
	width: 85%;
	display: flex;
	padding: 10px;
	margin: 10px 0 10px 0;
	justify-content: space-evenly;
	background-color: rgba(72, 67, 77, 0.8);
}
.JadStatBox{
    width:25%;
    display:flex;
    flex-direction:column;
    align-items:center;
	transition: all 0.6s ease-in-out;
}
.JadStatHeader {
	background-color: rgba(120, 111, 128, 0.8);
    transition: all 0.6s ease-in-out;
    font-size: 20px;
    position: relative;
	width:90%;
    text-align:center;
    padding:15px;
	display: flex;
	justify-content: center;
}
.JadStatHeader::after{
    content:"\25BC";
	display:inline-block;
    transition: all 0.6s ease-in-out;
}
.JadStatBox:hover .JadStatHeader::after{
    transform:rotate(180deg);
    color:lightblue;
}
.JadStatDescription{
    background-color: rgba(120, 111, 128, 0.8);
	border-radius: 20px;
    color: white;
    overflow: hidden;
	padding: 0;
    transition: all 0.6s ease-in-out;
    max-height: 0;
    font-size: 20px;
    position: relative;
	width:90%;
}
.JadStatBox:hover {
	width: 60%;
}
.JadStatBox:hover .JadStatHeader {
	transform: translateY(-10%);
	font-size: 30px;
    background-color: rgba(120, 111, 128, 1);
    color: lightblue;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.JadStatBox:hover .JadStatDescription {
	max-height: 400px;
	transform: translateY(20%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	padding: 10px;
}
#Showcase { 
	background-color: rgba(0, 0, 0, 0.5); 
	border-radius: 20px;
	width: 100%;
	display: grid;
    place-items: center;
	margin: 10px 0 10px 0;
}
.ShowcaseGroups {
	background-color: rgba(72, 67, 77, 0.8);
    transition: all 0.6s ease-in-out;
	border-radius: 20px;
	width:85%;
	place-items: center;
	margin: 25px 0 25px 0;
}
.IconContainer{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}
.MyArt {
	transition: all 0.6s ease-in-out;
	transform-origin: center center;
}
.MyArt:hover {
	width: 350px;
	height: 350px;
}
.ProjectGallery {
	background-color: rgba(72, 67, 77, 0.8);
	width: 85%;
}
.ProjectSegment {
	background-color: rgba(120, 111, 128, 0.8);
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s ease-in-out;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
}
.ProjectTitle {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
    transition: left 0.6s ease-in-out, transform 0.6s ease-in-out;
}
.ProjectLink {
	position: absolute;
    bottom: 0px;
    right: 20px;
    width: auto;
    color: white;
    font-size: 20px;
    opacity: 0;
    transition: all 0.6s ease-in-out;
}
.ProjectSegment:hover {
	transform: translateX(-5%);
    background-color: rgba(120, 111, 128, 1);
    height: 75px;
    color: lightblue;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.ProjectSegment:hover .ProjectTitle{
	left: 60px;
	transform: translateX(-10%);
}
.ProjectSegment:hover .ProjectLink{
	bottom: 22.5px;
    opacity: 1;
}
.MusicAlbums{
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
	transition: all 0.6s ease-in-out;
}
.AlbumCover {
	width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    color: black;
    background: linear-gradient(
        135deg,
        #d9f7ff,
        #a8d8ea,
        #6ca8c7,
        #2d5677
    );
	transition: all 0.6s ease-in-out;
}
.AlbumCover p{
    font-size: 72px;
    font-family: "Cinzel", serif;
    font-style: italic;
    letter-spacing: 8px;
    margin: 0;
	transition: all 0.6s ease-in-out;
}
.Vinyl{
	position: absolute;
	top: 50%;
	left: 10%;
    width: 220px;
    z-index: 1;
    transition: all 0.6s ease-in-out;
    animation: Spin 10s linear infinite;
}
@keyframes Spin{
	from{
	transform:translateY(-50%) rotate(0deg);
	}
	to{
	transform:translateY(-50%) rotate(360deg);
	}
}
.MusicAlbums:hover .AlbumCover{
    transform: translateX(-20%);
    filter: brightness(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.MusicAlbums:hover .AlbumCover p{
    letter-spacing: 14px;
    transform: scale(1.05);
}
.MusicAlbums:hover .Vinyl{
    left: 35%;
}
#Games { 
	background-color: rgba(0, 0, 0, 0.5); 
	border-radius: 20px;
	width: 100%;
	display: grid;
    place-items: center;
	margin: 10px 0 10px 0;
}
#GameContainer{
	display:flex;
	flex-direction:column;
	width:85%;
	margin:75px auto;
	gap:25px;
}
.GameSegment{
	position:relative;
	overflow:hidden;
	cursor:pointer;
	min-height:180px;
	border-radius:20px;
	border:2px solid transparent;
	background:linear-gradient(90deg,
		rgba(120,111,128,.92),
		rgba(132,122,145,.92),
		rgba(85,125,165,.92));
	transition:all .6s ease-in-out;
}
.GWA{
	background:linear-gradient(90deg,
	rgba(95,103,145,.92),
	rgba(88,120,168,.92),
	rgba(96,171,212,.92)
	);
}

.GC{
	background:linear-gradient(90deg,
	rgba(90,96,125,.94),
	rgba(78,100,145,.94),
	rgba(45,92,165,.94));
}

.ANAMNESIS{
	background:linear-gradient(90deg,
	rgba(58,66,98,.96),
	rgba(45,63,110,.96),
	rgba(24,46,92,.96));
}
.GameSegment:hover{
	transform:scale(1.02);
	border-color:lightblue;
	box-shadow:
	0 0 25px rgba(173,216,230,.25),
	0 12px 30px rgba(0,0,0,.4);
}
.GameBackground{
	position:absolute;
	inset:0;
	background-size:cover;
	background-position:center;
	opacity:.12;
	transition:all .6s ease-in-out;
}
.GameSegment:hover .GameBackground{
	opacity:.35;
	transform:scale(1.08);
}
.GameContent{
	position:relative;
	z-index:2;
	height:100%;
	padding:30px 40px;
	display:flex;
	flex-direction:column;
}
.GameTitle{
	color:white;
	font-size:38px;
	transition:all .6s ease-in-out;
}
.GameSegment:hover .GameTitle{
	color:lightblue;
	transform:translateY(-6px);
}
.GameGenre{
	color:white;
	margin-top:10px;
	opacity:0;
	transform:translateY(15px);
	transition:all .6s ease-in-out;
}
.GameSegment:hover .GameGenre{
	opacity:1;
	transform:translateY(0);
}
.GameTags{
	display:flex;
	gap:10px;
	flex-wrap:wrap;
	margin-top:18px;
	opacity:0;
	transform:translateY(15px);
	transition:all .6s ease-in-out;
}
.GameSegment:hover .GameTags{
	opacity:1;
	transform:translateY(0);
}
.GameTag{
	padding:8px 16px;
	border-radius:20px;
	background:rgba(255,255,255,.12);
	border:1px solid rgba(173,216,230,.35);
	color:white;
	font-size:15px;
}
.GameFooter{
	margin-top:auto;
	display:flex;
	justify-content:flex-end;
}
.GameArrow{
	color:white;
	font-size:20px;
	opacity:0;
	transform:translateX(20px);
	transition:all .6s ease-in-out;
}
.GameSegment:hover .GameArrow{
	opacity:1;
	transform:translateX(0);
	color:lightblue;
}
#Contact { 
	background-color: rgba(0, 0, 0, 0.5); 
	border-radius: 20px;
	width: 100%;
	display: grid;
    place-items: center;
	margin: 10px 0 10px 0;
}
.ContactContainer{
	width:85%;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	padding: 10px 0 10px 0;
	gap:25px;
}
.ContactCard{
	width: 300px;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	background-color: rgba(120, 111, 128, 0.8);
	border-radius: 18px;
	transition: all .6s ease-in-out;
}
.ContactCard h3{
	margin: 0;
	padding: 0;
	color: lightblue;
	transform: none;
}
.ContactCard p{
	font-size:17px;
}
.ContactCard:hover{
	transform: translateY(-6px);
	box-shadow: 0 0 20px rgba(173, 216, 230, 0.25);
	background-color: rgba(120, 111, 128, 1);
}

/*Responsive Layout Section! Everything After Overrides Original Measurments & Sizes To Accomidate Any Screen Size Changes*/
body {
	min-width: 0;
	overflow-x: hidden;
}
img {
	max-width: 100%;
}
h1, h2, h3, p, span, a {
	overflow-wrap: break-word;
}
h1 {
	font-size: clamp(28px, 3vw, 40px);
	max-width: 65%;
	transform-origin: center;
}
h2 {
	font-size: clamp(22px, 2.25vw, 32px);
}
h3 {
	font-size: clamp(17px, 1.6vw, 23px);
	max-width: 90%;
	transform-origin: center;
}
.TextArea {
	font-size: clamp(16px, 1.35vw, 20px);
	width: min(90%, 1000px);
	padding: clamp(10px, 2vw, 20px);
}
.TextGroup {
	width: 100%;
	padding-bottom: clamp(15px, 3vw, 35px);
}
.TextGroup .TextArea {
	padding-top: clamp(6px, 1vw, 12px);
	padding-bottom: clamp(6px, 1vw, 12px);
}
.IntroductionQuote {
	color: lightblue;
	font-size: clamp(16px, 1.4vw, 20px);
	line-height: 1.6;
	width: min(90%, 950px);
	padding: 0 15px clamp(20px, 3vw, 35px) 15px;
}
.FooterText {
	font-size: 15px;
	line-height: 1.7;
	padding: 20px;
}
.FooterText span {
	display: block;
}
.JadContentStyle {
	width: 85%;
	margin: 0 auto;
	font-size: clamp(16px, 1.35vw, 20px);
}
#Introduction, #Showcase, #Games, #Contact, #Synopsis, #Structure, #CharacterInfo, #Playlist {
	padding-bottom: clamp(15px, 2vw, 30px);
	overflow: hidden;
}
#NavigationBar {
	gap: 10px;
}
#NavigationBar .Left, #NavigationBar .Right, #NavigationBar .LeftLeft, #NavigationBar .RightLeft, #NavigationBar .RightRight {
	min-width: 0;
}
#NavigationBar .LeftLeft {
	width: 100%;
}
#PageLinks {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	width: 100%;
	min-width: 0;
}
#NavigationBar .RightRight {
	display: flex;
	align-items: center;
	white-space: nowrap;
}
#NavigationBar a {
	font-size: clamp(15px, 1.35vw, 20px);
	padding: 10px clamp(8px, 1.25vw, 20px);
}
#NavigationBar img {
	width: 20px;
	height: 20px;
	max-width: none;
	flex-shrink: 0;
}
#SettingsOptions {
	white-space: nowrap;
}
#SongTimeline {
	position: relative;
	min-width: 0;
}
#SongTimeline p {
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
}
#WorldOptions {
	max-width: calc(100vw - 20px);
}
#JadStats {
	gap: clamp(5px, 1vw, 15px);
	align-items: flex-start;
}
.JadStatBox {
	min-width: 0;
}
.JadStatHeader {
	font-size: clamp(15px, 1.35vw, 20px);
	padding: clamp(10px, 1.2vw, 15px);
	gap: 6px;
}
.JadStatDescription {
	font-size: clamp(14px, 1.35vw, 20px);
}
.JadStatDescription p {
	margin: 8px 0;
}
.JadStatBox:nth-child(1) .JadStatDescription, .JadStatBox:nth-child(2) .JadStatDescription {
	display: grid;
	place-items: center;
}
.ShowcaseGroups, #ProgressChart, #PlaylistContainer, #GameContainer {
	width: 85%;
}
.ShowcaseGroups > div:first-child {
	padding: clamp(8px, 1.5vw, 18px);
}
.ShowcaseGroups > div:first-child h3 {
	margin-left: auto;
	margin-right: auto;
}
.ShowcaseGroups {
	padding-top: 15px;
}
.IconContainer {
	flex-wrap: wrap;
	gap: clamp(10px, 2vw, 20px);
}
.AppIcons {
	width: clamp(32px, 4vw, 40px);
	height: auto;
}
.ArtGallery {
	width: 100%;
}
.ArtGallery > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: clamp(8px, 1.5vw, 18px);
	padding: 0 clamp(8px, 1.5vw, 18px);
}
.MyArt {
	width: clamp(140px, 18vw, 250px);
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
	position: relative;
}
.MyArt:hover {
	width: clamp(140px, 18vw, 250px);
	height: auto;
	transform: scale(1.25);
	z-index: 2;
}
.ProjectGallery {
	width: 85%;
}
.ProjectTitle, .MusicTitle {
	max-width: calc(100% - 40px);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ProjectLink, .MusicDescription {
	max-width: 45%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.MusicAlbums {
	width: clamp(200px, 30vw, 300px);
	height: clamp(200px, 30vw, 300px);
}
.AlbumCover {
	width: 83.333%;
	height: 83.333%;
}
.AlbumCover p {
	font-size: clamp(44px, 6vw, 72px);
	letter-spacing: clamp(4px, 0.6vw, 8px);
}
.Vinyl {
	width: 73.333%;
}
#ProgressChart, #PlaylistContainer, #GameContainer {
	margin: clamp(35px, 6vw, 75px) auto;
}
.ChapterSegment, .ChapterProgress, .MusicSegment, .ProjectSegment {
	font-size: clamp(15px, 1.35vw, 20px);
}
.ChapterSegment {
	min-width: 0;
	padding: 0 8px;
}
.ProgressPercentage {
	font-size: clamp(14px, 1.35vw, 20px);
}
#CharacterChart {
	width: 100%;
	padding: 10px;
}

.ChartRows {
	flex-wrap: wrap;
	gap: clamp(10px, 3vw, 35px);
}
#CharacterInfo {
	overflow: visible;
}
.Characters {
	position: relative;
	flex: 0 1 180px;
	margin: clamp(8px, 2vw, 25px);
	padding: clamp(10px, 1.5vw, 15px) clamp(10px, 1.5vw, 15px) 0 clamp(10px, 1.5vw, 15px);
}
.CharacterIcons {
	width: clamp(110px, 15vw, 150px);
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
}
.Sprites {
	width: clamp(48px, 6.4vw, 64px);
	height: auto;
}
.GameContent {
	padding: clamp(20px, 3vw, 30px) clamp(20px, 4vw, 40px);
}
.GameTitle {
	font-size: clamp(25px, 3vw, 38px);
	margin-left: 0;
	margin-right: 0;
}
.GameGenre {
	font-size: clamp(15px, 1.35vw, 20px);
}
.GameTag {
	font-size: clamp(12px, 1.1vw, 15px);
	padding: 8px clamp(10px, 1.25vw, 16px);
}
.GameArrow {
	font-size: clamp(15px, 1.5vw, 20px);
}
.ContactContainer {
	width: 85%;
}
.ContactCard {
	width: min(300px, 100%);
	min-width: 0;
}
.ContactCard > img {
	flex: 0 0 40px;
}
.ContactCard div {
	min-width: 0;
}
.ContactCard p {
	font-size: clamp(14px, 1.2vw, 17px);
	overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
	#NavigationBar {
		flex-wrap: wrap;
	}
	#NavigationBar .Left, #NavigationBar .Right {
		flex: 1 1 100%;
		width: 100%;
	}
	.JadContentStyle {
		width: 90%;
	}
	#JadStats {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.JadStatBox, .JadStatBox:hover {
		width: 100%;
	}
	.JadStatBox:hover .JadStatHeader {
		font-size: clamp(18px, 2.2vw, 26px);
	}
}

@media (max-width: 800px) {
	h1 {
		max-width: 80%;
		transform: scaleX(1.15);
	}
	h3 {
		transform: scaleX(1.08);
	}
	#NavigationBar {
		padding: 8px;
	}
	#NavigationBar .Left {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		gap: 8px;
	}
	#NavigationBar .LeftRight {
		flex: none;
	}
	#PageLinks {
		justify-content: flex-start;
		overflow-x: auto;
		scrollbar-width: none;
	}
	#PageLinks::-webkit-scrollbar {
		display: none;
	}
	#NavigationBar .Right {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 8px;
	}
	#NavigationBar .RightLeft {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#NavigationBar .RightRight {
		justify-content: flex-end;
	}
	#SongTimeline {
		width: min(100%, 420px);
	}
	#SongTimeline p {
		font-size: 8px;
		transform: none;
		padding-left: 5px;
	}
	.SettingsOptionsClass {
		left: auto;
		right: 0;
	}
	.ShowcaseGroups, #ProgressChart, #PlaylistContainer, #GameContainer {
		width: 92%;
	}
	.ChartRows {
		gap: 8px;
	}
	.Characters {
		flex-basis: 150px;
		margin: 8px;
	}
	.MusicSegment:hover, .ProjectSegment:hover {
		transform: none;
	}
}

@media (max-width: 600px) {
	h1 {
		font-size: clamp(25px, 9vw, 34px);
		max-width: 92%;
		transform: none;
	}
	h2 {
		font-size: clamp(20px, 7vw, 28px);
	}
	h3 {
		font-size: clamp(16px, 5vw, 21px);
		max-width: 95%;
		transform: none;
	}
	.JadContentStyle {
		width: 96%;
	}
	#NavigationBar a {
		font-size: 14px;
		padding: 7px 8px;
	}
	#WorldButton {
		font-size: 14px;
		padding: 8px 10px;
		white-space: nowrap;
	}
	#NavigationBar .Right {
		grid-template-columns: minmax(0, 1fr) auto;
	}
	#NavigationBar .RightRight a {
		padding-left: 6px;
		padding-right: 6px;
	}
	button {
		padding: 0 3px 0 3px;
	}
	#JadStats {
		grid-template-columns: 1fr;
		width: 92%;
	}
	.JadStatHeader {
		width: 100%;
	}
	.JadStatDescription {
		width: 100%;
		max-height: 400px;
		padding: 10px;
		transform: none;
	}
	.JadStatHeader::after {
		display: none;
	}
	.JadStatBox:hover .JadStatHeader, .JadStatBox:hover .JadStatDescription {
		transform: none;
	}
	.ShowcaseGroups, #ProgressChart, #PlaylistContainer, #GameContainer, .ProjectGallery {
		width: 94%;
	}
	.MyArt, .MyArt:hover {
		width: min(42vw, 180px);
		transform: none;
	}
	.MusicAlbums:hover .AlbumCover {
		transform: translateX(-10%);
	}
	.MusicAlbums:hover .Vinyl {
		left: 25%;
	}
	.ChapterContainer {
		align-items: stretch;
	}
	.ChapterSegment {
		width: 35%;
		height: 58px;
		font-size: clamp(13px, 3.6vw, 17px);
	}
	.ChapterProgress {
		width: 65%;
		height: 58px;
		border-radius: 0;
	}
	.ProgressPercentage {
		bottom: 18px;
		opacity: 1;
		z-index: 2;
		text-shadow: 0 0 5px black;
	}
	.ChapterContainer:hover .ChapterSegment, .ChapterContainer:hover .ChapterProgress {
		width: initial;
		height: 58px;
		transform: none;
	}
	.ChapterContainer:hover .ChapterSegment {
		width: 35%;
		font-size: clamp(13px, 3.6vw, 17px);
	}
	.ChapterContainer:hover .ChapterProgress {
		width: 65%;
	}
	.MusicSegment, .ProjectSegment {
		height: auto;
		min-height: 75px;
		padding: 12px;
		flex-direction: column;
		gap: 8px;
	}
	.MusicTitle, .ProjectTitle, .MusicDescription, .ProjectLink {
		position: static;
		max-width: 100%;
		white-space: normal;
		transform: none;
		text-align: center;
	}
	.MusicDescription, .ProjectLink {
		opacity: 1;
		font-size: 14px;
		color: white;
	}
	.MusicSegment:hover, .ProjectSegment:hover {
		height: auto;
		font-size: inherit;
	}
	.MusicSegment:hover .MusicTitle, .ProjectSegment:hover .ProjectTitle {
		transform: none;
	}
	.GameSegment {
		min-height: 260px;
	}
	.GameGenre, .GameTags, .GameArrow {
		opacity: 1;
		transform: none;
	}
	.GameBackground {
		opacity: .25;
	}
	.GameFooter {
		margin-top: 20px;
		justify-content: flex-start;
	}
	.ContactContainer {
		width: 92%;
	}
	.ContactCard {
		padding: 15px;
		gap: 14px;
	}
}

@media (hover: none) {
	#JadStats {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
	}
	.JadStatBox {
		width: 100%;
	}
	.JadStatDescription {
		max-height: 400px;
		padding: 10px;
		transform: none;
	}
	.JadStatHeader::after {
		display: none;
	}
	.JadStatBox:hover .JadStatHeader, .JadStatBox:hover .JadStatDescription {
		transform: none;
	}
	.MyArt:hover {
		transform: none;
	}
	.ChapterSegment {
		width: 32.5%;
	}
	.ChapterProgress {
		width: 67.5%;
	}
	.ProgressPercentage {
		opacity: 1;
		bottom: 12.5px;
		z-index: 2;
		text-shadow: 0 0 5px black;
	}
	.ChapterContainer:hover .ChapterSegment {
		width: 32.5%;
		transform: none;
	}
	.ChapterContainer:hover .ChapterProgress {
		width: 67.5%;
		transform: none;
	}
	.MusicSegment, .ProjectSegment {
		height: auto;
		min-height: 75px;
		padding: 12px;
		flex-direction: column;
		gap: 8px;
	}
	.MusicTitle, .ProjectTitle, .MusicDescription, .ProjectLink {
		position: static;
		max-width: 100%;
		white-space: normal;
		transform: none;
		text-align: center;
	}
	.MusicDescription, .ProjectLink {
		opacity: 1;
		font-size: 14px;
		color: white;
	}
	.MusicSegment:hover, .ProjectSegment:hover {
		height: auto;
		transform: none;
		font-size: inherit;
	}
	.MusicSegment:hover .MusicTitle, .ProjectSegment:hover .ProjectTitle {
		transform: none;
	}
	.GameGenre, .GameTags, .GameArrow {
		opacity: 1;
		transform: none;
	}
}

