/* Grundlegende Stile */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    background-color: #0a0a0a;
    line-height: 1.6;
}

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

/* Header */
.main-header {
    background: linear-gradient(90deg, #ff9900, #ff6600);
    padding: 20px 0;
}

.logo {
    width: 150px;
}

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero mit YouTube-Video-Hintergrund */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Verhindert Interaktion mit dem Video */
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 span {
    color: #ff9900;
}

.btn-primary {
    background: #ff9900;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 20px;
}

/* About Section */
.about {
    background: #1a1a1a;
    padding: 50px 0;
    text-align: center;
}

/* Features */
.features {
    background: #0a0a0a;
    padding: 50px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.feature-list li {
    margin: 10px 0;
    font-size: 18px;
}

/* Join Section */
.join {
    background: linear-gradient(90deg, #ff6600, #ff3300);
    padding: 50px 0;
    text-align: center;
}

.btn-secondary {
    background: #ffffff;
    color: #0a0a0a;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
}

/* Footer */
.footer {
    background: #1a1a1a;
    text-align: center;
    padding: 20px 0;
}
