body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1e1e1e;
    color: #eee;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    background-color: #252525;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00bcd4; /* Akzentfarbe */
}

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

nav li {
    margin-left: 1.5rem;
}

nav a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00bcd4;
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #2c2c2c;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('eve_background.jpg'); /* Platzhalterbild */
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 0;
    box-shadow: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons a {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 0.5rem;
}

.button.primary {
    background-color: #00bcd4;
}

.button.primary:hover {
    background-color: #008ba7;
}

.button.secondary {
    background-color: #673ab7;
}

.button.secondary:hover {
    background-color: #512da8;
}

h2 {
    color: #00bcd4;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #00bcd4;
    padding-bottom: 0.5rem;
}

footer {
    background-color: #252525;
    color: #ddd;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #333;
}

/* Zusätzliches Sci-Fi Styling (optional) */
body {
    /* Futuristische Schriftart (ggf. importieren) */
    /* font-family: 'Orbitron', sans-serif; */
    letter-spacing: 0.05em;
}

header {
    /* Subtile Glanz-Effekte */
    /* box-shadow: 0 0 10px rgba(0, 188, 212, 0.3); */
}

nav a:hover {
    /* Leichter Leuchteffekt */
    text-shadow: 0 0 5px #00bcd4;
}

section {
    /* Subtile Muster oder Texturen im Hintergrund */
    /* background-image: linear-gradient(to bottom right, #2c2c2c, #1e1e1e); */
    border: 1px solid #333;
}

h2 {
    /* Etwas kantigere Schrift */
    /* font-family: 'Rajdhani', sans-serif; */
}

/* Animationen (optional - erfordert mehr CSS/JS) */
/* Beispiel: Subtile Hover-Effekte auf Sektionen */
/* section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
} */