﻿<!-- Alle Rechte vorbehalten © 2026 Patrick Gudat - Pure German Entertainment, Dünenweg 47, 21033 Hamburg -->
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
@font-face {
	font-family: 'Orbitron';
	src: url('orbi.woff2') format('woff2');
	font-weight: 400;
	display: swap;
}
@font-face {
	font-family: 'Roboto';
	src: url('robi.woff2') format('woff2');
	font-weight: 400;
	display: swap;
}
@font-face {
	font-family: 'Orbitron';
	src: url('orbi.woff2') format('woff2');
	font-weight: 700;
	display: swap;
}
@font-face {
	font-family: 'Roboto';
	src: url('robi.woff2') format('woff2');
	font-weight: 700;
	display: swap;
}
body {
	font-family: 'Roboto', sans-serif;
	background-color: #010022;
	color: #eee;
	overflow-x: hidden;
}
/* Alle Rechte vorbehalten (c) 2026 by Patrick Gudat */
.grid {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(0,255,128,0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(0,255,255,0.05) 1px, transparent 1px);
	background-size: 50px 50px;
	z-index: 0;
	pointer-events: none;
}
/* Alle Rechte vorbehalten (c) 2026 by Patrick Gudat */
header {
	position: fixed;
	top: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 40px;
	background: rgba(0,0,30,0.85);
	z-index:10;
}
header h1 {
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	font-size: 28px;
	color: #00ff80;
	letter-spacing: 2px;
}
/* Alle Rechte vorbehalten (c) 2026 by Patrick Gudat */
nav a {
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	color: #00ff80;
	margin-left: 25px;
	text-decoration: none;
	position: relative;
	transition: 0.3s;
}
nav a:hover {color:#ff0040;}
nav a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	background: #ff0040;
	left: 0;
	bottom: -4px;
	transition: 0.3s;
}
nav a:hover::after {width:100%;}
/* Alle Rechte vorbehalten (c) 2026 by Patrick Gudat */
.hero {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 2;
}
/* Alle Rechte vorbehalten (c) 2026 by Patrick Gudat */
.core {
	width: 250px;
	height: 250px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255,0,64,0.8) 0%, rgba(0,0,30,0) 70%);
	box-shadow: 0 0 50px #ff0040,0 0 100px #ff0040,0 0 150px #ff0040;
	animation: pulse 2s infinite;
	margin-bottom: 30px;
}
/* Alle Rechte vorbehalten (c) 2026 by Patrick Gudat */
@keyframes pulse {
	0%, 100% {transform: scale(1);}
	50% {transform: scale(1.1);}
}
/* Alle Rechte vorbehalten (c) 2026 by Patrick Gudat */
.hero h2 {
	font-family: 'Orbitron', sans-serif;
	font-size: 48px;
	color: #00ff80;
	text-shadow: 0 0 10px #00ff80,0 0 20px #00ff80,0 0 30px #00ffff;
	margin-bottom: 20px;
}
.hero p {
	font-size:20px;
	color: #ccc;
	max-width: 600px;
	margin: 0 auto 30px auto;
}
.hero a.button {
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	padding: 15px 40px;
	border: 2px solid #00ff80;
	color: #00ff80;
	text-decoration: none;
	border-radius: 5px;
	transition: 0.3s;
}
.hero a.button:hover {
	background: #ff0040;
	color: #fff;
	box-shadow: 0 0 20px #ff0040,0 0 40px #ff0040;
}
/* Alle Rechte vorbehalten (c) 2026 by Patrick Gudat */
section {
	padding: 100px 20px;
	min-height: 80vh;
	position: relative;
	z-index: 1;
}
.section-title {
	font-family: 'Orbitron', sans-serif;
	font-size: 36px;
	color: #00ff80;
	text-align: center;
	margin-bottom: 60px;
}
/* Alle Rechte vorbehalten (c) 2026 by Patrick Gudat */
.effect-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
	gap: 40px;
	padding: 0 50px;
}
.card {
	background: rgba(0,0,30,0.6);
	border: 1px solid #00ff80;
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	transition: 0.3s;
	position: relative;
	overflow: hidden;
}
.card:hover {
	border-color: #ff0040;
	box-shadow: 0 0 20px #ff0040,0 0 40px #ff0040;
}
.card h3 {
	font-family: 'Orbitron', sans-serif;
	font-size: 24px;
	margin-bottom: 15px;
	color: #00ff80;
}
.card p {
	font-size: 16px;
	color: #ccc;
}
/* Alle Rechte vorbehalten (c) 2026 by Patrick Gudat */
footer {
	padding: 40px 20px;
	background: #010019;
	text-align: center;
	color: #666;
}
[data-animate]{
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease-out;
}
[data-animate].visible{
	opacity: 1;
	transform:translateY(0);
}
<!-- Alle Rechte vorbehalten © 2026 Patrick Gudat - Pure German Entertainment, Dünenweg 47, 21033 Hamburg -->