
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #fff;
            color: #000;
        }

        header {
            padding: 2rem 0;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        nav {
            text-align: center;
            padding: 0.5rem 0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        nav ul {
            list-style: none;
            padding: 0;
        }

        nav ul li {
            display: inline;
            margin: 0 15px;
        }

        nav ul li a {
            color: #000;
            text-decoration: none;
            font-weight: bold;
        }

        nav ul li a:hover {
            text-decoration: underline;
        }

        main {
            padding: 30px;
            max-width: 1000px;
            margin: 20px auto;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        footer {
            text-align: center;
            padding: 15px;
            position: fixed;
            bottom: 0;
            width: 100%;
            font-size: 0.8rem;
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        h3 {
            font-size: 1.5rem;
            margin-top: 1rem;
            font-weight: 500;
        }

        p {
            font-size: 1rem;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        ul {
            margin: 10px 0;
            padding-left: 20px;
        }

        li {
            margin-bottom: 8px;
        }

        .raid-image {
            max-width: 100%;
            border-radius: 8px;
            margin-top: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .raid-image:hover {
            transform: scale(1.05);
        }

        .glossary-link {
            text-decoration: none;
            font-weight: bold;
            cursor: pointer;
        }

        .glossary-link:hover {
            text-decoration: underline;
        }

        /* CSS für Glossar */
        .glossary-checkbox {
            display: none;
        }

        .glossary-label {
            text-decoration: none;
            color: #000;
            font-weight: bold;
            cursor: pointer;
        }

        .glossary-checkbox:checked + .glossary {
            display: block;
        }

        .glossary {
            display: none;
            margin-top: 20px;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .glossary ul {
            list-style: none;
            padding: 0;
        }

        .glossary ul li {
            margin-bottom: 12px;
        }

        .glossary ul li span {
            font-weight: bold;
        }

        .highlight {
            border: 2px solid #000;
            padding: 5px;
            border-radius: 5px;
            background-color: #e0e0e0;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }