/* Allgemeine Stile */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #FFFFFF;
}

header {
    background-color: #1E1E1E;
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #333;
}

header h1 {
    margin: 0;
    font-size: 2em;
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    color: #FFD700;
    text-decoration: none;
    font-size: 1.2em;
}

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

.section {
    padding: 40px;
    border-bottom: 1px solid #333;
}

.section h2 {
    margin-top: 0;
    color: #FFD700;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.video {
    background-color: #1E1E1E;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 5px;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #1E1E1E;
    border-top: 2px solid #333;
}
html {
    scroll-behavior: smooth;
}

.tcjb-button {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: #444;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.tcjb-button:hover {
    background-color: #555;
}

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

.nav ul li a {
    color: yellow;
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: #00bcd4;
}

.live-section {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: white;
    border: 1px solid #444;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
}

.live-status {
    font-size: 18px;
    margin-bottom: 10px;
}

.live-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #9146FF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.live-button:hover {
    background-color: #772CE8;
}