:root {
    --primary: #4caf50;
    --bg-dark: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #222;
}

.logo {
    font-family: 'VT323', monospace;
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: 2px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 25px;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav a:hover { color: var(--primary); }

.coming-soon { opacity: 0.4; cursor: not-allowed; }

.hero {
    position: relative;
    text-align: center;
    padding: 160px 20px;
    /* Das Bild mit einem dunklen Verlauf, damit der Text weiß bleibt */
    background: linear-gradient(rgba(15, 15, 15, 0.02), rgba(15, 15, 15, 1)), 
                url('https://w0.peakpx.com/wallpaper/572/76/HD-wallpaper-landscape-of-panorama-minecraft.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax-Effekt: Bild bewegt sich beim Scrollen mit */
    border-bottom: 1px solid #222;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6); /* Schatten für bessere Lesbarkeit */
}

.hero p {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.ip-container {
    display: inline-block;
    margin-top: 30px;
    background: rgba(30, 30, 30, 0.9);
    padding: 15px 40px;
    border-radius: 12px;
    border: 1px solid #333;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.ip-container:hover { border-color: var(--primary); transform: translateY(-2px); }

.label { display: block; font-size: 0.7rem; color: var(--text-muted); margin-bottom: 5px; }

.ip-address { font-weight: bold; font-size: 1.2rem; color: var(--primary); }

.container { max-width: 1100px; margin: 0 auto; padding: 60px 20px; }

.about { text-align: center; margin-bottom: 80px; }

.about h2 { font-size: 2rem; color: var(--primary); }

.about p { max-width: 700px; margin: 0 auto; color: var(--text-muted); font-size: 1.1rem; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #222;
    transition: 0.3s;
}

.feature-card:hover { border-color: #444; background: #222; }

.icon { font-size: 2rem; margin-bottom: 20px; }

footer { text-align: center; padding: 40px; border-top: 1px solid #222; color: #555; }

/* Discord Button Spezial-Effekt */
nav a[href*="discord.gg"] {
    background: #5865F2; /* Discord Blau */
    color: white !important;
    padding: 8px 16px;
    border-radius: 5px;
    transition: transform 0.2s, box-shadow 0.2s;
}

nav a[href*="discord.gg"]:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}
