* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  line-height: 1.5;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'TerminalGrotesque';
  src: url('/fonts/Terminal-Grotesque-master/webspecimen/font/terminal-grotesque-webfont.woff2') format('woff2'),
       url('/fonts/Terminal-Grotesque-master/webspecimen/font/terminal-grotesque-webfont.woff') format('woff'),
       url('/fonts/Terminal-Grotesque-master/webspecimen/font/terminal-grotesque-webfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'TurboDriver';
  src: url('/fonts/turbo-driver/Turbo Driver Italic.otf') format('opentype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'OfficeCodePro';
  src: url('/fonts/office-code-pro/officecodepro-regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OfficeCodePro';
  src: url('/fonts/office-code-pro/officecodepro-bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'OfficeCodePro';
  src: url('/fonts/office-code-pro/officecodepro-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'OfficeCodePro';
  src: url('/fonts/office-code-pro/officecodepro-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Iceberg';
  src: url('/fonts/iceberg_5.2.8/webfonts/iceberg-latin-400-normal.woff2') format('woff2'),
       url('/fonts/iceberg_5.2.8/webfonts/iceberg-latin-400-normal.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: 'OfficeCodePro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #000;
  color: #e0e0e0;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Space-style stars */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image:
    radial-gradient(rgba(255,255,255,0.9) 0px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.7) 0px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.5) 0px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.3) 0px, transparent 1px);
  background-size: 150px 150px, 200px 200px, 250px 250px, 300px 300px;
  background-position: 0 0, 30px 50px, 80px 120px, 150px 200px;
  opacity: 0.6;
}

/* Galaxy background - hellgrün und dunkelblau mit 75% schwarz in der Mitte */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: radial-gradient(ellipse at center, #000000 75%, #1b3b5f 85%, #2d6a4f 92%, #40916c 100%);
  filter: blur(40px);
}

/* Glowing orbs for atmosphere */
.orb-1 {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.2) 0%, transparent 70%);
  top: -300px;
  left: -200px;
  z-index: -1;
  animation: pulse 12s ease-in-out infinite;
}

.orb-2 {
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 81, 181, 0.15) 0%, transparent 70%);
  bottom: -300px;
  right: -250px;
  z-index: -1;
  animation: pulse 15s ease-in-out infinite reverse;
}

.orb-3 {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 188, 212, 0.18) 0%, transparent 70%);
  top: 20%;
  right: 40%;
  z-index: -1;
  animation: floatSlow 30s ease-in-out infinite;
}

.orb-4 {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.12) 0%, transparent 70%);
  bottom: 20%;
  left: 20%;
  z-index: -1;
  animation: floatSlow 20s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 0.8; }
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: #111;
  border-bottom: 1px solid #222;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00d2ff;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #646cff;
}

.site-footer {
  background: #111;
  border-top: 1px solid #222;
  padding: 2rem 0;
  margin-top: 4rem;
}

.site-footer p {
  text-align: center;
  color: #888;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'TurboDriver', 'TerminalGrotesque', sans-serif;
}

p {
  font-family: 'TurboDriver', sans-serif;
}
