/* Redesign passend zu privacy.where.digital */
:root {
    --ds-bg-primary: #0f0f0f;
    --ds-bg-secondary: #1a1a2e;
    --ds-bg-card: #16213e;
    --ds-text-primary: #e4e4e7;
    --ds-text-secondary: #a1a1aa;
    --ds-accent: #8b69b8;
    --ds-accent-hover: #ac1122;
    --ds-border: rgba(255, 255, 255, 0.1);
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--ds-bg-primary) 0%, var(--ds-bg-secondary) 100%);
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ds-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ds-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px 40px;
}

.ds-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--ds-border);
}

.ds-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 400;
    color: #fff;
    margin: 0 0 10px 0;
}

.ds-header .ds-version {
    font-size: 0.9em;
    color: var(--ds-accent);
    margin: 0;
}

.ds-content {
    background: rgba(22, 33, 62, 0.6);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--ds-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.ds-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    color: #fff;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--ds-accent);
}

.ds-content h3 {
    font-size: 1.3em;
    color: var(--ds-accent);
    margin: 35px 0 15px 0;
    font-weight: 600;
}

.ds-content h4 {
    font-size: 1.1em;
    color: var(--ds-text-secondary);
    margin: 20px 0 10px 0;
    font-weight: 500;
}

.ds-content p {
    font-size: 1em;
    line-height: 1.8;
    color: var(--ds-text-primary);
    margin: 0 0 15px 0;
    text-align: justify;
}

.ds-content ul {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

.ds-content li {
    position: relative;
    padding: 10px 0 10px 25px;
    line-height: 1.6;
    color: var(--ds-text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ds-content li:last-child {
    border-bottom: none;
}

.ds-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--ds-accent);
    border-radius: 50%;
}

.ds-content a {
    color: var(--ds-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ds-content a:hover {
    color: var(--ds-accent-hover);
    text-decoration: underline;
}

.ds-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    padding: 12px 24px;
    background: rgba(139, 105, 184, 0.2);
    border: 1px solid var(--ds-accent);
    border-radius: 8px;
    color: var(--ds-accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ds-back-link:hover {
    background: var(--ds-accent);
    color: #fff;
    text-decoration: none;
}

.ds-footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    border-top: 1px solid var(--ds-border);
    font-size: 0.75em;
    color: var(--ds-text-secondary);
}

.ds-footer a {
    color: var(--ds-accent);
    text-decoration: none;
}

.ds-footer a:hover {
    color: var(--ds-accent-hover);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    .ds-container {
        padding: 70px 15px 30px;
    }
    
    .ds-header h1 {
        font-size: 1.8em;
    }
    
    .ds-content {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .ds-content h2 {
        font-size: 1.4em;
    }
    
    .ds-content h3 {
        font-size: 1.15em;
    }
    
    .ds-content p {
        font-size: 0.95em;
        text-align: left;
    }
    
    .ds-content li {
        padding: 8px 0 8px 20px;
        font-size: 0.95em;
    }
    
    .ds-content li::before {
        width: 6px;
        height: 6px;
        top: 16px;
    }
}

@media (max-width: 480px) {
    .ds-header h1 {
        font-size: 1.5em;
    }
    
    .ds-content {
        padding: 20px 15px;
    }
    
    .ds-back-link {
        padding: 10px 18px;
        font-size: 0.9em;
    }
}