
        body {
            background: #00b515;
            margin: 0;
            font-family: Arial, sans-serif;
        }

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav-links {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;   /* kein Hintergrund */
}

.nav-logo {
  margin: 20px 20px; /* Abstand um das Logo */
  float: left; /* Logo links ausrichten */
}

.nav-links li {
  float: left;
}

.nav-links li a {
  display: block;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.login-a{
font-size: 15px; 
color: #ff0000;
margin-right: 5px;
}

.login-a span {
  margin-left: 8px;
}

.login-a:hover {
font-size: 15px; 
color: #ff0000;
margin-right: 5px;
}


.nav-links li a i {
  font-size: 1.2rem;
}





        .gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, #00b515, rgba(254, 254, 254, 0.3));
            z-index: 1;
            pointer-events: none;
        }

        .logo-container {
            display: flex;
            justify-content: center;
            z-index: 3;
            margin-top: 80px;
        }

        .logo-container img {
            width: 18rem;
            height: auto;
            margin-bottom: 20px;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Copy Address Box */
        .copy-address-box {
            position: absolute;
            left: 15rem;
            top: 80%;
            transform: translateY(-50%);
            display: flex;
            align-items: center;
            cursor: pointer;
            z-index: 2;
        }

        .copy-address-content {
            display: inline-flex;
            align-items: center;
            background-color: #c9f5cb86;
            border: 1px solid #c9f5cb86;
            border-radius: 8px;
            padding: 20px 40px;
            box-shadow: 0 4px 8px rgba(5, 74, 0, 0.2);
        }

        .copy-address-icon {
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: #0b5a14;
        }

        .copy-address-text {
            margin-left: 15px;
            text-align: left;
            color: black;
        }

        .copy-address-title {
            font-size: 16px;
            font-weight: bold;
        }

        .copy-address-status {
            font-size: 14px;
            color: var(--accent-primary);
            cursor: pointer;
        }

        /* Player INFO Box Header */
        .player-info-box {
            position: absolute;
            right: 15rem;
            top: 80%;
            transform: translateY(-50%);
            border-radius: 5px;
            display: flex;
            align-items: center;
            z-index: 2;
        }

        .player-info-content {
            display: inline-flex;
            align-items: center;
            background-color: #c9f5cb86;
            border: 1px solid #c9f5cb86;
            border-radius: 8px;
            padding: 20px 40px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            opacity: 1;
        }

        .player-info-icon {
            color: #0b5a14;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
        }

        .player-info-text {
            margin-left: 15px;
            text-align: left;
            color: black;
        }

        .player-info-title {
            font-size: 16px;
            font-weight: bold;
        }

        .player-info-status {
            font-size: 14px;
            color: var(--accent-primary);
        }

        /* First Section */
        .first-section {
            background-color: #00b515;
            padding: 40px 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 100px;
        }

        .parrot-image {
            width: 120px;
            height: auto;
        }

        .first-text {
            color: white;
            max-width: 500px;
            font-size: 1.2rem;
            text-align: left;
        }

        .gamemodes-section {
            background-color: #dbf0e0;
            padding: 20px;
        }

        .gamemodes-section h2 {
            text-align: center;
            color: #0b5a14;
        }

        .gamemodes-section p {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.1rem;
            color: #333;
        }

        .gamemodes-section .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin: 10px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

.gamemodes-cards {
    display: flex;
    justify-content: center;
    gap: 40px; /* vorher 20px */
    flex-wrap: wrap;
    margin-top: 60px;
}

        .card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: visible; /* wichtig, damit das Bild übersteht */
    gap: 40px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-image {
    width: 200px;
    height: auto;
    position: relative;
    top: -50px; /* Bild ragt 40px über die Karte hinaus */
    margin-bottom: -40px; /* Abstand zum Text ausgleichen */
}




.blog-section {
    background-color: #dbf0e0;
    padding: 20px;
}

        .blog-section h2 {
            text-align: center;
            color: #0b5a14;
        }

        .blog-section p {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.1rem;
            color: #333;
        }

        .blog-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
    width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.blog-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    text-align: left;
}

.blog-content h3 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #0b5a14;
}

.blog-content p {
    font-size: 0.95rem;
    color: #444;
    margin: 10px 0 20px;
}

.blog-btn {
    display: inline-block;
    padding: 10px 18px;
    background-color: #00b515;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.blog-btn:hover {
    background-color: #0b5a14;
}

.blog-meta {
    font-size: 0.8rem;
    color: #777;
    margin: 10px 0;
}

.blog-more {
    text-align: center;
    margin-top: 40px;
}







.footer {
    background-color: #00b515;
    color: white;
    padding: 40px 80px 20px 80px;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 60px;
    margin-bottom: 15px;
}

.footer-text {
    max-width: 300px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-links h4,
.footer-socials h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: bold;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #d4ffd9;
}

.social-icons a {
    color: white;
    font-size: 1.4rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #d4ffd9;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
}

.cut_line {
        border-top: 1px solid rgba(105, 105, 105, 0.3);
        text-align: center;
        margin: 70px;
}

/* Startzustand: versteckt */
.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Sobald sichtbar */
.show {
  opacity: 1;
  transform: translateY(0);
}






