body {
    font-family: 'Roboto', sans-serif;
    background-color: #1a1a1a;
    color: #f2f2f2;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #333;
}

.logo img {
    width: 150px;
    height: 200;
}

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

nav a {
    text-decoration: none;
    color: #f2f2f2;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: url('hero-background.jpg') no-repeat center center;
    background-size: cover;
}

.hero h1 {
    font-size: 15px;
    margin: 0;
}

.hero p {
    font-size: 18px;
}

.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    color: #ffffff; /* Textfarbe weiß */
    background: linear-gradient(to right, #0000FF, #800080); /* Verlauf von Blau zu Lila */
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta:hover {
    background: linear-gradient(to right, #0000cc, #660066); /* Dunkleres Blau und Lila beim Hover */
}


.about, .top-games {
    padding: 50px 20px;
    text-align: center;
}

.about2 {
    padding: 50px 20px;
    text-align: left;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #f2f2f2;
}

.history, .team, .team2, .team3 .values {
    text-align: center;
    padding: 50px 20px;
}

.team-member {
    display: inline-block;
    margin: 10px;
    text-align: center;
}

.games-library {
    text-align: center;
    padding: 50px 20px;
}

.game-filters {
    margin-bottom: 20px;
}

.game-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.game-item {
    width: 200px;
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.game-item img {
    width: 100%;
    border-radius: 5px;
}

.game-item h3 {
    font-size: 18px;
    margin: 10px 0;
}

.game-item p {
    font-size: 14px;
}

.news {
    text-align: center;
    padding: 50px 20px;
}

.news-item {
    background-color: #333;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.news-item h3,
.news-item p {
    text-align: center;
}

.news-image {
    display: block;
    margin: 5px auto;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 2px;
}

.events {
    text-align: center;
    padding: 50px 20px;
}

.discord, .clans, .social-media {
    text-align: center;
    padding: 50px 20px;
}

.clan-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.clan-item {
    width: 200px;
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.clan-logo { 
    width: 100px; 
    height: auto; 
    margin-bottom: 10px; 
    border-radius: 5px; 
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons img {
    width: 40px;
    height: 40px;
}

.contact, .address {
    text-align: center;
    padding: 50px 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
}

input, textarea {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

button {
    width: 100%;
    max-width: 200px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    color: #fff;
    background: linear-gradient(to right, #0000FF, #800080);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background: linear-gradient(to right, #0000cc, #660066);
}

.map-container {
    margin-top: 20px;
}

iframe {
    width: 100%;
    max-width: 600px;
    border: none;
    border-radius: 5px;
}
