.ai-tldr-wrapper {
    margin-bottom: 30px;
}

.ai-tldr-container {
    margin: 20px 0 30px 0;
}

.ai-tldr-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    border-left: 4px solid #10a37f;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ai-tldr-box h3 {
    margin: 0 0 16px 0;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
}

.ai-tldr-content p {
    margin: 0 0 12px 0;
    color: #333;
    line-height: 1.6;
    font-size: 15px;
}

.ai-tldr-highlights {
    background: white;
    padding: 16px;
    border-radius: 6px;
    margin-top: 12px;
}

.ai-tldr-highlights strong {
    display: block;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 600;
}

.ai-tldr-highlights ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.ai-tldr-highlights li {
    color: #555;
    margin: 8px 0;
    font-size: 14px;
    padding-left: 24px;
    position: relative;
}

.ai-tldr-highlights li:before {
    content: "✓";
    color: #10a37f;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.ai-buttons-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
    border: 1px solid #d0d8e0;
    border-radius: 8px;
    padding: 24px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.ai-buttons-section p {
    margin: 0 0 16px 0;
    font-weight: 600;
    color: #1a1a1a;
}

.ai-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ai-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: 2px solid #333;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    background: white;
    color: #000;
}

.ai-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ai-btn-chatgpt {
    border-color: #10a37f;
}

.ai-btn-chatgpt:hover {
    background: #10a37f;
    color: white;
}

.ai-btn-perplexity {
    border-color: #7c3aed;
}

.ai-btn-perplexity:hover {
    background: #7c3aed;
    color: white;
}

@media (max-width: 768px) {
    .ai-btn {
        flex: 1;
        min-width: 140px;
    }
}

@media (prefers-color-scheme: dark) {
    .ai-tldr-box {
        background: linear-gradient(135deg, #2a2a3a 0%, #1a1a2a 100%);
        border-left-color: #10a37f;
    }
    
    .ai-tldr-box h3,
    .ai-tldr-highlights strong {
        color: #ffffff;
    }
    
    .ai-tldr-content p {
        color: #e0e0e0;
    }
    
    .ai-tldr-highlights {
        background: #1a1a2a;
    }
    
    .ai-tldr-highlights li {
        color: #c0c0c0;
    }
    
    .ai-buttons-section {
        background: linear-gradient(135deg, #2a2a3a 0%, #1a1a2a 100%);
        border-color: #444;
    }
    
    .ai-btn {
        background: #1a1a2a;
        color: #ffffff;
        border-color: #555;
    }
}
