   /* Reset/Global styles */
   html, body {
    overflow-x: hidden;
	}

   * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  img, .container {
    max-width: 100%;
}

  
  body {
	background-color: #121212;
	color: #ffffff;
	font-family: 'VT323', monospace;
	font-size:1.5rem;
	line-height: 1.8rem;
  }

  a {
	text-decoration: none;
	color: #ff00ff; /* Bright pink accent for links */
	transition:all .3s;
  }

  a:hover {
	color: #D100D1;
  }

  /* Container */
  .container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
  }

  /* Header */
  header {
	padding: 20px 0;
  }

  .header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
  }

  .logo {
	font-size: 2.2rem;
	font-weight: bold;
  }

  nav ul {
	list-style: none;
	display: flex;
  }

  nav li a {
	color: #ffffff;
	transition: color 0.3s;
	font-size:1.1rem;
	line-height:1.3rem;
	display:block;
	padding:5px 15px;
  }

  nav li a:hover,
  nav li a.current {
	color: #ff00ff;
  }

  p {
	  margin-bottom:30px;
  }
  p.footnote {
	font-size:15px;
	line-height:19px;
	margin-top:20px;
  }
  p.narrow, .narrow {
	width:65%;
	margin-left:auto;
	margin-right:auto;
}

  /* Hero Section */
  .hero {
	padding: 60px 0;
  }

  .hero-content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap:60px;
  }

  .hero-text {
	width:60%;
  }

  .hero-text h1 {
	font-size: 4.2rem;
	line-height:4.2rem;
	margin-bottom: 30px;
  }

  .hero-text p {
	font-size: 1.8rem;
	line-height:2rem;
	margin-bottom: 30px;
  }

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

  .cta-button {
	background-color: #D100D1;
	color: #ffffff;
	padding: 15px 30px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s;
	display:inline-block;
	margin-bottom:10px;
  }

  .cta-button:hover {
	background-color: #ff00ff;
	color:white;
  }

  .cta-button.linkedin {
	  position:relative;
	  padding-right:60px;
  }
  .cta-button svg {
	  width:30px;
	  height:auto;
	  position:absolute;
	  right:20px;
	  top:14px;
  }
  .cta-button svg path {
	  fill:white;
  }

  .hero-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
  }

  .hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: 5px;
  }

  /* Card Section */
  .cards {
	padding: 60px 0;
  }

  .cards-inner {
	  display:flex;
		gap:30px;
	  flex-wrap:wrap;
  }

  .card {
	background-color: #1e1e1e;
	border-radius: 5px;
	padding: 40px;
	flex-basis:calc(50% - 15px);
	align-content:flex-end;
  }

  .card img {
	max-width: 100%;
	height: auto;
	border-radius: 3px;
  }

  .works {
	display:flex;
	gap:20px;
	flex-wrap:wrap;
	margin-top:50px;
  }
  .work {
	background-color: #1e1e1e;
	border-radius: 5px;
	padding: 30px;
	flex-basis:100%;
	font-size:1.3rem;
	line-height:1.7rem;
  }
  .work img {
	max-width:100%;
	height:auto;
	margin-bottom:20px;
  }
  .work-inner {
	display:flex;
	gap:30px;
	flex-wrap:wrap;
  }
  .work-column {
	flex-basis:calc(50% - 15px);
  }
  .work .intro {
	margin-bottom:30px;
	margin-top:10px;
	font-size:1.8rem;
	line-height:2.0rem;
  }
  .work .label {
	text-transform:uppercase;
	font-size:14px;
	line-height:18px;
	letter-spacing:2px;
	opacity:.7;
  }
  .work .content {
	margin-bottom:20px;
  }

  .youtube-container {
	display: flex;
    width:100%;
	margin-bottom:20px;
    iframe {
        aspect-ratio: 16 / 9;
        width: 100% !important;
    }
}

  h2 {
	  font-size:3.2rem;
	  line-height:3.2rem;
	  margin-bottom:30px;
  }

  h3 {
	margin: 15px 0 30px 0;
	font-size:2.4rem;
	line-height:2.4rem;
  }

  .card p {
  }

  .card-cta {
	display: inline-block;
	background-color: #D100D1;
	color: #ffffff;
	padding: 10px 20px;
	border-radius: 3px;
	transition: background-color 0.3s;
  }

  .card-cta:hover {
	background-color: #ff00ff;
	color:white;
  }

  /* Footer */
  footer {
	background-color: #181818;
	padding: 20px 0;
	text-align: center;
  }
  footer p {
	margin-top:20px;
  }

  .hero-image.terran img {
	width:384px;
	height:auto;
	/* Tells the browser to scale the image using nearest-neighbor instead of anti-aliasing. */
	image-rendering: pixelated;

	/* Include fallback properties for older or less consistent browsers: */
	image-rendering: -moz-crisp-edges;   /* Older Firefox */
	image-rendering: -webkit-crisp-edges;/* Some older WebKit browsers */
	image-rendering: crisp-edges;        /* Modern standard (still partial support) */
  }

  img.terran {
	/* Tells the browser to scale the image using nearest-neighbor instead of anti-aliasing. */
	image-rendering: pixelated;

	/* Include fallback properties for older or less consistent browsers: */
	image-rendering: -moz-crisp-edges;   /* Older Firefox */
	image-rendering: -webkit-crisp-edges;/* Some older WebKit browsers */
	image-rendering: crisp-edges;        /* Modern standard (still partial support) */
  }

  .mobile-show {
	  display:none;
  }
  .mobile-hide {
	  display:block;
  }

  .uniwars {
	font-family: 'uniwars', Arial, sans-serif;
	font-size:3.5rem;
	line-height:2.8rem;
	}
	.uniwars.large {
		font-size: 10rem;
		line-height:10rem;
		margin-bottom:0;
	}

	h1.uniwars {
		margin-bottom:30px;
	}
	h1.uniwars .line1 {
		display:block;
	}
	h1.uniwars .line2 {
		margin-left:42px;
		display:block;
	}
	img.spewnicorn {
		width:250px;
		height:auto;
	}
	img.criticalmess {
		width:250px;
		height:auto;
	}

  @media (max-width:1280px) and (min-width:992px) {
	.work .intro {
	  margin-top:0;
	  font-size:1.5rem;
	  line-height:2.1rem;
	}
	.work .content {
	  font-size:1.1rem;
	  line-height:1.9rem;
	}
	.work .card-cta {
	  font-size:1.1rem;
	  line-height:1.1rem;
	}
	}

  /* Responsive Styles */
  @media (max-width: 1199px) {
	  .hero-text h1 {
		  font-size:2.8rem;
		  line-height:3.2rem;
	  }
	  h1.uniwars .line2 {
		  margin-left:39px;
	  }
	  .hero-text {
		  width:50%;
	  }
	  .hero-content {
		  gap:30px;
	  }
	  h1.uniwars {
		  font-size:2.8rem;
		  line-height:2.2rem;
	  }
  }

  @media (max-width: 992px) {
	  .card {
		  flex-basis:100%;
	  }
	  .cards {
		  padding-top:20px;
	  }
	  .hero-text {
		  width:100%;
	  }
	  .hero-content {
		  flex-wrap:wrap;
	  }
	  .hero-content img {
		  width:100%;
		  margin:30px 0 30px 0;
	  }
	  h1 span.arrow {
		  transform:rotate(90deg);
		  display:inline-block;
	  }
	  .mobile-show {
		  display:block;
	  }
	  .mobile-hide {
		  display:none;
	  }
	  .work-column {
		flex-basis:100%;
	  }
  }

  @media (max-width: 768px) {
	.hero {
		padding:30px 0 40px 0;
	}
	.hero-content {
	  flex-direction: column;
	}
	
	.hero-text {
	  margin-right: 0;
	}
	
	.hero-image {
	  margin-top: 20px;
	}
	
	.header-content {
	  flex-direction: column;
	}
	nav {
	  display:none;
	}
	h1.uniwars {
	  font-size:1.8rem;
	  line-height:1.6rem;
	}
	.card {
	  padding:15px 15px;
	}
	p.narrow, .narrow {
		width:100%;
	}
	.work-inner {
		gap:0;
	}
	.work {
		padding:15px;
	}
	.work h3.uniwars {
		font-size:1.3rem;
		line-height:1.6rem;
		word-break:break-all;
	}
	.work .intro {
		font-size:1.4rem;
		line-height:2.0rem;
	}
	.work {
		font-size:1.2rem;
		line-height:1.7rem;
	}
	h2 {
		font-size:2.2rem;
		line-height:2.2rem;
		word-break:break-word;
	  }
  }

  @font-face {
  font-family: 'uniwars';
  src: url('industrialthemes/fonts/uniwars_bd_it-webfont.eot');
  src: url('industrialthemes/fonts/uniwars_bd_it-webfont.eot?#iefix') format('embedded-opentype'),
	   url('industrialthemes/fonts/uniwars_bd_it-webfont.woff2') format('woff2'),
	   url('industrialthemes/fonts/uniwars_bd_it-webfont.woff') format('woff'),
	   url('industrialthemes/fonts/uniwars_bd_it-webfont.ttf') format('truetype'),
	   url('industrialthemes/fonts/uniwars_bd_it-webfont.svg#uniwars_rgbold_italic') format('svg');
  font-weight: normal;
  font-style: normal;

}