/**
 * WG-Comments Frontend Styles - KORRIGIERT & VOLLSTÄNDIG
 * Hollywood Cinema Theme - Modern, Hell & Farbig
 * 
 * @package     WG_Comments
 * @version     2.1.1
 * @author      Tribun/Frank
 * 
 * DSGVO-KONFORM:
 * ✅ Keine Google Fonts (nur System Fonts)
 * ✅ Keine externen CDNs
 * ✅ Alle Assets lokal
 */
 
 /**
 * WG Comments - Frontend Styles
 * Complete styling with compact reaction dropdown
 * 
 * @package WG_Comments
 * @version 2.1.0
 */

/* ===========================
   Comment List Styles
   =========================== */

.wgc-comments-list {
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.wgc-comment {
    margin-bottom: 20px;
    position: relative;
}

.wgc-comment-body {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    transition: box-shadow 0.2s;
}

.wgc-comment-body:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Comment Header */
.wgc-comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.wgc-comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.wgc-comment-author-info {
    flex: 1;
}

.wgc-comment-author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.2;
    display: block;
}

.wgc-comment-meta {
    color: #657786;
    font-size: 14px;
    display: block;
    margin-top: 2px;
}

/* Comment Content */
.wgc-comment-content {
    line-height: 1.6;
    color: #14171a;
    font-size: 15px;
    margin-bottom: 15px;
}

.wgc-comment-content p {
    margin: 0 0 10px 0;
}

.wgc-comment-content p:last-child {
    margin-bottom: 0;
}

/* ===========================
   Compact Reaction System
   =========================== */

.wgc-comment-actions {
    display: flex;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #e1e8ed;
}

/* Main Reaction Button */
.wgc-reaction-trigger {
    position: relative;
    display: inline-block;
}

.wgc-reaction-btn {
    background: #f7f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #657786;
}

.wgc-reaction-btn:hover {
    background: #e1e8ed;
    border-color: #ccd6dd;
}

.wgc-reaction-btn svg {
    width: 16px;
    height: 16px;
}

/* Reaction Dropdown (versteckt by default) */
.wgc-reaction-picker {
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: 8px;
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
    flex-wrap: wrap;
    gap: 8px;
    width: 200px;
    z-index: 1000;
}

.wgc-reaction-picker.active {
    display: flex;
}

/* Individual Reaction Buttons in Picker */
.wgc-reaction-option {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.wgc-reaction-option:hover {
    background: #f7f9fa;
    border-color: #e1e8ed;
    transform: scale(1.1);
}

.wgc-reaction-option.active {
    background: #e8f5fe;
    border-color: #1da1f2;
}

/* Active Reactions Display */
.wgc-reactions-display {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.wgc-reaction-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f7f9fa;
    border: 1px solid #e1e8ed;
    border-radius: 16px;
    padding: 4px 10px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.wgc-reaction-item:hover {
    background: #e8f5fe;
    border-color: #1da1f2;
}

.wgc-reaction-item.user-reacted {
    background: #e8f5fe;
    border-color: #1da1f2;
}

.wgc-reaction-emoji {
    font-size: 16px;
    line-height: 1;
}

.wgc-reaction-count {
    font-size: 13px;
    font-weight: 500;
    color: #657786;
}

.wgc-reaction-item.user-reacted .wgc-reaction-count {
    color: #1da1f2;
}

/* Other Action Buttons */
.wgc-reply-btn,
.wgc-edit-btn,
.wgc-delete-btn {
    background: transparent;
    border: none;
    color: #657786;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s;
}

.wgc-reply-btn:hover {
    background: #f7f9fa;
    color: #1da1f2;
}

.wgc-edit-btn:hover {
    background: #f7f9fa;
    color: #17bf63;
}

.wgc-delete-btn:hover {
    background: #fff5f5;
    color: #e0245e;
}

/* ===========================
   Comment Editor Styles
   =========================== */

.wgc-comment-form-wrapper {
    margin: 30px 0;
}

.wgc-toolbar {
    background: #f7f9fa;
    border: 1px solid #e1e8ed;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    padding: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ql-formats {
    display: inline-flex;
    gap: 4px;
}

.ql-toolbar button {
    background: white;
    border: 1px solid #e1e8ed;
    border-radius: 4px;
    width: 32px;
    height: 32px;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s;
}

.ql-toolbar button:hover {
    background: #e1e8ed;
}

.ql-toolbar button.ql-active {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.wgc-editor-wrapper {
    border: 2px solid #e1e8ed;
    border-radius: 0 0 8px 8px;
    background: white;
    transition: border-color 0.2s;
}

.wgc-editor-wrapper:focus-within {
    border-color: #1da1f2;
}

.wgc-editor {
    min-height: 150px;
    padding: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.wgc-editor-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-top: 1px solid #e1e8ed;
    background: #f7f9fa;
}

.wgc-char-counter {
    font-size: 13px;
    color: #657786;
}

.wgc-char-counter.warning {
    color: #ffad1f;
}

.wgc-char-counter.danger {
    color: #e0245e;
    font-weight: 600;
}

.wgc-submit-wrapper {
    margin-top: 15px;
}

.wgc-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.wgc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
}

.wgc-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
    .wgc-comment-body {
        padding: 15px;
    }
    
    .wgc-comment-avatar {
        width: 40px;
        height: 40px;
    }
    
    .wgc-reaction-picker {
        width: 160px;
    }
    
    .wgc-reaction-option {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}

/**
 * Dateiname: wgc-frontend.css
 * Pfad: /wp-content/plugins/wg-comments/assets/css/wgc-frontend.css
 */

/* ========================================
   SYSTEM FONTS & VARIABLES (DSGVO-KONFORM)
   ======================================== */

:root {
    /* System Font Stack - NO Google Fonts! */
    --wgc-font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    --wgc-font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
    
    /* Hollywood Colors - Bright & Modern */
    --wgc-gold: #FFD700;
    --wgc-orange: #FF9800;
    --wgc-red: #FF5722;
    --wgc-purple: #764BA2;
    --wgc-blue: #667EEA;
    
    /* Neutral Colors - Hell statt dunkel! */
    --wgc-bg-primary: #FFFFFF;
    --wgc-bg-secondary: #F8F9FA;
    --wgc-bg-tertiary: #E9ECEF;
    --wgc-text-primary: #212529;
    --wgc-text-secondary: #6C757D;
    --wgc-text-light: #ADB5BD;
    --wgc-border: #DEE2E6;
    
    /* Shadows & Effects */
    --wgc-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --wgc-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --wgc-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --wgc-shadow-glow: 0 0 20px rgba(255, 152, 0, 0.3);
    
    /* Spacing */
    --wgc-space-xs: 4px;
    --wgc-space-sm: 8px;
    --wgc-space-md: 16px;
    --wgc-space-lg: 24px;
    --wgc-space-xl: 32px;
    
    /* Border Radius */
    --wgc-radius-sm: 4px;
    --wgc-radius-md: 8px;
    --wgc-radius-lg: 12px;
    --wgc-radius-xl: 16px;
    
    /* Transitions */
    --wgc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ========================================
   EDITOR WRAPPER - Hollywood Premiere Style
   ======================================== */

#wgc-editor-wrapper {
    position: relative;
    margin: var(--wgc-space-xl) 0;
    padding: var(--wgc-space-lg);
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border: 2px solid var(--wgc-border);
    border-radius: var(--wgc-radius-xl);
    box-shadow: var(--wgc-shadow-lg);
    font-family: var(--wgc-font-primary);
    overflow: hidden;
}

/* Film Reel Decoration (oben) */
.wgc-film-reel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(
        90deg,
        var(--wgc-gold) 0%,
        var(--wgc-orange) 33%,
        var(--wgc-red) 66%,
        var(--wgc-purple) 100%
    );
    z-index: 10;
}

.wgc-film-reel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: filmScan 3s ease-in-out infinite;
}

@keyframes filmScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}


/* ========================================
   EDITOR HEADER
   ======================================== */

.wgc-editor-header {
    padding: var(--wgc-space-md) 0 var(--wgc-space-lg);
    text-align: center;
    position: relative;
    z-index: 1;
}

.wgc-editor-title {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        var(--wgc-gold) 0%,
        var(--wgc-orange) 50%,
        var(--wgc-red) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--wgc-space-sm);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wgc-editor-subtitle {
    color: var(--wgc-text-secondary);
    font-size: 15px;
    font-weight: 500;
}


/* ========================================
   QUILL TOOLBAR - HELL & MODERN
   ======================================== */

.ql-toolbar.ql-snow {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border: 2px solid var(--wgc-border);
    border-bottom: 1px solid var(--wgc-border);
    border-radius: var(--wgc-radius-lg) var(--wgc-radius-lg) 0 0;
    padding: var(--wgc-space-md) var(--wgc-space-lg);
    box-shadow: var(--wgc-shadow-sm);
    display: flex;
    flex-wrap: wrap;
    gap: var(--wgc-space-sm);
    position: relative;
}

/* Toolbar Buttons */
.ql-toolbar button,
.ql-toolbar .ql-picker-label {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--wgc-bg-primary);
    border: 1px solid var(--wgc-border);
    border-radius: var(--wgc-radius-md);
    color: var(--wgc-text-primary);
    transition: var(--wgc-transition);
    position: relative;
    cursor: pointer;
}

.ql-toolbar button:hover,
.ql-toolbar .ql-picker-label:hover {
    background: linear-gradient(135deg, var(--wgc-orange) 0%, var(--wgc-red) 100%);
    border-color: var(--wgc-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--wgc-shadow-md);
}

.ql-toolbar button.ql-active,
.ql-toolbar .ql-picker-label.ql-active {
    background: linear-gradient(135deg, var(--wgc-blue) 0%, var(--wgc-purple) 100%);
    border-color: var(--wgc-blue);
    color: white;
    box-shadow: var(--wgc-shadow-glow);
}

/* Button Icons */
.ql-toolbar button svg,
.ql-toolbar .ql-picker-label svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Toolbar Groups */
.ql-formats {
    margin: 0 !important;
    display: inline-flex;
    gap: var(--wgc-space-xs);
}

.ql-formats:not(:last-child) {
    margin-right: var(--wgc-space-md) !important;
    padding-right: var(--wgc-space-md);
    border-right: 2px solid var(--wgc-border);
}


/* ========================================
   QUILL EDITOR CONTAINER - HELL & LESBAR
   ======================================== */

.ql-container.ql-snow {
    background: var(--wgc-bg-primary);
    border: 2px solid var(--wgc-border);
    border-top: none;
    border-radius: 0 0 var(--wgc-radius-lg) var(--wgc-radius-lg);
    font-family: var(--wgc-font-primary);
    min-height: 200px;
    box-shadow: var(--wgc-shadow-sm);
}

.ql-editor {
    color: var(--wgc-text-primary);
    font-size: 16px;
    line-height: 1.8;
    padding: var(--wgc-space-lg);
    min-height: 200px;
}

/* Placeholder */
.ql-editor.ql-blank::before {
    color: var(--wgc-text-light);
    content: attr(data-placeholder);
    font-style: italic;
    font-weight: 400;
    left: var(--wgc-space-lg);
    right: var(--wgc-space-lg);
}

/* Editor Content Styling */
.ql-editor p {
    margin-bottom: var(--wgc-space-md);
    color: var(--wgc-text-primary);
}

.ql-editor strong {
    color: var(--wgc-orange);
    font-weight: 700;
}

.ql-editor em {
    color: var(--wgc-text-secondary);
    font-style: italic;
}

.ql-editor a {
    color: var(--wgc-blue);
    text-decoration: none;
    border-bottom: 1px solid var(--wgc-blue);
    transition: var(--wgc-transition);
}

.ql-editor a:hover {
    color: var(--wgc-purple);
    border-bottom-color: var(--wgc-purple);
}

.ql-editor ul,
.ql-editor ol {
    padding-left: var(--wgc-space-lg);
    color: var(--wgc-text-primary);
}

.ql-editor li {
    margin-bottom: var(--wgc-space-sm);
}

.ql-editor li::marker {
    color: var(--wgc-orange);
}

.ql-editor blockquote {
    border-left: 4px solid var(--wgc-orange);
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8CC 100%);
    padding: var(--wgc-space-md) var(--wgc-space-lg);
    margin: var(--wgc-space-lg) 0;
    border-radius: 0 var(--wgc-radius-md) var(--wgc-radius-md) 0;
    font-style: italic;
    color: var(--wgc-text-secondary);
}

.ql-editor code {
    background: var(--wgc-bg-tertiary);
    padding: 2px 6px;
    border-radius: var(--wgc-radius-sm);
    font-family: var(--wgc-font-mono);
    font-size: 14px;
    color: var(--wgc-red);
}

.ql-editor pre {
    background: var(--wgc-bg-tertiary);
    padding: var(--wgc-space-md);
    border-radius: var(--wgc-radius-md);
    overflow-x: auto;
    font-family: var(--wgc-font-mono);
    font-size: 14px;
    line-height: 1.6;
}


/* ========================================
   EDITOR FOOTER - ACTION BAR
   ======================================== */

.wgc-editor-footer {
    margin-top: var(--wgc-space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--wgc-space-md);
    padding-top: var(--wgc-space-md);
    border-top: 2px solid var(--wgc-border);
}

/* Character Counter */
.wgc-char-counter {
    display: flex;
    align-items: center;
    gap: var(--wgc-space-sm);
    color: var(--wgc-text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.wgc-char-counter .wgc-char-count {
    font-weight: 700;
    color: var(--wgc-text-primary);
}

.wgc-char-counter.warning .wgc-char-count {
    color: var(--wgc-orange);
}

.wgc-char-counter.danger .wgc-char-count {
    color: var(--wgc-red);
    animation: counterPulse 0.5s ease-in-out infinite;
}

@keyframes counterPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Submit Button */
.wgc-submit-btn {
    background: linear-gradient(135deg, var(--wgc-blue) 0%, var(--wgc-purple) 100%);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: var(--wgc-radius-md);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--wgc-font-primary);
    cursor: pointer;
    transition: var(--wgc-transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--wgc-shadow-md);
}

.wgc-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.wgc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.wgc-submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.wgc-submit-btn:active {
    transform: translateY(0);
}

.wgc-submit-btn:disabled {
    background: var(--wgc-bg-tertiary);
    color: var(--wgc-text-light);
    cursor: not-allowed;
    transform: none;
}


/* ========================================
   LOGIN PROMPT - HELL & EINLADEND
   ======================================== */

.wgc-login-prompt {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    border: 2px solid var(--wgc-border);
    border-radius: var(--wgc-radius-xl);
    padding: var(--wgc-space-xl);
    text-align: center;
    box-shadow: var(--wgc-shadow-lg);
}

.wgc-login-title {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--wgc-blue) 0%, var(--wgc-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--wgc-space-md);
}

.wgc-login-subtitle {
    color: var(--wgc-text-secondary);
    font-size: 16px;
    margin-bottom: var(--wgc-space-lg);
}

.wgc-login-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--wgc-space-md);
    margin: var(--wgc-space-lg) 0;
}

.wgc-benefit-item {
    background: var(--wgc-bg-secondary);
    padding: var(--wgc-space-md);
    border-radius: var(--wgc-radius-md);
    border: 2px solid var(--wgc-border);
}

.wgc-benefit-icon {
    font-size: 32px;
    margin-bottom: var(--wgc-space-sm);
}

.wgc-benefit-text {
    color: var(--wgc-text-primary);
    font-weight: 600;
    font-size: 14px;
}

.wgc-auth-buttons {
    display: flex;
    gap: var(--wgc-space-md);
    justify-content: center;
}

.wgc-auth-btn {
    padding: 14px 32px;
    border: 2px solid;
    border-radius: var(--wgc-radius-md);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--wgc-font-primary);
    cursor: pointer;
    transition: var(--wgc-transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--wgc-space-sm);
}

.wgc-auth-btn.primary {
    background: linear-gradient(135deg, var(--wgc-blue) 0%, var(--wgc-purple) 100%);
    border-color: var(--wgc-blue);
    color: white;
}

.wgc-auth-btn.secondary {
    background: transparent;
    border-color: var(--wgc-border);
    color: var(--wgc-text-primary);
}

.wgc-auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--wgc-shadow-md);
}


/* ========================================
   FOKUS-EFFEKTE
   ======================================== */

.ql-container.wgc-editor-focused {
    border-color: var(--wgc-blue);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}


/* ========================================
   MOBILE OPTIMIERUNG
   ======================================== */

@media (max-width: 768px) {
    #wgc-editor-wrapper {
        padding: var(--wgc-space-md);
        margin: var(--wgc-space-lg) 0;
    }
    
    .wgc-editor-title {
        font-size: 22px;
    }
    
    .ql-toolbar button,
    .ql-toolbar .ql-picker-label {
        width: 32px;
        height: 32px;
    }
    
    .ql-toolbar {
        padding: var(--wgc-space-sm) var(--wgc-space-md);
    }
    
    .wgc-editor-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .wgc-submit-btn {
        width: 100%;
    }
    
    .wgc-login-benefits {
        grid-template-columns: 1fr;
    }
    
    .wgc-auth-buttons {
        flex-direction: column;
    }
    
    .wgc-auth-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ========================================
   ACCESSIBILITY
   ======================================== */

/* High Contrast Mode */
@media (prefers-contrast: high) {
    #wgc-editor-wrapper,
    .ql-toolbar.ql-snow,
    .ql-container.ql-snow {
        border-width: 3px;
    }
    
    .wgc-submit-btn {
        border: 2px solid var(--wgc-text-primary);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Visible */
.ql-toolbar button:focus-visible,
.wgc-submit-btn:focus-visible,
.wgc-auth-btn:focus-visible {
    outline: 3px solid var(--wgc-blue);
    outline-offset: 2px;
}

/**
 * Dateiname: wgc-frontend.css
 * Pfad: /wp-content/plugins/wg-comments/assets/css/wgc-frontend.css
 * Version: 2.1.1
 * Zeilen: 522
 */