/* GLOBAL RESET + TYPOGRAPHY */
* {
	box-sizing: border-box;
}
html {
	background-color: #000000;
	scroll-behavior: smooth;
	padding: 5vw;
}
body {
	margin: 0;
	font-family: sans-serif;
	color: white;
}
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	font-family: 'PF VideoText', sans-serif;
}
/* TOGGLE HIDDEN */
.menu-toggle {
	display: none !important;
}
/* MENU BUTTON (fixed to top) */
.menu-button {
	right: 0;
	background: #95ff00;
	color: #000;
	padding: 10px;
	text-align: center;
	cursor: pointer;
	z-index: 1000;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
}
.menu-button::after {
	content: '☰';
}
body.menu-open .menu-button::after {
	content: '✕';
}
/* MENU PANEL */
.menu-panel {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	color: white;
	overflow-y: auto;
	opacity: 0;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
	z-index: 100;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-top: 0;
	left:-100vw;
	background-color: #000;
}

.noscroll {
	overflow: hidden;
}

body.menu-open .menu-panel {
	opacity: 1;
	pointer-events: auto;
	left: 0;
}
body.menu-open .page-content{
	opacity: 0;
}
body.menu-open .luminosity{
	opacity: 1;
}
body.menu-closing .luminosity {
	opacity: 0;
	pointer-events: none;
}
body.menu-closing .menu-panel {
	transform: translateY(0);
	opacity: 0;
	pointer-events: none;
}
/* MENU CONTENT */
.menu-panel-content {
	margin: 80px auto 0;
	margin-left: 2vw;
	margin-right: 2vw;
	position: relative;
	z-index: 1;
}
.menu-item {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}
body.menu-open .menu-item {
	opacity: 1;
	transform: translateY(0);
}
body.menu-open .menu-item:nth-of-type(1) {
	transition-delay: 0.1s;
}
body.menu-open .menu-item:nth-of-type(2) {
	transition-delay: 0.2s;
}
body.menu-open .menu-item:nth-of-type(3) {
	transition-delay: 0.3s;
}
body.menu-open .menu-item:nth-of-type(4) {
	transition-delay: 0.4s;
}
body.menu-open .menu-item:nth-of-type(5) {
	transition-delay: 0.5s;
}
body.menu-open .menu-item:nth-of-type(6) {
	transition-delay: 0.6s;
}
.menu-top,.menu-bottom {
	grid-column: 1 / -1;
	padding: 30px 30px 30px 0px;
	text-align: left;
}
.menu-col {
	padding: 0px;
	border-radius: 6px;
	text-align: left;
}
.menu-col a {
	color: white;
	text-decoration: none;
	display: block;
	margin: 8px 0;
}
.menu-col a:hover {
	text-decoration: underline;
}
/* HEADER AREA */
.site-header {
	width: 90vw;
	color: white;
	position: fixed;
	z-index: 999;
	mix-blend-mode: exclusion;
	top: 5vw;
}
.footer {
	mix-blend-mode: exclusion;
	z-index: 2000;
}
.header-inner {
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 20px;
}
.logo {
	height: 50px;
	width: auto;
	transition: opacity 0.5s ease, transform 0.5s ease;
	margin-left: 20px;
	opacity: 1;
	filter: invert(1);

}


.logo,.header-title {
	transition: opacity 0.3s ease;
	opacity: 1;
	pointer-events: auto;
}
.logo.hidden,.header-title.hidden {
	opacity: 0;
	pointer-events: none;
}
.header-title {
	flex: 1;
	margin-left: 10px; font-weight: 100; font-size: unset; margin-top: 10px;
}
.header-org {
	font-family: 'Source Code Pro', monospace;
	font-size: 0.9rem;
	font-weight: 100;
	text-transform: uppercase;
	letter-spacing: 0em;
	line-height: 1.4;
	width: max-content;
	position: fixed;
	bottom: 20vh;
	right: 5vw;
	transition: bottom 0.1s ease;
}



.header-org a {
	color: #95ff00;
	text-decoration: none;
	transition: color 0.3s ease;
}
.sublink{
	font-family: 'Source Code Pro', monospace;
	font-size: 0.9rem;
	font-weight: 100;
	text-transform: uppercase;
	letter-spacing: 0em;
	line-height: 1.4;
	background-color:#95ff00;
	width: max-content;
	padding: 15px;
	z-index: 20000;
	font-size: 0.75rem;
	font-weight: 100;
	text-transform: uppercase;
	letter-spacing: 0em;
	line-height: 1.4;
	color: black;
}

.invert {
	background-color: #773ea5;
}
.black a {
	color: #000;
}
.black:hover a{
	color: #fff;
}
.white a {
	color: #fff;
}

h2 {
	font-family: 'Source Code Pro', monospace;
	font-size: 3.5rem;
	font-weight: 100;
	letter-spacing: 0em;
	color: #fff;
	margin: 0px;
	max-width: 1000px;
	display:inline-block;
	margin-left:1vw; 
}

.menu-panel p { padding-left: 15px;}

h2 {
	font-family: 'Source Code Pro', monospace;
	font-size: 2.5rem;
	font-weight: 100;
	letter-spacing: 0em;
	padding: 15px;
	margin: 0px;
	max-width: 1000px;    padding-bottom: 30px;
	padding-top: 30px;

}

.privacy h2 { margin-top: 10vh;}

.nowrap {
	display:table;
}
h3 {
	font-family: 'Source Code Pro', monospace;
	font-size: 1.5rem;
	font-weight: 100;
	letter-spacing: 0em;
	color: #fff;
	padding-left: 15px;
	max-width: 100%;
	display: inline-block;
}
.form-response h3 {
	margin-top: 1rem;
	font-weight: 400;
	font-size: 1.2rem;
	color: white;
}
h4 {
	font-family: 'Source Code Pro', monospace;
	font-size: 1.5rem;
	font-weight: 100;
	letter-spacing: 0em;
	padding-left: 15px;
	margin: 0px;
	max-width: 1000px;
    border-top: 1px dashed #222;
    padding-top: 30px;

}


h5 {
	font-family: 'Source Code Pro', monospace;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0em;
	color: #555;
	padding: 15px;
	margin:0px;
	max-width: 1000px;
}


h6 {
	font-family: 'Source Code Pro', monospace;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0em;
	color: #fff;
	padding: 15px;
	margin:0px;
	max-width: 100%;
	display: inline-block;
}

.table-cell {display: table-cell; border-top: none;}

p{
	padding-top: 25px;
	padding-bottom: 25px;
	margin: 0px;
}
/* PAGE CONTENT */
.page-content {
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

hr {
	border: none;
	border-top: 1px #00ff00 dashed;
	opacity: 0.25;
}

.logo-inner {
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: -25px;
	margin-bottom: 50px;
}


.page-inner {
    max-width: 90vw;
    margin: 0 auto;
    /* height: 85vh; */
}
section {
	font-size: 13px;
}

p {
	font-family: 'Source Code Pro', monospace;
	font-size: 0.75rem;
	line-height: 1.8;
	letter-spacing: 0.01em;
	color: #e0e0e0;
	max-width: 1050px;
	padding-right: 50px;
}

.padded {	
    padding-bottom: 40px;
	margin-left: 15px;
	}

/* BACKGROUND CUBE */
#bg-cube {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	z-index: -1;
	pointer-events: none;
	transition: left 0.5s ease;
}
body.menu-open #bg-cube {
	left: 0;
}
.fifty {
	width: 50%
}
.lowop {
	opacity: 0.25;
}
.no-href {
	color: white;
	text-decoration: none;
}
#breadcrumbs {
	margin-left: 20px;
	margin-bottom: 10px;
	margin-top: 50vh;
}
.crumb{
	background: #95ff00;
	color: #000;
	text-align: center;
	cursor: pointer;
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 10px;
	font-family: 'Source Code Pro', monospace;
	font-size: 0.75rem;
	font-weight: 100;
	text-transform: uppercase;
	letter-spacing: 0em;
	line-height: 1.4;
}
.crumbrelated{
	background: #0000ff;
	color: #fff;
	text-align: center;
	cursor: pointer;
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 15px;
	font-family: 'Source Code Pro', monospace;
	font-size: 0.75rem;
	font-weight: 100;
	text-transform: uppercase;
	letter-spacing: 0em;
	line-height: 1.4;
	margin-right: 5px;
}



.crumbblack{
	background: #000;
	color: #95ff00;
	box-shadow: inset 0 0 0 2px #95ff00;
	/* inner stroke */
	text-align: center;
	cursor: pointer;
	z-index: 1000;
	align-items: center;
	justify-content: center;
	padding: 10px;
	font-family: 'Source Code Pro', monospace;
	font-size: 0.75rem;
	font-weight: 100;
	text-transform: uppercase;
	letter-spacing: 0em;
	line-height: 1.4;
	pointer-events: none;
}
.border-segment {
	position: fixed;
	background-color: #95ff00;
	z-index: 9999;
	pointer-events: none;
	opacity: 0;
	transition: all 0.5s ease;
}
#border-top {
	top: 0;
	left: 0;
	height: 5px;
	width: 100%;
}
#border-right {
	top: 0;
	right: 0;
	width: 5px;
	height: 100%;
}
#border-bottom {
	bottom: 0;
	left: 0;
	height: 5px;
	width: 100%;
}
#border-left {
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
}

.columns {
    max-width: 1000px;
    column-count: 2;
    column-gap: 100px;
    column-rule: 1px solid #222;
    position: relative;
    background-color: #000;
    padding-bottom: 50px;
    padding-left: 15px;
	padding-top: 50px;
  }

  .columns h4 { padding-left: 0px;     border-top: none;
    padding: 0px;}
  
  .columns::after {
	content: "";
	position: absolute;
	top: 0;
	right: -50px;
	width: 50px; /* Adjust padding size here */
	height: 100%;
	background-color: #000; /* match background */
	pointer-events: none;
	z-index: 0;
	border-top: 1px dashed #222;

  }
  
  .columns p:first-of-type {
    padding-top: 30px;

}

.columns p:nth-of-type(n+2) {
    padding-top: 30px;
}

.columns {
	border-top:1px dashed #222
}

.columns p { padding-bottom: 50px;}

  .nobreak {
	break-inside: avoid;
	page-break-inside: avoid;
  }
  
  /* Style text selection */
  h1::selection, h2::selection, h3::selection, h4::selection, h5::selection, h6::selection, p::selection {
	background: yellow;
	color: black;
  }

#cookieBanner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #0000ff;
	color: #fff;
	padding-left: 5vw;
	font-size: 12px;
	font-family: sans-serif;
	z-index: 9999;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	opacity: 1;
	transform: translateY(100%);
	transition: opacity 0.4s ease, transform 0.4s ease;
	padding-top: 1.5vh;
    padding-bottom: 1.5vh;
  }

  #cookieBanner.show {
	opacity: 1;
	transform: translateY(0);
  }

  #acknowledgeCookies {
	margin-left: 16px;
	padding: 6px 12px;
	background: #ffffff;
	border: none;
	cursor: pointer;
	font-size: 12px;
	padding:15px;
  }

  #cookieBanner a {
	color: #ffff00;
  }





/* -------------------------------------------------LIME-COLOURED LINKS – HOVER STATE------------------------------------------------- */
/* Give any element sitting on #95ff00 a darker-tone inset border when hovered,and (for links) swap text/background for contrast */
.crumb, .crumbrelated, .sublink, .menu-button, .menu-col a {
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.sublink:hover,.crumb:hover,.menu-button:hover,.menu-col a:hover,button:hover{
	background-color: #000;
	/* invert background */
	color: #95ff00;
	/* keep brand lime for text */
	text-decoration: none;
	/* prevent underlines */
	box-shadow: inset 0 0 0 2px #95ff00;
}


#cookieBanner button:hover{
    background: #0000ff;
    color: #ffffff;
    text-decoration: none;
	box-shadow: inset 0 0 0 2px #ffffff;
}

.crumbrelated:hover{
	background-color: #000;
	/* invert background */
	color: #fff;
	/* keep brand lime for text */
	text-decoration: none;
	/* prevent underlines */
	box-shadow: inset 0 0 0 2px #fff;
}
.invert:hover{
	background-color: transparent;
	/* invert background */
	color: #773ea5;
	/* keep brand lime for text */
	text-decoration: none;
	/* prevent underlines */
	box-shadow: inset 0 0 0 2px #773ea5;
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.invert:hover a{
	color: #773ea5;
	/* keep brand lime for text */
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.invert a:hover{
	color: #773ea5;
	/* keep brand lime for text */
	transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.header-org a:hover {
	background-color: #000;
	/* invert background */
	color: #95ff00;
	/* keep brand lime for text */
	text-decoration: none;
	/* prevent underlines */
}
.left {
	left:6vw
}
/* PLAY BUTTON — green circle with black triangle */
.playpause {
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 0;
	padding: 0;
	background: #95ff00;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: 20px;
	vertical-align: 10px;
	/* negative values move up */
}
.playpause::before {
	content: '';
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid #000;
	/* default black arrow */
	transition: border-left-color 0.3s ease;
	margin-left: 2px;
}
.playpause:hover::before{
	border-left-color: #95ff00;
	/* lime green on hover */
}
/* slight grow on hover / focus */
.playpause:hover{
	transform: scale(1.15);
}
.playpause:hover{
	transform: scale(1.15);
	background: #000;
	/* black background */
	box-shadow: inset 0 0 0 2px #95ff00;
	/* inset green border */
}
.luminosity {
	opacity: 0;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
	height: 100%;
	width: 100vw;
	background-color: #95ff00;
	mix-blend-mode: luminosity;
	z-index: -1;
	position: fixed;
	top: 0;
	left: 0;
}
.header-org a:hover {
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}
.playing {
	background-color: red;
	box-shadow: inset 0 0 0 2px red;
	/* inset green border */
}
.playing:hover {
	background-color:red;
	box-shadow: inset 0 0 0 2px red;
	/* inset green border */
}
.playpause.playing::before {
	content: '';
	width: 10px;
	height: 10px;
	background-color: #000;
	border: none;
	margin-left: 0;
	/* reset triangle styling */
	border-top: none;
	border-bottom: none;
	border-left: none;
}
.description {
	width: 33.3vw;
}

.privacy .description {
	margin-left:15px;
}

#related-sublinks{
	margin-left: 15px;
	margin-top: 5vh;
}


#email-form {
	bottom: 0;
	bottom: 0;
	left: 0;
	padding:15px;
	background: #000000;
}
.email-form {
	font-family: 'Source Code Pro', monospace;
	background: #000;
	border: 2px solid #95ff00;
	padding: 10px 20px;
	width: 50%;
	font-size: 0.75rem;
	color: #fff;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0em;
  line-height: 1.4;
}
button {
	background: #95ff00;
	color: #000;
	border: none;
	padding: 12px 20px;
	font-size: 0.75rem;
	cursor: pointer;
	font-family: 'Source Code Pro', monospace;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0em;
  line-height: 1.4;
}



.form-response {
	color: #95ff00;
	font-size: 0.9rem;
	margin-top: 10px;
}
.footermob {
	display: none;
}

#related-sublinks a:nth-child(n+6) {
	display: none;  
}

  .red{
	background-color:#ff0000;
	color: white;
}

.extrapad{    
	margin-left: 15px;
	top: 30px;
	position: relative;
}


@media (max-width: 960px) {

 #bg-cube {display: none;}
	h1 {font-size: 1.5em;}

	.noscroll {
		overflow-x: hidden;
		overflow-y: scroll;
	}
	.description {
		width: 90vw;
	}
	.logo {
		height: 30px;
		margin-top: 2.5vh;
		margin-left: 0vw;
	}

.site-header {
	margin-top: 5px;
right:0px}

.header-title { margin-top: 1.5vh; font-size: 0.5ems;};


	.menu-panel-content h1 { display: none;}

	h2 {
		font-size: 1.5rem;
		display: block;
	}
	h3 {
		padding-top:0px;
		padding-bottom: 0px;
	}

	.logo-inner {margin-bottom: 50px;}

	.crumb{
		padding: 5px;
		font-family: 'Source Code Pro', monospace;
		font-size: 0.75rem;
		font-weight: 100;
		text-transform: uppercase;
		letter-spacing: 0em;
		line-height: 1.4;
	}
	.crumbrelated{
		padding: 15px;
        font-family: 'Source Code Pro', monospace;
        font-size: 0.75rem;
        font-weight: 100;
        text-transform: uppercase;
        letter-spacing: 0em;
        line-height: 1.4;
        position: relative;
        margin-bottom: 10px;
        display: inline-block;
	}
	.crumbblack{
		padding: 5px;
		font-family: 'Source Code Pro', monospace;
		font-size: 0.75rem;
		font-weight: 100;
		text-transform: uppercase;
		letter-spacing: 0em;
		line-height: 1.4;
	}
	.header-org{
		font-size: 0.75em;
		position: unset;
		bottom: unset;
		padding: 0px;
		background-color: unset;
	}
	.mobilehide {
		display: none;
	}
	.playpause {
		width: 30px;
		height: 30px;
		margin-left: 10px;
		;
		vertical-align: 5px;
		/* negative values move up */
	}
	.menu-panel-content {
		top:-10vh
}
	.email-form {
		width: 100%;
		font-size: 0.75rem;
		margin-bottom: 1vh;
	}
	.page-content {
		margin-top: 1vh;
		margin-bottom: 10vh;
		padding-bottom: 10vh;
	}
	.left {
		position: relative;
		display: block;
	}
	.right {
		right: 5vw;
		position: absolute;
		top: 0px;
		height:100%;
		color: black;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.footermob {
		display:flex;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100vw;
		background-color: #fff;
		padding: 35px;
		z-index: 1000;
	}
	#cookieBanner {
		margin-bottom: 85px;
	    padding-bottom: 20px;
		margin-bottom: 85px;
		transform: translateY(200%);
		display: none;
		opacity: 0;
	}
	.columns {
		max-width: 1000px;
		column-count: 1;
		column-gap: 100px;
		column-rule: 1px solid #666;
		text-align: justify;
	  }
}
