html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  color: #c62d2d;
  font-family: 'Courier New', Courier, monospace;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    background-color: #0d0d0d;
    color: #00ff00;
    border: 1px solid #00ff00;
    border-radius: 5px;
    padding: 10px 15px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.2);
}

.menu-toggle:hover {
    background-color: #00ff00;
    color: #0a0a0a;
}

.menue {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    height: 100vh;
    background-color: #1a1a1a;
    border-right: 1px solid #00ff00;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;

    transition: transform 0.3s ease;
    z-index: 999;

    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.menue-picture {
    width: 100%;
    height: auto;
    border: 1px solid #333;
    margin-bottom: 10px;
    display: block;
}

.menue-title {
    color: #00ff00;
    font-size: 1.2rem;
    text-transform: uppercase;
    border-bottom: 1px dotted #00ff00;
    padding-bottom: 5px;
    letter-spacing: 1px;
}

.menue-links {
    list-style: none;
    flex-shrink: 0;
}

.menue-links li {
    color: white;
    margin-bottom: 12px;
}

.menue-links a {
    color: #888888;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 2px 5px;
    border-radius: 4px;
}

.menue-links a:hover {
    color: #00ff00;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.8);
    /* background-color: rgba(0, 255, 0, 0.15); */
}

.menue-links a.team-link {
    color: var(--team-color) !important; 
}

.menue-links a.team-link:hover {
    color: var(--team-color) !important; 
    text-shadow: 0 0 9px var(--team-color); 
    /* background-color: var(--team-bg);  */
}

.menue-links a.rules {
    color: rgb(255, 221, 0);
    margin-bottom: 12px;
    text-decoration: underline;
}

.menue-links a.rules:hover {
    text-shadow: 0 0 5px white !important;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
}

main {
    margin-left: 260px;
    padding: 50px;
    transition: filter 0.3s ease;
}

main .title {
    font-size: 30px;
    text-align: center;
    text-decoration: underline;
    margin-top: 0px;
    margin-bottom: 25px;
    color: white;
}

main h2 {
    font-size: 17px;
    color: white;
}

main h1 {
    font-size: 25px;
    color: white;
}

main p {
    color: #888888;
}
main .info {
    color: #666; 
    margin-left: 20px; 
}


main .example {
    display: flex;
    flex-direction: row;
    margin-top: 25px;
}
main .line {
    margin-top: 8px;
    margin-left: 10px;
    margin-bottom: 10px;
    width: 100%;
    height: 2px;
    background-color: grey;
}

main table {
    border-collapse: collapse;
    width: 40%;
    color: white;
}

main th, td {
    border: 1px solid rgb(142, 140, 140);
    padding: 8px;
    text-align: left;
}

main th {
    background-color: rgb(204, 2, 249);
    color: black;
}

main .space {
    width: auto;
    height: 70px;
}

main .space2 {
    width: auto;
    height: 40px;
}

main .end {
    text-align: right;
}

main .line {
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
    height: 2px;
    background-color: grey;
}

main .made {
    margin-right: 25px;
    font-size: 12px;
}

@media (max-width: 768px) {

    .menu-toggle {
    display: block;
    }

    .menue {
    transform: translateX(-100%);
    width: 280px;
    box-shadow: 5px 0 15px rgba(0, 255, 0, 0.1);
    }

    .menue.offen {
    transform: translateX(0);
    }

    main {
    margin-left: 0;
    padding: 80px 20px 30px 20px;
    }

    .overlay.aktiv {
    display: block;
    }
}
