:root {
	transition: all ease .25s;
	font-family: 'Quicksand';
}

body.theme-dark {
    background-color: #2d0b3d;
    /*background: #000000 url(https://tville.stream/wp-content/uploads/2025/06/Logo-black-blur-scaled.jpg) no-repeat center center fixed;*/
	background: #000000 url(https://tville.stream/wp-content/uploads/2025/08/STREAM-Logo-Black-V2-Blur-15-scaled.webp) no-repeat center center fixed;
    background-size: contain;
	color: white; /* Text Color */
    --color-primary: #651d8a;
    --color-primary-transparent: #651d8a91;
    --color-primary-light: rgb(173, 56, 231);
    --color-primary-light-transparent: rgba(173, 56, 231, 0.5);
    --color-primary-dark: #20082c;
    --color-primary-dark-transparent: #20082cb1;
    --color-secondary: #252c6a;
    --color-error: #cc333c;
    --color-error-transparent: #ff000f99;
    --color-success: #4bb544;
    --color-success-transparent: #4bb544b5;
    --color-white: white;
    --color-footer: rgb(32, 8, 44);
    --color-border: darkorchid;
    --color-seperator: darkorchid;
    --scrollbar-default: #651d8a;
    --scrollbar-hover: #9630ee;
    --scrollbar-background: #2c0238;
	--e-global-color-text: white;
	--e-global-color-primary: #651D8A;
    --e-global-color-secondary: #AD38E7;
    --e-global-color-text: #FFFFFF;
    --e-global-color-accent: #61CE70;
    --e-global-typography-primary-font-family: "Quicksand";
}

body.theme-light {
    background-color: #2d0b3d;
    background: #ffffff url(https://tville.stream/wp-content/uploads/2025/06/Logo-white-blur-scaled.png) no-repeat center center fixed;
    background-size: contain;
	color: black; /* Text Color */
    /* same vars or light-mode-specific ones */
	--color-primary: #651d8a;
    --color-primary-transparent: #651d8a91;
    --color-primary-light: rgb(173, 56, 231);
    --color-primary-light-transparent: rgba(173, 56, 231, 0.5);
    --color-primary-dark: #20082c;
    --color-primary-dark-transparent: #ad38e780;
    --color-secondary: #252c6a;
    --color-error: #cc333c;
    --color-error-transparent: #ff000f99;
    --color-success: #4bb544;
    --color-success-transparent: #4bb544b5;
    --color-white: white;
    --color-footer: var(--color-primary-dark-transparent);
    --color-border: darkorchid;
    --color-seperator: darkorchid;
    --scrollbar-default: #651d8a;
    --scrollbar-hover: #9630ee;
    --scrollbar-background: #2c0238;
	/*--e-global-color-text: black;*/
	--e-global-color-primary: #651D8A;
	--e-global-color-secondary: #20082c;
    --e-global-color-text: #FFFFFF;
    --e-global-color-accent: #61CE70;
    --e-global-typography-primary-font-family: "Quicksand";
}

body.theme-light .header-logo {
	filter: invert(1);
}

body {
    /* Other Styling Variables */
    --border-radius: 4px;
    --transparent: rgba(0, 0, 0, 0);
    --default-font-size: 18px;
    --transition: all ease .5s;
    --container-width-lg: 74%;
    --container-width-md: 88%;
    --form-width: 40%;
    --card-border-radius-l: 0.3rem;
    --card-border-radius-2: 0.5rem;
    --card-border-radius-3: 0.8rem;
    --card-border-radius-4: 2rem;
    --card-border-radius-5: 5rem;


    margin: 0;
    font-size: var(--default-font-size);
	font-family: 'Quicksand';


    /*Center The Body Horizontally and Vertically */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*Causes some small pages to have a scrollbar hat is only a few pixels
    
        min-height: 90vh;

    */
    

    min-height: 100vh;

}



#main-site-container {
    width: 75vw;
    max-width: 1300px;
    margin: auto;
    padding: 0 30px 10px 30px;
    border: 1px darkorchid solid;
    border-radius: 0.5rem;
    background: var(--color-primary-dark-transparent);
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
/*    min-height: 970px;*/
}

@media screen and (max-width: 767px) {
    #main-site-container { 
		width: 95vw;
	}

}

/* Horizontal Bar */
hr {
	border-color: darkorchid;
}


/* Link Color */
a {
	color: #00d9ff;
}

a:hover {
	color: #fe64ff;
}

.hr-d {
    border: 1px dashed darkorchid;
    background: transparent;
    height: unset;
}

p {
    margin-block: 0 !important;
}



input[type="password"],
input[type="text"]{
	width: 100%;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid var(--color-primary-light-transparent);
	background: var(--color-primary-transparent);
	color: var(--color-white);
	font-size: 1rem;
}

