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

body {
    font-family: Arial, sans-serif;
    background: #0a0a0a;
    color: white;
    overflow-x: hidden;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 200;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

.logo img {
    width: 275px;
    height: 40px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0078f2;
}

.navbar-placeholder {
    width: 275px;
    visibility: hidden;
}

.page {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slider {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
    animation: slowZoom 20s infinite alternate;
}

.slide.active {
    opacity: 1;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,120,242,0.16) 100%);
}

.main-container {
    position: relative;
    z-index: 2;
    margin-top: 100px;
    padding: 40px 20px 80px;
    min-height: 100vh;
}

.content-panel {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(12, 12, 18, 0.78);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    line-height: 1.7;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.content-panel h1 {
    color: #0078f2;
    font-size: 2.4em;
    margin-bottom: 20px;
    border-bottom: 2px solid #0078f2;
    padding-bottom: 10px;
}

.content-panel h2 {
    color: #00a8f2;
    margin: 38px 0 18px;
    font-size: 1.8em;
}

.content-panel h3 {
    color: #4db8ff;
    margin: 28px 0 12px;
    font-size: 1.3em;
}

.content-panel p {
    margin-bottom: 18px;
    color: #e0e0e0;
}

.content-panel code {
    background: #1e1e2e;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: "Courier New", monospace;
    color: #ffa657;
}

.content-panel pre {
    background: #151520;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    border-left: 4px solid #0078f2;
    margin: 24px 0;
}

.content-panel pre code {
    background: none;
    color: #e0e0e0;
    padding: 0;
}

.content-panel ul,
.content-panel ol {
    margin: 18px 0 18px 28px;
}

.content-panel li {
    margin-bottom: 8px;
    color: #e0e0e0;
}

.loading {
    text-align: center;
    padding: 60px;
    color: #b0b0b0;
    font-size: 18px;
}

.error {
    text-align: center;
    padding: 60px;
    color: #ff8080;
    border: 1px solid #ff8080;
    border-radius: 8px;
    background: rgba(255, 0, 0, 0.08);
}

.slide-indicators {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 18px rgba(255,255,255,0.9);
}

#examples-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 30px;
}

.example-item {
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}

.example-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.example-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.example-text h2 {
    color: #00a8f2;
    margin-top: 0;        /* ← das fehlt */
    margin-bottom: 16px;
    font-size: 1.8em;
}

.example-description p {
    color: #e0e0e0;
    margin-bottom: 18px;
    line-height: 1.7;
}

.download-button {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #0078f2, #00a8f2);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 25px rgba(0,120,242,0.35);
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,120,242,0.45);
}

@media (max-width: 900px) {
    .example-item {
        grid-template-columns: 1fr;
    }
}
