/* Grundkonfiguration */
:root {
    --primary: #a349f5;
    --accent: #00ffcc;
    --bg-dark: #0f0f12;
    --card-bg: rgba(25, 25, 30, 0.9);
}

body {
    margin: 0;
    color: white;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
}

/* Fixiertes Hintergrundbild */
.main-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Hier dein FiveM/GTA Background Bild einfügen */
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1542332213-31f87348057f?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Laufschrift */
.ticker-wrapper {
    background: var(--primary);
    padding: 8px 0;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* Header & Nav */
header {
    background: rgba(0, 0, 0, 0.85);
    padding: 20px 10%;
    border-bottom: 2px solid var(--primary);
}

nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Orbitron', sans-serif; font-size: 28px; font-weight: bold; }
.logo span { color: var(--primary); }
nav ul { display: flex; list-style: none; gap: 30px; }
nav a { text-decoration: none; color: white; font-weight: 600; transition: 0.3s; }
nav a:hover { color: var(--primary); }

.btn-join {
    background: var(--primary);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 0 15px var(--primary);
}

/* Hero Section */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 { font-family: 'Orbitron', sans-serif; font-size: 5rem; margin: 0; text-shadow: 0 0 20px var(--primary); }

.online { color: var(--accent); font-weight: bold; }

/* Team Section */
.team-section { padding: 80px 10%; background: rgba(0,0,0,0.6); }
.section-title { text-align: center; font-family: 'Orbitron', sans-serif; margin-bottom: 50px; font-size: 2.5rem; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.4s;
}

.team-card:hover { border-color: var(--primary); transform: translateY(-10px); }
.team-card img { width: 100px; height: 100px; border-radius: 50%; border: 3px solid var(--primary); margin-bottom: 15px; }
.role { color: var(--primary); font-weight: bold; text-transform: uppercase; font-size: 0.8rem; }

/* Discord Section */
.discord-section {
    padding: 100px 10%;
    display: flex;
    justify-content: center;
    background: linear-gradient(transparent, var(--bg-dark));
}

.discord-container {
    display: flex;
    background: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.discord-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: #5865F2;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}